
 
 /* =========================================
   GLOBAL RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    overflow-x:hidden;
    background:var(--cream);
}
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #0a0a0a;
      --gold: #D4AF37;
      --gold-light: #E0B96B;
      --cream: #fbf9f4;
      --white: #ffffff;
      --gray: #7a7a7a;
      --light-gray: #f4f0e6;
      --text: #1a1a1a;
      --font-heading: "Great Vibes", cursive;
      --font-body: "Times New Roman", Times, serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* Background Logo Class */
    .bg-japara {
      position: relative;
    }
    .bg-japara::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 60%;
      height: 60%;
      transform: translate(-50%, -50%);
      background-image: url('../images/logo-japara.png');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.05;
      z-index: 0;
      pointer-events: none;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; width: 100%; z-index: 100;
      background: rgba(10, 22, 40, 0.97);
      backdrop-filter: blur(12px);
      padding: 0 5%;
      display: flex; align-items: center; justify-content: space-between;
      height: 70px;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav-logo {
      font-family: var(--font-heading);
      font-size: 1.5rem; font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      font-size: 0.8rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 0.5rem 1.4rem;
      border-radius: 2px;
      font-weight: 500;
    }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 120px 8% 80px;
      position: relative; z-index: 2;
    }
    .hero-tag {
      font-size: 0.7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .hero-tag::before {
      content: '';
      display: block; width: 30px; height: 1px;
      background: var(--gold);
    }
    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 1.5rem;
    }
    .hero h1 span { color: var(--gold); display: block; }
    .hero-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      max-width: 440px;
      margin-bottom: 2.5rem;
    }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem 2rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: none; cursor: pointer;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-outline {
      background: transparent;
      color: rgba(255,255,255,0.7);
      padding: 0.85rem 2rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.3s, color 0.3s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

    .hero-right {
      position: relative; z-index: 2;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-visual {
      width: 380px; height: 480px;
      border: 1px solid rgba(201,168,76,0.25);
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-visual::before {
      content: '';
      position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px;
      border: 1px solid rgba(201,168,76,0.1);
    }
    .hero-visual-inner {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(10,22,40,0.5) 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1rem; padding: 2rem;
      text-align: center;
    }
    .hero-icon {
      font-size: 4rem; color: var(--gold); opacity: 0.6;
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hero-visual-text {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: rgba(255,255,255,0.4);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .hero-stats {
      display: flex; gap: 0; margin-top: 3rem;
    }
    .stat {
      padding: 1rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat:last-child { border-right: none; }
    .stat-number {
      font-family: var(--font-heading);
      font-size: 2rem; font-weight: 700;
      color: var(--gold);
    }
    .stat-label {
      font-size: 0.7rem; letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 0.2rem;
    }

    /* MARQUEE */
    .marquee-wrap {
      background: var(--gold);
      padding: 0.85rem 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-track {
      display: inline-flex;
      animation: marquee 22s linear infinite;
      gap: 0;
    }
    .marquee-item {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--navy);
      font-weight: 500;
      padding: 0 2.5rem;
    }
    .marquee-dot {
      color: var(--navy);
      opacity: 0.4;
      font-size: 0.5rem;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ABOUT */
    .about {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0; background: var(--cream);
    }
    .about-left {
      padding: 8rem 8% 8rem 10%;
      background: var(--white);
    }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      display: flex; align-items: center; gap: 0.8rem;
    }
    .section-tag::before {
      content: ''; display: block; width: 30px; height: 1px;
      background: var(--gold);
    }
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      color: var(--navy);
    }
    .section-body {
      font-size: 0.95rem;
      color: var(--gray);
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .about-right {
      background: var(--navy);
      padding: 8rem 8%;
      display: flex; flex-direction: column; justify-content: center;
    }
    .value-list { margin-top: 1rem; }
    .value-item {
      display: flex; gap: 1.2rem; align-items: flex-start;
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      animation: fadeUp 0.5s ease both;
    }
    .value-num {
      font-family: var(--font-heading);
      font-size: 2rem; font-weight: 700;
      color: var(--gold);
      opacity: 0.4;
      min-width: 50px;
    }
    .value-content h4 {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 0.5px;
      margin-bottom: 0.4rem;
    }
    .value-content p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
    }

    /* PRODUCTS */
    .products {
      padding: 7rem 8%;
      background: var(--cream);
    }
    .products-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--light-gray);
    }
    .product-card {
      background: var(--white);
      padding: 3rem 2.5rem;
      transition: background 0.3s, transform 0.3s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .product-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .product-card:hover::after { transform: scaleX(1); }
    .product-card:hover { background: var(--navy); transform: translateY(-4px); }
    .product-card:hover .product-icon { color: var(--gold); }
    .product-card:hover .product-title { color: var(--white); }
    .product-card:hover .product-desc { color: rgba(255,255,255,0.45); }
    .product-icon {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      color: var(--navy);
      transition: color 0.3s;
    }
    .product-title {
      font-family: var(--font-heading);
      font-size: 1.4rem; font-weight: 600;
      color: var(--navy);
      margin-bottom: 0.8rem;
      transition: color 0.3s;
    }
    .product-desc {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.75;
      transition: color 0.3s;
    }
    
    /* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-products{
    padding:7rem 8%;
    background:var(--white);
}

.featured-subtitle{
    color:var(--gray);
    margin-top:12px;
}

.featured-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.featured-card{
    position:relative;

    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    overflow:hidden;

    transition:0.4s ease;
}

.featured-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.featured-badge{
    position:absolute;
    top:18px;
    left:18px;

    background:var(--gold);

    color:var(--navy);

    font-size:11px;
    letter-spacing:1px;

    padding:6px 12px;

    z-index:2;
}

.featured-image{
    height:340px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.4),
        rgba(201,168,76,0.05)
    );
}

.featured-image img{
    max-height:260px;

    transition:0.4s ease;
}

.featured-card:hover .featured-image img{
    transform:scale(1.05);
}

.featured-content{
    padding:30px;
}

.featured-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:30px;

    margin-bottom:10px;

    color:var(--navy);
}

.featured-notes{
    color:var(--gray);

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:18px;
}

.featured-price{
    font-size:24px;
    font-weight:600;

    color:var(--gold);

    margin-bottom:22px;
}

.featured-actions{
    display:flex;
    align-items:center;

    gap:12px;
}

.cart-btn{
    flex:1;

    background:var(--navy);
    color:var(--white);

    text-align:center;

    padding:14px 20px;

    text-decoration:none;

    transition:0.3s ease;
}

.cart-btn:hover{
    background:var(--gold);
    color:var(--navy);
}

.wishlist-btn{
    width:50px;
    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(10,22,40,0.1);

    text-decoration:none;

    color:var(--navy);

    transition:0.3s ease;
}

.wishlist-btn:hover{
    background:var(--gold);
}
/* =========================================
   FEATURED CATEGORIES
========================================= */

.featured-categories{
    padding:7rem 8%;

    background:var(--cream);
}

.category-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.category-card{
    position:relative;

    height:420px;

    overflow:hidden;

    text-decoration:none;

    background:var(--navy);
}

.category-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

.category-card:hover img{
    transform:scale(1.08);
}

.category-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(10,22,40,0.9),
        rgba(10,22,40,0.15)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:35px;
}

.category-overlay h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    color:var(--white);

    margin-bottom:10px;
}

.category-overlay span{
    color:var(--gold);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;
}

/* =========================================
   BEST SELLERS
========================================= */

.best-sellers{
    padding:7rem 8%;

    background:var(--white);
}

.best-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.best-card{
    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;

    overflow:hidden;
}

.best-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.best-image{
    height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),
        rgba(201,168,76,0.05)
    );

    padding:35px;
}

.best-image img{
    max-height:240px;

    transition:0.4s ease;
}

.best-card:hover .best-image img{
    transform:scale(1.05);
}

.best-content{
    padding:28px;
}

.best-rating{
    color:var(--gold);

    margin-bottom:12px;

    letter-spacing:2px;
}

.best-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:30px;

    color:var(--navy);

    margin-bottom:12px;
}

.best-content p{
    color:var(--gray);

    line-height:1.8;

    margin-bottom:24px;
}

.best-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.best-price{
    color:var(--gold);

    font-size:24px;
    font-weight:600;
}

.best-btn{
    background:var(--navy);
    color:var(--white);

    text-decoration:none;

    padding:12px 18px;

    transition:0.3s ease;
}

.best-btn:hover{
    background:var(--gold);
    color:var(--navy);
}

/* =========================================
   WHY CHOOSE US
========================================= */

.why-choose{
    padding:7rem 8%;

    background:var(--cream);
}

.why-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.why-card{
    background:var(--white);

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;
}

.why-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.why-icon{
    width:75px;
    height:75px;

    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(201,168,76,0.08);

    color:var(--gold);

    font-size:28px;
}

.why-card h3{
    font-family:'Cormorant Garamond', serif;

    font-size:28px;

    color:var(--navy);

    margin-bottom:16px;
}

.why-card p{
    color:var(--gray);

    line-height:1.8;
}

/* =========================================
   NEW ARRIVALS
========================================= */

.new-arrivals{
    padding:7rem 8%;

    background:var(--white);
}

.arrival-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.arrival-card{
    position:relative;

    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    overflow:hidden;

    transition:0.4s ease;
}

.arrival-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.arrival-tag{
    position:absolute;
    top:18px;
    left:18px;

    background:var(--navy);

    color:var(--white);

    font-size:11px;

    letter-spacing:2px;

    padding:7px 14px;

    z-index:2;
}

.arrival-image{
    height:320px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:35px;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0.35),
        rgba(201,168,76,0.05)
    );
}

.arrival-image img{
    max-height:240px;

    transition:0.4s ease;
}

.arrival-card:hover .arrival-image img{
    transform:scale(1.05);
}

.arrival-content{
    padding:28px;
}

.arrival-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:30px;

    color:var(--navy);

    margin-bottom:12px;
}

.arrival-content p{
    color:var(--gray);

    line-height:1.8;

    margin-bottom:24px;
}

.arrival-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.arrival-price{
    color:var(--gold);

    font-size:24px;
    font-weight:600;
}

.arrival-btn{
    background:var(--gold);

    color:var(--navy);

    text-decoration:none;

    padding:12px 18px;

    transition:0.3s ease;
}

.arrival-btn:hover{
    background:var(--navy);
    color:var(--white);
}

/* =========================================
   NEWSLETTER SECTION
========================================= */

.newsletter-section{
    padding:7rem 8%;

    background:var(--cream);
}

.newsletter-box{
    background:var(--navy);

    padding:70px;

    display:grid;
    grid-template-columns:1.2fr 1fr;

    gap:50px;

    align-items:center;

    border:1px solid rgba(201,168,76,0.15);
}

.newsletter-content h2{
    font-family:'Cormorant Garamond', serif;

    font-size:52px;

    color:var(--white);

    margin-bottom:20px;

    line-height:1.1;
}

.newsletter-content p{
    color:rgba(255,255,255,0.65);

    line-height:1.9;

    max-width:600px;
}

.newsletter-form{
    display:flex;

    gap:15px;
}

.newsletter-form input{
    flex:1;

    height:58px;

    border:none;

    padding:0 20px;

    background:rgba(255,255,255,0.08);

    color:var(--white);

    outline:none;
}

.newsletter-form input::placeholder{
    color:rgba(255,255,255,0.45);
}

.newsletter-form button{
    height:58px;

    padding:0 30px;

    border:none;

    background:var(--gold);

    color:var(--navy);

    cursor:pointer;

    transition:0.3s ease;
}

.newsletter-form button:hover{
    background:var(--white);
}

/* =========================================
   INSTAGRAM SECTION
========================================= */

.instagram-section{
    padding:7rem 8%;

    background:var(--white);
}

.instagram-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;
}

.insta-card{
    position:relative;

    height:320px;

    overflow:hidden;

    display:block;
}

.insta-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

.insta-card:hover img{
    transform:scale(1.08);
}

.insta-overlay{
    position:absolute;
    inset:0;

    background:rgba(10,22,40,0.45);

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:0.4s ease;
}

.insta-card:hover .insta-overlay{
    opacity:1;
}

.insta-overlay span{
    color:var(--white);

    border:1px solid rgba(255,255,255,0.4);

    padding:12px 24px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;
}

/* =========================================
   SHOP BY OCCASION
========================================= */

.occasion-section{
    padding:7rem 8%;

    background:var(--cream);
}

.occasion-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.occasion-card{
    position:relative;

    height:420px;

    overflow:hidden;

    display:block;

    text-decoration:none;

    background:var(--navy);
}

.occasion-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

.occasion-card:hover img{
    transform:scale(1.08);
}

.occasion-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(10,22,40,0.92),
        rgba(10,22,40,0.1)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:35px;
}

.occasion-overlay h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    color:var(--white);

    margin-bottom:10px;
}

.occasion-overlay span{
    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;
}

/* =========================================
   LIMITED EDITION SECTION
========================================= */
/* =========================================
   LIMITED EDITION SECTION
========================================= */

.limited-section{
    position:relative;

    min-height:700px;

    display:flex;
    align-items:center;

    padding:100px 8%;

    overflow:hidden;

    background:
    linear-gradient(
        to right,
        rgba(3,10,24,0.96) 0%,
        rgba(3,10,24,0.90) 35%,
        rgba(3,10,24,0.45) 60%,
        rgba(3,10,24,0.15) 100%
    ),
    url('../images/limited-bg.jpg');

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
}

.limited-content{
    position:relative;

    z-index:2;

    max-width:620px;
}

.limited-content h2{
    font-family:'Cormorant Garamond', serif;

    font-size:88px;

    line-height:0.95;

    color:var(--white);

    margin-bottom:30px;
}

.limited-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;

    font-size:17px;

    margin-bottom:40px;

    max-width:560px;
}

    /* CTA BANNER */
    .cta-banner {
      background: var(--navy);
      padding: 6rem 8%;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 3rem;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }
    .cta-banner h2 span { color: var(--gold); }
    .cta-sub {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.45);
      margin-top: 0.8rem;
    }

    /* TESTIMONIALS */
    .testimonials {
      padding: 7rem 8%;
      background: var(--white);
    }
    .testimonials-header { text-align: center; margin-bottom: 4rem; }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .testimonial-card {
      padding: 2.5rem;
      border: 1px solid var(--light-gray);
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      font-family: var(--font-heading);
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.2;
      position: absolute; top: 0.5rem; left: 1.5rem;
      line-height: 1;
    }
    .testimonial-text {
      font-size: 0.9rem;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      padding-top: 1.5rem;
    }
    .testimonial-author {
      display: flex; align-items: center; gap: 0.8rem;
    }
    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-heading);
      font-weight: 700; font-size: 1rem;
      color: var(--gold);
    }
    .author-name {
      font-size: 0.85rem; font-weight: 500;
      color: var(--navy);
    }
    .author-role {
      font-size: 0.75rem; color: var(--gray);
    }
    .stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.2rem; }

    /* CONTACT */
    .contact {
      padding: 7rem 8%;
      background: var(--cream);
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 6rem; align-items: center;
    }
    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.7rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gray);
      font-weight: 500;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      background: var(--white);
      border: 1px solid var(--light-gray);
      padding: 0.85rem 1rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      outline: none;
      transition: border-color 0.3s;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--gold);
    }
    .form-group textarea { resize: vertical; min-height: 130px; }
    .contact-info h3 {
      font-family: var(--font-heading);
      font-size: 2rem; font-weight: 700;
      color: var(--navy); margin-bottom: 0.8rem;
    }
    .contact-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--light-gray);
    }
    .contact-icon { font-size: 1.1rem; color: var(--gold); min-width: 24px; }
    .contact-detail span {
      display: block; font-size: 0.75rem;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--gray);
    }
    .contact-detail p { font-size: 0.9rem; color: var(--navy); margin-top: 0.2rem; }

    /* FOOTER */
    footer {
      background: var(--navy);
      padding: 4rem 8% 2rem;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .footer-brand {
      font-family: var(--font-heading);
      font-size: 1.5rem; font-weight: 700;
      color: var(--gold);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 1rem;
      display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    }
    .footer-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.35);
      line-height: 1.8;
    }
    .footer-col h5 {
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 2rem;
    }
    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.25);
    }
    .footer-socials { display: flex; gap: 1rem; }
    .footer-socials a {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-size: 0.8rem;
      transition: border-color 0.3s, color 0.3s;
    }
    .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero { grid-template-columns: 1fr; }
      .hero-right { display: none; }
      .about, .contact { grid-template-columns: 1fr; }
      .products-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .cta-banner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }
    /* =========================================
   
   /* =========================================
   BRAND STORY
========================================= */

.brand-story{
    padding:7rem 8%;

    background:var(--white);

    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.brand-story-left{
    overflow:hidden;
}

.brand-story-left img{
    width:100%;

    height:450px;

    object-fit:cover;

    transition:0.5s ease;
}

.brand-story-left:hover img{
    transform:scale(1.04);
}

.brand-story-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:24px;
}

.brand-points{
    margin:35px 0;
}

.brand-point{
    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:18px;

    color:var(--navy);

    font-weight:500;
}

.brand-point span{
    color:var(--gold);

    font-size:18px;
}
   
   
   /* =========================================
   TESTIMONIALS
========================================= */

.testimonials{
    padding:7rem 8%;

    background:var(--cream);
}

.testimonial-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.testimonial-card{
    background:var(--white);

    padding:40px 35px;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.testimonial-stars{
    color:var(--gold);

    letter-spacing:3px;

    margin-bottom:22px;

    font-size:18px;
}

.testimonial-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:35px;

    font-style:italic;
}

.testimonial-user{
    display:flex;
    align-items:center;

    gap:15px;
}

.testimonial-user img{
    width:60px;
    height:60px;

    border-radius:50%;

    object-fit:cover;
}

.testimonial-user h4{
    color:var(--navy);

    margin-bottom:6px;
}

.testimonial-user span{
    color:var(--gray);

    font-size:14px;
}
/* =========================================
   MOBILE NAVBAR
========================================= */

@media (max-width: 992px) {

    .nav-links {
        display: none;
    }

}

@media (max-width: 768px) {

    nav {
        height: 72px;
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .nav-account {
        display: none;
    }

}
/* =========================================
   HERO LOGO CONTENT
========================================= */

.hero-visual-inner{
    position:relative;

    height:100%;
    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding-top:10px;
    overflow:hidden;
}
.hero-logo{
    height:250px;
    width:auto;

    object-fit:contain;

    filter:brightness(0) invert(1);

    animation:float 4s ease-in-out infinite;

    margin-bottom:10px;
}

.hero-brand{
    font-family:'Cormorant Garamond', serif;
    font-size:32px;
    font-weight:600;
    letter-spacing:3px;

    color:var(--white);

    margin-bottom:12px;
}

.hero-collection{
    font-size:14px;
    letter-spacing:4px;
    text-transform:uppercase;

    color:rgba(255,255,255,0.55);

    margin-bottom:20px;
}

.hero-line{
    width:60px;
    height:1px;

    background:rgba(201,168,76,0.35);

    margin-bottom:20px;
}

.hero-domain{
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;

    color:rgba(255,255,255,0.25);
}

/* =========================================
   TRUST BAR
========================================= */

.trust-bar{
    padding:35px 8%;

    background:var(--navy);

    border-top:1px solid rgba(201,168,76,0.1);
    border-bottom:1px solid rgba(201,168,76,0.1);
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.trust-item{
    display:flex;
    align-items:center;

    gap:18px;
}

.trust-icon{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(201,168,76,0.08);

    color:var(--gold);

    font-size:24px;
}

.trust-item h4{
    color:var(--white);

    margin-bottom:6px;

    font-size:18px;
}

.trust-item p{
    color:rgba(255,255,255,0.55);

    font-size:14px;
}
/* =========================================
   ACHIEVEMENT SECTION
========================================= */

.achievement-section{
    padding:70px 8%;

    background:var(--cream);
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.achievement-item{
    text-align:center;

    padding:35px 20px;

    background:var(--white);

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;
}

.achievement-item:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.achievement-item h2{
    font-family:'Cormorant Garamond', serif;

    font-size:62px;

    color:var(--gold);

    margin-bottom:12px;
}

.achievement-item p{
    color:var(--navy);

    letter-spacing:1px;

    text-transform:uppercase;

    font-size:13px;
}

/* =========================================
   PARALLAX EXPERIENCE
========================================= */

.parallax-section{
    position:relative;

    height:700px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/parallax-bg.jpg')
    center/cover fixed no-repeat;
}

.parallax-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,10,24,0.72);
}

.parallax-content{
    position:relative;

    z-index:2;

    max-width:760px;

    padding:0 20px;
}

.parallax-content h2{
    font-family:'Cormorant Garamond', serif;

    font-size:82px;

    line-height:1;

    color:var(--white);

    margin-bottom:25px;
}

.parallax-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;

    font-size:17px;

    margin-bottom:35px;
}

/* =========================================
   BRAND VIDEO SECTION
========================================= */

.brand-video-section{
    padding:7rem 8%;

    background:var(--white);
}

.video-content{
    text-align:center;

    margin-bottom:4rem;
}

.video-wrapper{
    position:relative;

    overflow:hidden;

    height:700px;

    border:1px solid rgba(201,168,76,0.12);
}

.video-wrapper video{
    width:100%;
    height:100%;

    object-fit:cover;
}

.video-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(3,10,24,0.35),
        rgba(3,10,24,0.05)
    );
}

/* =========================================
   TRUSTED SECTION
========================================= */

.trusted-section{
    padding:5rem 8%;

    background:var(--cream);

    text-align:center;
}

.trusted-title{
    margin-bottom:50px;
}

.trusted-title span{
    color:var(--gray);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:13px;
}

.trusted-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);

    gap:25px;
}

.trusted-item{
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--white);

    border:1px solid rgba(201,168,76,0.12);

    font-family:'Cormorant Garamond', serif;

    font-size:28px;

    color:var(--navy);

    transition:0.4s ease;
}

.trusted-item:hover{
    transform:translateY(-6px);

    border-color:rgba(201,168,76,0.35);

    color:var(--gold);
}

/* =========================================
   PAGE HERO
========================================= */

.page-hero{
    padding:180px 8% 120px;

    background:var(--navy);

    text-align:center;
}

.page-hero-content{
    max-width:850px;

    margin:auto;
}

.page-hero h1{
    font-family:'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 82px);
    color:var(--white);

    margin-bottom:25px;
}

.page-hero p{
    color:rgba(255,255,255,0.68);

    line-height:2;

    font-size:17px;
}

/* =========================================
   FAQ PAGE
========================================= */

.faq-page-section{
    padding:7rem 8%;

    background:var(--white);
}

.faq-wrapper{
    max-width:950px;

    margin:auto;
}

.faq-item{
    border-bottom:1px solid rgba(201,168,76,0.12);
}

.faq-question{
    width:100%;

    background:none;
    border:none;

    padding:30px 0;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    text-align:left;

    font-family:'Cormorant Garamond', serif;

    font-size:28px;

    color:var(--navy);
}

.faq-question span{
    color:var(--gold);

    font-size:30px;
}

.faq-answer{
    display:none;

    padding-bottom:28px;
}

.faq-answer p{
    color:var(--gray);

    line-height:2;
}

/* =========================================
   POLICY PAGE
========================================= */

.policy-section{
    padding:7rem 8%;

    background:var(--white);
}

.policy-wrapper{
    max-width:950px;

    margin:auto;
}

.policy-block{
    margin-bottom:55px;
}

.policy-block h2{
    font-family:'Cormorant Garamond', serif;

    font-size:42px;

    color:var(--navy);

    margin-bottom:18px;
}

.policy-block p{
    color:var(--gray);

    line-height:2;

    font-size:16px;
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{
    padding:7rem 8%;

    background:var(--white);
}

.contact-page-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;

    gap:60px;
}

.contact-info-box{
    background:var(--cream);

    padding:50px 40px;

    border:1px solid rgba(201,168,76,0.12);
}

.contact-info-item{
    display:flex;

    gap:18px;

    margin-bottom:40px;
}

.contact-info-item span{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(201,168,76,0.08);

    font-size:24px;
}

.contact-info-item h3{
    font-family:'Cormorant Garamond', serif;

    font-size:30px;

    color:var(--navy);

    margin-bottom:10px;
}

.contact-info-item p{
    color:var(--gray);

    line-height:1.8;
}

.contact-form-box{
    background:var(--cream);

    padding:50px;

    border:1px solid rgba(201,168,76,0.12);
}

.contact-page-form .form-group{
    margin-bottom:25px;
}

.contact-page-form label{
    display:block;

    margin-bottom:12px;

    color:var(--navy);

    font-weight:500;
}

.contact-page-form input,
.contact-page-form textarea{
    width:100%;

    border:none;

    background:var(--white);

    padding:18px 20px;

    outline:none;

    color:var(--navy);

    border:1px solid rgba(201,168,76,0.08);
}

.contact-page-form textarea{
    height:180px;

    resize:none;
}

/* =========================================
   ABOUT PAGE
========================================= */

.about-page-section{
    padding:7rem 8%;

    background:var(--white);
}

.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-page-image{
    overflow:hidden;
}

.about-page-image img{
    width:100%;

    height:750px;

    object-fit:cover;

    transition:0.5s ease;
}

.about-page-image:hover img{
    transform:scale(1.04);
}

.about-page-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:24px;
}

.about-highlights{
    margin-top:35px;
}

.about-highlight{
    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:18px;

    color:var(--navy);

    font-weight:500;
}

.about-highlight span{
    color:var(--gold);

    font-size:18px;
}

/* =========================================
   ABOUT VALUES
========================================= */

.about-values{
    padding:7rem 8%;

    background:var(--cream);
}

.about-values-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.about-value-card{
    background:var(--white);

    padding:45px 35px;

    text-align:center;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;
}

.about-value-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.about-value-icon{
    width:75px;
    height:75px;

    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(201,168,76,0.08);

    color:var(--gold);

    font-size:28px;
}

.about-value-card h3{
    font-family:'Cormorant Garamond', serif;

    font-size:32px;

    color:var(--navy);

    margin-bottom:18px;
}

.about-value-card p{
    color:var(--gray);

    line-height:1.9;
}

/* =========================================
   ABOUT ACHIEVEMENTS
========================================= */

.about-achievements{
    padding:7rem 8%;

    background:var(--white);
}

/* =========================================
   OUR STORY PAGE
========================================= */

.story-section{
    padding:7rem 8%;

    background:var(--white);
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.story-image{
    overflow:hidden;
}

.story-image img{
    width:100%;

    height:700px;

    object-fit:cover;

    transition:0.5s ease;
}

.story-image:hover img{
    transform:scale(1.04);
}

.story-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:24px;
}

/* =========================================
   STORY TIMELINE
========================================= */

.story-timeline{
    padding:7rem 8%;

    background:var(--cream);
}

.timeline-wrapper{
    max-width:900px;

    margin:4rem auto 0;
}

.timeline-item{
    display:grid;
    grid-template-columns:180px 1fr;

    gap:40px;

    margin-bottom:50px;
}

.timeline-year{
    font-family:'Cormorant Garamond', serif;

    font-size:52px;

    color:var(--gold);
}

.timeline-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    color:var(--navy);

    margin-bottom:14px;
}

.timeline-content p{
    color:var(--gray);

    line-height:2;
}

/* =========================================
   STORY QUOTE
========================================= */

.story-quote{
    padding:140px 8%;

    background:var(--navy);

    text-align:center;
}

.story-quote-content{
    max-width:900px;

    margin:auto;
}

.story-quote h2{
    font-family:'Cormorant Garamond', serif;

    font-size:64px;

    line-height:1.3;

    color:var(--white);
}

.story-image img{
    width:100%;

    max-height:450px;

    object-fit:contain;

    transition:0.5s ease;
}


/* =========================================
   CAREER PAGE
========================================= */

.career-section{
    padding:7rem 8%;

    background:var(--white);
}

.career-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.career-card{
    background:var(--cream);

    padding:40px 35px;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;

    display:flex;
    flex-direction:column;

    height:100%;
}

.career-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.career-top{
    margin-bottom:20px;
}

.career-type{
    display:inline-block;

    padding:8px 16px;

    background:rgba(201,168,76,0.1);

    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;
}

.career-top h3{
    font-family:'Cormorant Garamond', serif;

    font-size:36px;

    color:var(--navy);
}

.career-location{
    color:var(--gold);

    margin-bottom:20px;
}

.career-description{
    color:var(--gray);

    line-height:2;

    margin-bottom:25px;
}

.career-skills{
    display:flex;
    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;
}

.career-skills span{
    padding:10px 16px;

    background:var(--white);

    border:1px solid rgba(201,168,76,0.12);

    font-size:13px;

    color:var(--navy);
}

/* =========================================
   CAREER CTA
========================================= */

.career-cta{
    padding:120px 8%;

    background:var(--navy);

    text-align:center;
}

.career-cta-content{
    max-width:850px;

    margin:auto;
}

.career-cta h2{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    line-height:1.1;

    color:var(--white);

    margin-bottom:25px;
}

.career-cta p{
    color:rgba(255,255,255,0.7);

    line-height:2;

    margin-bottom:35px;
}

/* =========================================
   PRESS PAGE
========================================= */

.press-section{
    padding:7rem 8%;

    background:var(--white);
}

.press-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.press-card{
    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    overflow:hidden;

    transition:0.4s ease;
}

.press-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.press-image{
    overflow:hidden;
}

.press-image img{
    width:100%;

    height:280px;

    object-fit:cover;

    transition:0.5s ease;
}

.press-card:hover .press-image img{
    transform:scale(1.05);
}

.press-content{
    padding:35px;
}

.press-date{
    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;
}

.press-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    line-height:1.2;

    color:var(--navy);

    margin:18px 0;
}

.press-content p{
    color:var(--gray);

    line-height:2;

    margin-bottom:25px;
}

.press-link{
    color:var(--gold);

    text-decoration:none;

    letter-spacing:1px;
}

/* =========================================
   PRESS CTA
========================================= */

.press-cta{
    padding:120px 8%;

    background:var(--navy);

    text-align:center;
}

.press-cta-content{
    max-width:850px;

    margin:auto;
}

.press-cta h2{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    color:var(--white);

    margin-bottom:25px;
}

.press-cta p{
    color:rgba(255,255,255,0.7);

    line-height:2;

    margin-bottom:35px;
}

/* =========================================
   COLLECTION HERO
========================================= */

.collection-hero{
    position:relative;

    height:750px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/collection-bg.jpg')
    center/cover no-repeat;
}

.collection-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,10,24,0.72);
}

.collection-hero-content{
    position:relative;

    z-index:2;

    max-width:850px;

    padding:0 20px;
}

.collection-hero-content h1{
    font-family:'Cormorant Garamond', serif;

    font-size:96px;

    line-height:1;

    color:var(--white);

    margin-bottom:30px;
}

.collection-hero-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;

    font-size:18px;
}

/* =========================================
   FEATURED COLLECTION
========================================= */

.featured-collection{
    padding:7rem 8%;

    background:var(--white);
}

.featured-collection-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.featured-collection-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:24px;
}

.featured-collection-image{
    overflow:hidden;
}

.featured-collection-image img{
    width:100%;

    height:700px;

    object-fit:cover;

    transition:0.5s ease;
}

.featured-collection-image:hover img{
    transform:scale(1.04);
}

/* =========================================
   COLLECTION GRID
========================================= */

.collection-grid-section{
    padding:7rem 8%;

    background:var(--cream);
}

.collection-grid{
    margin-top:4rem;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

.collection-card{
    position:relative;

    height:650px;

    overflow:hidden;

    display:block;
}

.collection-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s ease;
}

.collection-card:hover img{
    transform:scale(1.08);
}

.collection-card-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(3,10,24,0.92),
        rgba(3,10,24,0.08)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:45px;
}

.collection-card-overlay h3{
    font-family:'Cormorant Garamond', serif;

    font-size:52px;

    color:var(--white);

    margin-bottom:14px;
}

.collection-card-overlay span{
    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;
}

/* =========================================
   EDITORIAL SECTION
========================================= */

.editorial-section{
    position:relative;

    height:700px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/editorial-bg.jpg')
    center/cover fixed no-repeat;
}

.editorial-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,10,24,0.72);
}

.editorial-content{
    position:relative;

    z-index:2;

    max-width:850px;

    padding:0 20px;
}

.editorial-content h2{
    font-family:'Cormorant Garamond', serif;

    font-size:82px;

    line-height:1.1;

    color:var(--white);

    margin-bottom:25px;
}

.editorial-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;

    margin-bottom:35px;
}

/* =========================================
   COLLECTION CTA
========================================= */

.collection-cta{
    padding:140px 8%;

    background:var(--navy);

    text-align:center;
}

.collection-cta-content{
    max-width:850px;

    margin:auto;
}

.collection-cta h2{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    color:var(--white);

    margin-bottom:25px;
}

.collection-cta p{
    color:rgba(255,255,255,0.7);

    line-height:2;

    margin-bottom:35px;
}
.collection-card{
    position:relative;

    height:500px;

    overflow:hidden;

    display:block;
}

.collection-hero{
    position:relative;

    height:520px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/collection-bg.jpg')
    center center/cover no-repeat;
}
.collection-hero-content h1{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    line-height:1.05;

    color:var(--white);

    margin-bottom:24px;
}
.collection-hero-content{
    position:relative;

    z-index:2;

    max-width:720px;

    padding:0 20px;
}
.featured-collection-image{
    display:flex;
    align-items:center;
    justify-content:center;
}

.featured-collection-image img{
    width:85%;

    max-height:750px;

    object-fit:contain;

    transition:0.5s ease;
}
.featured-collection-grid{
    align-items:center;
}
.featured-collection-content{
    max-width:520px;
}

/* =========================================
   SHOP HERO
========================================= */

.shop-hero{
    position:relative;

    height:500px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/shop-bg.jpg')
    center/cover no-repeat;
}

.shop-hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,10,24,0.72);
}

.shop-hero-content{
    position:relative;

    z-index:2;

    max-width:750px;

    padding:0 20px;
}

.shop-hero-content h1{
    font-family:'Cormorant Garamond', serif;

    font-size:78px;

    line-height:1.05;

    color:var(--white);

    margin-bottom:24px;
}

.shop-hero-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;

    font-size:17px;
}

/* =========================================
   SHOP TOPBAR
========================================= */

.shop-topbar{
    padding:40px 8%;

    background:var(--white);

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    flex-wrap:wrap;
}

.shop-topbar-left{
    display:flex;
    flex-wrap:wrap;

    gap:14px;
}

.shop-filter-btn{
    border:none;

    background:var(--cream);

    padding:14px 24px;

    cursor:pointer;

    color:var(--navy);

    transition:0.3s ease;
}

.shop-filter-btn:hover, .shop-filter-btn.active{
    background:var(--gold);

    color:var(--white);
}

.shop-sort{
    border:1px solid rgba(201,168,76,0.2);

    padding:14px 20px;

    outline:none;

    color:var(--navy);

    background:var(--white);
}

/* =========================================
   SHOP PRODUCTS
========================================= */

.shop-products{
    padding:2rem 8% 7rem;

    background:var(--white);
}

.shop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.shop-product-card{
    background:var(--cream);

    overflow:hidden;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.4s ease;
}

.shop-product-card:hover{
    transform:translateY(-8px);

    border-color:rgba(201,168,76,0.35);
}

.shop-product-image{
    position:relative;

    overflow:hidden;
}

.shop-product-image img{
    width:100%;

    height:340px;

    object-fit:cover;

    transition:0.5s ease;
}

.shop-product-card:hover img{
    transform:scale(1.05);
}

.shop-product-overlay{
    position:absolute;

    top:20px;
    right:20px;

    display:flex;
    flex-direction:column;

    gap:12px;
}

.shop-action-btn{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--white);

    text-decoration:none;

    color:var(--navy);

    transition:0.3s ease;
}

.shop-action-btn:hover{
    background:var(--gold);

    color:var(--white);
}

.shop-badge{
    position:absolute;

    top:20px;
    left:20px;

    background:var(--gold);

    color:var(--white);

    padding:8px 14px;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.shop-product-content{
    padding:30px;
}

.shop-category{
    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.shop-product-content h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    color:var(--navy);

    margin:18px 0;

    line-height:1.2;

    min-height:82px;

    display:flex;
    align-items:flex-start;
}
.shop-product-content{
    display:flex;
    flex-direction:column;
}

.shop-price{
    color:var(--navy);

    font-size:22px;

    font-weight:600;

    margin-bottom:25px;
}

.shop-price span{
    color:var(--gray);

    text-decoration:line-through;

    margin-left:10px;

    font-size:16px;
}

/* RELATED PRODUCTS ALIGNMENT */

.related-products-section .shop-product-card{
    display:flex;
    flex-direction:column;
}

.related-products-section .shop-product-content{
    flex-grow:1;

    display:flex;
    flex-direction:column;
}

.related-products-section .shop-price{
    margin-top:auto;
}
/* =========================================
   PRODUCT DETAILS
========================================= */

.product-details-section{
    padding:180px 8% 7rem;

    background:var(--white);
}

.product-details-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

/* GALLERY */

.product-gallery{
    display:flex;
    flex-direction:column;

    gap:25px;
}

.main-product-image{
    background:var(--cream);

    padding:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(201,168,76,0.12);
}

.main-product-image img{
    max-width:100%;

    max-height:600px;

    object-fit:contain;
}

.product-thumbnails{
    display:flex;

    gap:20px;
}

.product-thumbnails img{
    width:120px;
    height:120px;

    object-fit:contain;

    background:var(--cream);

    padding:15px;

    cursor:pointer;

    border:1px solid rgba(201,168,76,0.12);

    transition:0.3s ease;
}

.product-thumbnails img:hover{
    border-color:rgba(201,168,76,0.4);
}

/* CONTENT */

.product-details-category{
    color:var(--gold);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;
}

.product-details-content h1{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    line-height:1.05;

    color:var(--navy);

    margin:20px 0;
}

.product-rating{
    color:var(--gold);

    font-size:18px;

    margin-bottom:24px;
}

.product-rating span{
    color:var(--gray);

    margin-left:10px;

    font-size:15px;
}

.product-details-price{
    color:var(--navy);

    font-size:36px;

    font-weight:600;

    margin-bottom:25px;
}

.product-details-price span{
    color:var(--gray);

    text-decoration:line-through;

    margin-left:14px;

    font-size:22px;
}

.product-details-text{
    color:var(--gray);

    line-height:2;

    margin-bottom:35px;
}

/* NOTES */

.fragrance-notes{
    margin-bottom:35px;
}

.fragrance-notes h3{
    font-family:'Cormorant Garamond', serif;

    font-size:34px;

    color:var(--navy);

    margin-bottom:18px;
}

.notes-list{
    display:flex;
    flex-wrap:wrap;

    gap:12px;
}

.notes-list span{
    padding:12px 18px;

    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    color:var(--navy);
}

/* QUANTITY */

.quantity-wrapper{
    display:flex;
    align-items:center;

    gap:12px;

    margin-bottom:35px;
}

.quantity-wrapper button{
    width:50px;
    height:50px;

    border:none;

    background:var(--cream);

    cursor:pointer;

    font-size:20px;

    color:var(--navy);
}

.quantity-wrapper input{
    width:70px;
    height:50px;

    text-align:center;

    border:1px solid rgba(201,168,76,0.12);

    outline:none;
}

/* ACTIONS */

.product-actions{
    display:flex;

    gap:18px;

    margin-bottom:35px;
}

.wishlist-btn{
    width:60px;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--cream);

    text-decoration:none;

    color:var(--navy);

    font-size:24px;

    transition:0.3s ease;
}

.wishlist-btn:hover{
    background:var(--gold);

    color:var(--white);
}

/* EXTRA INFO */

.product-extra-info p{
    color:var(--gray);

    line-height:2;

    margin-bottom:10px;
}
/* =========================================
   RELATED PRODUCTS
========================================= */

.related-products-section{
    padding:7rem 8%;

    background:var(--cream);
}

/* =========================================
   CART HERO
========================================= */

.cart-hero{
    position:relative;

    height:420px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    url('../images/cart-bg.jpg')
    center/cover no-repeat;
}

.cart-hero-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,10,24,0.72);
}

.cart-hero-content{
    position:relative;

    z-index:2;

    max-width:700px;

    padding:0 20px;
}

.cart-hero-content h1{
    font-family:'Cormorant Garamond', serif;

    font-size:72px;

    color:var(--white);

    margin-bottom:20px;
}

.cart-hero-content p{
    color:rgba(255,255,255,0.72);

    line-height:2;
}

/* =========================================
   CART SECTION
========================================= */

.cart-section{
    padding:7rem 8%;

    background:var(--white);
}

.cart-grid{
    display:grid;
    grid-template-columns:2fr 1fr;

    gap:40px;
}

/* PRODUCTS */

.cart-products{
    display:flex;
    flex-direction:column;

    gap:25px;
}

.cart-item{
    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    padding:30px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:30px;

    flex-wrap:wrap;
}

.cart-product-info{
    display:flex;
    align-items:center;

    gap:25px;
}

.cart-product-info img{
    width:140px;
    height:160px;

    object-fit:contain;

    background:var(--white);

    padding:15px;
}

.cart-category{
    color:var(--gold);

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.cart-product-info h3{
    font-family:'Cormorant Garamond', serif;

    font-size:38px;

    color:var(--navy);

    margin:15px 0;
}

.cart-price{
    font-size:22px;

    font-weight:600;

    color:var(--navy);
}

/* ACTIONS */

.cart-actions{
    display:flex;
    flex-direction:column;

    gap:18px;

    align-items:flex-end;
}

.cart-quantity{
    display:flex;
    align-items:center;

    gap:10px;
}

.cart-quantity button{
    width:42px;
    height:42px;

    border:none;

    background:var(--white);

    cursor:pointer;

    color:var(--navy);
}

.cart-quantity input{
    width:60px;
    height:42px;

    text-align:center;

    border:1px solid rgba(201,168,76,0.12);

    outline:none;
}

.remove-item{
    text-decoration:none;

    color:#c0392b;

    font-size:14px;
}

/* SUMMARY */

.cart-summary{
    background:var(--cream);

    border:1px solid rgba(201,168,76,0.12);

    padding:40px;

    height:fit-content;
}

.cart-summary h2{
    font-family:'Cormorant Garamond', serif;

    font-size:48px;

    color:var(--navy);

    margin-bottom:35px;
}

.summary-row{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:24px;

    color:var(--gray);
}

.summary-row.total{
    border-top:1px solid rgba(201,168,76,0.15);

    padding-top:25px;

    font-size:22px;

    font-weight:600;

    color:var(--navy);
}

.continue-shopping{
    display:inline-block;

    margin-top:25px;

    color:var(--navy);

    text-decoration:none;
}

/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo{
    height:100px;
    width:auto;

    display:block;
    object-fit:contain;

    margin-bottom:18px;
}
.developer-link{
    color:rgba(255,255,255,0.75);

    text-decoration:none;

    transition:0.3s ease;
}

.developer-link:hover{
    color:var(--gold);
}

/* contact */

.contact-info-box{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#faf7f2;
    color:#b88b4a;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    flex-shrink:0;
}

.contact-info-item:hover .contact-icon{
    background:#b88b4a;
    color:#fff;
    transform:translateY(-4px);
}

.contact-info-item h3{
    margin:0 0 8px;
    font-size:22px;
    font-weight:600;
    color:#222;
}

.contact-info-item p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.contact-info-item a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.contact-info-item a:hover{
    color:#b88b4a;
}

.instagram-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:500;
}

.instagram-link:hover{
    color:#E1306C !important;
}

.contact-info-item:hover .fa-instagram{
    color:#fff;
}
