body {
      font-family: 'Inter', sans-serif;
      background-color: #0b0b0b;
      color: #e0dfdf;
      overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
      padding: 1.5rem 0;
      transition: background 0.3s ease, backdrop-filter 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(10px);
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.9rem;
      letter-spacing: 0.08em;
    }

    .nav-link {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85)),
        url('/newbg.png') center/cover no-repeat;
    }

    .hero-bottom {
      position: absolute;
      bottom: 4rem;
      left: 0;
      right: 0;
    }

    .hero-brand,
    .hero-cta {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1.4s ease forwards;
    }

    .hero-cta {
      animation-delay: 0.3s;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-brand {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      letter-spacing: 0.02em;
      line-height: 1;
      transition: letter-spacing 0.4s ease;
    }

    .hero-cta {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: letter-spacing 0.4s ease;
    }

    /* 3D MODEL SECTION */
    .model-section {
      position: relative;
      min-height: 100vh;
      background-color: #0b0b0b;
      overflow: hidden;
    }

    .model-background-text {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%) translateX(100%);
      white-space: nowrap;
      font-family: 'Playfair Display', serif;
      font-size: clamp(4rem, 12vw, 10rem);
      font-weight: 600;
      color: #e0dfdf;
      z-index: 0;
      pointer-events: none;
    }

    .model-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .tooltips {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 75%;
      height: 75%;
      display: flex;
      gap: 15rem;
      z-index: 2;
      pointer-events: none;
    }

    .tooltip {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      color: #e0dfdf;
    }

    .tooltip:nth-child(2) {
      justify-content: flex-end;
      align-items: flex-end;
    }

    .tooltip .icon {
      font-size: 2.5rem;
    }

    .tooltip .divider {
      position: relative;
      width: 100%;
      height: 1px;
      background-color: #5f5f5f;
      margin: 0.5rem 0;
    }

    .tooltip:nth-child(1) .divider {
      transform-origin: left center;
    }

    .tooltip:nth-child(2) .divider {
      transform-origin: right center;
    }

    .tooltip .title h2 {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.125;
      letter-spacing: -0.03rem;
      margin: 0;
    }

    .tooltip .description {
      color: #5f5f5f;
    }

    .tooltip .description p {
      font-size: 1.1rem;
      font-weight: 500;
      line-height: 1.5;
      margin: 0;
    }

    .tooltip:nth-child(2) .icon,
    .tooltip:nth-child(2) .title,
    .tooltip:nth-child(2) .description {
      width: 70%;
    }

    /* SECTIONS */
    section {
      padding: 6rem 0;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
    }

    .under-landing {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
    }

    .product-box {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 3rem;
    }

    /* SCROLL REVEAL */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
       .product-showcase {
      padding: 3rem 0;
    }

    .product-card {
      position: relative;
      height: 600px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
      z-index: 1;
    }

    .product-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 3rem 2rem;
      width: 100%;
    }

    .product-subtitle {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      font-weight: 400;
    }

    .product-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 2rem;
      text-transform: uppercase;
    }

    .btn-discover {
      background-color: #e0dfdf;
      color: #000;
      border: none;
      padding: 1rem 3rem;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 500;
      transition: all 0.3s ease;
      border-radius: 0px !important;
    }

    .btn-discover:hover {
      background-color: #f0f0f0;
      transform: translateY(-2px);
      color: #000000;
    }

    /* Left product - golden/peach background */
    .product-left {
      background-image: url('https://images.unsplash.com/photo-1615634260167-c8cdede054de?w=800&q=80');
    }

    /* Right product - dark/red background */
    .product-right {
      background-image: url('https://images.unsplash.com/photo-1541643600914-78b084683601?w=800&q=80');
    }

    @media (max-width: 768px) {
      .product-card {
        height: 500px;
      }

      .product-title {
        font-size: 2rem;
      }
    }

    /* MOBILE */
    @media (max-width: 1000px) {
      .hero-bottom {
        bottom: 2.5rem;
      }

      .hero-brand {
        font-size: 3rem;
      }

      .tooltips {
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 2rem;
      }

      .tooltip {
        width: 85%;
      }

      .tooltip:nth-child(2) {
        justify-content: flex-start;
        align-items: flex-start;
      }

      .tooltip .divider {
        width: 70%;
      }

      .tooltip:nth-child(2) .divider {
        transform-origin: right center;
      }

      .tooltip:nth-child(2) .icon,
      .tooltip:nth-child(2) .title,
      .tooltip:nth-child(2) .description {
        width: 100%;
      }

      .tooltip .title h2 {
        font-size: 1.5rem;
      }

      .tooltip .icon {
        font-size: 1.5rem;
      }
    }
    /* FOOTER */
    .footer {
      background-color: #0b0b0b;
      border-top: 1px solid rgba(224, 223, 223, 0.1);
      padding: 4rem 0 2rem;
      margin-top: 6rem;
    }

    .footer-brand {
      font-family: "Playfair Display", serif;
      font-size: 3rem;
      letter-spacing: 0.15em;
      margin-bottom: 3rem;
      color: #e0dfdf;
    }

    .footer-section-title {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      font-weight: 500;
      color: #e0dfdf;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 0.5rem;
    }

    .footer-links a {
      color: rgba(224, 223, 223, 0.7);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #e0dfdf;
    }

    .footer-bottom {
      border-top: 1px solid rgba(224, 223, 223, 0.1);
      padding-top: 2rem;
      margin-top: 3rem;
    }

    .footer-bottom-text {
      font-size: 0.75rem;
      color: rgba(224, 223, 223, 0.5);
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-bottom-links a {
      color: rgba(224, 223, 223, 0.5);
      text-decoration: none;
      font-size: 0.75rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #e0dfdf;
    }

    .back-to-top {
      color: rgba(224, 223, 223, 0.5);
      text-decoration: none;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .back-to-top:hover {
      color: #e0dfdf;
    }

    .back-to-top i {
      margin-left: 0.5rem;
    }

    /* BRAND STORY SECTION */
    .brand-story {
      background-color: #0b0b0b;
      padding: 8rem 0;
      position: relative;
    }

    .brand-story-content {
      text-align: center;
      margin-bottom: 4rem;
    }

    .brand-story-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: 2rem;
      color: #e0dfdf;
    }

    .brand-story-divider {
      width: 80px;
      height: 1px;
      background-color: #e0dfdf;
      margin: 0 auto 2rem;
    }

    .brand-story-text {
      font-size: 1.125rem;
      line-height: 1.8;
      color: rgba(224, 223, 223, 0.8);
      margin-bottom: 1.5rem;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card {
      text-align: center;
      padding: 2rem;
      border: 1px solid rgba(224, 223, 223, 0.1);
      background: rgba(224, 223, 223, 0.02);
      transition: all 0.4s ease;
      height: 100%;
    }

    .feature-card:hover {
      border-color: rgba(224, 223, 223, 0.3);
      background: rgba(224, 223, 223, 0.05);
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: #e0dfdf;
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-family: "Playfair Display", serif;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #e0dfdf;
    }

    .feature-text {
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(224, 223, 223, 0.7);
      margin: 0;
    }

    @media (max-width: 768px) {
      .brand-story {
        padding: 5rem 0;
      }

      .brand-story-title {
        font-size: 2rem;
      }

      .brand-story-text {
        font-size: 1rem;
      }

      .feature-card {
        margin-bottom: 1rem;
      }
    }

    /* PERFUME STATEMENT SECTION */
    .perfume-statement {
      background-color: #0b0b0b;
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(224, 223, 223, 0.08);
      border-bottom: 1px solid rgba(224, 223, 223, 0.08);
    }

    .bottle-silhouette {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      background-image: url('/sublte-bottle.png');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.17;
      z-index: 0;
      pointer-events: none;
    }

    .poem-text {
      position: relative;
      z-index: 2;
      max-width: 1100px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    .poem-text::before {
      position: absolute;
      top: -1.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-family: "Playfair Display", serif;
      font-size: 6rem;
      color: rgba(224, 223, 223, 0.08);
      line-height: 1;
      z-index: -1;
    }

    .poem-text::after {
      position: absolute;
      bottom: -1rem;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(224, 223, 223, 0.3), transparent);
    }

    .quote-paragraph {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.8rem, 4.5vw, 3.8rem);
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: 0.01em;
      margin: 0;
    }

    .word {
      display: inline-block;
      color: rgba(224, 223, 223, 0.25);
      transition: color 0.3s ease;
    }

    .word.highlight {
      font-weight: 600;
      position: relative;
    }

    .word.highlight::after {
      content: '';
      position: absolute;
      bottom: 0.15em;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, currentColor, transparent);
      opacity: 0.4;
    }

    @media (max-width: 768px) {
      .perfume-statement {
        padding: 3.5rem 0;
      }

      .poem-text {
        padding: 1.5rem 1rem;
      }

      .poem-text::before {
        font-size: 4rem;
        top: -1rem;
      }

      .quote-paragraph {
        font-size: 1.5rem;
        line-height: 1.6;
      }

      .bottle-silhouette {
        opacity: 0.04;
      }
    }