/* =========================================
   CYRAMAGE WEBSITE
   BLACK & GOLD LUXURY THEME
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behaviour: smooth;
}

body {
    background: #090909;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */
.top-bar {
    width: 100%;
    height: 40px;
    background: #d4af37;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    color: #000;
    font-weight: 700;
    font-size: 15px;
}
.top-bar-track {
    display: inline-flex;
    align-items: center;
    width: max-content;
    animation: scrollText 15s linear infinite;
}

.top-bar-track span {
    padding-right: 80px;
}

@keyframes scrollText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.navbar {
    width: min(1180px, 90%);
    min-height: 84px;
    padding: 10px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 160px;
    height: auto;
    display: block;
}

.navbar nav {
    width: auto;
    height: auto;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.navbar nav a {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
}

.navbar nav a:hover {
    color: #d4af37;
}

/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 430px;
    height: 50vh;
    max-height: 460px;
    display: flex;
    align-items: center;
    
   background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.52) 42%,
            rgba(0, 0, 0, 0.08) 72%
        ),
        url("../images/hero-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 90%);
    margin: 0 auto;
}

.hero-content > div,
.hero-text {
    max-width: 560px;
}

.hero-logo {
    width: 170px;
    margin-bottom: 22px;
}

.hero h1 {
    max-width: 650px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero p {
    max-width: 570px;
    color: #e5e1d8;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.btn,
.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border: 1px solid #d4af37;
    border-radius: 6px;
   
    background: #d4af37;
    color: #090909;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover,
.hero .btn:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22);
}


/* =========================================
   SECTION HEADINGS
========================================= */

section {
    scroll-margin-top: 85px;
}

section h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    margin-top: 16px;
    background: #d4af37;
}


/* =========================================
   SHOP BY COLLECTION
========================================= */

.collections {
    padding: 25px 0 120px;
    background:
        radial-gradient(
            circle at top left,
            rgba(212, 175, 55, 0.07),
            transparent 33%
        ),
        #0d0d0d;
}
.collections .container {
    width: min(1180px, 90%);
    margin: 0 auto;
    text-align: center;
}
.collections h2 {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 42px;
}
.collections h2::after {
    display: block;
    margin: 14px auto 0;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

.collection-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 10px;
    background: #171717;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
    isolation: isolate;
    cursor: pointer;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 30%,
        rgba(0, 0, 0, 0.86) 100%
    );
    pointer-events: none;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.collection-card h3 {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    z-index: 2;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.collection-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.16);
}

.collection-card:hover img {
    transform: scale(1.045);
}


/* =========================================
   GENERAL FUTURE SECTIONS
========================================= */

.best-sellers,
.luxury-gifts,
.why-us,
.testimonials,
.newsletter {
    padding: 90px 0;
}

.best-sellers,
.why-us,
.newsletter {
    background: #0d0d0d;
}

.luxury-gifts,
.testimonials {
    background: #131313;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 55px 0 25px;
    background: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    color: #bcb7ad;
}

footer a:hover {
    color: #d4af37;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
    .navbar,
    nav {
        min-height: 72px;
    }

    nav ul,
    .nav-links {
        gap: 20px;
    }

    .hero {
        min-height: 520px;
        height: 65vh;
        background-position: 64% center;
    }

    .hero-content > div,
    .hero-text {
        max-width: 500px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-card {
        height: 260px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
    .container,
    .navbar,
    nav,
    .hero-content {
        width: 90%;
    }

    .navbar,
    nav {
        min-height: 68px;
        gap: 15px;
    }

    .logo {
        font-size: 1.28rem;
    }

    .logo img {
        width: 140px;
    }

    nav ul,
    .nav-links {
        gap: 13px;
    }

    nav a,
    .nav-links a {
        font-size: 0.78rem;
    }

    .hero {
        min-height: 520px;
        height: auto;
        padding: 85px 0;
        align-items: flex-end;
        background-image:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.18) 15%,
                rgba(0, 0, 0, 0.88) 77%
            ),
            url("../images/hero-banner.png");
        background-position: 70% center;
    }

    .hero-content > div,
    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 0.94rem;
    }

    .collections {
        padding: 65px 0 75px;
    }

    .collections h2 {
        margin-bottom: 30px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collection-card {
        height: 230px;
    }

    .collection-card h3 {
        font-size: 1.22rem;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {
    nav ul,
    .nav-links {
        gap: 10px;
    }

    nav a,
    .nav-links a {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 490px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn,
    .hero .btn {
        min-height: 46px;
        padding: 11px 22px;
        font-size: 0.86rem;
    }

    .collection-card {
        height: 210px;
    }
}
/* ==================================
   BEST SELLERS
================================== */

.best-sellers {
    padding: 45px 0 90px;
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.07),
            transparent 32%
        ),
        #0b0b0b;
}

.best-sellers-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section-heading {
    width: 100%;
    margin: 0 auto 34px;
    text-align: center;
}

.section-label {
    margin: 0 0 8px;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin: 16px auto 0;
    background: #d4af37;
    border-radius: 10px;
}

.section-description {
    max-width: 650px;
    margin: 18px auto 0;
    color: #d8d8d8;
    font-size: 1rem;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    border-color: #d4af37;
    box-shadow: 0 18px 42px rgba(212, 175, 55, 0.16);
}

.product-image {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f1ec;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    background: #d4af37;
    color: #090909;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 18px 18px;
    text-align: center;
}

.product-details h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    line-height: 1.3;
}

.product-description {
    margin: 0;
    color: #d8d8d8;
    font-size: 0.92rem;
    line-height: 1.65;
}

.product-rating {
    margin: 18px 0 8px;
    color: #f0c536;
    font-size: 1rem;
    letter-spacing: 2px;
}

.product-price {
    margin: 0 0 18px;
    color: #d4af37;
    font-size: 1.35rem;
    font-weight: 700;
}

.product-price {
    margin: 0 0 18px;
    color: #d4af37;
    font-size: 1.35rem;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price {
    color: #969696;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
}

.current-price {
    color: #d4af37;
    font-size: 1.45rem;
    font-weight: 800;
}

.save-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: #d4af37;
    color: #111;
    font-size: 0.68rem;
    font-weight: 800;
    white-space: nowrap;
}
.product-btn {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 13px 18px;
    color: #d4af37;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 7px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: center;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.product-btn:hover {
    background: #d4af37;
    color: #080808;
    transform: translateY(-2px);
}

/* Tablet */

@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 600px) {
    .best-sellers {
        padding: 35px 0 65px;
    }

    .best-sellers-container {
        width: min(94%, 520px);
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 270px;
    }

    .product-details {
        padding: 22px 18px 18px;
    }
}
/* WHY CHOOSE */

.why-choose{
    background:#000;
    color:#fff;
    padding:110px 20px;
    text-align:center;
}

.why-choose h2{
    color:#d4af37;
    font-size:2.4rem;
    margin-bottom:60px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.feature{
    background:#111;
    border:1px solid rgba(212,175,55,.3);
    border-radius:18px;
    padding:35px 25px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 10px 30px rgba(212,175,55,.2);
}

.icon{
    font-size:2.5rem;
    margin-bottom:20px;
}

.feature h3{
    color:#d4af37;
    margin-bottom:15px;
}

.feature p{
    color:#ddd;
    line-height:1.7;
}
/* TESTIMONIALS */

.testimonials{
    background:#0a0a0a;
    color:#fff;
    text-align:center;
    padding:110px 20px;
}

.testimonials h2{
    color:#d4af37;
    font-size:2.3rem;
    margin-bottom:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.testimonial{
    background:#111;
    padding:35px;
    border-radius:18px;
    border:1px solid rgba(212,175,55,.25);
    transition:.3s;
}

.testimonial:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
}

.stars{
    color:#d4af37;
    font-size:1.2rem;
    margin-bottom:15px;
}

.testimonial p{
    color:#ddd;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial h4{
    color:#fff;
    font-weight:600;
}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#050505;
    color:#fff;
    padding:80px 20px 30px;
    border-top:1px solid rgba(212,175,55,.25);
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:50px;
}

.footer-logo{
    width:90px;
    margin-bottom:20px;
}

.footer-column h3{
    color:#d4af37;
    margin-bottom:20px;
}

.footer-column p{
    color:#ccc;
    line-height:1.8;
}

.footer-column a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:#d4af37;
    padding-left:5px;
}

.footer-bottom{
    text-align:center;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#999;
    font-size:.9rem;
}
/* ===========================
   NEWSLETTER
=========================== */

.newsletter {
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.1),
            transparent 55%
        ),
        #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.newsletter-container {
    width: min(760px, 100%);
    margin: 0 auto;
}

.newsletter-label {
    margin: 0 0 10px;
    color: #d4af37;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.newsletter h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.newsletter-text {
    max-width: 620px;
    margin: 20px auto 30px;
    color: #d1d1d1;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 8px;
    overflow: hidden;
    background: #111111;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 0;
    padding: 16px 18px;
    color: #ffffff;
    background: transparent;
    border: 0;
    outline: none;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    padding: 16px 28px;
    color: #080808;
    background: #d4af37;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #f0c94d;
}

@media (max-width: 600px) {
    .newsletter {
        padding: 70px 20px;
    }

    .newsletter-form {
        flex-direction: column;
        border: 0;
        background: transparent;
        gap: 12px;
        overflow: visible;
    }

    .newsletter-form input[type="email"] {
        border: 1px solid rgba(212, 175, 55, 0.6);
        border-radius: 7px;
        background: #111111;
    }

    .newsletter-form button {
        border-radius: 7px;
    }
}
.site-header{
    background:#000;
    padding:20px 0;
}

.site-header .container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 40px;
}

.site-header nav ul{
    list-style:none;
    display:flex;
    gap:35px;
    margin:0;
    padding:0;
}

.site-header nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.logo{
    text-decoration:none;
    color:#fff;
}
/* ===========================
   CYRAMAGE HEADER
=========================== */

.site-header{
    background:#000;
    border-bottom:1px solid rgba(212,175,55,.2);
    position:sticky;
    top:0;
    z-index:1000;
}

.site-header .container{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
}

.site-header ul{
    list-style:none;
    display:flex;
    gap:35px;
    margin:0;
    padding:0;
}

.site-header li{
    list-style:none;
}

.site-header a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.site-header a:hover{
    color:#D4AF37;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:2rem;
    font-weight:700;
}
/* =========================================================
   FINAL MOBILE PRODUCT CARD FIX
========================================================= */

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {

  .best-sellers,
  .products-section,
  .featured-products {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .products-grid,
  .product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 24px;
    margin: 0;
    padding: 0;
  }

  .product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .product-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .product-details {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    text-align: center;
  }

  .product-details h3 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .product-description {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .product-price {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
  }

  .old-price {
    color: #969696;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 600;
  }

  .current-price {
    color: #d4af37;
    font-size: 1.5rem;
    font-weight: 800;
  }

  .save-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #d4af37;
    color: #111;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 430px) {

  .best-sellers,
  .products-section,
  .featured-products {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-details h3 {
    font-size: 1.55rem;
  }

  .current-price {
    font-size: 1.35rem;
  }

  .old-price {
    font-size: 0.92rem;
  }

  .save-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
}
/* MOBILE NAVIGATION */

.mobile-menu-button {
    display: none;
}

@media (max-width: 768px) {

    .navbar {
        position: relative;
        width: 100%;
        padding: 12px 18px;
        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo img {
        width: 105px;
        height: auto;
        display: block;
    }

    .mobile-menu-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        width: 44px;
        height: 44px;
        padding: 9px;

        background: transparent;
        border: 1px solid #d4af37;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-button span {
        display: block;
        width: 100%;
        height: 2px;
        background: #d4af37;
    }

    .navbar nav {
        display: none;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;
        padding: 16px 20px;
        box-sizing: border-box;

        background: #080808;
        border-top: 1px solid rgba(212, 175, 55, 0.4);
        border-bottom: 1px solid rgba(212, 175, 55, 0.4);

        z-index: 1000;
    }

    .navbar nav.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .navbar nav a {
        display: block;
        width: 100%;
        padding: 12px 0;

        color: #fff;
        text-align: center;
        font-size: 1rem;
    }
}
/* =========================================================
   FINAL MOBILE MENU FIX
========================================================= */

.mobile-menu-button {
  display: none;
}

@media (max-width: 768px) {

  .navbar {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  .logo {
    flex-shrink: 0;
  }

  .logo img {
    display: block;
    width: 105px;
    height: auto;
  }

  .mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid #d4af37;
    background: #080808;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #d4af37;
  }

  .navbar nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 14px 18px;
    box-sizing: border-box;
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 1000;
  }

  .navbar nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .navbar nav a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: #fff;
    text-align: center;
    font-size: 1rem;
  }
}
