:root {
      --beige: #b4a998;
      --offwhite: #f5f5f3;
      --cream: #ede9e4;
      --charcoal: #1a1a1a;
      --mid: #6b6360;
      --light-beige: #d4cfc9;
      --pink-accent: #e8b4b8;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--offwhite);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      background: var(--header-bg, rgba(245,245,243,0.92));
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(180,169,152,0.2);
      transition: all 0.4s ease;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--beige); }

    .logo-header img {
      height: 44px;
      filter: none;
      transition: opacity 0.3s;
      display: block;
    }
    .logo-header img:hover { opacity: 0.7; }

    .header-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--charcoal);
      cursor: pointer;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      transition: color 0.3s;
    }

    .cart-btn:hover { color: var(--beige); }

    .cart-count {
      background: var(--charcoal);
      color: var(--offwhite);
      font-size: 10px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* ── HERO ── */
    .hero {
      height: 100vh;
      min-height: 700px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 72px;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 64px 80px 80px;
      position: relative;
    }

    .hero-tag {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--beige);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.2s forwards;
    }

    .hero-tag::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--beige);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(56px, 5.5vw, 84px);
      font-weight: 300;
      line-height: 1.1;
      color: var(--charcoal);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.4s forwards;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--beige);
    }

    .hero-sub {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--mid);
      max-width: 380px;
      margin-bottom: 48px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.6s forwards;
    }

    .hero-cta-group {
      display: flex;
      flex-direction: column;
      gap: 20px;
      opacity: 0;
      animation: fadeUp 0.8s ease 0.8s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: var(--charcoal);
      color: var(--offwhite);
      padding: 18px 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      max-width: 240px;
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--beige);
      transform: translateX(-101%);
      transition: transform 0.4s ease;
    }

    .btn-primary:hover::after { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }

    .hero-badges {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      letter-spacing: 1px;
      color: var(--mid);
    }

    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--beige);
    }

    .hero-right {
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeIn 1.2s ease 0.3s forwards;
    }

    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transform: scale(1.05);
      animation: zoomOut 1.5s ease 0.3s forwards;
    }

    .hero-watermark {
      position: absolute;
      bottom: 40px;
      right: 40px;
      opacity: 0.12;
      filter: none;
    }

    .hero-watermark img {
      width: 220px;
      object-fit: contain;
      transform: none;
      animation: none;
    }

    /* ── SOCIAL PROOF BAR ── */
    .proof-bar {
      background: var(--charcoal);
      padding: 24px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }

    .proof-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      flex: 1;
      min-width: 140px;
    }

    .proof-stars {
      color: var(--beige);
      font-size: 14px;
      letter-spacing: 3px;
    }

    .proof-quote {
      font-size: 12px;
      letter-spacing: 1px;
      color: rgba(245,245,243,0.7);
      font-style: italic;
    }

    .proof-divider {
      width: 1px;
      height: 36px;
      background: rgba(180,169,152,0.3);
    }

    /* ── SECTION HEADER ── */
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .section-tag {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--beige);
      margin-bottom: 16px;
      display: block;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 300;
      line-height: 1.2;
      color: var(--charcoal);
    }

    .section-title em { font-style: italic; color: var(--beige); }

    /* ── PRODUCTS ── */
    .products {
      padding: 100px 80px;
      background: var(--offwhite);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .product-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--cream);
    }

    .product-card:first-child {
      grid-row: span 2;
    }

    .product-img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.8s ease;
    }

    .product-card:first-child .product-img {
      height: 100%;
      aspect-ratio: unset;
    }

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

    .product-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 50%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 32px;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .product-card:hover .product-overlay { opacity: 1; }

    .product-badge-tag {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--charcoal);
      color: var(--offwhite);
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 12px;
    }

    .badge-hot {
      background: var(--beige);
      color: var(--charcoal);
    }

    .product-info-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 28px;
      background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, transparent 100%);
    }

    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--offwhite);
      margin-bottom: 4px;
    }

    .product-price {
      font-size: 13px;
      font-weight: 300;
      color: var(--light-beige);
      letter-spacing: 1px;
    }

    .btn-buy-overlay {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--offwhite);
      color: var(--charcoal);
      padding: 12px 24px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      margin-top: 16px;
      transition: all 0.3s;
    }

    .btn-buy-overlay:hover {
      background: var(--beige);
      color: var(--offwhite);
    }

    /* ── BENEFITS ── */
    .benefits {
      padding: 100px 80px;
      background: var(--charcoal);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      margin-top: 64px;
    }

    .benefit-item {
      text-align: center;
    }

    .benefit-icon {
      font-size: 32px;
      margin-bottom: 20px;
      display: block;
    }

    .benefit-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--offwhite);
      margin-bottom: 12px;
    }

    .benefit-desc {
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(245,245,243,0.55);
    }

    /* ── STORY ── */
    .story {
      padding: 120px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .story-img {
      position: relative;
    }

    .story-img img {
      width: 100%;
      height: 600px;
      object-fit: cover;
      object-position: top center;
    }

    .story-img::after {
      content: '';
      position: absolute;
      top: 24px;
      left: 24px;
      right: -24px;
      bottom: -24px;
      border: 1px solid var(--beige);
      z-index: -1;
    }

    .story-text .section-tag { text-align: left; }

    .story-text .section-title {
      text-align: left;
      margin-bottom: 32px;
    }

    .story-body {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.9;
      color: var(--mid);
      margin-bottom: 48px;
    }

    .story-body strong {
      color: var(--charcoal);
      font-weight: 500;
    }

    /* ── INSTAGRAM ── */
    .instagram {
      padding: 100px 80px;
      background: var(--cream);
    }

    .insta-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      margin-top: 48px;
      margin-bottom: 48px;
    }

    .insta-item {
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }

    .insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s ease;
    }

    .insta-item:hover img { transform: scale(1.08); }

    .insta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(180,169,152,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .insta-item:hover .insta-overlay { opacity: 1; }

    .insta-icon {
      font-size: 32px;
      color: white;
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--charcoal);
      color: var(--charcoal);
      padding: 16px 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      background: none;
      transition: all 0.4s ease;
    }

    .btn-outline:hover {
      background: var(--charcoal);
      color: var(--offwhite);
    }

    .insta-cta { text-align: center; }

    /* ── URGENCY ── */
    .urgency-bar {
      background: var(--beige);
      padding: 16px 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .urgency-text {
      font-size: 11px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--charcoal);
      font-weight: 500;
    }

    .urgency-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--charcoal);
      opacity: 0.5;
    }

    /* ── FINAL CTA ── */
    .final-cta {
      height: 70vh;
      min-height: 500px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .final-cta-bg {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .final-cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .final-cta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(26,26,26,0.62);
    }

    .final-cta-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 700px;
      padding: 0 40px;
    }

    .final-cta-content .section-tag {
      color: var(--beige);
    }

    .final-cta-content .section-title {
      color: var(--offwhite);
      margin-bottom: 20px;
    }

    .final-cta-content p {
      font-size: 15px;
      font-weight: 300;
      color: rgba(245,245,243,0.75);
      margin-bottom: 48px;
      line-height: 1.7;
    }

    .btn-primary-light {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--offwhite);
      color: var(--charcoal);
      padding: 18px 48px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
    }

    .btn-primary-light:hover {
      background: var(--beige);
      color: var(--offwhite);
    }

    /* ── FOOTER ── */
    footer {
     background: var(--footer-bg, var(--charcoal));
      padding: 80px 80px 40px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 64px;
      padding-bottom: 64px;
      border-bottom: 1px solid rgba(180,169,152,0.2);
    }

    .footer-brand img {
      height: 40px;
      filter: none;
      opacity: 0.9;
      margin-bottom: 24px;
      display: block;
    }

    .footer-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      font-weight: 300;
      color: rgba(245,245,243,0.5);
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(180,169,152,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(245,245,243,0.5);
      text-decoration: none;
      font-size: 13px;
      transition: all 0.3s;
    }

    .social-link:hover {
      border-color: var(--beige);
      color: var(--beige);
    }

    .footer-col h4 {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--beige);
      margin-bottom: 24px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul a {
      font-size: 13px;
      font-weight: 300;
      color: rgba(245,245,243,0.5);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-col ul a:hover { color: var(--offwhite); }

    .footer-bottom {
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(245,245,243,0.3);
      letter-spacing: 1px;
    }

    /* ── WHATSAPP BUTTON ── */
    .whatsapp-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 200;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(37,211,102,0.4);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: pulse 2.5s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 32px rgba(37,211,102,0.5);
    }

    .whatsapp-float svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    /* ── CART DRAWER ── */
    .cart-drawer {
      position: fixed;
      top: 0; right: -420px;
      width: 420px;
      height: 100vh;
      background: var(--offwhite);
      z-index: 300;
      transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    }

    .cart-drawer.open { right: 0; }

    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,26,26,0.5);
      z-index: 290;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
    }

    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .cart-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 28px 32px;
      border-bottom: 1px solid var(--cream);
    }

    .cart-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
    }

    .cart-close {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: var(--mid);
      transition: color 0.3s;
    }

    .cart-close:hover { color: var(--charcoal); }

    .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .cart-empty {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: var(--mid);
    }

    .cart-empty-icon { font-size: 48px; opacity: 0.3; }

    .cart-empty p {
      font-size: 14px;
      letter-spacing: 1px;
    }

    .cart-item {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .cart-item-img {
      width: 72px;
      height: 88px;
      object-fit: cover;
      object-position: top;
    }

    .cart-item-info { flex: 1; }

    .cart-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .cart-item-price {
      font-size: 13px;
      color: var(--mid);
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: var(--mid);
      cursor: pointer;
      font-size: 16px;
      transition: color 0.3s;
    }

    .cart-item-remove:hover { color: var(--charcoal); }

    .cart-footer {
      padding: 24px 32px;
      border-top: 1px solid var(--cream);
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px;
      font-size: 14px;
    }

    .cart-total-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
    }

    .btn-checkout {
      width: 100%;
      background: var(--charcoal);
      color: var(--offwhite);
      padding: 18px;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-checkout:hover { background: var(--beige); }

    /* ── SCROLLING MARQUEE ── */
    .marquee-wrap {
      background: var(--offwhite);
      border-top: 1px solid var(--cream);
      border-bottom: 1px solid var(--cream);
      padding: 18px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 20s linear infinite;
      white-space: nowrap;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 32px;
      padding: 0 32px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--beige);
    }

    .marquee-item::after {
      content: '✦';
      opacity: 0.5;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes zoomOut {
      from { transform: scale(1.05); }
      to { transform: scale(1); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      header { padding: 0 24px; }

      .nav-links { display: none; }

      .hero {
        grid-template-columns: 1fr;
        height: auto;
      }

      .hero-left {
        padding: 60px 32px;
        order: 2;
      }

      .hero-right {
        height: 60vw;
        order: 1;
      }

      .products { padding: 60px 24px; }

      .products-grid {
        grid-template-columns: 1fr 1fr;
      }

      .product-card:first-child { grid-row: auto; }

      .benefits { padding: 60px 24px; }

      .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .story {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 48px;
      }

      .story-img::after { display: none; }

      .instagram { padding: 60px 24px; }

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

      .proof-bar { padding: 24px; }
      .proof-divider { display: none; }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      footer { padding: 60px 24px 40px; }

      .urgency-bar { padding: 16px 24px; flex-wrap: wrap; gap: 16px; }

      .final-cta-bg { grid-template-columns: 1fr; }
      .final-cta-bg img:last-child { display: none; }

      .cart-drawer { width: 100%; right: -100%; }
    }

    /* ── POPUP ── */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,26,26,0.65);
      z-index: 500;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      animation: fadeIn 0.5s ease forwards;
    }

    .popup-box {
      background: var(--offwhite);
      max-width: 520px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      overflow: hidden;
      position: relative;
      animation: slideUp 0.5s ease forwards;
    }

    .popup-img {
      position: relative;
      overflow: hidden;
    }

    .popup-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }

    .popup-content {
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .popup-tag {
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--beige);
      margin-bottom: 16px;
    }

    .popup-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      line-height: 1.15;
      color: var(--charcoal);
      margin-bottom: 12px;
    }

    .popup-title em {
      font-style: italic;
      color: var(--beige);
    }

    .popup-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .popup-input {
      width: 100%;
      border: 1px solid var(--light-beige);
      background: transparent;
      padding: 14px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: var(--charcoal);
      outline: none;
      margin-bottom: 12px;
      transition: border-color 0.3s;
    }

    .popup-input:focus {
      border-color: var(--beige);
    }

    .popup-input::placeholder {
      color: var(--beige);
      opacity: 0.8;
    }

    .popup-submit {
      width: 100%;
      background: var(--charcoal);
      color: var(--offwhite);
      padding: 15px;
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s;
      margin-bottom: 12px;
    }

    .popup-submit:hover { background: var(--beige); }

    .popup-skip {
      font-size: 10px;
      letter-spacing: 1px;
      color: var(--beige);
      text-align: center;
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 3px;
      background: none;
      border: none;
      font-family: 'DM Sans', sans-serif;
      width: 100%;
    }

    .popup-close-x {
      position: absolute;
      top: 14px;
      right: 14px;
      background: none;
      border: none;
      color: var(--mid);
      cursor: pointer;
      font-size: 16px;
      z-index: 10;
      line-height: 1;
      transition: color 0.3s;
    }

    .popup-close-x:hover { color: var(--charcoal); }

    .discount-banner {
      background: var(--beige);
      color: var(--charcoal);
      text-align: center;
      padding: 12px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 99;
      display: none;
    }

    .discount-banner.visible { display: block; }

    body.has-discount header { top: 44px; }

    @keyframes slideUp {
      from { transform: translateY(32px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 600px) {
      .popup-box { grid-template-columns: 1fr; }
      .popup-img { display: none; }
      .popup-content { padding: 48px 32px 40px; }
    }