:root {
  --off: #f8f4ed;
  --paper: #fffdf8;
  --champagne: #d6b980;
  --gold: #c8a45d;
  --green: #12372f;
  --deep: #0b241f;
  --ink: #222;
  --muted: #77736c;
  --line: rgba(34, 34, 34, .12);
  --radius: 8px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, Montserrat, Lato, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--off); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font: inherit; border: 1px solid var(--line); border-radius: var(--radius); padding: .8rem .9rem; background: #fff; color: var(--ink); }
textarea { min-height: 110px; resize: vertical; }
button { cursor: pointer; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.05; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); }
.topbar { background: var(--deep); color: var(--champagne); text-align: center; padding: .55rem 1rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.site-header { position: sticky; top: 0; z-index: 30; display: grid; grid-template-columns: auto 1fr auto; gap: 1.3rem; align-items: center; padding: .8rem clamp(1rem, 4vw, 3rem); background: rgba(248,244,237,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand img { width: 150px; mix-blend-mode: multiply; }
.main-nav { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
.main-nav a:hover, .site-footer a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.search input { width: 130px; padding: .55rem .7rem; }
.cart-link span { display: inline-grid; place-items: center; min-width: 1.4rem; height: 1.4rem; margin-left: .25rem; border-radius: 99px; background: var(--green); color: #fff; font-size: .75rem; }
.whatsapp-link, .btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border: 1px solid var(--green); background: var(--green); color: #fff; border-radius: var(--radius); padding: .85rem 1.25rem; transition: .2s ease; }
.btn:hover, .whatsapp-link:hover { transform: translateY(-1px); background: var(--deep); }
.btn-light { background: rgba(255,255,255,.92); color: var(--deep); border-color: rgba(255,255,255,.8); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.nav-toggle { display: none; background: transparent; border: 0; padding: .5rem; }
.hero { position: relative; min-height: 72vh; display: grid; align-items: end; overflow: hidden; background: var(--deep); }
.hero picture, .hero picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero:after, .category-hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,36,31,.8), rgba(11,36,31,.2)); }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: clamp(2rem, 8vw, 6rem); color: #fff; }
.hero-content p { max-width: 620px; color: rgba(255,255,255,.82); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.eyebrow { margin: 0 0 .7rem; color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; font-weight: 700; }
.section { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; padding: clamp(3rem, 7vw, 6rem) 0; }
.section-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1.6rem; }
.section-head h2 { max-width: 760px; }
.category-grid, .product-grid, .moment-grid, .benefits, .steps, .admin-cards { display: grid; gap: 1rem; }
.category-grid { grid-template-columns: repeat(6, 1fr); }
.category-card { min-height: 230px; position: relative; overflow: hidden; border-radius: var(--radius); background: #fff; }
.category-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .35s ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card span, .category-card small { position: absolute; left: 1rem; right: 1rem; color: #fff; text-shadow: 0 1px 16px rgba(0,0,0,.4); }
.category-card span { bottom: 2.5rem; font-family: var(--serif); font-size: 1.7rem; }
.category-card small { bottom: 1rem; font-size: .85rem; }
.moment-grid { grid-template-columns: repeat(3, 1fr); }
.moment-grid a, .moment-grid span { display: block; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.55); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.product-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(18,55,47,.08); }
.product-media { position: relative; aspect-ratio: 4/5; background: #eee6da; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-media span { position: absolute; top: .75rem; left: .75rem; background: rgba(255,255,255,.9); border-radius: 99px; padding: .25rem .55rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; }
.product-media span + span { top: 2.55rem; }
.product-media-title { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 3; color: #fff; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.04; text-shadow: 0 2px 18px rgba(0,0,0,.42); }
.product-info { padding: 1rem; }
.product-info p, .product-info small, .subtitle, .sku, .breadcrumb { color: var(--muted); }
.price { display: flex; gap: .55rem; align-items: baseline; }
.price strong { color: var(--green); font-size: 1.1rem; }
.price del { color: var(--muted); }
.sarah-banner, .split, .checkout-layout, .product-page, .catalog-layout, .admin-grid { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(3rem, 7vw, 6rem) 0; }
.sarah-banner { background: var(--deep); color: #fff; width: 100%; padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem); }
.sarah-banner img, .split img { border-radius: var(--radius); width: 100%; max-height: 420px; object-fit: cover; }
.benefits { grid-template-columns: repeat(6, 1fr); }
.benefits div { padding: 1rem; border-top: 1px solid var(--line); }
.benefits span { display: block; color: var(--gold); }
.guide-strip { display: flex; justify-content: space-between; gap: 1rem; align-items: center; border-block: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.page-hero { position: relative; padding: clamp(4rem, 12vw, 8rem) clamp(1rem, 6vw, 5rem); color: #fff; background: var(--green); overflow: hidden; }
.category-hero { background-image: var(--hero-image); background-size: cover; background-position: center; }
.page-hero > * { position: relative; z-index: 1; max-width: 760px; }
.simple { color: var(--ink); background: linear-gradient(135deg, #fff, #f1e7d7); }
.filters { align-self: start; display: grid; gap: .75rem; padding: 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.filters label, .form-panel label, .login-card label { display: grid; gap: .35rem; color: var(--muted); font-size: .9rem; }
.gallery { display: grid; gap: 1rem; }
.main-product-image { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); background: #eee6da; }
.thumbs { display: flex; gap: .5rem; overflow-x: auto; }
.thumbs button { padding: 0; width: 76px; height: 76px; overflow: hidden; background: transparent; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1rem 0; }
.specs div { border-top: 1px solid var(--line); padding-top: .7rem; }
.specs dt { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.specs dd { margin: 0; }
.add-cart, .cart-table { display: grid; gap: .85rem; }
.product-copy { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.product-copy article, .summary, .form-panel, .table-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.narrow { max-width: 850px; }
.cart-row, .cart-total { display: grid; grid-template-columns: 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-row input { width: 85px; }
.cart-total { grid-template-columns: 1fr auto; font-size: 1.2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.full { grid-column: 1 / -1; }
.sarah-hero { min-height: 72vh; display: grid; align-items: end; color: #fff; padding: clamp(3rem, 8vw, 7rem); background: linear-gradient(90deg, rgba(11,36,31,.96), rgba(18,55,47,.72)), url("../img/hero-sfarzo.png") center/cover; }
.sarah-hero div { max-width: 760px; }
.steps { grid-template-columns: repeat(6, 1fr); }
.steps div { padding: 1rem; border-left: 1px solid var(--gold); }
.steps span { display: block; color: var(--gold); font-family: var(--serif); font-size: 2rem; }
.dark { background: var(--deep); color: #fff; }
.site-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding: 3rem clamp(1rem, 5vw, 4rem); background: var(--deep); color: rgba(255,255,255,.8); }
.site-footer img { width: 170px; filter: brightness(1.2); }
.site-footer nav { display: grid; gap: .45rem; align-content: start; }
.site-footer strong { color: var(--champagne); }
.site-footer small { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; }
.flash { padding: .85rem 1rem; border-radius: var(--radius); background: #edf8f0; color: #1d6d34; }
.flash.error { background: #fff0f0; color: #9b1c1c; }
.empty { grid-column: 1 / -1; color: var(--muted); }
pre { white-space: pre-wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.login-body { min-height: 100vh; display: grid; place-items: center; padding: 1rem; background: radial-gradient(circle at top, #fff 0, var(--off) 58%, #eadcc6 100%); }
.login-card { width: min(420px, 100%); display: grid; gap: .9rem; padding: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(18,55,47,.12); }
.login-card img { width: 180px; margin: 0 auto; mix-blend-mode: multiply; }
.admin-body { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; background: #f6f1e8; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; display: grid; align-content: start; gap: .45rem; padding: 1.2rem; background: var(--deep); color: #fff; }
.admin-sidebar a { padding: .65rem .75rem; border-radius: var(--radius); color: rgba(255,255,255,.82); }
.admin-sidebar a:hover { background: rgba(255,255,255,.08); color: var(--champagne); }
.admin-main { padding: clamp(1rem, 4vw, 2.5rem); overflow-x: auto; }
.admin-cards { grid-template-columns: repeat(3, 1fr); }
.admin-cards article { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; color: var(--muted); }
.admin-cards span { display: block; font-family: var(--serif); color: var(--green); font-size: 2.6rem; }
.admin-toolbar { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
table { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--line); }
th, td { padding: .8rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.inline-form { display: inline; }
.inline-form button { padding: .35rem .55rem; background: transparent; color: #9b1c1c; }
.wide { max-width: 1180px; }
.check-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }

/* Premium UX refinements */
body { background: linear-gradient(180deg, #fffdf8 0, var(--off) 46%, #f3eadb 100%); }
.site-header { grid-template-columns: minmax(180px, 1fr) auto; justify-content: stretch; gap: .8rem 1.4rem; padding: .65rem clamp(1rem, 4vw, 3rem); }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 186px; max-height: 58px; object-fit: contain; mix-blend-mode: multiply; }
.main-nav { grid-column: 1 / -1; grid-row: 2; width: 100%; gap: clamp(.55rem, 1.5vw, 1.25rem); font-size: .78rem; align-items: center; justify-content: center; flex-wrap: nowrap; }
.main-nav a { position: relative; padding: .6rem 0; white-space: nowrap; }
.main-nav a:after { content: ""; position: absolute; left: 0; right: 0; bottom: .32rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.main-nav a:hover:after { transform: scaleX(1); }
.header-actions { gap: .55rem; }
.search input { width: 112px; border-color: transparent; background: rgba(255,255,255,.68); }
.whatsapp-link { padding: .72rem 1rem; font-size: .84rem; white-space: nowrap; }
.cart-link { white-space: nowrap; font-size: .86rem; }
.hero-carousel { min-height: clamp(620px, 82vh, 820px); align-items: stretch; }
.hero-carousel:after { display: none; }
.hero-slide { position: absolute; inset: 0; display: grid; align-items: end; opacity: 0; pointer-events: none; transition: opacity .7s ease; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide picture, .hero-slide picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide-link { position: absolute; inset: 0; z-index: 1; }
.hero-slide:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,36,31,.86), rgba(11,36,31,.28) 55%, rgba(11,36,31,.08)); }
.hero-content { z-index: 2; padding: clamp(2.5rem, 8vw, 7rem); }
.hero-content h1 { max-width: 780px; font-size: clamp(3.2rem, 8vw, 6.6rem); }
.hero-content p { font-size: clamp(1rem, 2vw, 1.22rem); }
.hero-content .actions { position: relative; z-index: 3; }
.carousel-dots { position: absolute; z-index: 4; left: clamp(1rem, 8vw, 7rem); bottom: 2rem; display: flex; gap: .55rem; }
.carousel-dots button { width: 38px; height: 3px; padding: 0; border: 0; border-radius: 99px; background: rgba(255,255,255,.44); }
.carousel-dots button.is-active { background: var(--champagne); }
.section { width: min(1240px, calc(100% - 2rem)); }
.section-head h2 { font-size: clamp(2.3rem, 5.8vw, 4.4rem); }
.category-grid { grid-template-columns: repeat(3, 1fr); }
.category-card { min-height: 330px; }
.category-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(11,36,31,.72)); }
.category-card span, .category-card small { z-index: 1; }
.category-card span { bottom: 3.25rem; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.category-card small { bottom: 1.35rem; max-width: 88%; }
.product-grid { gap: 1.25rem; }
.product-card { border-color: rgba(200,164,93,.2); background: rgba(255,253,248,.92); }
.product-media { isolation: isolate; }
.product-media:after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,36,31,0) 42%, rgba(11,36,31,.66)); pointer-events: none; }
.product-media span { top: .75rem; left: .75rem; max-width: calc(100% - 1.5rem); }
.product-media span + span { top: 2.6rem; }
.product-media span + span + span { top: 4.45rem; }
.product-badges {
  position: absolute;
  z-index: 2;
  top: .75rem;
  left: .75rem;
  right: .75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .38rem;
  pointer-events: none;
}
.product-badges span,
.product-media .product-badges span,
.product-media .product-badges span + span,
.product-media .product-badges span + span + span {
  position: static !important;
  display: inline-flex;
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: none !important;
  min-width: max-content !important;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  background: rgba(255,255,255,.92);
  border-radius: 99px;
  padding: .28rem .6rem;
  font-size: .68rem;
  line-height: 1.12;
  font-stretch: normal;
  transform: none;
  -webkit-text-size-adjust: 100%;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.product-info h3 { font-size: 1.35rem; margin-bottom: .55rem; }
.product-info p { min-height: auto; margin: 0 0 .35rem; }
.product-cta { display: inline-flex; margin-top: .85rem; color: var(--green); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--gold); }
.sarah-banner { align-items: center; border-block: 1px solid rgba(214,185,128,.28); }
.page-hero h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); }
.page-hero p { font-size: clamp(1rem, 2vw, 1.22rem); }
.catalog-section { padding-top: 2rem; }
.catalog-tools { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(240px, 1fr) 220px auto auto; gap: .75rem; align-items: end; margin-bottom: 1rem; padding: 1rem; border: 1px solid rgba(200,164,93,.22); border-radius: var(--radius); background: rgba(255,253,248,.9); box-shadow: 0 20px 50px rgba(18,55,47,.06); }
.catalog-search, .catalog-sort { display: grid; gap: .35rem; color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.catalog-search input, .catalog-sort select { min-height: 48px; border-color: rgba(200,164,93,.32); background: #fff; }
.filter-drawer { grid-column: 1 / -1; display: none; grid-template-columns: repeat(4, 1fr); gap: .75rem; padding-top: .85rem; border-top: 1px solid var(--line); }
.filter-drawer.is-open { display: grid; }
.filter-drawer label { display: grid; gap: .3rem; color: var(--muted); font-size: .86rem; }
.check-filter { align-content: end; grid-template-columns: auto 1fr; align-items: center; color: var(--ink); }
.check-filter input { width: auto; }
.catalog-count { margin: .6rem 0 1.2rem; color: var(--muted); font-size: .9rem; }
.main-product-frame { overflow: hidden; border-radius: var(--radius); background: #efe7da; cursor: zoom-in; }
.main-product-image { transition: transform .55s ease, filter .55s ease; }
.main-product-frame:hover .main-product-image { transform: scale(1.12); filter: saturate(1.06) contrast(1.02); }
.product-detail h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.product-detail .subtitle { font-size: 1.08rem; }
.product-page { align-items: start; padding-top: clamp(2rem, 5vw, 4rem); }
.btn-whatsapp { background: #12372f; border-color: #12372f; }
.btn-whatsapp:before { content: "WhatsApp"; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; opacity: .78; }
.product-copy article { min-width: 0; }
.measure-link {
  display: grid;
  gap: .15rem;
  margin-top: 1.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(200,164,93,.42);
  border-radius: var(--radius);
  background: rgba(255,253,248,.72);
  color: var(--green);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.measure-link span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.measure-link strong {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
}
.measure-link strong:after {
  content: "→";
  color: var(--gold);
  font-size: 1.25rem;
}
.measure-link:hover {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: #fff;
}
.dropzone { position: relative; display: grid; place-items: center; gap: .25rem; min-height: 150px; padding: 1.2rem; border: 1px dashed rgba(200,164,93,.72); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,253,248,.96), rgba(248,244,237,.8)); text-align: center; cursor: pointer; transition: .2s ease; }
.dropzone:hover, .dropzone.is-dragging { border-color: var(--green); background: #fff; box-shadow: 0 18px 40px rgba(18,55,47,.08); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone strong { color: var(--green); font-size: 1rem; }
.dropzone small, .dropzone-list { color: var(--muted); font-size: .82rem; }
.dropzone-list { display: block; margin-top: .45rem; }
.site-footer img { width: 230px; filter: none; }
@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto; }
  .brand img { width: 176px; }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .main-nav, .header-actions { grid-column: 1 / -1; display: none; justify-content: start; padding-top: .75rem; border-top: 1px solid var(--line); }
  .main-nav.is-open, .header-actions.is-open { display: flex; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits, .steps { grid-template-columns: repeat(3, 1fr); }
  .catalog-layout, .product-page, .sarah-banner, .split, .checkout-layout, .admin-grid { grid-template-columns: 1fr; }
  .catalog-tools { grid-template-columns: 1fr 1fr; }
  .filter-drawer { grid-template-columns: repeat(2, 1fr); }
  .product-copy { grid-template-columns: repeat(2, 1fr); }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  h1 { font-size: 2.8rem; }
  .site-header { gap: .5rem; }
  .brand img { width: 150px; }
  .main-nav, .header-actions, .actions, .guide-strip, .admin-toolbar { flex-direction: column; align-items: stretch; }
  .search input { width: 100%; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 2rem 1rem 4rem; }
  .hero-content h1 { font-size: 3rem; }
  .carousel-dots { left: 1rem; bottom: 1.35rem; }
  .section-head { display: block; }
  .category-grid, .product-grid, .moment-grid, .benefits, .steps, .form-grid, .product-copy, .admin-cards, .site-footer { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .catalog-tools { grid-template-columns: 1fr; padding: .85rem; }
  .filter-drawer { grid-template-columns: 1fr; }
  .page-hero { padding: 3.4rem 1rem; }
  .cart-row { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr; }
  .admin-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .product-badges {
    top: .55rem;
    left: .55rem;
    right: .55rem;
    gap: .3rem;
  }
  .product-badges span,
  .product-media .product-badges span,
  .product-media .product-badges span + span,
  .product-media .product-badges span + span + span {
    position: static !important;
    flex: 0 0 auto !important;
    width: max-content !important;
    max-width: none !important;
    min-width: max-content !important;
    white-space: nowrap;
    overflow: visible;
    padding: .32rem .54rem !important;
    font-size: .62rem !important;
    letter-spacing: .02em !important;
    line-height: 1.1;
    font-stretch: normal;
    transform: none !important;
    -webkit-text-size-adjust: 100%;
  }
  .product-media-title {
    left: .75rem;
    right: .75rem;
    bottom: .8rem;
    font-size: clamp(1.28rem, 7vw, 1.7rem);
  }
}

@media (min-width: 1051px) {
  .site-header {
    grid-template-columns: 155px minmax(0, 1fr) auto !important;
    align-items: center;
    gap: .75rem !important;
    padding-top: .45rem !important;
    padding-bottom: .45rem !important;
  }
  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .site-header .header-actions {
    grid-column: 3;
    grid-row: 1;
  }
  .site-header .main-nav {
    grid-column: 2 !important;
    grid-row: 1;
    width: 100%;
    flex-wrap: nowrap !important;
    justify-content: center;
  }
}

/* Fixes from visual QA: compact header, visible hero CTAs and contained product copy. */
@media (min-width: 1051px) {
  .brand img {
    width: 150px !important;
    max-height: 48px !important;
    object-fit: contain;
    mix-blend-mode: normal !important;
  }
  .main-nav {
    gap: clamp(.42rem, .9vw, .8rem) !important;
    font-size: .68rem !important;
    letter-spacing: .055em !important;
  }
  .main-nav a {
    white-space: nowrap;
    padding: .45rem 0 !important;
  }
  .header-actions {
    gap: .4rem !important;
  }
  .search input {
    width: clamp(190px, 18vw, 260px) !important;
    min-height: 42px;
    padding: .52rem .62rem !important;
  }
  .whatsapp-link,
  .btn {
    padding: .72rem 1rem;
  }
  .whatsapp-link {
    font-size: .8rem !important;
  }
}

.hero-carousel {
  min-height: clamp(520px, calc(100vh - 110px), 700px) !important;
}
.hero-content {
  max-width: 680px !important;
  padding: clamp(2rem, 5vw, 4.4rem) clamp(1rem, 7vw, 5.5rem) clamp(2.4rem, 5vw, 4.8rem) !important;
}
.hero-content h1 {
  max-width: 640px !important;
  font-size: clamp(2.85rem, 6.2vw, 5.25rem) !important;
  line-height: .94 !important;
  margin-bottom: .85rem !important;
}
.hero-content p {
  max-width: 560px !important;
  margin-bottom: 0 !important;
}
.hero-content .actions {
  margin-top: 1.1rem !important;
}

.product-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
}
.product-copy article {
  overflow: hidden;
  min-width: 0;
}
.product-copy h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem) !important;
  line-height: 1.02 !important;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.product-copy p {
  overflow-wrap: anywhere;
}

@media (max-width: 1050px) {
  .brand img {
    mix-blend-mode: normal !important;
  }
}

@media (max-width: 700px) {
  .hero-carousel {
    min-height: 650px !important;
  }
  .hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 3.6rem) !important;
  }
  .product-copy {
    grid-template-columns: 1fr !important;
  }
  .product-copy h2 {
    font-size: clamp(2.2rem, 12vw, 3rem) !important;
  }
}

/* Admin experience */
.admin-body {
  background: linear-gradient(180deg, #fbf8f2 0, #f2eadc 100%);
}
.admin-sidebar {
  gap: .28rem;
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(214,185,128,.22);
  box-shadow: 12px 0 36px rgba(11,36,31,.08);
}
.admin-sidebar strong {
  margin-bottom: .1rem;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}
.admin-sidebar small {
  margin-bottom: 1rem;
  color: rgba(255,255,255,.58);
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid transparent;
}
.admin-sidebar a:hover {
  border-color: rgba(214,185,128,.2);
}
.admin-main {
  max-width: 1360px;
  width: 100%;
}
.admin-page-head {
  display: grid;
  gap: .25rem;
  margin-bottom: 1.35rem;
}
.admin-page-head span,
.admin-form-section span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.admin-page-head h1 {
  color: var(--deep);
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  margin: 0;
}
.admin-form-section {
  display: grid;
  gap: .15rem;
  margin-bottom: .15rem;
}
.admin-form-section h2 {
  color: var(--deep);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  margin-bottom: .25rem;
}
.form-panel,
.table-panel {
  border-color: rgba(200,164,93,.22);
  box-shadow: 0 20px 48px rgba(18,55,47,.06);
}
.form-panel {
  display: grid;
  gap: 1.15rem;
}
.form-panel label,
.login-card label {
  color: #5f5a52;
  font-weight: 600;
}
.form-panel input,
.form-panel textarea,
.form-panel select,
.admin-search input,
.admin-inline-status select {
  width: 100%;
  border-color: rgba(34,34,34,.14);
  background: rgba(255,255,255,.92);
}
.form-panel input:focus,
.form-panel textarea:focus,
.form-panel select:focus,
.admin-search input:focus,
.admin-inline-status select:focus {
  outline: 2px solid rgba(200,164,93,.32);
  border-color: var(--gold);
}
.field-help {
  display: block;
  max-width: 720px;
  color: #817970;
  font-size: .79rem;
  font-weight: 400;
  line-height: 1.45;
}
.admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: .25rem;
}
.admin-toolbar {
  align-items: center;
  padding: .95rem;
  border: 1px solid rgba(200,164,93,.22);
  border-radius: var(--radius);
  background: rgba(255,253,248,.82);
  box-shadow: 0 16px 36px rgba(18,55,47,.05);
}
.admin-search {
  display: flex;
  gap: .65rem;
  margin-left: auto;
}
.admin-search input {
  min-width: min(360px, 52vw);
}
.table-panel {
  overflow: hidden;
  padding: 0;
}
.table-panel table {
  border: 0;
}
.table-panel th {
  background: rgba(248,244,237,.74);
}
.table-panel td {
  color: #403b35;
}
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
}
.table-actions a {
  color: var(--green);
  font-weight: 700;
}
.inline-form button {
  border: 0;
  color: #a33a2d;
  font-weight: 700;
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .28rem .62rem;
  border: 1px solid rgba(34,34,34,.1);
  border-radius: 99px;
  background: rgba(255,255,255,.82);
  color: #5f5a52;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.admin-badge.status-active,
.admin-badge.status-pago,
.admin-badge.status-convertido,
.admin-badge.status-enviado {
  border-color: rgba(29,109,52,.18);
  background: #edf8f0;
  color: #1d6d34;
}
.admin-badge.status-inactive,
.admin-badge.status-cancelado,
.admin-badge.status-perdido {
  border-color: rgba(155,28,28,.15);
  background: #fff0f0;
  color: #9b1c1c;
}
.admin-badge.status-draft,
.admin-badge.status-rascunho,
.admin-badge.status-aguardando-pagamento {
  border-color: rgba(200,164,93,.28);
  background: #fff8e8;
  color: #8d6724;
}
.admin-inline-status {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin: 1rem 0;
}
.admin-inline-status select {
  max-width: 280px;
}
.admin-back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--green);
  font-weight: 700;
}
.admin-back-link:before {
  content: "←";
  margin-right: .4rem;
  color: var(--gold);
}
.admin-check-row {
  padding: .85rem;
  border: 1px solid rgba(200,164,93,.22);
  border-radius: var(--radius);
  background: rgba(255,253,248,.7);
}
.admin-check-row label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #4c463e;
  font-weight: 700;
}
.admin-check-row input {
  width: auto;
}
.admin-reset-password {
  display: flex;
  gap: .55rem;
  align-items: center;
  min-width: 280px;
}
.admin-reset-password input {
  min-width: 150px;
  padding: .55rem .65rem;
}
.admin-reset-password .btn {
  padding: .55rem .75rem;
  white-space: nowrap;
}
@media (max-width: 1050px) {
  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: auto;
  }
  .admin-sidebar strong,
  .admin-sidebar small {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  .admin-main {
    padding: 1rem;
  }
  .admin-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .admin-sidebar a {
    min-height: 38px;
    padding: .55rem .6rem;
    font-size: .88rem;
  }
  .admin-toolbar,
  .admin-search,
  .admin-actions,
  .admin-inline-status {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .admin-search {
    margin-left: 0;
  }
  .admin-search input,
  .admin-inline-status select {
    min-width: 0;
    max-width: none;
  }
  .table-panel {
    overflow-x: auto;
  }
  .table-panel table {
    min-width: 680px;
  }
  .admin-reset-password {
    display: grid;
    min-width: 220px;
  }
}

.site-header .search input {
  width: clamp(190px, 18vw, 260px);
}

@media (max-width: 700px) {
  .site-header .search input {
    width: 100% !important;
  }
}

/* Collapsible admin navigation */
.admin-sidebar-head {
  display: grid;
  gap: .2rem;
}
.admin-sidebar-head div {
  display: grid;
  gap: .1rem;
}
.admin-menu {
  display: grid;
  gap: .28rem;
}
.admin-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: .55rem;
  border: 1px solid rgba(214,185,128,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.admin-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--champagne);
  transition: transform .2s ease, opacity .2s ease;
}
.admin-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.admin-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.admin-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1050px) {
  .admin-body {
    grid-template-columns: 1fr !important;
  }
  .admin-sidebar {
    position: sticky !important;
    top: 0;
    z-index: 40;
    height: auto !important;
    display: block !important;
    padding: .85rem 1rem !important;
    border-right: 0;
    border-bottom: 1px solid rgba(214,185,128,.22);
    box-shadow: 0 12px 30px rgba(11,36,31,.12);
  }
  .admin-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .admin-sidebar strong {
    font-size: 1.35rem;
    margin: 0;
  }
  .admin-sidebar small {
    margin: 0;
    font-size: .78rem;
  }
  .admin-menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }
  .admin-menu {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    margin-top: .85rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .admin-menu.is-open {
    display: grid;
  }
  .admin-sidebar a {
    min-height: 40px;
    padding: .62rem .7rem;
    font-size: .9rem;
  }
}

@media (max-width: 700px) {
  .admin-sidebar {
    padding: .75rem .85rem !important;
  }
  .admin-menu {
    grid-template-columns: 1fr;
  }
  .admin-main {
    padding: 1rem !important;
  }
}

/* Guia de medidas */
.measure-guide {
  display: grid;
  gap: 1.35rem;
}
.measure-guide .lead {
  max-width: 820px;
  font-size: 1.08rem;
  color: #4c463e;
}
.measure-guide h2 {
  margin-top: 1.2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.measure-guide ol,
.measure-guide ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #4c463e;
}
.measure-guide li + li {
  margin-top: .45rem;
}
.measure-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(200,164,93,.22);
  border-radius: var(--radius);
  background: var(--paper);
}
.measure-table {
  min-width: 620px;
  margin: 0;
  border: 0;
}
.measure-table th {
  background: rgba(248,244,237,.8);
}
.measure-table td:first-child {
  font-weight: 700;
  color: var(--green);
}
.measure-note {
  padding: 1rem;
  border: 1px solid rgba(200,164,93,.32);
  border-radius: var(--radius);
  background: rgba(255,253,248,.78);
}

/* Responsive hardening - public site and admin */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.section-head {
  display: grid !important;
  justify-content: start !important;
  justify-items: start;
  align-items: start !important;
  gap: .25rem !important;
}
.section-head .eyebrow,
.section-head h2 {
  margin-left: 0;
  text-align: left;
}
.section-head h2 {
  max-width: min(860px, 100%) !important;
}
.hero-carousel {
  min-height: clamp(560px, calc(100svh - 96px), 760px) !important;
  height: auto !important;
}
.hero-slide {
  min-height: inherit;
  align-items: center !important;
}
.hero-slide.is-active {
  position: relative;
}
.hero-content {
  display: grid;
  align-content: center;
  max-width: min(650px, calc(100vw - 2rem)) !important;
  padding: clamp(2rem, 4.5vw, 4.6rem) clamp(1rem, 4.8vw, 5.25rem) !important;
}
.hero-content h1 {
  max-width: 11ch !important;
  font-size: clamp(2.65rem, 5.4vw, 4.85rem) !important;
  line-height: .98 !important;
}
.hero-content p:not(.eyebrow) {
  max-width: 560px !important;
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
}
.hero-content .actions {
  align-items: center;
  margin-top: 1.15rem !important;
  padding-bottom: .2rem;
}
.hero-content .btn {
  min-height: 46px;
  white-space: normal;
  text-align: center;
}
.carousel-dots {
  bottom: 1.2rem !important;
}
.site-header {
  max-width: 100vw;
}
.site-header > * {
  min-width: 0;
}
.main-nav {
  min-width: 0;
}
.header-actions {
  min-width: 0;
}
.header-actions .search {
  min-width: clamp(180px, 20vw, 320px);
}
.header-actions .search input {
  width: 100% !important;
}
.admin-body {
  grid-template-columns: 240px minmax(0, 1fr) !important;
}
.admin-main {
  max-width: none !important;
  min-width: 0;
  overflow-x: hidden !important;
}
.admin-grid {
  width: min(1280px, calc(100% - 2rem)) !important;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.35fr) !important;
  align-items: start !important;
}
.admin-users-grid {
  grid-template-columns: 1fr !important;
  gap: 1.1rem !important;
}
.admin-users-grid .form-panel {
  max-width: 880px;
}
.table-panel {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto !important;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}
.table-panel table {
  min-width: 760px;
}
.admin-users-grid .table-panel table {
  min-width: 980px;
}
.table-panel th,
.table-panel td {
  overflow-wrap: anywhere;
}
.admin-reset-password {
  min-width: 0;
}

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: auto auto !important;
  }
  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .site-header .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .site-header .main-nav,
  .site-header .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    display: none;
    width: 100%;
    padding-top: .85rem;
    border-top: 1px solid var(--line);
  }
  .site-header .main-nav.is-open {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: .35rem .85rem;
    justify-items: start;
  }
  .site-header .header-actions.is-open {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }
  .site-header .header-actions .search {
    min-width: 0;
  }
  .hero-carousel {
    min-height: clamp(540px, calc(100svh - 82px), 700px) !important;
  }
  .hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem) !important;
  }
}

@media (max-width: 1050px) {
  .admin-body {
    grid-template-columns: 1fr !important;
  }
  .admin-grid,
  .admin-users-grid {
    width: min(100%, calc(100% - 2rem)) !important;
    grid-template-columns: 1fr !important;
    padding-top: 1.4rem !important;
  }
  .admin-page-head h1 {
    font-size: clamp(2.15rem, 9vw, 3.6rem) !important;
  }
}

@media (max-width: 760px) {
  .site-header .header-actions.is-open {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cart-link,
  .whatsapp-link {
    width: 100%;
    justify-content: center;
  }
  .hero-carousel {
    min-height: auto !important;
  }
  .hero-slide,
  .hero-slide.is-active {
    min-height: calc(100svh - 76px);
  }
  .hero-content {
    max-width: 100% !important;
    padding: clamp(2.5rem, 9vw, 4rem) 1rem 3.6rem !important;
  }
  .hero-content h1 {
    max-width: 10ch !important;
    font-size: clamp(2.6rem, 12.5vw, 3.7rem) !important;
    line-height: 1 !important;
  }
  .hero-content p:not(.eyebrow) {
    font-size: 1rem !important;
  }
  .hero-content .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .65rem;
    align-items: stretch;
  }
  .hero-content .btn {
    width: 100%;
  }
  .category-grid,
  .product-grid,
  .moment-grid,
  .benefits,
  .steps,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr !important;
  }
  .guide-strip {
    display: grid !important;
    align-items: start !important;
  }
  .admin-main {
    padding: .85rem !important;
  }
  .admin-grid,
  .admin-users-grid {
    width: 100% !important;
  }
  .form-panel,
  .summary,
  .table-panel {
    padding: 1rem;
  }
  .table-panel {
    border-radius: var(--radius);
  }
  .table-panel table {
    min-width: 720px;
  }
  .admin-users-grid .table-panel table {
    min-width: 860px;
  }
  .admin-reset-password {
    display: grid;
    gap: .45rem;
  }
  .admin-reset-password input,
  .admin-reset-password .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 132px !important;
  }
  .topbar {
    font-size: .68rem;
    letter-spacing: .05em;
  }
  .hero-slide,
  .hero-slide.is-active {
    min-height: calc(100svh - 68px);
  }
  .hero-content h1 {
    font-size: clamp(2.25rem, 12vw, 3.1rem) !important;
  }
  .page-hero h1,
  .admin-page-head h1 {
    font-size: clamp(2.2rem, 15vw, 3.2rem) !important;
  }
  .section {
    width: min(100% - 1rem, 1240px);
  }
}

@media (min-width: 761px) and (max-height: 760px) {
  .hero-carousel {
    min-height: auto !important;
  }
  .hero-slide,
  .hero-slide.is-active {
    min-height: 560px;
  }
  .hero-content {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
  }
  .hero-content h1 {
    font-size: clamp(2.45rem, 5vw, 4rem) !important;
  }
}

/* Exact hero headline rhythm */
.hero-content h1 {
  max-width: min(940px, 100%) !important;
}
.hero-content h1 br {
  display: block;
}

@media (max-width: 760px) {
  .hero-content h1 {
    max-width: 100% !important;
    font-size: clamp(2.05rem, 9.2vw, 3.2rem) !important;
    line-height: 1.02 !important;
  }
}

@media (max-width: 420px) {
  .hero-content h1 {
    font-size: clamp(1.95rem, 8.9vw, 2.65rem) !important;
  }
}

/* Final hero spacing pass */
.hero-content {
  max-width: min(1040px, calc(100vw - 2rem)) !important;
}
.hero-content h1 {
  max-width: 100% !important;
  width: max-content;
  font-size: clamp(3rem, 4.65vw, 4.75rem) !important;
  line-height: .96 !important;
}
.hero-content p:not(.eyebrow) {
  max-width: 650px !important;
  margin-top: .45rem !important;
}
.hero-content .actions {
  margin-top: 1.75rem !important;
}

@media (max-width: 1200px) {
  .hero-content h1 {
    width: auto;
    max-width: 100% !important;
    font-size: clamp(2.7rem, 5vw, 4rem) !important;
  }
}

@media (max-width: 760px) {
  .hero-slide,
  .hero-slide.is-active {
    align-items: start !important;
    min-height: clamp(470px, 78svh, 535px) !important;
  }
  .hero-content {
    align-content: start !important;
    justify-items: center;
    text-align: left;
    padding: clamp(3.1rem, 12svh, 4.2rem) 1rem 1.35rem !important;
  }
  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > p:not(.eyebrow),
  .hero-content > .actions {
    width: min(100%, 340px);
  }
  .hero-content h1 {
    width: auto;
    max-width: 100% !important;
    font-size: clamp(1.82rem, 7.8vw, 2.38rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 1.15rem !important;
  }
  .hero-content p:not(.eyebrow) {
    max-width: 100% !important;
    margin-top: 0 !important;
    font-size: .95rem !important;
    line-height: 1.5 !important;
  }
  .hero-content .actions {
    margin-top: 1.75rem !important;
    gap: .72rem;
  }
  .hero-content .btn {
    justify-self: stretch;
    min-height: 42px;
    padding: .68rem .9rem;
  }
}

@media (max-width: 420px) {
  .hero-slide,
  .hero-slide.is-active {
    min-height: clamp(455px, 77svh, 520px) !important;
  }
  .hero-content {
    padding-top: clamp(2.9rem, 11svh, 3.65rem) !important;
    padding-bottom: 1.25rem !important;
  }
  .hero-content h1 {
    font-size: clamp(1.72rem, 7.3vw, 2.08rem) !important;
  }
}

/* Simple hero CTA separation */
.hero-content {
  padding-bottom: 0 !important;
}
.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding: 1.75rem clamp(1rem, 4.8vw, 5.25rem) clamp(2.4rem, 5vw, 4.8rem);
}

@media (max-width: 760px) {
  .hero-content {
    justify-items: start !important;
    text-align: left !important;
    padding: clamp(3rem, 11svh, 3.8rem) 1rem 0 !important;
  }
  .hero-content > .eyebrow,
  .hero-content > h1,
  .hero-content > p:not(.eyebrow) {
    width: auto !important;
    max-width: 100% !important;
  }
  .hero-actions {
    display: grid;
    justify-items: center;
    width: 100%;
    gap: .75rem;
    padding: 1.65rem 1rem 1.35rem;
  }
  .hero-actions .btn {
    width: min(100%, 340px);
    min-height: 42px;
    padding: .68rem .9rem;
    text-align: center;
  }
}

/* Mobile product cards */
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .75rem !important;
  }
  .product-card {
    border-radius: 7px;
  }
  .product-media {
    aspect-ratio: 4 / 5;
  }
  .product-media-title {
    left: .55rem;
    right: .55rem;
    bottom: .7rem;
    display: block;
    font-size: clamp(1rem, 4.6vw, 1.24rem);
    line-height: 1.08;
    text-align: center;
    text-wrap: balance;
  }
  .product-info {
    padding: .7rem;
  }
  .product-info p {
    font-size: .72rem;
    line-height: 1.35;
  }
  .product-info h3 {
    font-size: 1.04rem;
    line-height: 1.08;
  }
  .product-info small,
  .product-cta {
    font-size: .68rem;
  }
}

@media (max-width: 360px) {
  .product-grid {
    gap: .55rem !important;
  }
  .product-media-title {
    font-size: .98rem;
  }
  .product-badges span,
  .product-media .product-badges span,
  .product-media .product-badges span + span,
  .product-media .product-badges span + span + span {
    font-size: .55rem !important;
    padding: .26rem .42rem !important;
  }
}
