:root{
  --bg:#F7F3EE;
  --bg-soft:#D7C1A7;
  --text:#533C2C;
  --text-strong:#2B2623;
  --accent:#A56150;
  --white:#FFFFFF;
  --line:rgba(83,60,44,0.12);
  --line-strong:rgba(83,60,44,0.24);
  --shadow:0 10px 30px rgba(43,38,35,0.06);
  --radius:20px;
  --button-radius:14px;
  --utility-height:36px;
  --header-height:72px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Poppins",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text-strong);
  line-height:1.6;
}
body.is-loading .catalog-skeleton{display:grid}
body.js-ready .catalog-skeleton{display:none}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button,input,select{font:inherit}
button{cursor:pointer}
.skip-link{
  position:fixed;
  left:14px;
  top:14px;
  z-index:100;
  background:var(--text);
  color:var(--white);
  padding:10px 14px;
  border-radius:12px;
  transform:translateY(-140%);
}
.skip-link:focus{transform:translateY(0)}
.shell{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}
.utility-bar{
  position:fixed;
  inset:0 0 auto;
  height:var(--utility-height);
  z-index:50;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}
.utility-inner{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:var(--text);
  font-size:13px;
}
.utility-inner a{font-weight:600}
.site-header{
  position:fixed;
  inset:var(--utility-height) 0 auto;
  height:var(--header-height);
  z-index:49;
  background:rgba(247,243,238,0.95);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(83,60,44,0.08);
}
.header-inner{
  min-height:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}
.brand img{width:auto;height:42px}
.site-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
}
.site-nav a{
  font-size:14px;
  color:var(--text);
  font-weight:600;
}
.header-cta,
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:var(--button-radius);
  border:1px solid transparent;
  transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.header-cta,
.button-primary{
  background:var(--accent);
  color:var(--white);
  box-shadow:0 12px 24px rgba(165,97,80,0.18);
}
.header-cta:hover,
.button-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(165,97,80,0.22);
}
.button-secondary{
  background:transparent;
  color:var(--text);
  border-color:var(--text);
}
.button.small{min-height:44px;padding:0 18px}
.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--white);
}
.nav-toggle span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--text);
}
main{padding-top:calc(var(--utility-height) + var(--header-height) + 24px)}
section{padding:76px 0}
.eyebrow{
  margin:0;
  color:var(--text);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
}
.section-head{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:28px;
}
.section-head.compact{margin-bottom:24px}
.section-head h2,
.hero h1,
.product-summary h1,
.contact-cta h2{
  margin:0;
  color:var(--text);
  line-height:1.08;
  font-weight:600;
}
.section-head p,
.hero-text,
.hero-proof,
.product-summary-text,
.product-blurb,
.case-copy p,
.certainty-card p,
.faq-list p,
.contact-cta p,
.site-footer p{margin:0;color:var(--text-strong)}
.hero{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1.12fr);
  gap:40px;
  align-items:center;
  min-height:640px;
}
.hero-copy{max-width:620px}
.hero h1{font-size:clamp(48px, 5vw, 56px); margin-top:16px}
.hero-text{font-size:18px; margin-top:16px}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}
.hero-proof{margin-top:16px; font-size:14px; color:rgba(83,60,44,0.8)}
.hero-visual{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:18px;
}
.hero-frame{
  border-radius:20px;
  overflow:hidden;
  background:var(--white);
  box-shadow:var(--shadow);
}
.hero-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-frame-main{
  grid-row:1 / span 2;
  aspect-ratio:1 / 1;
}
.hero-frame-side{
  aspect-ratio:4 / 3;
}
.need-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}
.need-card{
  background:rgba(255,255,255,0.78);
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
  transition:background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.need-card:hover{background:#fbf8f4;transform:translateY(-1px);box-shadow:var(--shadow)}
.need-card-media{
  display:block;
  aspect-ratio:16 / 10;
  border-radius:16px;
  overflow:hidden;
  background:var(--bg-soft);
}
.need-card-media img{width:100%;height:100%;object-fit:cover}
.need-card strong{font-size:18px;font-weight:600;color:var(--text)}
.need-card span:last-child{font-size:14px;color:var(--text-strong)}
.hero-product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.swatch-grid{display:grid;gap:20px}
.bundle-grid,
.lookbook-grid,
.case-grid,
.certainty-grid,
.fabric-grid,
.combo-grid,
.mini-product-grid{
  display:grid;
  gap:20px;
}
.bundle-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.bundle-card,
.lookbook-card,
.case-card,
.certainty-card,
.swatch-card,
.contact-cta,
.product-summary-card,
.gallery-card,
.combo-card,
.fabric-card,
.mini-product-card,
.product-empty{
  background:rgba(255,255,255,0.86);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
}
.bundle-card{padding:24px}
.bundle-name{margin:0 0 8px;color:var(--text);font-size:14px;font-weight:600}
.bundle-card h3{margin:0;color:var(--text);font-size:26px;font-weight:600;line-height:1.1}
.bundle-card p{margin:12px 0 0}
.bundle-footer{margin-top:20px;display:flex;align-items:center;justify-content:space-between;gap:12px}
.bundle-footer span{font-weight:600;color:var(--accent)}
.bundle-footer a{font-weight:600;color:var(--text)}
.catalog .section-head{margin-bottom:20px}
.catalog-sticky{
  position:sticky;
  top:calc(var(--utility-height) + var(--header-height) + 12px);
  z-index:20;
  background:var(--bg);
  padding-bottom:12px;
}
.catalog-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:14px;
}
.search-wrap{
  flex:1;
  min-width:0;
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,0.78);
  border:1px solid var(--line);
  border-radius:16px;
  padding:0 14px;
  min-height:52px;
}
.search-wrap svg{width:18px;height:18px;fill:var(--text)}
.search-wrap input{
  border:0;
  background:transparent;
  outline:none;
  width:100%;
  color:var(--text-strong);
}
.catalog-meta{
  display:flex;
  align-items:center;
  gap:16px;
}
.catalog-count{
  white-space:nowrap;
  font-size:16px;
  font-weight:600;
  color:var(--text);
}
.sort-wrap{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  color:var(--text);
  font-size:14px;
}
.sort-wrap select{
  border:1px solid var(--line);
  border-radius:14px;
  min-height:44px;
  padding:0 14px;
  background:rgba(255,255,255,0.9);
  color:var(--text);
}
.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.catalog-secondary-filters{margin-top:6px}
.filter-chip{
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(83,60,44,0.16);
  background:var(--bg);
  color:var(--text);
  font-size:14px;
  font-weight:600;
}
.filter-chip.is-active{
  background:var(--accent);
  border-color:var(--accent);
  color:var(--white);
}
.filter-chip-clear{
  margin-left:auto;
}
.catalog-skeleton{
  display:none;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:20px 0 0;
}
.catalog-skeleton span{
  display:block;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(215,193,167,0.65), rgba(255,255,255,0.9), rgba(215,193,167,0.65));
  background-size:200% 100%;
  animation:shimmer 1.2s linear infinite;
}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:24px;
}
.product-card[hidden]{display:none !important}
.product-card,
.featured-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-card-media{
  display:block;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#F5F0EA;
}
.product-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-card-copy{padding:24px;display:flex;flex-direction:column;gap:10px;flex:1}
.product-badge{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:28px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(165,97,80,0.12);
  color:var(--accent);
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
}
.product-card h3{margin:0;color:var(--text);font-size:28px;line-height:1.05;font-weight:600}
.featured-card h3{font-size:30px}
.product-price{font-size:18px;font-weight:600;color:var(--accent)}
.product-variant{margin:0;color:rgba(83,60,44,0.76);font-size:13px;line-height:1.35}
.hero-proof span + span::before{content:" · ";color:rgba(83,60,44,0.8)}
.product-attrs{
  list-style:none;
  padding:0;
  margin:2px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.product-attrs li{
  border-radius:999px;
  padding:6px 10px;
  background:rgba(215,193,167,0.28);
  color:var(--text);
  font-size:13px;
}
.product-card-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:auto;
  padding-top:6px;
}
.compare-toggle{
  border:0;
  background:transparent;
  color:var(--text);
  font-size:14px;
  font-weight:600;
  padding:0;
}
.compare-toggle[aria-pressed="true"]{color:var(--accent)}
.compare-placeholder{display:block;min-width:72px}
.product-empty{
  padding:28px;
  margin-top:24px;
  text-align:center;
}
.lookbook-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.lookbook-card{overflow:hidden}
.lookbook-media{aspect-ratio:4/3;overflow:hidden}
.lookbook-media img{width:100%;height:100%;object-fit:cover}
.lookbook-copy{padding:20px;display:flex;flex-direction:column;gap:10px}
.mini-label,.case-label{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  min-height:28px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(165,97,80,0.12);
  color:var(--accent);
  font-size:12px;
  font-weight:600;
}
.lookbook-copy h3,
.case-copy h3,
.contact-cta h2,
.product-section h2{font-size:28px}
.compare-table-wrap{
  overflow:auto;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.86);
  box-shadow:var(--shadow);
}
.compare-table{
  width:100%;
  border-collapse:collapse;
  min-width:840px;
}
.compare-table th,
.compare-table td{
  padding:18px 16px;
  border-bottom:1px solid rgba(83,60,44,0.10);
  text-align:left;
  vertical-align:top;
}
.compare-table th{
  font-size:16px;
  color:var(--text);
  font-weight:600;
}
.compare-table td:first-child,
.compare-table th:first-child{
  background:rgba(247,243,238,0.9);
  min-width:180px;
}
.compare-table .table-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(165,97,80,0.12);
  color:var(--accent);
  font-size:13px;
  font-weight:600;
}
.compare-mobile{display:none}
.compare-mobile-controls{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}
.compare-mobile-controls label{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-size:14px;
  color:var(--text);
}
.compare-mobile-controls select{
  border:1px solid var(--line);
  border-radius:14px;
  min-height:48px;
  padding:0 14px;
  background:rgba(255,255,255,0.92);
}
.compare-mobile-grid{
  display:grid;
  gap:16px;
}
.compare-mobile-card{
  padding:20px;
}
.compare-mobile-card h3{margin:0 0 12px;color:var(--text);font-size:22px;font-weight:600}
.compare-mobile-card dl{margin:0;display:grid;gap:10px}
.compare-mobile-card dt{font-weight:600;color:var(--text)}
.compare-mobile-card dd{margin:0;color:var(--text-strong)}
.compare-mobile-card a{
  margin-top:16px;
  display:inline-flex;
  min-height:42px;
  padding:0 16px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(165,97,80,0.12);
  color:var(--accent);
  font-weight:600;
}
.swatch-grid,
.case-grid,
.certainty-grid,
.fabric-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.swatch-card,
.case-card,
.fabric-card{overflow:hidden}
.swatch-card,.fabric-card{padding:20px;display:flex;flex-direction:column;gap:12px}
.swatch{
  width:100%;
  aspect-ratio:4/3;
  border-radius:16px;
  background:var(--swatch);
  box-shadow:inset 0 0 0 1px rgba(43,38,35,0.08);
}
.swatch.big{aspect-ratio:1 / 1}
.swatch-image{width:100%;aspect-ratio:1 / 1;object-fit:cover;border-radius:16px;background:var(--bg-soft);display:block}
.swatch-card a{font-size:13px;font-weight:600;color:var(--accent)}
.case-media{aspect-ratio:4 / 3;overflow:hidden}
.case-media img{width:100%;height:100%;object-fit:cover}
.case-copy{padding:20px;display:flex;flex-direction:column;gap:10px}
.case-meta{font-weight:600;color:var(--text)}
.certainty-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
.certainty-card{padding:24px}
.certainty-card h3{margin:0 0 10px;color:var(--text);font-size:20px;font-weight:600}
.faq-list{display:grid;gap:14px}
.faq-list details{
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,0.86);
  padding:0 20px;
  box-shadow:var(--shadow);
}
.faq-list summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-size:17px;
  font-weight:600;
  color:var(--text);
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list p{padding:0 0 20px}
.contact-cta{
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.contact-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.site-footer{
  border-top:1px solid var(--line);
  padding:34px 0 48px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr repeat(3,1fr);
  gap:28px;
}
.site-footer h4{margin:0 0 12px;color:var(--text);font-size:18px;font-weight:600}
.site-footer ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.site-footer li{color:var(--text-strong)}
.product-page{padding-bottom:24px}
.breadcrumbs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:rgba(83,60,44,0.78);
  padding-top:8px;
}
.product-summary{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,0.94fr);
  gap:36px;
  align-items:start;
}
.product-summary h1{font-size:clamp(42px, 5vw, 54px);margin-top:14px}
.product-summary-price{
  margin:16px 0 0;
  color:var(--accent);
  font-size:22px;
  font-weight:600;
}
.product-summary-text{margin-top:14px;font-size:18px;max-width:700px}
.product-summary-card{
  padding:20px;
}
.product-summary-card img{
  width:100%;
  border-radius:20px;
}
.microcopy{margin-top:14px;font-size:14px;color:rgba(83,60,44,0.82)}
.chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}
.chip-list span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(215,193,167,0.28);
  color:var(--text);
  font-size:13px;
  font-weight:600;
}
.product-gallery-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr 0.9fr;
  gap:20px;
}
.gallery-card{
  overflow:hidden;
  min-height:240px;
}
.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.gallery-card-large{
  grid-column:span 2;
  min-height:360px;
}
.gallery-panel{
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.fabric-preview,
.finish-preview{
  width:100%;
  display:flex;
  align-items:center;
  gap:16px;
}
.finish-preview{
  flex-direction:column;
  align-items:flex-start;
}
.finish-chip-list{margin-top:0}
.product-section{padding-top:16px}
.bullet-list{
  margin:0;
  padding-left:22px;
  display:grid;
  gap:10px;
}
.measure-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,0.9fr);
  gap:20px;
  align-items:start;
}
.measure-image{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.86);
  box-shadow:var(--shadow);
}
.measure-image img{width:100%;height:100%;object-fit:cover}
.measure-list{
  list-style:none;
  margin:0;
  padding:20px;
  display:grid;
  gap:12px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,0.86);
  box-shadow:var(--shadow);
}
.measure-list li{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid rgba(83,60,44,0.08);
  padding-bottom:12px;
}
.measure-list li:last-child{border-bottom:0;padding-bottom:0}
.measure-list span{color:var(--text-strong)}
.measure-list strong{color:var(--text);font-weight:600;text-align:right}
.section-note{
  margin-top:14px;
}
.section-note a{color:var(--accent);font-weight:600}
.combo-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.combo-card{padding:20px}
.combo-card h3{margin:0 0 8px;color:var(--text);font-size:22px;font-weight:600}
.mini-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.mini-product-card{
  display:flex;
  gap:14px;
  padding:12px;
  align-items:center;
}
.mini-product-card img{
  width:92px;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:14px;
}
.mini-product-card strong{display:block;color:var(--text);font-size:16px}
.mini-product-card span{display:block;font-size:14px;color:var(--accent);font-weight:600;margin-top:4px}
section[id], .product-summary, .product-section, .contact-cta{scroll-margin-top:calc(var(--utility-height) + var(--header-height) + 18px)}
@media (max-width: 1080px){
  .hero,
  .product-summary,
  .measure-layout{grid-template-columns:1fr}
  .lookbook-grid,
  .swatch-grid,
  .case-grid,
  .certainty-grid,
  .fabric-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid,
  .hero-product-grid,
  .bundle-grid,
  .combo-grid,
  .mini-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact-cta{flex-direction:column;align-items:flex-start}
}
@media (max-width: 840px){
  :root{
    --utility-height:0px;
    --header-height:60px;
  }
  main{padding-top:0}
  section{padding:44px 0}
  section[id], .product-summary, .product-section, .contact-cta{scroll-margin-top:16px}
  .shell{width:min(100% - 24px, 1200px)}
  .utility-bar{display:none}
  .site-header{
    position:static;
    inset:auto;
    height:auto;
    background:var(--bg);
    backdrop-filter:none;
    border-bottom:0;
  }
  .header-inner{
    min-height:60px;
    grid-template-columns:auto auto;
    gap:12px;
    justify-content:space-between;
  }
  .brand img{height:34px}
  .nav-toggle{display:flex}
  .header-cta{display:none}
  .site-nav{
    position:absolute;
    top:calc(100% + 10px);
    left:12px;
    right:12px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    padding:18px;
    border-radius:20px;
    background:rgba(255,255,255,0.98);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
  }
  .site-nav.is-open{display:flex}
  .header-inner .site-nav{grid-column:1 / -1}
  .site-nav{justify-content:flex-start}
  .utility-inner{font-size:12px;gap:6px}
  .hero{gap:24px;min-height:auto}
  .hero h1{font-size:clamp(34px, 8vw, 38px)}
  .hero-text{font-size:16px}
  .hero-visual{grid-template-columns:1fr;gap:14px}
  .hero-frame-main{grid-row:auto;aspect-ratio:4 / 3}
  .need-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid,
  .hero-product-grid,
  .bundle-grid,
  .lookbook-grid,
  .case-grid,
  .certainty-grid,
  .combo-grid,
  .mini-product-grid,
  .fabric-grid,
  .swatch-grid{grid-template-columns:1fr}
  .catalog-topline,
  .catalog-meta{flex-direction:column;align-items:stretch}
  .filter-chip-clear{margin-left:0}
  .compare-desktop{display:none}
  .compare-mobile{display:block}
  .compare-mobile-controls{grid-template-columns:1fr}
  .product-gallery-grid{grid-template-columns:1fr}
  .gallery-card-large{grid-column:auto}
  .footer-grid{grid-template-columns:1fr}
}

.catalog-mobile-actions,
.catalog-mobile-count,
.catalog-sheet,
.sheet-backdrop,
.catalog-more,
.compare-floating{display:none}

.catalog-sheet[hidden],
.sheet-backdrop[hidden],
.catalog-more[hidden],
.compare-floating[hidden]{display:none !important}

.catalog-sheet{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:70;
  padding:20px 16px calc(20px + env(safe-area-inset-bottom));
  background:var(--bg);
  border-radius:24px 24px 0 0;
  box-shadow:0 -18px 44px rgba(43,38,35,0.18);
}
.sheet-backdrop{
  position:fixed;
  inset:0;
  z-index:65;
  background:rgba(43,38,35,0.24);
}
.catalog-sheet-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.catalog-sheet-head strong{color:var(--text);font-size:18px;font-weight:600}
.catalog-sheet-close{
  border:0;
  background:transparent;
  color:var(--text);
  font:inherit;
  font-weight:600;
  padding:0;
}
.catalog-sheet-options{gap:10px}
.sort-sheet-options{display:grid;gap:10px}
.sort-option{
  min-height:46px;
  border:1px solid rgba(83,60,44,0.16);
  border-radius:14px;
  background:rgba(255,255,255,0.9);
  color:var(--text);
  font:inherit;
  font-weight:600;
  text-align:left;
  padding:0 16px;
}
.sort-option.is-active{
  background:rgba(165,97,80,0.12);
  border-color:rgba(165,97,80,0.38);
  color:var(--accent);
}
.compare-floating{
  position:fixed;
  left:12px;
  right:12px;
  bottom:calc(12px + env(safe-area-inset-bottom));
  z-index:62;
}
.compare-floating-button{
  width:100%;
  min-height:52px;
  border:0;
  border-radius:16px;
  background:var(--accent);
  color:var(--white);
  font:inherit;
  font-weight:600;
  box-shadow:0 12px 24px rgba(83,60,44,0.18);
}
.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom));
  width:56px;
  height:56px;
  border-radius:999px;
  background:var(--accent);
  color:var(--white);
  box-shadow:0 14px 28px rgba(83,60,44,0.2);
  z-index:61;
  display:none;
  align-items:center;
  justify-content:center;
}
.whatsapp-float svg{width:26px;height:26px;fill:currentColor}
.whatsapp-float.is-visible{display:flex}
.catalog-primary-chips{
  flex-wrap:nowrap;
  overflow:auto;
  scrollbar-width:none;
}
.catalog-primary-chips::-webkit-scrollbar{display:none}

@media (max-width: 840px){
  .hero{
    gap:18px;
    min-height:auto;
    padding-top:28px;
    padding-bottom:40px;
    align-items:start;
  }
  .hero-copy{max-width:none}
  .hero h1{
    font-size:clamp(42px, 11.8vw, 46px);
    line-height:0.97;
    letter-spacing:-0.03em;
    margin-top:14px;
  }
  .hero-text{
    font-size:16px;
    line-height:1.55;
    margin-top:15px;
  }
  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    margin-top:20px;
  }
  .hero-actions .button{
    width:100%;
    justify-content:center;
  }
  .hero-actions .button-primary{min-height:52px}
  .hero-actions .button-secondary{min-height:46px}
  .hero-proof{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:14px;
    font-size:14px;
    line-height:1.45;
  }
  .hero-proof span{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(165,97,80,0.1);
    color:var(--text);
  }
  .hero-proof span + span::before{content:none}
  .hero-visual{
    grid-template-columns:1fr;
    gap:0;
  }
  .hero-frame-side{display:none}
  .hero-frame-main{
    grid-row:auto;
    aspect-ratio:4 / 3;
    border-radius:24px;
  }

  .need-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .need-card{
    padding:16px;
    gap:10px;
    min-height:220px;
  }
  .need-card-media{
    height:88px;
    aspect-ratio:auto;
    border-radius:14px;
  }
  .need-card-media img{
    object-fit:contain;
    object-position:center;
  }
  .need-card strong{
    font-size:17px;
    line-height:1.12;
    min-height:38px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .need-card span:last-child{
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height:1.35;
    min-height:38px;
  }

  .hero-product-grid,
  .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .hero-product-grid > :nth-child(n+5){display:none}
  .product-grid{margin-top:16px}
  .product-grid > [data-detail="sofas"],
  .product-grid > [data-detail="sillones-ocasionales"],
  .product-grid > [data-detail="bancas"],
  .product-grid > [data-detail="antecomedores"],
  .product-grid > [data-detail="comedores"]{
    grid-column:1 / -1;
  }
  .product-card,
  .featured-card{
    position:relative;
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    grid-template-areas:
      "media media"
      "badge compare"
      "title title"
      "variant variant"
      "price price"
      "blurb blurb"
      "cta cta";
    gap:0 10px;
    overflow:hidden;
    padding:14px;
    border-radius:20px;
    background:var(--white);
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    cursor:pointer;
  }
  .product-card-copy,
  .product-card-actions{
    display:contents;
  }
  .product-card-media{
    grid-area:media;
    margin-top:0;
    height:auto;
    aspect-ratio:1 / 1;
    border-radius:16px;
    background:var(--bg);
  }
  .product-card[data-detail="sofas"] .product-card-media,
  .product-card[data-detail="sillones-ocasionales"] .product-card-media,
  .product-card[data-detail="bancas"] .product-card-media,
  .product-card[data-detail="antecomedores"] .product-card-media,
  .product-card[data-detail="comedores"] .product-card-media{
    aspect-ratio:16 / 10;
  }
  .product-card-media img{
    object-fit:cover;
    object-position:center;
    transform:none;
  }
  .product-badge{
    grid-area:badge;
    position:static;
    margin-top:12px;
    min-height:24px;
    padding:5px 10px;
    font-size:10px;
    max-width:none;
  }
  .product-card h3,
  .featured-card h3{
    grid-area:title;
    font-size:18px;
    line-height:1.1;
    min-height:40px;
    margin-top:10px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .product-variant{
    grid-area:variant;
    min-height:18px;
    margin-top:4px;
    font-size:12px;
    line-height:1.35;
  }
  .product-price{
    grid-area:price;
    font-size:16px;
    line-height:1.2;
    margin-top:4px;
  }
  .product-blurb{
    grid-area:blurb;
    font-size:13px;
    line-height:1.35;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    margin-top:4px;
  }
  .product-attrs{display:none}
  .product-card-actions{
    margin:0;
    padding:0;
  }
  .product-card-actions .button{
    grid-area:cta;
    margin-top:8px;
    min-height:0;
    padding:0;
    background:none;
    border:0;
    box-shadow:none;
    color:var(--text);
    border-radius:0;
    font-size:13px;
    font-weight:600;
    justify-content:flex-start;
  }
  .product-card-actions .button::after{content:" \2192"}
  .compare-toggle{
    grid-area:compare;
    position:static;
    width:28px;
    height:28px;
    margin-top:10px;
    justify-self:end;
    align-self:start;
    border:1px solid rgba(83,60,44,0.16);
    border-radius:999px;
    background:var(--bg);
    font-size:0;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }
  .compare-toggle::before{
    content:"+";
    font-size:18px;
    line-height:1;
    color:var(--text);
  }
  .compare-toggle[aria-pressed="true"]{
    background:rgba(165,97,80,0.14);
    border-color:rgba(165,97,80,0.36);
  }
  .compare-toggle[aria-pressed="true"]::before{color:var(--accent)}

  .bundle-grid{grid-template-columns:1fr;gap:12px}
  .bundle-card{
    padding:18px 20px;
    min-height:0;
  }
  .bundle-name{font-size:16px;margin-bottom:4px}
  .bundle-card h3{font-size:20px;line-height:1.15}
  .bundle-card p{
    margin-top:8px;
    font-size:14px;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }
  .bundle-footer{margin-top:10px;align-items:center}
  .bundle-footer span{font-size:15px}
  .bundle-footer a{font-size:14px}
  .bundle-footer a::after{content:" \2192"}

  .catalog .section-head{margin-bottom:12px}
  .catalog-sticky{
    top:0;
    background:rgba(247,243,238,0.98);
    backdrop-filter:blur(10px);
    padding-bottom:8px;
  }
  .catalog-topline{margin-bottom:12px;gap:12px}
  .search-wrap{
    min-height:48px;
    border-radius:14px;
  }
  .catalog-meta,
  .catalog-secondary-filters{display:none}
  .catalog-primary-chips .filter-chip{min-height:40px}
  .catalog-mobile-actions{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:12px;
  }
  .mobile-action-chip{
    min-height:44px;
    justify-content:center;
  }
  .catalog-mobile-count{
    display:block;
    margin-top:10px;
    font-size:15px;
    font-weight:600;
    color:var(--text);
  }
  .catalog-more{
    display:flex;
    justify-content:center;
    margin-top:16px;
  }
  .catalog-more .button{min-height:48px}

  .catalog-sheet,
  .sheet-backdrop,
  .compare-floating{display:block}
}
@media (min-width: 841px){
  .whatsapp-float{display:none !important}
}

/* Ajustes solicitados: home por intención, catálogo por secciones, asesoría, inspiración y comparador sticky */
.hero-intent{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:34px;
  align-items:start;
  min-height:auto;
  padding-top:54px;
  padding-bottom:54px;
}
.hero-intent .hero-copy{max-width:460px}
.hero-intent h1{font-size:clamp(42px, 5vw, 58px);margin-top:14px}
.hero-trust-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.hero-trust-chips span{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  border:1px solid rgba(83,60,44,0.14);
  border-radius:999px;
  background:rgba(255,255,255,0.78);
  color:var(--text);
  font-size:13px;
  font-weight:600;
  padding:0 14px;
}
.hero-need-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.hero-need-card{
  flex-direction:row;
  align-items:center;
  min-height:150px;
  padding:14px;
}
.hero-need-card .need-card-media{
  flex:0 0 42%;
  aspect-ratio:1 / 1;
}
.need-card-copy{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.catalog-section-title{
  grid-column:1 / -1;
  margin:20px 0 0;
  color:var(--text);
  font-size:24px;
  line-height:1.1;
  font-weight:600;
}
.catalog-section-title:first-child{margin-top:0}
.advice-block{align-items:flex-start;flex-wrap:wrap}
.advice-form{
  flex:1 0 100%;
  display:block;
  margin-top:8px;
  padding:22px;
  border:1px solid rgba(83,60,44,0.12);
  border-radius:20px;
  background:rgba(247,243,238,0.7);
}
.advice-form[hidden]{display:none}
.advice-step h3{margin:0 0 14px;color:var(--text);font-size:20px;font-weight:600}
.advice-options{display:grid;gap:10px;margin-bottom:16px}
.advice-options-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.advice-options label{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:10px 12px;
  border:1px solid rgba(83,60,44,0.14);
  border-radius:14px;
  background:rgba(255,255,255,0.82);
  color:var(--text);
  font-size:14px;
  font-weight:600;
}
.advice-options input{accent-color:var(--accent)}
#advice-whatsapp[aria-disabled="true"]{opacity:.55;pointer-events:none}
.inspiration-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}
.inspiration-carousel{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.inspiration-card{
  flex:0 0 min(320px, 82vw);
  scroll-snap-align:start;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:rgba(255,255,255,0.86);
  box-shadow:var(--shadow);
}
.inspiration-card[hidden]{display:none}
.inspiration-card img{width:100%;aspect-ratio:1 / 1;object-fit:cover}
.inspiration-card div{padding:14px;display:grid;gap:8px}
.inspiration-card h3{margin:0;color:var(--text);font-size:18px;font-weight:600}
.inspiration-card button{
  justify-self:start;
  border:0;
  background:transparent;
  color:var(--accent);
  font:inherit;
  font-weight:600;
  padding:0;
}
.inspiration-card.is-selected{outline:2px solid rgba(165,97,80,0.32);outline-offset:2px}
.inspiration-products{margin-top:18px}
.compare-bar{
  position:fixed;
  left:16px;
  right:16px;
  bottom:calc(16px + env(safe-area-inset-bottom));
  z-index:62;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid rgba(83,60,44,0.12);
  border-radius:18px;
  background:rgba(255,255,255,0.96);
  box-shadow:0 14px 34px rgba(43,38,35,0.18);
}
.compare-bar[hidden]{display:none !important}
.compare-bar-copy{display:grid;gap:2px;color:var(--text)}
.compare-bar-copy strong{font-size:15px;font-weight:600;line-height:1.2}
.compare-bar-copy span{font-size:12px;color:rgba(83,60,44,0.78)}
.compare-bar .compare-floating-button{width:auto;min-width:148px;padding:0 18px}
.compare-panel{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:72;
  max-height:min(86vh, 720px);
  overflow:auto;
  padding:20px 16px calc(20px + env(safe-area-inset-bottom));
  border-radius:24px 24px 0 0;
  background:var(--bg);
  box-shadow:0 -18px 44px rgba(43,38,35,0.18);
}
.compare-panel[hidden]{display:none !important}
.compare-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:16px}
.compare-panel-head strong{display:block;color:var(--text);font-size:20px;font-weight:600;line-height:1.15}
.compare-panel-head p{margin:6px 0 0;color:var(--text-strong);font-size:14px}
.compare-panel-head button{border:0;background:transparent;color:var(--text);font:inherit;font-weight:600;padding:0}
.compare-selected-list{display:grid;gap:10px;margin-bottom:16px}
.compare-selected-list article{display:flex;gap:12px;align-items:center;padding:10px;border:1px solid var(--line);border-radius:16px;background:rgba(255,255,255,0.86)}
.compare-selected-list img{width:68px;aspect-ratio:1 / 1;object-fit:cover;border-radius:12px;background:var(--bg-soft)}
.compare-selected-list strong{display:block;color:var(--text);font-size:15px}
.compare-selected-list span{display:block;color:var(--accent);font-size:13px;font-weight:600;margin-top:2px}
.compare-panel-actions{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:12px}
.compare-panel-actions.stacked{flex-direction:column;align-items:stretch}
.compare-full-table-wrap{overflow:auto;margin-top:14px;border-radius:18px;border:1px solid var(--line);background:rgba(255,255,255,0.88)}
.compare-full-table{min-width:620px;box-shadow:none;border:0;background:transparent}
.compare-full-table th,.compare-full-table td{padding:14px 12px}
.compare-backdrop{display:block}
.compare-backdrop[hidden]{display:none !important}
@media (max-width: 1080px){
  .hero-intent{grid-template-columns:1fr}
  .hero-intent .hero-copy{max-width:none}
}
@media (max-width: 840px){
  .hero-intent{padding-top:28px;padding-bottom:36px;gap:20px}
  .hero-intent h1{font-size:clamp(38px, 11vw, 46px);line-height:.98}
  .hero-trust-chips{gap:8px;margin-top:16px}
  .hero-trust-chips span{min-height:32px;font-size:12px;padding:0 12px}
  .hero-need-grid{grid-template-columns:1fr;gap:12px}
  .hero-need-card{min-height:124px;padding:12px}
  .hero-need-card .need-card-media{flex-basis:38%}
  .catalog-mobile-actions{grid-template-columns:1fr}
  .swatch-grid,.fabric-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .swatch-card,.fabric-card{padding:14px;gap:8px}
  .swatch{aspect-ratio:1 / 1}
  .advice-options-grid{grid-template-columns:1fr}
  .advice-form{padding:16px}
  .inspiration-card{flex-basis:78vw}
  .compare-bar{left:10px;right:10px;bottom:calc(10px + env(safe-area-inset-bottom));padding:10px;border-radius:16px}
  .compare-bar .compare-floating-button{min-width:118px;min-height:46px;padding:0 12px;font-size:14px}
}

.product-summary-copy:only-child{grid-column:1 / -1;max-width:920px;margin-inline:auto}
.product-slider{margin-top:20px}
.product-slider-stage{position:relative;overflow:hidden;border-radius:22px;border:1px solid var(--line);background:rgba(255,255,255,0.86);box-shadow:var(--shadow);cursor:pointer;touch-action:pan-y}
.product-slider-main{width:100%;aspect-ratio:1 / 1;object-fit:cover;background:var(--bg-soft)}
.product-slider-thumbs{display:flex;gap:10px;margin-top:12px;overflow-x:auto;padding:2px 2px 8px;scroll-snap-type:x mandatory}
.product-slider-thumbs button{flex:0 0 74px;border:1px solid var(--line);border-radius:14px;padding:0;background:rgba(255,255,255,0.9);overflow:hidden;scroll-snap-align:start}
.product-slider-thumbs button.is-active{border-color:var(--accent);box-shadow:0 0 0 2px rgba(165,97,80,0.18)}
.product-slider-thumbs img{width:100%;aspect-ratio:1 / 1;object-fit:cover}
@media (max-width:840px){.product-summary-copy:only-child{max-width:none}.product-slider{margin-top:16px}.product-slider-thumbs button{flex-basis:64px}}

/* Ajustes solicitados: header, galería, medidas y comparador */
.header-title{justify-self:center;color:var(--text);font-weight:600;font-size:15px;letter-spacing:.01em;white-space:nowrap}
.product-back-link{display:inline-flex;margin:0 0 14px;padding:0;border:0;background:transparent;color:var(--text);font:inherit;font-weight:600;cursor:pointer}
body[data-page="product"] .utility-bar{display:none}
body[data-page="product"] .site-header{inset:0 0 auto;height:var(--header-height);z-index:60}
body[data-page="product"] main{padding-top:calc(var(--header-height) + 24px)}
.product-summary-copy{min-width:0;width:100%}
.product-page img{max-width:100%}
.product-slider{width:100%;max-width:min(100%,760px);overflow:hidden}
.product-slider-stage{width:100%;max-width:100%}
.product-slider-main{display:block;width:100%;max-width:100%;height:auto;max-height:min(72vh,760px);object-fit:cover}
.measure-image img{display:block;cursor:zoom-in}
.measure-lightbox{position:fixed;inset:0;z-index:120;display:grid;place-items:center;padding:18px;background:rgba(43,38,35,.78)}
.measure-lightbox[hidden]{display:none!important}
.measure-lightbox-frame{max-width:96vw;max-height:86vh;overflow:auto;border-radius:18px;background:var(--bg);box-shadow:0 22px 60px rgba(0,0,0,.28)}
.measure-lightbox img{display:block;max-width:96vw;max-height:86vh;width:auto;height:auto;object-fit:contain;cursor:zoom-in;transform-origin:center;transition:transform 180ms ease}
.measure-lightbox img.is-zoomed{transform:scale(1.7);cursor:zoom-out}
.measure-lightbox-close{position:fixed;top:14px;right:14px;border:0;border-radius:999px;padding:10px 14px;background:var(--bg);color:var(--text);font:inherit;font-weight:600;box-shadow:var(--shadow)}
body.lightbox-open{overflow:hidden}
.compare-table-image{display:block;width:70px;aspect-ratio:1 / 1;object-fit:cover;border-radius:12px;margin:0 auto 8px;background:var(--bg-soft)}
.compare-full-table th span{display:block}
.swatch-card>a{display:none!important}
@media (max-width:840px){
  body[data-page="product"] .site-header{position:sticky;top:0;background:var(--bg);border-bottom:1px solid var(--line);box-shadow:0 6px 18px rgba(43,38,35,.08)}
  body[data-page="product"] main{padding-top:0}
  .header-inner{grid-template-columns:auto 1fr auto}
  .header-title{font-size:14px;text-align:center}
  .product-slider{max-width:100%}
  .product-slider-main{max-height:min(68vh,520px)}
  .measure-lightbox{padding:12px}
  .measure-lightbox-close{top:10px;right:10px}
}
.header-inner{grid-template-columns:auto auto 1fr auto}
@media (max-width:840px){.header-inner{grid-template-columns:auto 1fr auto}}

/* Correcciones puntuales: menú móvil y scroll de filtros */
.header-inner{position:relative}
@media (max-width:840px){
  .header-inner{position:relative}
  .header-inner .site-nav{grid-column:auto}
  .site-nav{
    left:auto;
    right:0;
    top:calc(100% + 8px);
    width:min(300px, calc(100vw - 24px));
    z-index:90;
  }
}

/* Ajuste miniaturas 4:5 del menú principal */
.hero-need-card .need-card-media img{object-fit:cover;object-position:center}
@media (max-width: 840px){.hero-need-card .need-card-media{height:auto;aspect-ratio:1 / 1}.hero-need-card .need-card-media img{object-fit:cover;object-position:center}}


/* Ajustes finales solicitados: miniaturas 1:1, hero compacto y ficha producto */
.hero-subtext{margin:10px 0 0;color:var(--text-strong);font-size:16px;line-height:1.45}
.hero-intent .hero-copy{max-width:none}
.hero-intent h1{white-space:nowrap}
.hero-need-card .need-card-media{aspect-ratio:1 / 1}
.hero-need-card .need-card-media img{object-fit:cover;object-position:center}
.product-back-nav{padding-top:18px}
.product-back-nav .product-back-link{text-decoration:none}
.product-summary-copy .product-summary-text:first-of-type{margin-top:20px}
.ideal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.ideal-grid article{display:flex;align-items:flex-start;gap:10px;padding:16px;border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.86)}
.ideal-grid article span{color:var(--accent);font-weight:600;line-height:1.35}
.ideal-grid article p{margin:0;color:var(--text-strong);font-size:14px;line-height:1.45}
.product-sticky-cta{position:fixed;left:16px;right:16px;bottom:calc(14px + env(safe-area-inset-bottom));z-index:64;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border:1px solid rgba(83,60,44,.12);border-radius:18px;background:rgba(255,255,255,.96);box-shadow:0 14px 34px rgba(43,38,35,.18)}
.product-sticky-cta[hidden]{display:none!important}
.product-sticky-cta strong{display:block;color:var(--text);font-size:15px;font-weight:600;line-height:1.15}
.product-sticky-cta span{display:block;margin-top:2px;color:var(--accent);font-size:13px;font-weight:600}
.product-sticky-cta .button{min-height:44px;white-space:nowrap}
.product-footer-grid{grid-template-columns:1.25fr 1fr 1fr}
@media (max-width:840px){
  .hero-intent{padding-top:22px;padding-bottom:32px;gap:18px}
  .hero-intent h1{font-size:clamp(23px, 6.4vw, 29px);line-height:1.05;margin-top:10px;letter-spacing:-.02em}
  .hero-subtext{font-size:14px;margin-top:8px}
  .hero-need-grid{grid-template-columns:1fr;gap:12px}
  .hero-need-card{min-height:112px}
  .hero-need-card .need-card-media{flex:0 0 34%;aspect-ratio:1 / 1}
  .ideal-grid{grid-template-columns:1fr;gap:10px}
  .product-sticky-cta{left:10px;right:10px;bottom:calc(10px + env(safe-area-inset-bottom));padding:10px 12px;border-radius:16px}
  .product-sticky-cta .button{min-height:42px;padding:0 12px;font-size:13px}
  .product-footer-grid{grid-template-columns:1fr}
}

/* Correcciones puntuales: inspiración por tab y hero desktop */
@media (min-width: 1081px){
  .hero-intent{
    grid-template-columns:1fr;
    gap:28px;
    align-items:center;
    padding-top:48px;
    padding-bottom:58px;
  }
  .hero-intent .hero-copy{
    max-width:none;
    text-align:center;
  }
  .hero-intent h1{
    max-width:100%;
  }
  .hero-need-grid{
    width:100%;
    grid-template-columns:repeat(4,minmax(220px,1fr));
    gap:16px;
  }
  .hero-need-card{
    min-height:150px;
  }
  .hero-need-card .need-card-media{
    flex:0 0 40%;
  }
}
.inspiration-card div{
  min-height:64px;
}
