:root {
  --ivory: #f8f9f7;
  --white: #ffffff;
  --ink: #172536;
  --ink-soft: #65717d;
  --sky: #8dcbe8;
  --sky-pale: #eaf6fb;
  --sky-deep: #2f6d8c;
  --line: #dce4e8;
  --whatsapp: #25d366;
  --danger: #9b344b;
  --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --display: var(--font-apple);
  --body: var(--font-apple);
  --radius: 12px;
  --page: min(1240px, calc(100% - 64px));
  --section-space: clamp(70px, 7vw, 100px);
  --section-space-tight: clamp(48px, 5vw, 72px);
  --shadow-dialog: 0 28px 80px rgba(23, 37, 54, 0.24);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
}
h2 { max-width: 14ch; font-size: clamp(2.7rem, 5vw, 4.9rem); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  border-bottom: 1px solid #cde5f0;
  background: var(--sky-pale);
  color: #284759;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
}
.announcement p { margin: 0; }

.site-header {
  position: relative;
  z-index: 20;
  width: var(--page);
  min-height: 104px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.brand {
  width: 122px;
  display: block;
  text-decoration: none;
}
.brand-logo { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--sky-deep);
  transition: right 220ms cubic-bezier(.22, 1, .36, 1);
}
.desktop-nav a:hover::after { right: 0; }
.cart-trigger {
  justify-self: end;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
.cart-trigger-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cart-count {
  min-width: 29px;
  height: 29px;
  padding: 0 7px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--sky);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 72px max(32px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,19,31,.68) 0%, rgba(10,23,37,.56) 31%, rgba(10,23,37,.28) 58%, rgba(10,23,37,.12) 100%),
    linear-gradient(180deg, rgba(9,20,32,.06) 45%, rgba(9,20,32,.24) 100%);
  pointer-events: none;
}
.hero-media { position: absolute; z-index: 0; inset: 0; background: var(--ink); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.08); transform-origin: 52% top; }
.hero-copy { position: relative; z-index: 2; width: min(610px, 52%); }
.hero-note { display: none; }
.hero h1 {
  max-width: 10.5ch;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.2rem, 4.8vw, 4.65rem);
  text-shadow: 0 3px 24px rgba(0,0,0,.24);
}
.hero h1 span { color: #bfe8fa; }
.hero-lead { max-width: 55ch; margin-bottom: 0; color: #e4edf3; font-size: .96rem; text-shadow: 0 2px 15px rgba(0,0,0,.24); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 24px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 21px;
  border: 0;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms cubic-bezier(.22, 1, .36, 1), background 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--white); }
.hero .button-primary { min-height: 52px; padding-inline: 25px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: 0 14px 32px rgba(0,0,0,.2); }
.button-primary:hover { background: #24394f; }
.hero .button-primary:hover { background: var(--sky-pale); box-shadow: 0 18px 36px rgba(0,0,0,.24); }
.button-quiet { border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.button-light { background: var(--white); color: var(--ink); }
.button-full { width: 100%; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-color: var(--sky-deep);
  text-underline-offset: 6px;
}
.hero .text-link { min-height: 52px; padding: 0 22px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(10,23,37,.28); color: var(--white); text-decoration: none; transition: transform 180ms cubic-bezier(.22,1,.36,1), background 180ms ease, border-color 180ms ease; }
.hero .text-link:hover { border-color: rgba(255,255,255,.82); background: rgba(10,23,37,.5); transform: translateY(-2px); }
.hero-reassurance {
  display: none;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}
.hero-reassurance span { display: inline-flex; align-items: center; gap: 8px; }
.hero-reassurance span::before { content: ""; width: 5px; height: 5px; background: var(--sky); }

.category-browser { padding-block: var(--section-space-tight) 4px; text-align: center; }
.category-browser > h2 { max-width: none; font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; letter-spacing: .12em; line-height: 1.25; text-transform: uppercase; }
.audience-filter { width: min(100%, 390px); min-height: 54px; margin: 26px auto 30px; padding: 5px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 999px; background: var(--white); }
.audience-filter button { min-height: 44px; padding: 8px 14px; border: 0; border-radius: 999px; background: transparent; color: var(--ink); font-size: .76rem; font-weight: 600; cursor: pointer; transition: background 180ms ease, color 180ms ease, transform 180ms cubic-bezier(.22,1,.36,1); }
.audience-filter button[aria-pressed="true"] { background: var(--ink); color: var(--white); }
.audience-filter button:hover { transform: translateY(-1px); }
.category-rail { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(18px, 3vw, 42px); }
.category-option { min-width: 0; display: grid; justify-items: center; align-content: start; gap: 10px; padding: 0; border: 0; background: transparent; color: var(--ink); text-align: center; }
button.category-option { cursor: pointer; }
.category-visual { position: relative; width: 128px; height: 128px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--sky-deep); transition: transform 220ms cubic-bezier(.22,1,.36,1), border-color 180ms ease, box-shadow 220ms ease; }
.category-photo { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 420ms cubic-bezier(.22,1,.36,1); }
.category-photo--shoes { object-position: 50% 52%; }
.category-photo--hats { object-position: 57% 50%; }
.category-photo--sets { object-position: 43% 52%; }
.category-photo--blankets { object-position: 72% 50%; }
.category-photo--accessories { object-position: 50% 43%; }
.category-option.is-active .category-visual { border-color: var(--sky); background: var(--sky-pale); box-shadow: 0 10px 24px rgba(47,109,140,.12); }
.category-option.is-active .category-visual::after { content: ""; position: absolute; z-index: 1; inset: 4px; border: 3px solid rgba(255,255,255,.96); border-radius: inherit; pointer-events: none; }
button.category-option:hover .category-visual { border-color: var(--sky-deep); transform: translateY(-3px); }
button.category-option:hover .category-photo { transform: scale(1.035); }
.category-option strong { font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.category-option small { margin-top: -7px; color: var(--sky-deep); font-size: .65rem; font-weight: 600; }
.category-option.is-coming .category-visual { background: #f2f5f6; color: #7b8893; }
.category-option.is-coming .category-visual > span { position: absolute; z-index: 1; right: 8px; bottom: 9px; left: 8px; padding: 5px 6px; border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: 0 4px 14px rgba(23,37,54,.12); color: var(--ink); font-size: .58rem; font-weight: 700; line-height: 1.2; }

.benefit-band {
  width: 100%;
  margin: 0 auto var(--section-space-tight);
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}
.benefit-band article {
  min-height: 176px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 34px clamp(24px, 3vw, 48px);
}
.benefit-band article + article { border-left: 1px solid var(--line); }
.benefit-symbol { width: 68px; height: 68px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--white); }
.benefit-symbol svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-band h2 { max-width: none; margin: 0 0 5px; font-family: var(--body); font-size: .88rem; font-weight: 700; letter-spacing: -.02em; line-height: 1.3; }
.benefit-band p { margin: 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }

.section-shell { width: var(--page); margin-inline: auto; }
.collection { position: relative; width: min(1280px, calc(100% - 64px)); padding-block: 34px var(--section-space-tight); }
.collection-thread { display: none; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 50px; }
.section-heading p { max-width: 58ch; margin: 18px 0 0; color: var(--ink-soft); }
.collection .section-heading { align-items: center; flex-direction: column; text-align: center; }
.collection .section-heading h2 { max-width: none; font-size: clamp(2.8rem, 4vw, 4rem); }
.collection .section-heading p { max-width: 62ch; }
.collection-cart { position: absolute; top: 58px; right: 0; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 38px 28px; }
.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: transparent;
}
.product-image { position: relative; aspect-ratio: .72 / 1; overflow: hidden; border-radius: 10px; background: linear-gradient(145deg, #f7f8f8 0%, #edf1f3 100%); }
.product-visual-button { width: 100%; height: 100%; display: block; padding: 0; border: 0; background: transparent; cursor: pointer; }
.product-visual-button:focus-visible { outline: 3px solid var(--sky-deep); outline-offset: -5px; }
.product-image img { width: 100%; height: 100%; padding: 0; object-fit: cover; object-position: center; transition: transform 600ms cubic-bezier(.22, 1, .36, 1); }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-info { min-width: 0; display: flex; flex-direction: column; padding: 13px 1px 0; }
.product-statuses { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 19px; }
.product-status { position: absolute; z-index: 2; top: 12px; left: 12px; padding: 6px 9px; border-radius: 6px; background: rgba(255,255,255,.94); color: var(--ink); font-size: .64rem; font-weight: 700; }
.product-status-order { border: 1px solid var(--line); background: var(--white); color: var(--ink-soft); }
.product-kicker { margin-bottom: 2px; color: #89939d; font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }
.product-info h3 { overflow: hidden; margin-bottom: 4px; font-family: var(--body); font-size: .92rem; font-weight: 500; letter-spacing: -.02em; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.product-meta { display: flex; align-items: baseline; gap: 16px; margin-top: 0; }
.product-price { font-size: 1.02rem; font-weight: 700; }
.quick-sizes { position: absolute; z-index: 3; right: 10px; bottom: 10px; left: 10px; padding: 8px; border: 1px solid rgba(255,255,255,.72); border-radius: 8px; background: rgba(255,255,255,.92); box-shadow: 0 12px 28px rgba(23,37,54,.12); opacity: 0; transform: translateY(10px); visibility: hidden; pointer-events: none; backdrop-filter: blur(12px); transition: opacity 180ms ease, transform 220ms cubic-bezier(.22,1,.36,1), visibility 0s linear 220ms; }
.product-card:hover .quick-sizes,
.product-card:focus-within .quick-sizes { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
.quick-sizes > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.quick-sizes > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }
.quick-sizes button { min-width: 0; min-height: 40px; padding: 4px 1px; border: 0; border-radius: 5px; background: transparent; color: var(--ink); font-size: .65rem; cursor: pointer; transition: background 160ms ease, color 160ms ease; }
.quick-sizes button:hover { background: var(--sky-pale); color: var(--sky-deep); }
.provisional-note { margin: 25px 0 0; color: var(--ink-soft); font-size: .75rem; text-align: center; }
.catalog-empty { grid-column: 1 / -1; min-height: 360px; display: grid; place-items: center; align-content: center; padding: 40px; text-align: center; }
.catalog-empty h3 { max-width: 22ch; font-size: 1.5rem; }
.catalog-empty p { margin: 12px 0 22px; color: var(--ink-soft); }

.craft-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 84px); align-items: center; margin-bottom: var(--section-space); padding: clamp(34px, 5vw, 62px); border: 1px solid #dce9ee; border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.92) 45%, #eef8fc 100%); box-shadow: 0 22px 62px rgba(23,37,54,.07); }
.story-image { position: relative; min-height: 510px; }
.story-image img { width: 100%; height: 510px; object-fit: cover; border-radius: 18px; }
.story-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--sky-deep);
  box-shadow: 0 10px 24px rgba(23,37,54,.12);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
}
.story-copy h2 { max-width: 10ch; font-size: clamp(3rem, 4.4vw, 4.7rem); }
.story-copy > p { max-width: 55ch; margin-top: 24px; color: #586a79; font-size: .97rem; }
.material-callout { margin-top: 28px; padding: 22px; border: 1px solid rgba(220,228,232,.92); border-radius: 14px; background: rgba(255,255,255,.74); color: var(--ink); box-shadow: 0 10px 28px rgba(23,37,54,.05); }
.material-callout strong { display: block; margin-bottom: 8px; font-size: .82rem; }
.material-callout p { margin-bottom: 10px; color: var(--ink-soft); font-size: .86rem; }
.material-callout small { display: block; color: var(--ink-soft); font-size: .7rem; line-height: 1.55; }

.sizes { padding-block: var(--section-space); background: var(--ivory); }
.sizes-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 7vw, 94px); padding: clamp(36px, 5vw, 64px); border: 1px solid #d9eaf1; border-radius: 24px; background: linear-gradient(145deg, #f2fbff 0%, var(--sky-pale) 100%); }
.sizes-intro > p { max-width: 55ch; margin-top: 22px; color: #466271; }
.measure-steps { display: grid; gap: 10px; padding: 0; margin: 32px 0 0; list-style: none; counter-reset: measure; }
.measure-steps li { position: relative; min-height: 54px; display: flex; align-items: center; padding: 13px 16px 13px 54px; border: 1px solid rgba(200,225,236,.9); border-radius: 12px; background: rgba(255,255,255,.64); counter-increment: measure; }
.measure-steps li::before { content: counter(measure); position: absolute; left: 13px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--sky-deep); box-shadow: 0 5px 14px rgba(47,109,140,.1); font-size: .7rem; font-weight: 700; }
.size-card { align-self: center; padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(220,228,232,.9); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 20px 50px rgba(23,37,54,.08); }
.size-card table { width: 100%; border-collapse: collapse; }
.size-card caption { margin-bottom: 20px; color: var(--ink); font-family: var(--display); font-size: 1.75rem; font-weight: 700; letter-spacing: -.035em; text-align: left; }
.size-card th, .size-card td { padding: 15px 10px; border-bottom: 1px solid #e7edef; text-align: left; }
.size-card thead th { color: var(--ink-soft); font-size: .68rem; letter-spacing: .05em; text-transform: uppercase; }
.size-card tbody th { font-size: .82rem; font-weight: 600; }
.size-card td { font-size: .82rem; font-weight: 700; }
.size-card p { margin: 20px 0 0; padding: 12px 13px; border-radius: 10px; background: var(--sky-pale); color: #3f6174; font-size: .76rem; }

.buying { padding-block: var(--section-space); }
.buying .compact-heading { align-items: center; justify-content: center; margin-bottom: 48px; text-align: center; }
.buying .compact-heading h2 { max-width: 12ch; }
.buying .compact-heading p { margin-inline: auto; }
.buying-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0; margin: 0; list-style: none; }
.buying-steps li { position: relative; min-height: 238px; padding: 26px; border: 1px solid #e1e8eb; border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 14px 38px rgba(23,37,54,.055); }
.buying-steps li + li { padding-left: 26px; border-left: 1px solid #e1e8eb; }
.buying-steps span { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 14px; background: var(--sky-pale); color: var(--sky-deep); font-size: .74rem; font-weight: 700; }
.buying-steps h3 { margin-bottom: 12px; font-size: 1.65rem; }
.buying-steps p { max-width: 25ch; color: var(--ink-soft); font-size: .82rem; }

.care-faq { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(38px, 6vw, 76px); margin-bottom: var(--section-space); padding: clamp(28px, 4vw, 48px); border: 1px solid #e1e8eb; border-radius: 24px; background: rgba(255,255,255,.76); }
.care-panel { padding: clamp(36px, 5vw, 54px); border-radius: 18px; background: linear-gradient(145deg, #1d3145 0%, var(--ink) 70%); color: var(--white); box-shadow: 0 22px 48px rgba(23,37,54,.16); }
.care-panel h2, .faq-panel h2 { max-width: none; font-size: clamp(2.5rem, 4vw, 3.8rem); }
.care-panel ul { padding: 0; margin: 32px 0 0; list-style: none; }
.care-panel li { position: relative; padding: 15px 0 15px 25px; border-top: 1px solid #405266; color: #d7e1e8; font-size: .84rem; }
.care-panel li::before { content: "♡"; position: absolute; left: 0; color: var(--sky); }
.faq-panel details { margin-top: 10px; padding: 0 18px; border: 1px solid #e1e8eb; border-radius: 12px; background: var(--white); transition: background 180ms ease, border-color 180ms ease; }
.faq-panel details[open] { border-color: #cce5ef; background: #f7fcfe; }
.faq-panel summary { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 15px; font-size: .85rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary::after { content: "+"; flex: 0 0 auto; color: var(--sky-deep); font-family: var(--display); font-size: 1.6rem; }
.faq-panel details[open] summary::after { content: "−"; }
.faq-panel details p { max-width: 65ch; padding: 0 0 20px; margin: 0; color: var(--ink-soft); font-size: .85rem; }

.final-cta {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 60px;
  padding: 80px max(32px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  background: radial-gradient(circle at 76% 26%, #29445d 0%, transparent 28%), linear-gradient(145deg, #172536 0%, #0d1925 100%);
  color: var(--white);
}
.final-cta > div:not(.final-yarn), .final-cta img { position: relative; z-index: 2; }
.final-cta h2 { max-width: 10ch; font-size: clamp(4rem, 7vw, 6rem); }
.final-cta p { max-width: 54ch; margin: 26px 0 31px; color: #c9d8e2; }
.final-cta img { width: min(100%, 455px); aspect-ratio: 1 / 1.05; justify-self: end; object-fit: cover; border: 8px solid rgba(255,255,255,.92); border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.final-yarn { position: absolute; right: 18%; bottom: 15%; width: 560px; height: 180px; border-top: 4px dotted rgba(141,203,232,.72); border-radius: 50%; transform: rotate(-10deg); opacity: .8; }

.site-footer { display: grid; grid-template-columns: minmax(210px,.72fr) minmax(170px,.45fr) minmax(360px,1fr); align-items: start; gap: 28px 54px; padding: 62px max(32px, calc((100vw - 1240px) / 2)); border-top: 1px solid #314354; background: #101c29; color: var(--white); }
.footer-logo-link { width: 190px; display: block; }
.footer-logo { width: 100%; height: auto; }
.site-footer > p { grid-column: 1; margin: 0; color: #aebdca; }
.footer-links { grid-column: 2; grid-row: 1 / span 2; display: flex; align-items: flex-start; flex-direction: column; gap: 13px; padding-top: 8px; }
.footer-links a { color: var(--white); font-size: .78rem; text-underline-offset: 5px; }
.footer-policies { grid-column: 3; grid-row: 1 / span 3; width: 100%; color: #aebdca; }
.footer-policies details { border-bottom: 1px solid #344554; }
.footer-policies summary { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--white); font-size: .76rem; font-weight: 700; cursor: pointer; list-style: none; }
.footer-policies summary::-webkit-details-marker { display: none; }
.footer-policies summary::after { content: "+"; color: var(--sky); font-size: 1.1rem; }
.footer-policies details[open] summary::after { content: "−"; }
.footer-policies p { max-width: 68ch; color: #aebdca; font-size: .71rem; }
.site-footer small { grid-column: 1; margin-top: 16px; color: #8193a2; }

.whatsapp-float { position: fixed; z-index: 50; right: 20px; bottom: 20px; min-height: 56px; display: flex; align-items: center; gap: 10px; padding: 8px 9px 8px 16px; border: 1px solid rgba(11,92,50,.12); border-radius: 999px; background: var(--whatsapp); color: var(--white); box-shadow: 0 16px 38px rgba(37,211,102,.3); font-size: .78rem; font-weight: 700; cursor: pointer; transition: transform 180ms cubic-bezier(.22,1,.36,1), box-shadow 180ms ease; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(37,211,102,.36); }
.whatsapp-float svg { width: 27px; fill: currentColor; }
.whatsapp-float .cart-count { min-width: 32px; height: 32px; border-radius: 50%; background: var(--white); color: #0b6b38; }

dialog { border: 0; padding: 0; color: var(--ink); }
dialog::backdrop { background: rgba(12, 24, 36, .66); backdrop-filter: blur(5px); }
.product-dialog { width: min(1120px, calc(100% - 30px)); max-height: calc(100dvh - 30px); overflow: auto; border: 1px solid rgba(255,255,255,.72); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-dialog); }
.dialog-close-row { position: absolute; z-index: 2; top: 15px; right: 15px; }
.icon-button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: var(--ink); color: var(--white); box-shadow: 0 10px 24px rgba(23, 37, 54, .18); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.product-dialog-layout { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 680px; }
.product-dialog-layout > img { width: calc(100% - 28px); height: calc(100% - 28px); max-height: 732px; margin: 14px; object-fit: cover; border-radius: 18px; background: var(--sky-pale); }
.product-form { align-self: center; padding: clamp(38px, 4.5vw, 58px); }
.dialog-status { width: fit-content; margin-bottom: 16px; padding: 8px 11px; border: 1px solid #d5eaf3; border-radius: 999px; background: var(--sky-pale); color: #2e647e; font-size: .66rem; font-weight: 700; }
.product-form h2 { margin-bottom: 9px; font-size: clamp(2.5rem, 4vw, 3.7rem); }
.dialog-price { margin-bottom: 12px; font-size: 1.35rem; font-weight: 700; }
.dialog-description { max-width: 48ch; margin-bottom: 28px; color: var(--ink-soft); font-size: .82rem; }
.product-form fieldset { min-width: 0; padding: 0; margin: 0 0 22px; border: 0; }
.product-form legend { margin-bottom: 11px; font-size: .8rem; font-weight: 700; }
.choice-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-option { position: relative; }
.choice-option input { position: absolute; opacity: 0; pointer-events: none; }
.choice-option span { min-height: 44px; display: grid; place-items: center; padding: 9px 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); font-size: .76rem; font-weight: 600; cursor: pointer; transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.choice-option span:hover { border-color: #b9dce9; background: #f8fcfe; }
.choice-option input:checked + span { border-color: var(--sky-deep); background: var(--sky-pale); color: var(--ink); box-shadow: inset 0 0 0 1px var(--sky-deep); transform: translateY(-1px); }
.choice-option input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.color-choices .choice-option:last-child span { background: var(--ivory); }
.quantity-field { display: grid; gap: 8px; margin-bottom: 16px; font-size: .8rem; font-weight: 700; }
.quantity-field input { width: 95px; min-height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 12px; background: #fbfcfc; }
.form-error { min-height: 24px; margin-bottom: 10px; color: var(--danger); font-size: .8rem; font-weight: 700; }
.product-form .button-primary { min-height: 52px; border-radius: 999px; box-shadow: 0 14px 28px rgba(23,37,54,.15); }
.custom-time { margin: 13px 0 0; color: var(--ink-soft); font-size: .72rem; text-align: center; }

.cart-dialog { width: min(500px, 100%); max-width: none; height: 100dvh; max-height: none; margin: 0 0 0 auto; background: #f3f7f8; box-shadow: -28px 0 70px rgba(23, 37, 54, .24); }
.cart-shell { min-height: 100%; display: flex; flex-direction: column; }
.cart-header { position: sticky; z-index: 3; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid #e2e9ec; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); }
.cart-header p { margin: 0 0 3px; color: var(--sky-deep); font-size: .68rem; font-weight: 700; }
.cart-header h2 { margin: 0; font-size: 2rem; }
.cart-items { display: grid; gap: 12px; padding: 14px; }
.cart-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 14px; padding: 14px; border: 1px solid #e1e8eb; border-radius: 14px; background: var(--white); box-shadow: 0 10px 26px rgba(23,37,54,.045); }
.cart-item img { width: 82px; height: 96px; object-fit: cover; border-radius: 10px; }
.cart-item h3 { margin: 1px 0 6px; font-family: var(--body); font-size: .86rem; font-weight: 700; line-height: 1.3; }
.cart-item p { margin: 0; color: var(--ink-soft); font-size: .72rem; }
.cart-line-price { margin-top: 8px !important; color: var(--ink) !important; font-weight: 700; }
.cart-controls { display: flex; align-items: center; gap: 5px; margin-top: 12px; }
.cart-controls button { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 10px; background: #f8fafb; color: var(--ink); cursor: pointer; }
.cart-controls span { min-width: 28px; text-align: center; font-size: .8rem; font-weight: 700; }
.remove-item { align-self: start; border: 0; background: none; color: var(--danger); font-size: .7rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cart-empty { min-height: 470px; display: grid; place-items: center; align-content: center; padding: 40px; text-align: center; }
.cart-empty span { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 22px; background: var(--sky-pale); font-size: 2.5rem; }
.cart-empty h3 { margin: 18px 0 8px; font-size: 1.8rem; }
.cart-empty p { max-width: 32ch; color: var(--ink-soft); }
.cart-summary { position: sticky; z-index: 2; bottom: 0; margin: auto 14px 14px; padding: 22px; border: 1px solid #dde6e9; border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 -12px 34px rgba(23,37,54,.08); backdrop-filter: blur(12px); }
.cart-summary > div { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 9px; font-size: 1.08rem; }
.cart-summary > p { margin-bottom: 17px; padding: 11px 12px; border-radius: 10px; background: var(--sky-pale); color: #345569; font-size: .72rem; }
.whatsapp-button { min-height: 52px; border-radius: 999px; background: var(--whatsapp); color: var(--white); box-shadow: 0 12px 26px rgba(37,211,102,.2); }
.whatsapp-button svg { width: 22px; height: 22px; flex: 0 0 auto; fill: currentColor; }
.copy-order, .clear-cart { width: 100%; min-height: 44px; border: 0; background: none; color: var(--ink); font-size: .76rem; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.clear-cart { color: var(--danger); font-size: .72rem; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 30px; max-width: calc(100% - 30px); padding: 12px 17px; border-radius: 8px; background: var(--ink); color: var(--white); box-shadow: 0 14px 34px rgba(23,37,54,.2); font-size: .8rem; font-weight: 700; opacity: 0; transform: translate(-50%, 15px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  :root { --page: min(100% - 44px, 900px); }
  .hero { padding-inline: 28px; }
  .hero h1 { font-size: clamp(3rem, 6vw, 4.2rem); }
  .hero-copy { width: min(590px, 62%); }
  .collection { width: min(100% - 44px, 900px); }
  .category-rail { gap: 18px; }
  .category-visual { width: 112px; height: 112px; }
  .collection-cart { position: static; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 24px; }
  .buying-steps { grid-template-columns: repeat(2, 1fr); }
  .buying-steps li:nth-child(3),
  .buying-steps li:nth-child(4) { border: 1px solid #e1e8eb; }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 30px, 620px);
    --section-space: 56px;
    --section-space-tight: 40px;
  }
  .announcement { font-size: .68rem; }
  .site-header { min-height: 88px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .brand { width: 104px; }
  .cart-trigger { padding: 6px 7px 6px 14px; border: 1px solid var(--line); background: var(--white); }

  .hero { min-height: 650px; align-items: flex-start; padding: 54px 20px 58px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(7,18,30,.78) 0%, rgba(8,20,33,.58) 52%, rgba(8,20,33,.18) 78%, rgba(8,20,33,.28) 100%),
      linear-gradient(90deg, rgba(8,20,33,.14), transparent 78%);
  }
  .hero-copy { width: 100%; max-width: 560px; }
  .hero h1 { max-width: 10.5ch; font-size: clamp(3rem, 13vw, 4.2rem); }
  .hero-lead { max-width: 43ch; font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-reassurance { display: none; }
  .hero-media img { object-position: 52% top; transform: scale(1.9); transform-origin: 52% top; }

  .category-browser { width: 100%; padding-block: 40px 0; }
  .category-browser > h2, .audience-filter { width: var(--page); }
  .audience-filter { margin-bottom: 26px; }
  .category-rail { max-width: none; display: flex; gap: 16px; overflow-x: auto; padding: 0 15px 16px; scroll-padding-inline: 15px; scrollbar-width: none; text-align: left; }
  .category-rail::-webkit-scrollbar { display: none; }
  .category-option { flex: 0 0 112px; }
  .category-visual { width: 106px; height: 106px; }

  .benefit-band { grid-template-columns: 1fr; margin-bottom: var(--section-space-tight); padding-inline: 15px; }
  .benefit-band article { min-height: 118px; padding: 24px 8px; }
  .benefit-band article + article { border-top: 1px solid var(--line); border-left: 0; }
  .benefit-symbol { width: 58px; height: 58px; }
  .benefit-symbol svg { width: 29px; height: 29px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .collection .section-heading { align-items: center; text-align: center; }
  .collection { width: var(--page); padding-block: 28px var(--section-space-tight); }
  .collection-cart { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-info { min-height: 0; }
  .product-info h3 { font-size: 1rem; }
  .product-image { aspect-ratio: .82 / 1; }
  .quick-sizes { display: none; }

  .craft-story, .sizes-layout, .care-faq { grid-template-columns: 1fr; }
  .craft-story { gap: 32px; padding: 22px; border-radius: 18px; }
  .story-image { min-height: 380px; }
  .story-image img { width: 100%; height: 380px; border-radius: 14px; }
  .sizes-layout { gap: 32px; padding: 22px; border-radius: 18px; }
  .size-card { padding: 24px; }
  .buying-steps { grid-template-columns: 1fr; gap: 12px; }
  .buying-steps li,
  .buying-steps li + li,
  .buying-steps li:first-child { min-height: auto; padding: 24px; border: 1px solid #e1e8eb; }
  .buying-steps span { margin-bottom: 24px; }
  .buying-steps p { max-width: 45ch; }
  .care-faq { gap: 24px; padding: 20px; border-radius: 18px; }
  .care-panel { padding: 30px 24px; }
  .final-cta { grid-template-columns: 1fr; padding: 76px 20px; }
  .final-cta h2 { font-size: clamp(3.7rem, 15vw, 5.1rem); }
  .final-cta img { width: min(92%, 420px); justify-self: start; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 20px; }
  .footer-logo-link { width: 172px; }
  .site-footer > p, .footer-links, .footer-policies, .site-footer small { grid-column: 1; grid-row: auto; }
  .footer-links { align-items: start; flex-direction: column; gap: 12px; }
  .footer-policies { width: 100%; }
  .site-footer { padding-bottom: 110px; }

  .product-dialog-layout { grid-template-columns: 1fr; }
  .product-dialog-layout > img { width: calc(100% - 24px); height: 180px; margin: 12px; border-radius: 14px; }
  .product-form { padding: 20px 20px 24px; }
  .product-form h2 { font-size: 2.1rem; }
  .dialog-status { margin-bottom: 10px; }
  .dialog-price { margin-bottom: 8px; }
  .dialog-description { display: none; }
  .product-form fieldset { margin-bottom: 16px; }
  .cart-dialog { width: 100%; }
  .whatsapp-float span:nth-child(2) { display: none; }
  .whatsapp-float { right: 14px; bottom: 14px; padding-left: 11px; }
}

@media (max-width: 480px) {
  .hero { min-height: 650px; padding: 46px 15px 52px; }
  .product-image { aspect-ratio: .82 / 1; }
  .story-image { min-height: 365px; }
  .story-image img { height: 355px; }
  .cart-item { grid-template-columns: 66px 1fr; padding: 12px; }
  .cart-item img { width: 66px; height: 80px; }
  .remove-item { grid-column: 2; justify-self: start; }
}

@media (hover: none) {
  .quick-sizes { display: none; }
  .product-card:hover .product-image img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
