
    :root{
      --bg:#090909;
      --bg2:#111111;
      --card:#141414;
      --soft:#1b1b1b;
      --text:#f4f4f4;
      --muted:#b7b7b7;
      --gold:#d4af37;
      --line:rgba(255,255,255,.08);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:'Montserrat',sans-serif;
      background:var(--bg);
      color:var(--text);
      overflow-x:hidden;
    }
    img{max-width:100%;display:block}
    a{text-decoration:none}
    .topbar{
      background:#000;
      color:#fff;
      font-size:13px;
      padding:10px 0;
      letter-spacing:.3px;
      border-bottom:1px solid var(--line);
    }
    .topbar .pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 14px;
      border:1px solid rgba(212,175,55,.3);
      border-radius:999px;
      color:#fff;
      background:rgba(212,175,55,.08);
    }
    .navbar{
      position:fixed;
      top:0;
      left:0;
      right:0;
      z-index:999;
      background:rgba(6,6,6,.72);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .navwrap{padding:14px 0}
    .brand-logo{
      height:54px;
      width:auto;
      object-fit:contain;
    }
    .navbar .nav-link{
      color:#fff !important;
      font-weight:500;
      margin-left:26px;
      position:relative;
    }
    .navbar .nav-link::after{
      content:'';
      position:absolute;
      left:0;
      bottom:-7px;
      width:0%;
      height:2px;
      background:var(--gold);
      transition:.35s ease;
    }
    .navbar .nav-link:hover::after{width:100%}
    .nav-cta{
      background:var(--gold);
      color:#000;
      padding:12px 22px;
      border-radius:999px;
      font-weight:700;
      transition:.35s ease;
      display:inline-block;
    }
    .nav-cta:hover{background:#fff;color:#000;transform:translateY(-2px)}
    .navbar-toggler{border:none;background:#fff;padding:8px 10px}
    .navbar-toggler:focus{box-shadow:none}
    .hero{
      min-height:100vh;
      position:relative;
      padding-top:96px;
      background:#000;
    }
    .hero .swiper-slide{
      min-height:calc(100vh - 96px);
      display:flex;
      align-items:center;
      position:relative;
      background-size:cover;
      background-position:center;
    }
    .hero .swiper-slide::before{
      content:'';
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.65) 42%, rgba(0,0,0,.25) 100%);
    }
    .hero-inner{
      position:relative;
      z-index:2;
      max-width:760px;
      padding:48px 0;
    }
    .eyebrow{
      display:inline-flex;
      gap:10px;
      align-items:center;
      padding:10px 16px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.04);
      color:#fff;
      font-size:13px;
      letter-spacing:.18em;
      text-transform:uppercase;
      margin-bottom:22px;
    }
    .hero h1{
      font-family:'Cormorant Garamond',serif;
      font-size:clamp(44px,7vw,86px);
      line-height:.94;
      margin:0 0 20px;
      letter-spacing:.01em;
    }
    .hero h1 span{color:var(--gold)}
    .hero p{
      max-width:620px;
      color:#d7d7d7;
      font-size:17px;
      line-height:1.9;
      margin:0 0 28px;
    }
    .btn-gold{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:var(--gold);
      color:#000;
      border:none;
      border-radius:999px;
      padding:14px 24px;
      font-weight:800;
      transition:.3s ease;
      box-shadow:0 10px 30px rgba(212,175,55,.15);
    }
    .btn-gold:hover{background:#fff;color:#000;transform:translateY(-3px)}
    .btn-ghost{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border:1px solid rgba(255,255,255,.14);
      color:#fff;
      border-radius:999px;
      padding:14px 24px;
      font-weight:700;
      transition:.3s ease;
      background:rgba(255,255,255,.04);
    }
    .btn-ghost:hover{border-color:var(--gold);color:#fff;transform:translateY(-3px)}
    .hero-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .mini-chip{
      padding:10px 14px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.05);
      color:#f1f1f1;
      font-size:13px;
    }
    .section{
      padding:110px 0;
    }
    .section-light{
      background:linear-gradient(180deg, #0f0f0f 0%, #090909 100%);
    }
    .section-title{
      margin-bottom:42px;
    }
    .section-title .kicker{
      color:var(--gold);
      text-transform:uppercase;
      letter-spacing:.2em;
      font-size:12px;
      margin-bottom:12px;
      font-weight:700;
    }
    .section-title h2{
      font-family:'Cormorant Garamond',serif;
      font-size:clamp(34px,4vw,58px);
      margin:0 0 12px;
      line-height:1;
    }
    .section-title p{
      color:var(--muted);
      max-width:760px;
      line-height:1.8;
      margin:0;
    }
    .collection-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      height:100%;
      transition:.35s ease;
    }
    .collection-card:hover{
      transform:translateY(-8px);
      border-color:rgba(212,175,55,.35);
      box-shadow:0 18px 42px rgba(0,0,0,.28);
    }
    .collection-thumb{
      aspect-ratio:1.25/1;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.15), transparent 26%),
        linear-gradient(135deg, #222 0%, #111 100%);
      position:relative;
      overflow:hidden;
    }
    .collection-thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      mix-blend-mode:screen;
      opacity:.95;
      transition:transform .5s ease;
    }
    .collection-card:hover img{transform:scale(1.05)}
    .collection-body{
      padding:22px;
    }
    .collection-body h3{
      font-size:21px;
      margin:0 0 10px;
      font-weight:700;
    }
    .collection-body p{
      color:var(--muted);
      margin:0 0 18px;
      line-height:1.7;
      font-size:14px;
    }
    .badge-row{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:18px}
    .badge-soft{
      border:1px solid rgba(255,255,255,.09);
      color:#fff;
      background:rgba(255,255,255,.04);
      border-radius:999px;
      padding:7px 12px;
      font-size:12px;
      font-weight:700;
    }
    .badge-gold{
      border:1px solid rgba(212,175,55,.35);
      color:#111;
      background:var(--gold);
    }
    .product-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      height:100%;
      transition:.35s ease;
    }
    .product-card:hover{
      transform:translateY(-8px);
      border-color:rgba(212,175,55,.35);
      box-shadow:0 18px 42px rgba(0,0,0,.28);
    }
    .product-image{
      background:#dedede;
      aspect-ratio:1.2/1;
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }
    .product-image img{
      width:100%;
      height:100%;
      object-fit:contain;
      transition:.5s ease;
    }
    .product-card:hover .product-image img{transform:scale(1.06)}
    .product-body{padding:20px}
    .model{
      font-size:12px;
      letter-spacing:.18em;
      color:var(--gold);
      text-transform:uppercase;
      margin-bottom:8px;
      font-weight:700;
    }
    .product-body h3{
      font-size:18px;
      margin:0 0 8px;
      line-height:1.3;
    }
    .product-body p{
      color:var(--muted);
      font-size:14px;
      margin:0 0 14px;
      line-height:1.65;
    }
    .price-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:14px;
    }
    .price{
      color:#fff;
      font-size:18px;
      font-weight:800;
    }
    .small-link{
      color:#fff;
      border:1px solid rgba(255,255,255,.14);
      padding:10px 16px;
      border-radius:999px;
      font-size:13px;
      transition:.3s ease;
      background:rgba(255,255,255,.04);
    }
    .small-link:hover{border-color:var(--gold);transform:translateY(-2px)}
    .finish-strip{
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      background:#0b0b0b;
      overflow:hidden;
    }
    .finish-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
    }
    .finish-item{
      padding:28px 22px;
      text-align:center;
      border-right:1px solid var(--line);
    }
    .finish-item:last-child{border-right:none}
    .finish-item h4{
      margin:0 0 8px;
      font-size:18px;
    }
    .finish-item p{
      color:var(--muted);
      margin:0;
      font-size:13px;
      line-height:1.7;
    }
    .why-box{
      height:100%;
      padding:28px;
      border-radius:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border:1px solid var(--line);
    }
    .why-box .icon{
      width:54px;
      height:54px;
      border-radius:16px;
      background:rgba(212,175,55,.1);
      border:1px solid rgba(212,175,55,.18);
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:18px;
      font-size:22px;
    }
    .why-box h3{font-size:20px;margin:0 0 10px}
    .why-box p{margin:0;color:var(--muted);line-height:1.8;font-size:14px}
    .cta{
      position:relative;
      background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
        url('images/cta-bg.jpg') center/cover no-repeat;
      padding:110px 0;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }
    .cta h2{
      font-family:'Cormorant Garamond',serif;
      font-size:clamp(36px,5vw,64px);
      line-height:1;
      margin:0 0 14px;
    }
    .cta p{
      max-width:720px;
      color:#d7d7d7;
      line-height:1.9;
      margin:0 auto 28px;
    }
    footer{
      padding:70px 0 28px;
      background:#050505;
    }
    .footer-logo{height:56px;margin-bottom:18px}
    .footer-text{color:var(--muted);line-height:1.9;font-size:14px}
    .footer-title{
      font-size:18px;
      margin-bottom:18px;
    }
    .footer-links a{
      display:block;
      color:var(--muted);
      margin-bottom:10px;
      transition:.25s ease;
      font-size:14px;
    }
    .footer-links a:hover{color:var(--gold);padding-left:4px}
    .copyright{
      border-top:1px solid var(--line);
      margin-top:36px;
      padding-top:22px;
      color:#8a8a8a;
      font-size:14px;
      text-align:center;
    }
    .floating-whatsapp{
      position:fixed;
      right:18px;
      bottom:18px;
      width:60px;
      height:60px;
      border-radius:50%;
      background:#25D366;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:1000;
      box-shadow:0 15px 40px rgba(0,0,0,.35);
    }
    .floating-whatsapp img{width:32px;height:32px}
    .swiper-pagination-bullet{background:#fff;opacity:.45}
    .swiper-pagination-bullet-active{background:var(--gold);opacity:1}
    .hero .swiper-button-next,.hero .swiper-button-prev{
      color:#fff;
      width:48px;
      height:48px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(10px);
    }
    .hero .swiper-button-next:after,.hero .swiper-button-prev:after{font-size:18px;font-weight:900}
    @media (max-width: 991px){
      .navbar .nav-link{margin-left:0;padding:10px 0}
      .collapse.show{
        padding:16px 0 20px;
      }
      .hero .swiper-slide{min-height:calc(100vh - 96px)}
      .finish-grid{grid-template-columns:1fr 1fr}
      .finish-item:nth-child(2n){border-right:none}
      .finish-item:nth-child(n+3){border-top:1px solid var(--line)}
    }
    @media (max-width: 767px){
      .hero{padding-top:88px}
      .hero .swiper-slide{min-height:calc(100vh - 88px)}
      .hero p{font-size:15px}
      .section{padding:78px 0}
      .finish-grid{grid-template-columns:1fr}
      .finish-item{border-right:none;border-top:1px solid var(--line)}
      .finish-item:first-child{border-top:none}
    }
  
/* DROPDOWN MENU */

.nav-item.dropdown{
    position:relative;
}

.dropdown-menu-custom{
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
    z-index:999;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.nav-item.dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-title{
    color:#d4af37;
    font-size:14px;
    font-weight:700;
    margin:12px 0 10px;
    text-transform:uppercase;
    letter-spacing:.12em;
}

.dropdown-menu-custom a{
    display:block;
    color:#fff;
    padding:8px 0;
    font-size:14px;
    transition:.3s;
}

.dropdown-menu-custom a:hover{
    color:#d4af37;
    padding-left:6px;
}

@media(max-width:991px){

    .dropdown-menu-custom{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        background:#151515;
        margin-top:15px;
        display:none;
    }

    .nav-item.dropdown:hover .dropdown-menu-custom{
        display:block;
    }

}


/* =========================
RESPONSIVE MOBILE + DESKTOP
========================= */

@media(max-width:1199px){

    .hero h1{
        font-size:64px !important;
    }

}

@media(max-width:991px){

    .navbar{
        padding:12px 0;
    }

    .navwrap{
        padding:0;
    }

    .brand-logo{
        height:48px;
    }

    .navbar-collapse{
        background:#111;
        margin-top:18px;
        padding:20px;
        border-radius:20px;
        border:1px solid rgba(255,255,255,.08);
    }

    .navbar .nav-link{
        margin-left:0 !important;
        padding:12px 0 !important;
        font-size:15px;
    }

    .dropdown-menu-custom{
        width:100%;
        min-width:100%;
        margin-top:12px;
        max-height:320px;
        overflow-y:auto;
        border-radius:14px;
    }

    .hero{
        min-height:auto;
    }

    .hero .swiper-slide{
        min-height:100vh;
        padding:120px 0 80px;
        align-items:center;
    }

    .hero-inner{
        max-width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:54px !important;
        line-height:1;
    }

    .hero p{
        font-size:15px;
        max-width:100%;
    }

    .hero-meta{
        justify-content:center;
    }

    .section{
        padding:80px 0;
    }

    .section-title{
        text-align:center;
        margin-bottom:35px;
    }

    .section-title h2{
        font-size:42px;
    }

    .collection-card,
    .product-card{
        border-radius:18px;
    }

    .collection-body,
    .product-body{
        padding:18px;
    }

    .finish-grid{
        grid-template-columns:1fr 1fr !important;
    }

    .finish-item{
        padding:24px 18px;
    }

    .why-box{
        padding:24px;
    }

    .cta{
        padding:80px 0;
    }

    .cta h2{
        font-size:48px;
    }

    footer{
        text-align:center;
    }

}

@media(max-width:767px){

    body{
        overflow-x:hidden;
    }

    .topbar{
        display:none;
    }

    .brand-logo{
        height:42px;
    }

    .hero .swiper-slide{
        padding:110px 0 70px;
        background-position:center center;
    }

    .hero h1{
        font-size:42px !important;
        margin-bottom:16px;
    }

    .hero p{
        font-size:14px;
        line-height:1.8;
    }

    .eyebrow{
        font-size:11px;
        padding:8px 14px;
    }

    .btn-gold,
    .btn-ghost{
        width:100%;
        justify-content:center;
        font-size:14px;
        padding:14px 18px;
    }

    .hero-meta{
        gap:10px;
    }

    .mini-chip{
        font-size:11px;
        padding:8px 12px;
    }

    .section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:14px;
    }

    .collection-thumb{
        aspect-ratio:1/1;
    }

    .collection-body h3,
    .product-body h3{
        font-size:18px;
    }

    .product-image{
        aspect-ratio:1/1;
    }

    .price-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .small-link{
        width:100%;
        text-align:center;
    }

    .finish-grid{
        grid-template-columns:1fr !important;
    }

    .finish-item{
        border-right:none !important;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .finish-item:first-child{
        border-top:none;
    }

    .why-box{
        text-align:center;
    }

    .why-box .icon{
        margin:auto auto 18px;
    }

    .cta h2{
        font-size:36px;
    }

    .cta p{
        font-size:14px;
    }

    .footer-logo{
        margin:auto auto 18px;
    }

    .floating-whatsapp{
        width:56px;
        height:56px;
        right:14px;
        bottom:14px;
    }

    .floating-whatsapp img{
        width:28px;
        height:28px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:36px !important;
    }

    .section-title h2{
        font-size:30px;
    }

    .cta h2{
        font-size:30px;
    }

}


/* =========================
MEGA MENU
========================= */

.mega-menu{
    width:850px;
    display:flex;
    gap:40px;
    padding:30px;
}

.mega-column{
    flex:1;
}

.main-title{
    color:#d4af37;
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,.08);
    letter-spacing:.05em;
}

.mega-column a{
    display:block;
    color:#fff;
    padding:9px 0;
    font-size:14px;
    transition:.3s;
}

.mega-column a:hover{
    color:#d4af37;
    padding-left:6px;
}

@media(max-width:991px){

    .mega-menu{
        width:100%;
        flex-direction:column;
        gap:25px;
        padding:20px;
    }

    .main-title{
        font-size:16px;
    }

}


/* =========================
ADVANCED MOBILE UI
========================= */

@media(max-width:991px){

    body{
        overflow-x:hidden;
    }

    .navbar{
        background:rgba(5,5,5,.96) !important;
        backdrop-filter:blur(18px);
    }

    .navwrap{
        padding:10px 0;
    }

    .navbar-toggler{
        width:46px;
        height:46px;
        border-radius:12px;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#d4af37 !important;
    }

    .navbar-collapse{
        background:linear-gradient(180deg,#111,#0a0a0a);
        padding:22px;
        margin-top:18px;
        border-radius:24px;
        border:1px solid rgba(255,255,255,.08);
        box-shadow:0 20px 60px rgba(0,0,0,.45);
        max-height:85vh;
        overflow-y:auto;
    }

    .navbar-nav{
        gap:8px;
    }

    .navbar .nav-link{
        padding:14px 18px !important;
        border-radius:14px;
        background:rgba(255,255,255,.03);
        border:1px solid rgba(255,255,255,.05);
        font-size:15px;
        font-weight:600;
    }

    .navbar .nav-link:hover{
        background:rgba(212,175,55,.08);
        border-color:rgba(212,175,55,.15);
    }

    .navbar .nav-link::after{
        display:none;
    }

    .nav-cta{
        width:100%;
        text-align:center;
        margin-top:10px;
        padding:14px 18px;
        border-radius:16px;
    }

    /* MEGA MENU MOBILE */

    .mega-menu{
        width:100% !important;
        flex-direction:column;
        gap:18px;
        background:#0d0d0d;
        border-radius:18px;
        padding:18px;
        margin-top:14px;
        border:1px solid rgba(255,255,255,.06);
    }

    .mega-column{
        background:#151515;
        border-radius:16px;
        padding:16px;
        border:1px solid rgba(255,255,255,.05);
    }

    .main-title{
        font-size:16px;
        margin-bottom:14px;
        color:#d4af37;
        padding-bottom:10px;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .mega-column a{
        padding:12px 14px;
        margin-bottom:8px;
        border-radius:12px;
        background:rgba(255,255,255,.03);
        font-size:14px;
        border:1px solid transparent;
    }

    .mega-column a:hover{
        background:rgba(212,175,55,.08);
        border-color:rgba(212,175,55,.12);
        padding-left:18px;
    }

    /* HERO MOBILE */

    .hero{
        min-height:auto;
    }

    .hero .swiper-slide{
        min-height:100vh;
        padding:130px 0 80px;
        background-position:center center !important;
    }

    .hero-inner{
        text-align:center;
        padding:0 10px;
    }

    .hero h1{
        font-size:44px !important;
        line-height:1.05;
        margin-bottom:18px;
    }

    .hero p{
        font-size:15px;
        line-height:1.9;
        margin-bottom:22px;
    }

    .eyebrow{
        font-size:11px;
        letter-spacing:.18em;
        padding:9px 16px;
    }

    .hero-meta{
        justify-content:center;
    }

    .mini-chip{
        font-size:11px;
        padding:9px 12px;
        border-radius:999px;
    }

    .btn-gold,
    .btn-ghost{
        width:100%;
        justify-content:center;
        border-radius:16px;
        font-size:14px;
        padding:15px 18px;
    }

    /* SECTION */

    .section{
        padding:70px 0;
    }

    .section-title{
        text-align:center;
        margin-bottom:30px;
    }

    .section-title h2{
        font-size:34px !important;
    }

    .section-title p{
        font-size:14px;
        line-height:1.8;
    }

    /* CARDS */

    .collection-card,
    .product-card,
    .why-box{
        border-radius:20px;
    }

    .collection-thumb{
        aspect-ratio:1/1;
    }

    .collection-body,
    .product-body{
        padding:18px;
    }

    .collection-body h3,
    .product-body h3{
        font-size:18px;
    }

    .product-image{
        aspect-ratio:1/1;
    }

    .price-row{
        flex-direction:column;
        align-items:flex-start;
        gap:14px;
    }

    .small-link{
        width:100%;
        text-align:center;
        padding:12px 18px;
        border-radius:14px;
    }

    /* FINISH */

    .finish-grid{
        grid-template-columns:1fr !important;
    }

    .finish-item{
        border-right:none !important;
        border-top:1px solid rgba(255,255,255,.08);
        padding:24px 18px;
    }

    .finish-item:first-child{
        border-top:none;
    }

    /* WHY */

    .why-box{
        text-align:center;
        padding:28px 20px;
    }

    .why-box .icon{
        margin:auto auto 16px;
    }

    /* CTA */

    .cta{
        padding:80px 0;
    }

    .cta h2{
        font-size:34px !important;
    }

    .cta p{
        font-size:14px;
        line-height:1.8;
    }

    /* FOOTER */

    footer{
        text-align:center;
    }

    .footer-logo{
        margin:auto auto 18px;
    }

    .footer-links a{
        font-size:14px;
    }

    .copyright{
        font-size:13px;
    }

    /* WHATSAPP */

    .floating-whatsapp{
        width:58px;
        height:58px;
        right:16px;
        bottom:16px;
    }

    .floating-whatsapp img{
        width:30px;
        height:30px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:36px !important;
    }

    .section-title h2{
        font-size:30px !important;
    }

    .cta h2{
        font-size:30px !important;
    }

    .navbar-collapse{
        padding:18px;
    }

}


/* PREMIUM DUMMY IMAGE EFFECTS */

.hero::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(212,175,55,.08);
    filter:blur(100px);
    right:5%;
    bottom:10%;
}

.collection-card img,
.about-image img{
    transition:.6s ease;
}

.collection-card:hover img,
.about-image:hover img{
    transform:scale(1.05);
}

.collection-card,
.counter-box,
.why-box{
    overflow:hidden;
}

.collection-card::before,
.counter-box::before,
.why-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(212,175,55,.05),transparent);
    opacity:0;
    transition:.4s;
}

.collection-card:hover::before,
.counter-box:hover::before,
.why-box:hover::before{
    opacity:1;
}

.collection-card,
.counter-box,
.why-box{
    position:relative;
}



/* EXTRA PRODUCT EFFECTS */

.collection-image{
    overflow:hidden;
}

.collection-image img{
    transition:0.7s ease;
}

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

.collection-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:rgba(0,0,0,.75);
    color:#d4af37;
    padding:10px 16px;
    border-radius:50px;
    font-size:12px;
    letter-spacing:.12em;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.08);
}

.collection-content{
    position:relative;
}

.collection-card{
    transition:.45s ease;
}

.collection-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

/* =========================
MOBILE RESPONSIVE NAVBAR
========================= */

@media (max-width: 991px) {

    .topbar{
        display:none;
    }

    .navbar{
        background:#0b0b0b !important;
        padding:12px 0;
    }

    .navwrap{
        padding:0;
    }

    .brand-logo{
        height:42px;
    }

    .navbar-toggler{
        border:none;
        background:#d4af37;
        width:46px;
        height:46px;
        border-radius:12px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .navbar-collapse{
        background:#111;
        margin-top:18px;
        padding:20px;
        border-radius:20px;
        border:1px solid rgba(255,255,255,.08);
        max-height:80vh;
        overflow-y:auto;
    }

    .navbar-nav{
        gap:8px;
    }

    .navbar .nav-link{
        margin-left:0 !important;
        padding:14px 16px !important;
        border-radius:14px;
        background:rgba(255,255,255,.03);
        border:1px solid rgba(255,255,255,.05);
        font-size:15px;
        font-weight:600;
    }

    .navbar .nav-link:hover{
        background:rgba(212,175,55,.08);
        border-color:rgba(212,175,55,.15);
    }

    .navbar .nav-link::after{
        display:none;
    }

    .nav-cta{
        width:100%;
        text-align:center;
        margin-top:10px;
        border-radius:14px;
    }

    /* Mega Menu Mobile */

    .dropdown-menu-custom{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        width:100%;
        min-width:100%;
        margin-top:12px;
        display:none;
        background:#151515;
        border-radius:18px;
        border:1px solid rgba(255,255,255,.08);
    }

    .nav-item.dropdown:hover .dropdown-menu-custom{
        display:block;
    }

    .mega-menu{
        width:100%;
        flex-direction:column;
        gap:20px;
        padding:18px;
    }

    .mega-column{
        width:100%;
        background:#1a1a1a;
        padding:15px;
        border-radius:14px;
    }

    .main-title{
        font-size:16px;
        margin-bottom:12px;
        color:#d4af37;
    }

    .mega-column a{
        display:block;
        padding:10px 12px;
        margin-bottom:6px;
        border-radius:10px;
        background:rgba(255,255,255,.03);
    }

    .mega-column a:hover{
        background:rgba(212,175,55,.08);
    }

}

/* Extra Small Devices */

@media (max-width: 576px){

    .brand-logo{
        height:38px;
    }

    .navbar-collapse{
        padding:16px;
    }

    .navbar .nav-link{
        font-size:14px;
        padding:12px 14px !important;
    }

    .nav-cta{
        padding:14px;
        font-size:14px;
    }

}




/* ===================================
ABOUT HERO SECTION
=================================== */

.about-hero-section{
    padding:180px 0 120px;
    background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.75)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.about-hero-title{
    font-size:84px;
    color:#fff;
    margin-bottom:20px;
    font-family:'Cormorant Garamond',serif;
}

.about-hero-description{
    color:#ddd;
    max-width:850px;
    margin:auto;
    line-height:1.9;
}

/* ===================================
ABOUT COMPANY SECTION
=================================== */

.about-company-section{
    padding:110px 0;
}

.about-company-image{
    position:relative;
}

.about-company-image::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(212,175,55,.12);
    filter:blur(90px);
    top:-40px;
    left:-40px;
}

.about-company-image img{
    width:100%;
    border-radius:24px;
    position:relative;
    z-index:2;
    box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.about-company-subtitle{
    color:#d4af37;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.about-company-title{
    font-size:62px;
    color:#fff;
    margin:20px 0;
    font-family:'Cormorant Garamond',serif;
}

.about-company-text{
    color:#cfcfcf;
    line-height:1.9;
}

/* ===================================
VISION & MISSION SECTION
=================================== */

.about-vision-section{
    padding:110px 0;
}

.about-vision-card{
    background:linear-gradient(180deg,#181818,#101010);
    border-radius:24px;
    padding:40px 32px;
    border:1px solid rgba(255,255,255,.06);
    height:100%;
    transition:.4s;
}

.about-vision-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.18);
}

.about-vision-title{
    color:#d4af37;
    font-size:30px;
    margin-bottom:16px;
    font-family:'Cormorant Garamond',serif;
}

.about-vision-text{
    color:#cfcfcf;
    line-height:1.9;
}

/* ===================================
ABOUT CTA SECTION
=================================== */

.about-cta-section{
    padding:110px 0;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.85),rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.about-cta-title{
    font-size:64px;
    color:#fff;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
}

.about-cta-text{
    color:#ddd;
    max-width:700px;
    margin:auto auto 28px;
    line-height:1.9;
}

.about-cta-button{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:14px 32px;
    border-radius:50px;
    font-weight:700;
}





/* ===================================
COLLECTIONS HERO SECTION
=================================== */

.collections-hero-section{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.76)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    text-align:center;
    position:relative;
}

.collections-hero-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(212,175,55,.08);
    filter:blur(120px);
    top:10%;
    left:10%;
}

.collections-hero-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    right:5%;
    bottom:10%;
    background:rgba(212,175,55,.06);
    filter:blur(100px);
}

.collections-hero-content{
    position:relative;
    z-index:2;
}

.collections-hero-title{
    font-size:96px;
    font-family:'Cormorant Garamond',serif;
    line-height:1;
    margin-bottom:20px;
}

.collections-hero-title span{
    color:#d4af37;
}

.collections-hero-description{
    max-width:820px;
    margin:auto;
    color:#ddd;
    line-height:1.9;
    font-size:17px;
}

.collections-hero-button{
    display:inline-block;
    margin-top:35px;
    background:#d4af37;
    color:#000;
    padding:15px 36px;
    border-radius:60px;
    font-weight:700;
    transition:.4s;
}

.collections-hero-button:hover{
    background:#fff;
    color:#000;
    transform:translateY(-4px);
}

/* ===================================
COLLECTIONS FEATURE STRIP
=================================== */

.collections-feature-strip{
    background:#101010;
    border-top:1px solid rgba(255,255,255,.06);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.collections-feature-box{
    text-align:center;
    padding:40px 20px;
    transition:.4s;
}

.collections-feature-box:hover{
    transform:translateY(-6px);
}

.collections-feature-box h4{
    color:#d4af37;
    margin-bottom:12px;
    font-size:22px;
}

.collections-feature-box p{
    color:#bbb;
    margin:0;
}

/* ===================================
COLLECTIONS SERIES SECTION
=================================== */

.collections-series-section{
    padding:120px 0;
}

.collections-section-title{
    text-align:center;
    margin-bottom:70px;
}

.collections-section-title h2{
    font-size:64px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:15px;
}

.collections-section-title p{
    color:#bcbcbc;
    max-width:720px;
    margin:auto;
    line-height:1.9;
}

.collections-series-card{
    background:linear-gradient(180deg,#191919,#101010);
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.06);
    transition:.45s ease;
    height:100%;
    position:relative;
}

.collections-series-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(212,175,55,.08),transparent);
    opacity:0;
    transition:.4s;
}

.collections-series-card:hover::before{
    opacity:1;
}

.collections-series-card:hover{
    transform:translateY(-12px);
    border-color:rgba(212,175,55,.3);
    box-shadow:0 25px 60px rgba(0,0,0,.4);
}

.collections-series-image{
    position:relative;
    overflow:hidden;
    z-index:2;
}

.collections-series-image img{
    height:360px;
    width:100%;
    object-fit:cover;
    transition:.7s;
}

.collections-series-card:hover .collections-series-image img{
    transform:scale(1.08);
}

.collections-series-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:rgba(0,0,0,.7);
    backdrop-filter:blur(10px);
    color:#d4af37;
    padding:10px 18px;
    border-radius:40px;
    font-size:13px;
    letter-spacing:.12em;
    border:1px solid rgba(255,255,255,.08);
}

.collections-series-content{
    padding:34px 30px;
    position:relative;
    z-index:2;
}

.collections-series-content h3{
    font-size:42px;
    margin-bottom:18px;
    font-family:'Cormorant Garamond',serif;
    color:#d4af37;
}

.collections-series-content p{
    color:#bdbdbd;
    line-height:1.8;
    margin-bottom:24px;
}

.collections-series-list{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.collections-series-list span{
    background:#202020;
    border:1px solid rgba(255,255,255,.06);
    padding:10px 16px;
    border-radius:50px;
    font-size:13px;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.collections-series-list span:hover{
    background:#d4af37;
    color:#000;
}

/* ===================================
COLLECTIONS CTA SECTION
=================================== */

.collections-cta-section{
    padding:120px 0;
    text-align:center;
    background:
    linear-gradient(rgba(0,0,0,.88),rgba(0,0,0,.88)),
    url('https://images.unsplash.com/photo-1494526585095-c41746248156?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.collections-cta-title{
    font-size:72px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:20px;
}

.collections-cta-text{
    color:#ddd;
    max-width:720px;
    margin:auto auto 30px;
    line-height:1.9;
}

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

@media(max-width:991px){

    .collections-hero-section{
        min-height:auto;
        padding:160px 0 100px;
    }

    .collections-hero-title{
        font-size:62px;
    }

    .collections-series-section{
        padding:80px 0;
    }

    .collections-section-title h2{
        font-size:46px;
    }

    .collections-cta-title{
        font-size:46px;
    }

}

@media(max-width:576px){

    .collections-hero-section{
        padding:140px 0 80px;
    }

    .collections-hero-title{
        font-size:42px;
    }

    .collections-hero-description{
        font-size:14px;
    }

    .collections-section-title h2{
        font-size:36px;
    }

    .collections-series-content{
        padding:24px 20px;
    }

    .collections-series-content h3{
        font-size:34px;
    }

    .collections-cta-title{
        font-size:38px;
    }

}
