:root {
  --ink: #271c22;
  --muted: #6d6166;
  --paper: #fffdfb;
  --surface: #fff6f7;
  --rose: #bd1e4b;
  --rose-dark: #8e1436;
  --gold: #b77a24;
  --line: #eadde1;
  --success: #176d4a;
  --shadow: 0 18px 50px rgba(66, 23, 39, .09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose-dark); text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link { position: fixed; left: 12px; top: -80px; z-index: 99; padding: 10px 16px; background: #fff; border: 2px solid var(--rose); border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1240px; margin: auto; padding: 14px 24px; }
.brand { display: block; width: min(220px, 44vw); }
.brand img { max-height: 54px; width: auto; }
.site-header nav { display: flex; align-items: center; gap: clamp(12px, 2.5vw, 30px); }
.site-header nav a { color: var(--ink); font-weight: 700; text-decoration: none; }
.cart-link { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; }
.js-cart-count { display: inline-grid; place-items: center; min-width: 23px; height: 23px; margin-left: 5px; padding: 0 6px; border-radius: 99px; background: var(--rose); color: #fff; font-size: 12px; }

.launch-banner { padding: 10px 24px; text-align: center; font-size: 14px; border-block: 1px solid; }
.launch-banner.open { color: #14583d; background: #eaf7f1; border-color: #cce9dc; }
.launch-banner.inquiry { color: #5f430d; background: #fff6dc; border-color: #ead59b; }
.launch-banner.closed { color: #6e4c16; background: #fff4d9; border-color: #ecd7a6; }

main { min-height: 55vh; }
.hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); align-items: center; gap: clamp(28px, 6vw, 90px); max-width: 1240px; margin: 0 auto; padding: clamp(56px, 9vw, 118px) 24px; background: radial-gradient(circle at 78% 30%, #ffe5eb 0, transparent 34%); }
.hero h1, .page-hero h1 { max-width: 16ch; margin: 8px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6.2vw, 78px); line-height: .99; letter-spacing: -.035em; }
.hero p:not(.eyebrow) { max-width: 62ch; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.hero-mark { justify-self: center; display: grid; place-items: center; width: min(34vw, 330px); aspect-ratio: 1; border-radius: 50% 45% 48% 42%; background: linear-gradient(145deg, var(--rose), #ef809b); color: white; font-family: Georgia, serif; font-size: clamp(90px, 16vw, 190px); box-shadow: var(--shadow); transform: rotate(-5deg); }
.eyebrow { margin: 0 0 7px; color: var(--rose-dark); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 12px 20px; background: var(--rose); color: #fff; cursor: pointer; font-weight: 800; text-decoration: none; transition: background .18s ease, transform .18s ease; }
.button:hover { background: var(--rose-dark); transform: translateY(-1px); }
.button:focus-visible, .text-button:focus-visible, .quantity-button:focus-visible, a:focus-visible { outline: 3px solid #f3b8c6; outline-offset: 3px; }
.button-muted, .button.disabled { background: #d6cdd0; color: #5e5558; cursor: not-allowed; transform: none; }
.button-whatsapp { background: var(--success); }

.section { max-width: 1240px; margin: auto; padding: clamp(48px, 7vw, 86px) 24px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-heading h2, .prose h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 46px); line-height: 1.06; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 10px 28px rgba(66, 23, 39, .05); content-visibility: auto; contain-intrinsic-size: auto 520px; }
.product-image { display: block; overflow: hidden; aspect-ratio: 1; background: #f7f2f3; }
.product-image picture, .product-image img, .product-image .product-placeholder { width: 100%; height: 100%; }
.product-image img { object-fit: cover; transition: transform .35s ease; }
.product-image:hover img { transform: scale(1.025); }
.product-placeholder { display: grid; place-items: center; min-height: 260px; background: linear-gradient(145deg, #fbe3e9, #f6c7d3); color: var(--rose-dark); font-family: Georgia, serif; font-size: 92px; }
.product-card-body { display: grid; gap: 10px; padding: 18px; }
.product-card h3 { min-height: 2.5em; margin: 0; font-family: Georgia, serif; font-size: 21px; line-height: 1.2; }
.product-card h3 a { color: var(--ink); text-decoration: none; }
.product-card-body > p:not(.eyebrow) { min-height: 3.1em; margin: 0; color: var(--muted); font-size: 14px; }
.product-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 5px; }
.product-card-actions .button { min-height: 40px; padding: 9px 13px; font-size: 13px; }
.price { white-space: nowrap; font-size: 18px; font-weight: 900; }
.price del { color: var(--muted); font-size: 13px; font-weight: 500; }

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1192px; margin: 0 auto 72px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.trust-strip div { display: grid; gap: 4px; padding: 24px; }
.trust-strip div + div { border-left: 1px solid var(--line); }
.trust-strip span { color: var(--muted); font-size: 14px; }
.complaints-notice { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1192px; margin: 0 auto 72px; padding: 26px 30px; border: 1px solid #f1cfca; border-radius: 18px; background: #fff7f6; }
.complaints-notice h2, .complaints-notice p { margin: 0; }
.complaints-notice .eyebrow { margin-bottom: 6px; }
.complaints-notice .button { flex: 0 0 auto; }

.page-hero { padding: clamp(58px, 8vw, 108px) 24px; background: var(--surface); text-align: center; }
.page-hero h1 { max-width: 20ch; margin-inline: auto; font-size: clamp(40px, 6vw, 68px); }
.page-hero p:not(.eyebrow) { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.page-hero.compact { padding-block: clamp(48px, 7vw, 78px); }
.page-hero.compact h1 { font-size: clamp(38px, 5vw, 58px); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; max-width: 1240px; margin: auto; padding: 26px 24px 0; color: var(--muted); font-size: 14px; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: clamp(34px, 6vw, 84px); align-items: center; max-width: 1120px; margin: auto; padding: clamp(38px, 7vw, 82px) 24px; }
.product-detail-image { overflow: hidden; border-radius: 24px; background: #f4eeef; box-shadow: var(--shadow); }
.product-detail-image picture, .product-detail-image img { width: 100%; }
.product-detail-image img { object-fit: cover; }
.product-detail-image .product-placeholder { aspect-ratio: 1; }
.product-detail-copy h1 { margin: 8px 0 18px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 62px); line-height: 1; }
.product-detail-copy .price { display: block; margin-bottom: 14px; font-size: 28px; }
.lead { color: var(--muted); font-size: 18px; }
.microcopy { max-width: 64ch; color: var(--muted); font-size: 13px; }
.prose { max-width: 820px; }
.prose h2 { margin-top: 38px; font-size: clamp(27px, 3vw, 36px); }
.prose p { font-size: 17px; }
.identity { display: grid; grid-template-columns: minmax(130px, 190px) 1fr; gap: 12px 20px; }
.identity dt { font-weight: 800; }
.identity dd { margin: 0; }

.order-shell { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); gap: 32px; align-items: start; }
.catalog-data { display: none; }
.order-lines { display: grid; gap: 12px; }
.order-line { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.order-line h2 { margin: 0; font-size: 18px; }
.order-line p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.quantity-controls { display: flex; align-items: center; gap: 10px; }
.quantity-button { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-weight: 900; }
.order-summary { position: sticky; top: 20px; display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.order-summary > p:first-child { display: flex; justify-content: space-between; gap: 20px; margin: 0; font-size: 18px; }
.manual-sale-note { max-width: 920px; margin: 0 auto; padding: 18px 22px; border: 1px solid #ead59b; border-radius: 14px; background: #fff8e6; color: #523b0e; font-size: 17px; }
.order-page .manual-sale-note + .order-shell { padding-top: 10px; }
.inquiry-form { display: grid; gap: 9px; padding-top: 8px; border-top: 1px solid var(--line); }
.inquiry-form h2 { margin: 5px 0 4px; font-family: Georgia, serif; font-size: 24px; }
.inquiry-form label { color: var(--ink); font-size: 14px; font-weight: 800; }
.inquiry-form input[type="text"], .inquiry-form input[type="tel"], .inquiry-form textarea { width: 100%; min-height: 44px; border: 1px solid #cdbec3; border-radius: 10px; padding: 10px 12px; background: #fff; color: var(--ink); font: inherit; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus-visible, .inquiry-form textarea:focus-visible { outline: 3px solid #f3b8c6; border-color: var(--rose); }
.consent-check { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; margin: 5px 0; font-weight: 500!important; line-height: 1.4; }
.consent-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--rose); }
.form-error { min-height: 1.4em; margin: 0; color: #a11435; font-size: 13px; font-weight: 700; }
.text-button { justify-self: start; border: 0; padding: 4px 0; background: none; color: var(--rose-dark); cursor: pointer; text-decoration: underline; }
.empty-state { padding: 28px; border: 1px dashed #cfbec4; border-radius: 14px; color: var(--muted); text-align: center; }

.site-footer { margin-top: 60px; padding: 42px max(24px, calc((100% - 1192px) / 2)); background: #281d22; color: #f8eef1; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px 22px; }
.site-footer a { color: #fff; }
.footer-note { margin: 28px 0 0; color: #cdbdc3; font-size: 13px; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 20; padding: 12px 18px; border-radius: 999px; background: #281d22; color: #fff; opacity: 0; pointer-events: none; transform: translateY(14px); transition: .2s ease; }
.toast.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; padding-inline: 16px; }
  .site-header nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; font-size: 14px; }
  .cart-link { grid-column: 1 / -1; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-inline: 20px; }
  .hero-mark { display: none; }
  .product-detail, .order-shell { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; margin-inline: 20px; }
  .trust-strip div + div { border-top: 1px solid var(--line); border-left: 0; }
  .complaints-notice { align-items: stretch; flex-direction: column; margin-inline: 20px; padding: 22px; }
  .complaints-notice .button { text-align: center; }
  .order-summary { position: static; }
  .footer-grid { display: grid; }
  .site-footer nav { justify-content: start; }
}

@media (max-width: 500px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card-body > p:not(.eyebrow), .product-card h3 { min-height: auto; }
  .section-heading { align-items: start; flex-direction: column; }
  .product-card-actions { align-items: stretch; flex-direction: column; }
  .product-card-actions .button { width: 100%; }
  .order-line { align-items: flex-start; flex-direction: column; }
  .identity { grid-template-columns: 1fr; }
  .identity dd { margin-bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
