  :root {
      --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
      --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
      --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
      --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
      --text-xl: clamp(1.65rem, 1.2rem + 1.6vw, 2.5rem);
      --space-1: 0.25rem;
      --space-2: 0.5rem;
      --space-3: 0.75rem;
      --space-4: 1rem;
      --space-5: 1.25rem;
      --space-6: 1.5rem;
      --space-8: 2rem;
      --space-10: 2.5rem;
      --space-12: 3rem;
      --radius-sm: 0.5rem;
      --radius-md: 0.9rem;
      --radius-lg: 1.5rem;
      --radius-xl: 2rem;
      --radius-full: 999px;
      --color-bg: #210511;
      --color-surface: #ffffff;
      --color-text: #191221;
      --color-text-muted: #6e6b75;
      --color-text-faint: #9e9aa5;
      --color-primary: #f2358d;
      --color-primary-hover: #df1d78;
      --color-accent: #ad305b;
      --color-border: rgba(33, 18, 33, 0.1);
      --color-overlay: rgba(14, 1, 9, 0.72);
      --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.22);
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', Arial, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { min-height: 100%; }
    body {
      font-family: var(--font-body);
      font-size: var(--text-base);
      color: var(--color-text);
      background-color: var(--color-bg);
    }

    .page {
      min-height: 100dvh;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      padding: clamp(1rem, 3vw, 2rem);
      background-image:
        linear-gradient(180deg, rgba(34, 5, 18, 0.42), rgba(19, 4, 14, 0.65)),
        url('img/desk1.jpg');
      background-size: cover;
      background-position: center;
    }

    .page::before {
      content: '';
      position: absolute;
      inset: 0;
    background: rgb(14 1 9 / 64%);
    /*backdrop-filter: blur(1.5px);  */
    }

    .hero {
      position: absolute;
      inset: 0;
      z-index: 0;
      max-width: 1280px;
      width: min(100%, 1180px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: clamp(1.5rem, 4vw, 4rem);
      padding: clamp(1.5rem, 4vw, 5rem);
      color: rgba(255,255,255,0.96);
    }

    .offer-bar {
      position: absolute;
      top: 1.15rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      width: min(92%, 820px);
      text-align: center;
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1.05rem;
      border-radius: var(--radius-full);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.84);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      backdrop-filter: blur(8px);
    }

    .hero-copy h1 {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 7vw, 5.8rem);
      line-height: 0.95;
      font-weight: 700;
      max-width: 7ch;
      letter-spacing: -0.045em;
    }

    .hero-copy h1 .accent { color: #de3d86; }

    .hero-copy p {
      margin-top: 1.5rem;
      max-width: 31rem;
      color: rgba(255,255,255,0.62);
      font-size: clamp(1rem, 1vw + 0.8rem, 1.42rem);
      line-height: 1.7;
    }

    .product-card {
      justify-self: end;
      width: min(100%, 29rem);
      aspect-ratio: 1 / 1.06;
      border-radius: 1.9rem;
      background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }

    .product-card::before,
    .product-card::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      filter: blur(10px);
      opacity: 0.85;
    }

    .product-card::before {
      width: 12rem;
      height: 12rem;
      background: radial-gradient(circle, rgba(242,53,141,0.75), rgba(242,53,141,0));
      top: 2rem;
      right: 2rem;
    }

    .product-card::after {
      width: 13rem;
      height: 13rem;
      background: radial-gradient(circle, rgba(255,255,255,0.32), rgba(255,255,255,0));
      bottom: 0;
      left: 0;
    }

    .bottle {
      position: absolute;
      bottom: 1.25rem;
      right: 3.2rem;
      width: 8rem;
      height: 14rem;
      border-radius: 1.6rem;
      background: linear-gradient(180deg, #ffffff 0%, #f8d1dd 100%);
      box-shadow: 0 18px 34px rgba(0,0,0,0.18);
      transform: rotate(10deg);
    }

    .bottle::before {
      content: '';
      position: absolute;
      top: -2.4rem;
      left: 50%;
      transform: translateX(-50%);
      width: 2.7rem;
      height: 3.3rem;
      border-radius: 1rem 1rem 0.65rem 0.65rem;
      background: linear-gradient(180deg, #42242a 0%, #120b0d 100%);
    }

    .bottle::after {
      content: 'GELATINE\A SCULPT';
      white-space: pre;
      position: absolute;
      inset: 3.5rem 1.1rem auto 1.1rem;
      text-align: center;
      font-weight: 800;
      line-height: 1.05;
      font-size: 1.25rem;
      color: #b12554;
      letter-spacing: 0.03em;
    }

    .popup-wrap {
      position: relative;
      z-index: 2;
      width: min(100%, 31rem);
    }

    .popup {
      background: rgba(255,255,255,0.98);
      border-radius: clamp(1.4rem, 2.2vw, 2rem);
      box-shadow: var(--shadow-lg);
      padding: clamp(1.5rem, 2.7vw, 3rem) clamp(1.2rem, 2.5vw, 2.55rem) clamp(1.3rem, 2vw, 2rem);
      text-align: center;
      border: 1px solid rgba(255,255,255,0.75);
    }

    .cookie-icon {
      width: 4.4rem;
      height: 4.4rem;
      margin: 0 auto 1rem;
      display: grid;
      place-items: center;
    }

    .popup h2 {
      font-family: var(--font-display);
      font-size: 23px;
    font-weight: 800;
      line-height: 1.08;
      margin-bottom: 1rem;
      color: #161121;
      letter-spacing: -0.03em;
    }

    .popup p {
      margin: 0 auto;
      max-width: 32rem;
      color: var(--color-text-muted);
      line-height: 1.75;
      font-size: 14px !important;
    }

    .popup p strong { color: #251629; font-weight: 800; }
    .popup p a {
      color: #c03871;
      font-weight: 700;
      text-decoration: none;
    }

    .actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
          margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    }

    .btn {
       
      border-radius: var(--radius-full);
      display: inline-flex;
      align-items: center;
      justify-content: center; 
          cursor: pointer;
      gap: 0.6rem;
      padding: 0.95rem 1.2rem;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-accept {
      color: #fff;
      background: linear-gradient(90deg, #ea1673 0%, #fb4f98 100%);
      box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08), 0 14px 26px rgba(242, 53, 141, 0.26);
    }

    .btn-decline {
      color: #7f7d87;
      background: #fff;
      border: 1px solid rgba(34, 20, 36, 0.12);
      box-shadow: inset 0 -1px 0 rgba(0,0,0,0.02);
    }

    .security {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      color: var(--color-text-faint);
      font-size:0.75rem;
      line-height: 1.5;
      flex-wrap: wrap;
    }

    .mobile-bg-note { display: none; }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
        align-content: start;
        justify-items: start;
        padding-top: 5rem;
      }

      .product-card {
        justify-self: stretch;
        width: min(100%, 22rem);
        margin-top: 1rem;
        opacity: 0.65;
      }
    }

    @media (max-width: 640px) {
      .page {
        align-items: center;
        padding: 1rem;
        background-image:
          linear-gradient(180deg, rgba(34, 5, 18, 0.24), rgba(19, 4, 14, 0.56)),
          url('img/mob1.jpg');
        background-position: center top;
      }


      .page::before {
          content: '';
          position: absolute;
          inset: 0;
          background: rgb(14 1 9 / 54%);
    /*backdrop-filter: blur(1.5px);  */
      }



      .offer-bar {
        top: 0.75rem;
        font-size: 0.73rem;
        width: calc(100% - 1.5rem);
      }

      .hero {
        padding: 4.4rem 1rem 1rem;
        opacity: 0.22;
        gap: 1rem;
      }

      .tag { font-size: 0.72rem; padding: 0.58rem 0.85rem; margin-bottom: 1rem; }
      .hero-copy h1 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
      .hero-copy p { font-size: 0.98rem; max-width: 22rem; }
      .product-card { width: 100%; max-width: 18rem; aspect-ratio: 1 / 1; }
      .bottle { right: 2rem; width: 6.2rem; height: 11rem; }

      .popup-wrap { width: 100%; }
      .popup {
        padding: 1.4rem 1rem 1.2rem;
        border-radius: 1.6rem;
      }

      .cookie-icon {width: 5.6rem;
        height: 4.6rem;margin-bottom: 0.7rem; }
      .popup h2 { font-size: 21px; }
      .popup p { font-size:12px !important; line-height: 1.7; }
      .actions { grid-template-columns: 1fr; gap: 0.85rem; margin-top: 1.35rem; }
      .btn { width: 100%; min-height: 2.35rem; }
      .security { font-size: 0.74rem; }
      .mobile-bg-note { display: inline; }
    }