﻿:root {
      --pink-bg: #ffe8ef;
      --pink-soft: #fff5f8;
      --pink-card: #fff9fb;
      --pink-strong: #ffb8cc;
      --cherry: #c81943;
      --cherry-2: #e02f5c;
      --wine: #4b071b;
      --wine-2: #6f0f2c;
      --black-cherry: #18050c;
      --gold: #c99d56;
      --gold-soft: #f4dca2;
      --cream: #fff8ef;
      --white: #ffffff;
      --text: #29131b;
      --muted: #856873;
      --line: rgba(75, 7, 27, .13);
      --shadow: 0 28px 70px rgba(75, 7, 27, .16);
      --shadow-soft: 0 14px 38px rgba(75, 7, 27, .10);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1180px;
      --font-display: Georgia, "Times New Roman", serif;
      --font-script: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
      --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background:
        radial-gradient(circle at 3% 0%, rgba(255, 184, 204, .8), transparent 29rem),
        radial-gradient(circle at 100% 4%, rgba(244, 220, 162, .38), transparent 28rem),
        linear-gradient(180deg, var(--pink-bg), var(--pink-soft) 42%, #fff);
      line-height: 1.6;
      overflow-x: hidden;
    }

    body.no-scroll {
      overflow: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    select,
    textarea {
      color: var(--text);
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin-inline: auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .topbar {
      background: var(--black-cherry);
      color: rgba(255,255,255,.9);
      font-size: .88rem;
      padding: 10px 0;
    }

    .topbar .container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      text-align: center;
    }

    .topbar strong {
      color: var(--gold-soft);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: rgba(255, 232, 239, .88);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .header-inner {
      min-height: 92px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      border-radius: 20px;
    }

    .brand-logo {
      width: 148px;
      height: auto;
      filter: drop-shadow(0 10px 18px rgba(75, 7, 27, .10));
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 999px;
      color: #4f2734;
      font-size: .94rem;
      font-weight: 800;
      transition: .2s ease;
      white-space: nowrap;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--wine);
      background: rgba(255,255,255,.66);
    }

    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .search-wrap {
      position: relative;
      width: 230px;
    }

    .search-wrap input {
      width: 100%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.82);
      border-radius: 999px;
      padding: 12px 44px 12px 16px;
      outline: none;
      transition: .2s ease;
    }

    .search-wrap input:focus {
      border-color: rgba(200,25,67,.45);
      box-shadow: 0 0 0 4px rgba(200,25,67,.10);
    }

    .search-wrap span {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
    }

    .icon-btn {
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.82);
      color: var(--wine);
      border: 1px solid var(--line);
      position: relative;
      transition: .2s ease;
    }

    .icon-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .count {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 21px;
      height: 21px;
      border-radius: 999px;
      background: var(--cherry);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: .72rem;
      font-weight: 900;
    }

    .menu-btn {
      display: none;
    }

    .page {
      display: none;
      animation: fadeUp .32s ease both;
    }

    .page.active {
      display: block;
    }

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

    .hero {
      padding: 50px 0 40px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 24px;
      align-items: stretch;
    }

    .hero-main {
      min-height: 600px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
      padding: clamp(32px, 6vw, 74px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(24, 5, 12, .95), rgba(75, 7, 27, .90) 52%, rgba(200,25,67,.82)),
        radial-gradient(circle at 78% 20%, rgba(244,220,162,.35), transparent 22rem);
      box-shadow: var(--shadow);
    }

    .hero-main::before {
      content: "";
      position: absolute;
      inset: 24px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 28px;
      pointer-events: none;
    }

    .hero-main::after {
      content: "♥";
      position: absolute;
      right: 42px;
      top: 42px;
      font-size: 6rem;
      color: rgba(255,255,255,.08);
      transform: rotate(12deg);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      margin-bottom: 16px;
      color: var(--gold-soft);
      text-transform: uppercase;
      letter-spacing: .15em;
      font-size: .78rem;
      font-weight: 900;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: currentColor;
    }

    h1,
    .h1 {
      font-family: var(--font-display);
      font-size: clamp(2.7rem, 7vw, 5.9rem);
      line-height: .92;
      letter-spacing: -.06em;
      max-width: 760px;
    }

    .script-word {
      font-family: var(--font-script);
      color: var(--gold-soft);
      font-weight: 400;
      letter-spacing: 0;
      display: inline-block;
      transform: rotate(-2deg);
    }

    .hero-main p {
      margin-top: 22px;
      color: rgba(255,255,255,.82);
      max-width: 640px;
      font-size: 1.08rem;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 49px;
      border-radius: 999px;
      padding: 13px 21px;
      font-weight: 900;
      line-height: 1.1;
      transition: .2s ease;
      text-align: center;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--cherry), var(--cherry-2));
      box-shadow: 0 14px 28px rgba(200,25,67,.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(.97);
    }

    .btn-dark {
      color: #fff;
      background: var(--black-cherry);
    }

    .btn-dark:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .btn-light {
      color: var(--wine);
      background: #fff;
      border: 1px solid var(--line);
    }

    .btn-light:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .btn-ghost {
      color: #fff;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
    }

    .btn-ghost:hover {
      transform: translateY(-2px);
      background: rgba(255,255,255,.18);
    }

    .btn-block {
      width: 100%;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 28px;
      max-width: 720px;
    }

    .trust-pill {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 11px 12px;
      border-radius: 16px;
      color: rgba(255,255,255,.88);
      background: rgba(255,255,255,.11);
      border: 1px solid rgba(255,255,255,.16);
      font-size: .88rem;
      font-weight: 700;
    }

    .hero-side {
      display: grid;
      gap: 18px;
    }

    .feature-card {
      min-height: 190px;
      padding: 28px;
      border-radius: var(--radius-xl);
      background: rgba(255,255,255,.82);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
      display: grid;
      align-content: center;
    }

    .feature-card.dark {
      background:
        linear-gradient(135deg, var(--wine), var(--black-cherry)),
        radial-gradient(circle at top right, rgba(244,220,162,.25), transparent 18rem);
      color: #fff;
    }

    .feature-card::after {
      content: "♥";
      position: absolute;
      right: 22px;
      top: 10px;
      font-size: 5rem;
      color: rgba(200,25,67,.08);
      transform: rotate(14deg);
    }

    .feature-card.dark::after {
      color: rgba(255,255,255,.08);
    }

    .feature-card h3 {
      position: relative;
      z-index: 1;
      font-family: var(--font-display);
      font-size: 2.05rem;
      line-height: 1;
      letter-spacing: -.03em;
      color: inherit;
      margin-bottom: 10px;
    }

    .feature-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      max-width: 420px;
    }

    .feature-card.dark p {
      color: rgba(255,255,255,.78);
    }

    .section {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 26px;
      margin-bottom: 28px;
    }

    .section-title {
      max-width: 740px;
    }

    .section-title .eyebrow {
      color: var(--cherry);
      margin-bottom: 10px;
    }

    h2 {
      font-family: var(--font-display);
      color: var(--wine);
      font-size: clamp(2rem, 4vw, 3.65rem);
      line-height: .98;
      letter-spacing: -.048em;
    }

    .section-title p {
      margin-top: 12px;
      color: var(--muted);
      max-width: 660px;
    }

    .grid {
      display: grid;
      gap: 18px;
    }

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

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

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

    .category-card {
      min-height: 230px;
      padding: 24px;
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 92% 6%, rgba(255,184,204,.55), transparent 7rem),
        linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.98));
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: .2s ease;
      overflow: hidden;
      position: relative;
    }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .category-icon {
      width: 62px;
      height: 62px;
      border-radius: 22px;
      display: grid;
      place-items: center;
      background: var(--rose);
      color: var(--wine);
      font-size: 1.95rem;
      margin-bottom: 24px;
    }

    .category-card h3 {
      color: var(--wine);
      font-size: 1.24rem;
      margin-bottom: 8px;
    }

    .category-card p {
      color: var(--muted);
      font-size: .95rem;
    }

    .product-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .filters {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .chip,
    .select {
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.86);
      color: var(--wine);
      font-weight: 850;
      transition: .2s ease;
      outline: none;
    }

    .chip:hover,
    .chip.active {
      color: #fff;
      background: var(--wine);
    }

    .product-grid {
      align-items: stretch;
    }

    .product-card {
      min-height: 100%;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      transition: .2s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .product-media {
      height: 230px;
      display: grid;
      place-items: center;
      padding: 18px;
      background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.98), rgba(255,232,239,.78) 47%, rgba(255,184,204,.40));
      position: relative;
      overflow: hidden;
    }

    .product-photo {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      transition: transform .28s ease;
    }

    .product-media > .product-photo {
      position: absolute;
      inset: 0;
      object-fit: cover;
    }

    @media (hover: hover) and (pointer: fine) {
      .product-media:hover > .product-photo {
        transform: scale(1.08);
      }

      .main-product-media:hover > .product-photo {
        transform: scale(1.12);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .product-photo {
        transition: none;
      }
    }

    .product-visual {
      width: 132px;
      height: 132px;
      border-radius: 42% 58% 55% 45%;
      transform: rotate(-10deg);
      background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.55), transparent 18%),
        linear-gradient(135deg, var(--cherry-2), var(--wine));
      box-shadow: 0 28px 60px rgba(75,7,27,.24);
    }

    .product-visual.gold {
      background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.60), transparent 18%),
        linear-gradient(135deg, #f1d58e, var(--gold));
    }

    .product-visual.nude {
      background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.75), transparent 18%),
        linear-gradient(135deg, #f5d8d1, #b98286);
    }

    .product-visual.dark {
      background:
        radial-gradient(circle at 30% 22%, rgba(255,255,255,.42), transparent 18%),
        linear-gradient(135deg, #5a0b24, #120207);
    }

    .badge {
      position: absolute;
      left: 15px;
      top: 15px;
      border-radius: 999px;
      background: var(--wine);
      color: #fff;
      padding: 7px 11px;
      font-size: .75rem;
      font-weight: 950;
    }

    .badge.sale {
      background: var(--cherry);
    }

    .wishlist {
      position: absolute;
      right: 15px;
      top: 15px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: var(--wine);
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      transition: .2s ease;
    }

    .wishlist.active {
      color: #fff;
      background: var(--cherry);
    }

    .product-info {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-meta {
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .78rem;
      font-weight: 900;
      margin-bottom: 7px;
    }

    .product-info h3 {
      color: var(--wine);
      font-size: 1.08rem;
      line-height: 1.25;
      margin-bottom: 8px;
      min-height: 42px;
    }

    .rating {
      color: var(--gold);
      font-size: .92rem;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }

    .price {
      color: var(--wine);
      font-size: 1.36rem;
      font-weight: 950;
    }

    .old-price {
      color: var(--muted);
      text-decoration: line-through;
      font-size: .94rem;
    }

    .installments {
      color: var(--muted);
      font-size: .9rem;
      margin-bottom: 14px;
    }

    .product-actions {
      display: grid;
      gap: 9px;
      margin-top: auto;
    }

    .mini-link {
      display: inline-flex;
      justify-content: center;
      color: var(--wine);
      font-weight: 900;
      font-size: .92rem;
      padding: 6px 0;
    }

    .promo-band {
      border-radius: var(--radius-xl);
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,232,239,.92), rgba(255,255,255,.96)),
        radial-gradient(circle at 94% 20%, rgba(200,25,67,.16), transparent 18rem);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      padding: clamp(26px, 5vw, 48px);
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 24px;
      position: relative;
    }

    .promo-band::after {
      content: "🍒";
      position: absolute;
      right: 28px;
      bottom: 14px;
      font-size: 4.2rem;
      opacity: .13;
    }

    .promo-band h2 {
      margin-bottom: 12px;
    }

    .promo-band p {
      color: var(--muted);
      max-width: 680px;
    }

    .benefit-card,
    .info-card,
    .testimonial-card,
    .form-card {
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 24px;
    }

    .benefit-card .icon {
      width: 56px;
      height: 56px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: var(--rose);
      color: var(--wine);
      font-size: 1.75rem;
      margin-bottom: 18px;
    }

    .benefit-card h3,
    .info-card h3,
    .testimonial-card h3 {
      color: var(--wine);
      font-size: 1.12rem;
      margin-bottom: 9px;
    }

    .benefit-card p,
    .info-card p,
    .testimonial-card p {
      color: var(--muted);
    }

    .testimonial-card p {
      font-style: italic;
    }

    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: start;
    }

    .panel {
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(75,7,27,.96), rgba(24,5,12,.96)),
        radial-gradient(circle at top right, rgba(244,220,162,.25), transparent 18rem);
      color: #fff;
      padding: clamp(28px, 5vw, 48px);
      box-shadow: var(--shadow);
      position: sticky;
      top: 120px;
    }

    .panel h2,
    .panel h3 {
      color: #fff;
    }

    .panel p,
    .panel li {
      color: rgba(255,255,255,.78);
    }

    .panel ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .panel li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .breadcrumb {
      display: flex;
      gap: 8px;
      align-items: center;
      flex-wrap: wrap;
      margin: 24px 0;
      color: var(--muted);
      font-size: .92rem;
      font-weight: 700;
    }

    .breadcrumb a {
      color: var(--wine);
    }

    .page-hero {
      padding: 46px 0 24px;
    }

    .page-hero-card {
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 92% 10%, rgba(255,184,204,.58), transparent 14rem),
        rgba(255,255,255,.76);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      padding: clamp(28px, 6vw, 56px);
    }

    .page-hero-card p {
      color: var(--muted);
      max-width: 760px;
      margin-top: 14px;
    }

    .catalog-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 22px;
      align-items: start;
    }

    .sidebar {
      position: sticky;
      top: 120px;
      background: rgba(255,255,255,.86);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 20px;
    }

    .sidebar h3 {
      color: var(--wine);
      margin-bottom: 14px;
    }

    .filter-group {
      border-top: 1px solid var(--line);
      padding-top: 16px;
      margin-top: 16px;
      display: grid;
      gap: 10px;
    }

    .check {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--muted);
      font-weight: 700;
      cursor: pointer;
    }

    .check input {
      accent-color: var(--cherry);
    }

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 14px;
    }

    .field label {
      color: var(--wine);
      font-weight: 900;
      font-size: .92rem;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(255,255,255,.92);
      padding: 13px 14px;
      outline: none;
      transition: .2s ease;
    }

    .field textarea {
      min-height: 124px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(200,25,67,.45);
      box-shadow: 0 0 0 4px rgba(200,25,67,.10);
    }

    .two-fields {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .product-detail-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 26px;
      align-items: start;
      margin-top: 18px;
    }

    .gallery {
      display: grid;
      gap: 14px;
    }

    .main-product-media {
      min-height: 520px;
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.98), rgba(255,232,239,.84) 48%, rgba(255,184,204,.40));
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
    }

    .main-product-media .product-visual {
      width: 230px;
      height: 230px;
    }

    .main-product-media > .product-photo {
      position: absolute;
      inset: 0;
      object-fit: contain;
      padding: 24px;
    }

    .thumbs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .thumb {
      height: 100px;
      border-radius: 18px;
      background: var(--rose);
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .thumb-photo {
      object-fit: cover;
    }

    .thumb-visual {
      width: 42px;
      height: 42px;
    }

    .product-detail {
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      padding: clamp(24px, 4vw, 38px);
    }

    .product-detail h2 {
      margin: 8px 0 14px;
    }

    .detail-price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      flex-wrap: wrap;
      margin: 16px 0 4px;
    }

    .detail-price .price {
      font-size: 2.05rem;
    }

    .seal-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 18px 0;
    }

    .seal {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 12px;
      background: var(--pink-soft);
      color: var(--wine);
      font-size: .84rem;
      font-weight: 900;
      text-align: center;
    }

    .tabs {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    details {
      background: rgba(255,255,255,.72);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
    }

    summary {
      color: var(--wine);
      font-weight: 950;
      cursor: pointer;
    }

    details p,
    details ul {
      color: var(--muted);
      margin-top: 10px;
    }

    details ul {
      padding-left: 20px;
    }

    .cart-drawer {
      position: fixed;
      inset: 0;
      z-index: 110;
      pointer-events: none;
    }

    .drawer-overlay,
    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(24,5,12,.48);
      opacity: 0;
      transition: .22s ease;
    }

    .drawer-panel {
      position: absolute;
      right: 0;
      top: 0;
      width: min(100%, 440px);
      height: 100%;
      background: var(--pink-soft);
      box-shadow: var(--shadow);
      transform: translateX(104%);
      transition: .24s ease;
      display: flex;
      flex-direction: column;
    }

    .cart-drawer.open {
      pointer-events: auto;
    }

    .cart-drawer.open .drawer-overlay {
      opacity: 1;
    }

    .cart-drawer.open .drawer-panel {
      transform: translateX(0);
    }

    .drawer-head,
    .drawer-footer {
      padding: 20px;
      border-bottom: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .drawer-footer {
      border-top: 1px solid var(--line);
      border-bottom: 0;
      display: grid;
    }

    .drawer-head h3 {
      color: var(--wine);
      font-size: 1.35rem;
    }

    .drawer-body {
      padding: 18px;
      overflow-y: auto;
      flex: 1;
      display: grid;
      align-content: start;
      gap: 12px;
    }

    .cart-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 12px;
      display: grid;
      grid-template-columns: 70px 1fr auto;
      gap: 12px;
      align-items: center;
    }

    .cart-mini-media {
      width: 70px;
      height: 70px;
      border-radius: 18px;
      background: var(--rose);
      display: grid;
      place-items: center;
    }

    .cart-mini-media .product-visual {
      width: 38px;
      height: 38px;
    }

    .cart-mini-media .product-photo {
      object-fit: cover;
    }

    .cart-item h4 {
      color: var(--wine);
      font-size: .95rem;
      line-height: 1.2;
    }

    .cart-item p {
      color: var(--muted);
      font-size: .86rem;
    }

    .qty {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }

    .qty button {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      background: var(--rose);
      color: var(--wine);
      font-weight: 950;
    }

    .remove {
      background: transparent;
      color: var(--muted);
      font-size: 1.2rem;
    }

    .total-line {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 950;
      color: var(--wine);
      font-size: 1.15rem;
    }

    .empty-state {
      background: rgba(255,255,255,.82);
      border: 1px dashed rgba(75,7,27,.24);
      border-radius: 20px;
      padding: 28px;
      text-align: center;
      color: var(--muted);
    }

    .checkout-layout {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: start;
    }

    .summary-box {
      position: sticky;
      top: 120px;
      background: rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-soft);
    }

    .summary-line {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      border-bottom: 1px solid var(--line);
      padding: 12px 0;
      color: var(--muted);
    }

    .summary-line.total {
      border-bottom: 0;
      color: var(--wine);
      font-weight: 950;
      font-size: 1.2rem;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .newsletter {
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(75,7,27,.96), rgba(24,5,12,.95)),
        radial-gradient(circle at top right, rgba(244,220,162,.25), transparent 18rem);
      color: #fff;
      box-shadow: var(--shadow);
      padding: clamp(28px, 6vw, 56px);
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 24px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .newsletter::after {
      content: "Cerejinha Mix";
      position: absolute;
      right: -30px;
      bottom: -12px;
      font-family: var(--font-script);
      font-size: 5.6rem;
      color: rgba(255,255,255,.06);
      transform: rotate(-7deg);
    }

    .newsletter h2 {
      color: #fff;
    }

    .newsletter p {
      color: rgba(255,255,255,.78);
      margin-top: 10px;
      max-width: 640px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
      background: rgba(255,255,255,.10);
      padding: 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      position: relative;
      z-index: 1;
    }

    .newsletter-form input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: none;
      border-radius: 999px;
      padding: 0 12px;
      color: #fff;
      background: transparent;
    }

    .newsletter-form input::placeholder {
      color: rgba(255,255,255,.66);
    }

    .site-footer {
      margin-top: 58px;
      background: var(--black-cherry);
      color: rgba(255,255,255,.78);
      padding: 56px 0 22px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .9fr;
      gap: 28px;
      margin-bottom: 34px;
    }

    .footer-logo {
      width: 162px;
      background: #ffe8ef;
      border-radius: 24px;
      padding: 8px 12px;
      margin-bottom: 14px;
    }

    .site-footer h3 {
      color: #fff;
      margin-bottom: 13px;
      font-size: 1rem;
    }

    .site-footer a {
      display: block;
      margin: 8px 0;
      color: rgba(255,255,255,.72);
    }

    .site-footer a:hover {
      color: var(--gold-soft);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.10);
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: .88rem;
    }

    .age-modal {
      position: fixed;
      inset: 0;
      z-index: 150;
      display: none;
    }

    .age-modal.open {
      display: grid;
      place-items: center;
    }

    .age-modal.open .modal-overlay {
      opacity: 1;
    }

    .modal-card {
      position: relative;
      width: min(100% - 32px, 540px);
      background: var(--pink-soft);
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 34px;
      text-align: center;
      z-index: 1;
    }

    .modal-card .brand-logo {
      width: 172px;
      margin: 0 auto 16px;
    }

    .modal-card h2 {
      font-size: clamp(2rem, 6vw, 3.2rem);
      margin-bottom: 12px;
    }

    .modal-card p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .modal-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: 24px;
      transform: translate(-50%, 120px);
      background: var(--black-cherry);
      color: #fff;
      padding: 13px 18px;
      border-radius: 999px;
      z-index: 200;
      box-shadow: var(--shadow);
      opacity: 0;
      transition: .25s ease;
      font-weight: 800;
      text-align: center;
    }

    .toast.show {
      transform: translate(-50%, 0);
      opacity: 1;
    }

    .mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 100;
      pointer-events: none;
    }

    .mobile-nav .drawer-overlay {
      opacity: 0;
    }

    .mobile-nav.open {
      pointer-events: auto;
    }

    .mobile-nav.open .drawer-overlay {
      opacity: 1;
    }

    .mobile-panel {
      position: absolute;
      left: 0;
      top: 0;
      width: min(86vw, 360px);
      height: 100%;
      background: var(--pink-soft);
      box-shadow: var(--shadow);
      transform: translateX(-104%);
      transition: .24s ease;
      padding: 20px;
      overflow-y: auto;
    }

    .mobile-nav.open .mobile-panel {
      transform: translateX(0);
    }

    .mobile-panel .brand-logo {
      width: 160px;
      margin-bottom: 18px;
    }

    .mobile-links {
      display: grid;
      gap: 8px;
    }

    .mobile-links a {
      padding: 13px 14px;
      border-radius: 16px;
      color: var(--wine);
      background: rgba(255,255,255,.74);
      font-weight: 900;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 16px;
    }

    .tag {
      background: var(--rose);
      color: var(--wine);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: .86rem;
      font-weight: 850;
    }

    .order-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
    }

    .status {
      border-radius: 999px;
      padding: 8px 12px;
      font-size: .82rem;
      font-weight: 950;
      background: #e8fff1;
      color: #0d6b38;
      text-align: center;
    }

    @media (max-width: 1320px) {
      .search-wrap {
        display: none;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
      }

      .nav {
        justify-content: flex-end;
      }
    }

    @media (max-width: 980px) {
      .nav {
        display: none;
      }

      .menu-btn {
        display: grid;
      }

      .header-inner {
        min-height: 82px;
      }

      .hero-grid,
      .promo-band,
      .split,
      .catalog-layout,
      .product-detail-grid,
      .checkout-layout,
      .newsletter {
        grid-template-columns: 1fr;
      }

      .hero-main {
        min-height: auto;
      }

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

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

      .sidebar,
      .panel,
      .summary-box {
        position: static;
      }

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

    @media (max-width: 640px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .topbar {
        font-size: .78rem;
      }

      .topbar .container {
        gap: 8px 16px;
      }

      .brand-logo {
        width: 126px;
      }

      .header-actions .icon-btn[data-page-link="favoritos"] {
        display: none;
      }

      .hero {
        padding-top: 26px;
      }

      .hero-main {
        border-radius: 26px;
        padding: 30px 22px;
      }

      .hero-main::before {
        inset: 12px;
        border-radius: 20px;
      }

      .hero-actions,
      .section-head {
        align-items: stretch;
        flex-direction: column;
      }

      .hero-actions .btn,
      .section-head .btn {
        width: 100%;
      }

      .trust-row,
      .grid-2,
      .grid-3,
      .grid-4,
      .seal-row,
      .two-fields,
      .thumbs,
      .modal-actions {
        grid-template-columns: 1fr;
      }

      .product-media {
        height: 210px;
      }

      .main-product-media {
        min-height: 360px;
      }

      .main-product-media .product-visual {
        width: 180px;
        height: 180px;
      }

      .newsletter-form {
        border-radius: 22px;
        flex-direction: column;
      }

      .newsletter-form input {
        min-height: 46px;
      }

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

      .footer-bottom {
        display: grid;
      }

      .cart-item {
        grid-template-columns: 60px 1fr auto;
      }
    }

    .account-button {
      position: relative;
    }

    .account-button.is-authenticated::after {
      content: "";
      width: 9px;
      height: 9px;
      position: absolute;
      right: 5px;
      bottom: 5px;
      border: 2px solid var(--white);
      border-radius: 50%;
      background: #2d9b66;
    }

    .account-section {
      background: #f7f3f5;
    }

    .account-auth-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .account-card {
      min-height: 100%;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 16px 50px rgba(67, 13, 32, .07);
    }

    .account-card-register {
      border-top: 4px solid var(--wine);
    }

    .account-card h2,
    .customer-welcome h2,
    .account-empty-state h2 {
      margin: 5px 0 8px;
      color: var(--wine);
      font-size: 1.75rem;
      letter-spacing: 0;
    }

    .account-card > p,
    .customer-welcome p,
    .account-empty-state p {
      margin: 0 0 20px;
      color: var(--muted);
    }

    .account-kicker {
      color: var(--cherry);
      font-size: .76rem;
      font-weight: 850;
      text-transform: uppercase;
    }

    .account-form-message {
      min-height: 0;
      margin-bottom: 0;
      padding: 0;
      border-radius: 5px;
      font-size: .88rem;
      font-weight: 700;
    }

    .account-form-message.is-error,
    .account-form-message.is-success {
      min-height: 42px;
      margin-bottom: 16px;
      padding: 10px 12px;
    }

    .account-form-message.is-error {
      color: #9c2632;
      background: #fff0f2;
    }

    .account-form-message.is-success {
      color: #24754d;
      background: #edf8f2;
    }

    .account-card.is-loading {
      opacity: .72;
    }

    .account-age-check {
      margin-bottom: 16px;
    }

    .account-security-note {
      margin-top: 12px;
      display: block;
      color: var(--muted);
      text-align: center;
    }

    .account-service-error {
      margin-bottom: 18px;
      padding: 13px 15px;
      border: 1px solid #e8b9bd;
      border-radius: 6px;
      color: #9c2632;
      background: #fff1f2;
      font-weight: 700;
    }

    .customer-dashboard {
      display: grid;
      gap: 20px;
    }

    .customer-welcome {
      padding: 28px 0 8px;
      border-bottom: 1px solid var(--line);
    }

    .customer-profile {
      padding: 20px;
      display: grid;
      grid-template-columns: 54px 1fr auto;
      align-items: center;
      gap: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
    }

    .customer-avatar,
    .empty-symbol {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: var(--white);
      background: var(--wine);
      font-weight: 900;
    }

    .customer-profile > div:nth-child(2) {
      display: grid;
    }

    .customer-profile strong {
      color: var(--wine);
    }

    .customer-profile span {
      color: var(--muted);
    }

    .account-shortcuts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .account-shortcuts button {
      min-height: 92px;
      padding: 16px;
      display: grid;
      align-content: center;
      gap: 3px;
      border: 1px solid var(--line);
      border-radius: 7px;
      color: var(--wine);
      background: var(--white);
      cursor: pointer;
      text-align: left;
    }

    .account-shortcuts button:hover {
      border-color: var(--cherry);
    }

    .account-shortcuts span {
      color: var(--muted);
      font-size: .8rem;
    }

    .account-empty-state {
      min-height: 320px;
      padding: 40px 20px;
      display: grid;
      place-items: center;
      align-content: center;
      text-align: center;
    }

    .account-empty-state .empty-symbol {
      margin-bottom: 12px;
    }

    .account-empty-state p {
      max-width: 480px;
    }

    [hidden] {
      display: none !important;
    }

    @media (max-width: 760px) {
      .account-auth-grid,
      .account-shortcuts {
        grid-template-columns: 1fr;
      }

      .customer-profile {
        grid-template-columns: 46px 1fr;
      }

      .customer-profile .btn {
        grid-column: 1 / -1;
      }
    }

