/* NatalizSoft storefront */
:root {
  --navy-950: #030d1f;
  --navy-900: #061a3a;
  --navy-800: #0a2452;
  --navy-700: #0f3170;
  --blue-600: #1447e6;
  --blue-500: #2e6bff;
  --blue-400: #6a97ff;
  --sky-200: #cfdff7;
  --sky-100: #e6effc;
  --sky-50: #f3f7fd;
  --gold-600: #a8843f;
  --gold-500: #c9a45c;
  --gold-300: #e9d5a1;
  --cream: #faf7f0;
  --ink: #0b1b35;
  --body: #33435e;
  --muted: #64748f;
  --line: #dfe7f3;
  --white: #fff;
  --ok: #0f7a4d;
  --err: #b42318;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(6, 26, 58, .06), 0 4px 14px rgba(6, 26, 58, .06);
  --shadow-md: 0 10px 34px rgba(6, 26, 58, .12);
  --shadow-lg: 0 30px 70px rgba(6, 26, 58, .22);
  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.65; color: var(--body); background: var(--white); -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 6px; }
[hidden] { display: none !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; background: var(--white); color: var(--ink); padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { top: 12px; }
.center { text-align: center; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-inline: clamp(18px, 4vw, 40px); }
.container--narrow { max-width: 900px; }
.container--xs { max-width: 520px; }

.eyebrow { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.eyebrow--gold { color: var(--gold-500); }

/* ---------- announce + header ---------- */
.announce { background: var(--navy-950); color: #b9c8e4; font-size: .8rem; letter-spacing: .02em; }
.announce__inner { display: flex; gap: 16px; align-items: center; justify-content: center; padding-block: 9px; flex-wrap: wrap; }
.announce a { color: var(--gold-300); font-weight: 600; }
.announce__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(6, 26, 58, .92); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); border-bottom: 1px solid rgba(255, 255, 255, .08); transition: box-shadow .3s var(--ease), background .3s var(--ease); }
.site-header.is-stuck { background: rgba(4, 16, 38, .97); box-shadow: 0 10px 40px rgba(3, 13, 31, .4); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.site-header__actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--white); flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold-500), 0 6px 18px rgba(0, 0, 0, .35); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; letter-spacing: .01em; color: var(--white); }
.brand__name em { font-style: italic; color: var(--gold-300); }
.brand__tag { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: #8ea6d3; margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 14px; color: #d6e1f5; font-size: .92rem; font-weight: 500; border-radius: 999px; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--white); background: rgba(255, 255, 255, .08); text-decoration: none; }
.nav__item { position: static; }
.mega { position: absolute; left: 0; right: 0; top: 100%; padding: 0 clamp(18px, 4vw, 40px); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
.nav__item--mega:hover .mega, .nav__item--mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega__grid { max-width: 1200px; margin: 0 auto; background: var(--white); border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); padding: 22px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; border-top: 3px solid var(--gold-500); }
.mega__link { display: block; padding: 14px; border-radius: var(--radius-sm); color: var(--ink); transition: background .2s; }
.mega__link:hover { background: var(--sky-50); text-decoration: none; }
.mega__link strong { display: block; font-size: .9rem; font-weight: 600; line-height: 1.3; }
.mega__link span { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; line-height: 1.4; }

.search { display: flex; align-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding-left: 16px; transition: background .2s, border-color .2s; }
.search:focus-within { background: rgba(255, 255, 255, .14); border-color: var(--gold-500); }
.search input { background: none; border: 0; outline: 0; color: var(--white); width: 170px; padding: 9px 0; font-size: .88rem; }
.search input::placeholder { color: #8ea6d3; }
.search button { background: none; border: 0; color: #d6e1f5; padding: 9px 14px; cursor: pointer; display: flex; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #d6e1f5; background: none; border: 0; cursor: pointer; transition: background .2s, color .2s; }
.icon-btn:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.cart-btn__count { position: absolute; top: 3px; right: 1px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--gold-500); color: var(--navy-950); font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.cart-btn__count.is-bump { animation: bump .45s var(--ease); }
@keyframes bump { 40% { transform: scale(1.5); } }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid transparent; border-radius: 999px; padding: 12px 24px; font-weight: 600; font-size: .94rem; cursor: pointer; transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s; text-decoration: none; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: none; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--blue-500), var(--blue-600) 55%, #0d36b8); color: var(--white); box-shadow: 0 10px 26px rgba(20, 71, 230, .35); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(20, 71, 230, .45); }
.btn--gold { background: linear-gradient(135deg, #f1dfae, var(--gold-500) 55%, var(--gold-600)); color: var(--navy-950); box-shadow: 0 10px 28px rgba(201, 164, 92, .35); }
.btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .3); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn--text { background: none; color: var(--muted); padding: 10px; }
.btn--icon { width: 44px; height: 44px; padding: 0; background: var(--navy-900); color: var(--white); }
.btn--icon:hover { background: var(--blue-600); }
.link-arrow { font-weight: 600; color: var(--blue-600); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; color: #c5d3ec; background: radial-gradient(1200px 600px at 85% 20%, #1b4fd6 0%, transparent 60%), radial-gradient(900px 500px at 0% 100%, #0f3a9c 0%, transparent 55%), linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%); }
.hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 26px 26px; mask-image: linear-gradient(180deg, transparent, #000 30%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, transparent); pointer-events: none; }
.hero__glow { position: absolute; width: 640px; height: 640px; right: -120px; top: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 164, 92, .22), transparent 65%); filter: blur(10px); }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding-block: clamp(64px, 9vw, 130px); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; background: linear-gradient(120deg, #f4e6bd, var(--gold-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 1.14rem; max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero__points { list-style: none; margin: 0; padding: 26px 0 0; display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .12); }
.hero__points strong { display: block; font-family: var(--serif); font-size: 2.1rem; color: var(--white); line-height: 1; }
.hero__points span { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: #8ea6d3; }
.hero__stage { position: relative; aspect-ratio: 1; max-width: 560px; width: 100%; margin-inline: auto; }
.hero__ring { position: absolute; inset: 7%; border-radius: 50%; border: 1px solid rgba(233, 213, 161, .35); background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .16), rgba(255, 255, 255, .02) 60%); box-shadow: inset 0 0 80px rgba(46, 107, 255, .35), 0 40px 100px rgba(3, 13, 31, .5); }
.hero__napkin { position: absolute; width: 62%; filter: drop-shadow(0 30px 40px rgba(3, 13, 31, .45)); animation: float 9s ease-in-out infinite; }
.hero__napkin--1 { left: 19%; top: 17%; z-index: 3; }
.hero__napkin--2 { left: -6%; top: 40%; width: 46%; z-index: 2; animation-delay: -3s; }
.hero__napkin--3 { right: -6%; top: 2%; width: 44%; z-index: 1; animation-delay: -6s; }
@keyframes float { 50% { transform: translateY(-16px) rotate(1.5deg); } }

/* ---------- sections ---------- */
.section { padding-block: clamp(64px, 8vw, 112px); }
.section--flush { padding-top: 40px; }
.section--flush-top { padding-top: 44px; }
.section--tint { background: linear-gradient(180deg, var(--sky-50), var(--white)); }
.section--navy { background: radial-gradient(900px 400px at 50% 0%, rgba(46, 107, 255, .35), transparent 70%), var(--navy-900); color: #b9c8e4; }
.section--navy h2 { color: var(--white); }
.section__head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section__head p { font-size: 1.08rem; color: inherit; }
.section__head--row { max-width: none; text-align: left; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section__head--row h2 { margin: 0; }

.page-hero { background: radial-gradient(900px 380px at 80% 0%, rgba(46, 107, 255, .5), transparent 65%), linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: #c5d3ec; padding-block: clamp(48px, 6vw, 84px); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.4vw, 3.6rem); max-width: 900px; }
.page-hero p { max-width: 760px; font-size: 1.08rem; margin: 0; }
.page-title { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 28px; }

.crumbs { display: flex; gap: 10px; flex-wrap: wrap; font-size: .82rem; margin-bottom: 20px; color: #8ea6d3; }
.crumbs a { color: #b9c8e4; }
.crumbs--dark, .crumbs--dark a { color: var(--muted); }

/* ---------- category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.cat { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--body); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.cat:hover { text-decoration: none; transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.cat__art { background: linear-gradient(150deg, var(--sky-100), #d3e2f9); padding: 8px; }
.cat:hover .napkin-art { transform: scale(1.07) rotate(-2deg); }
.cat__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.cat h3 { font-size: 1.32rem; margin-bottom: 6px; }
.cat p { font-size: .86rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.cat__more { margin-top: auto; font-size: .8rem; font-weight: 600; color: var(--blue-600); letter-spacing: .02em; }
.napkin-art { width: 100%; height: auto; transition: transform .6s var(--ease); }

/* ---------- product cards ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sky-200); }
.card__media { position: relative; display: block; background: radial-gradient(circle at 30% 20%, #fff, transparent 60%), linear-gradient(150deg, var(--sky-100), #cddef7); padding: 6px; }
.card:hover .napkin-art { transform: scale(1.06) rotate(-2deg); }
.card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__title { font-family: var(--sans); font-size: 1rem; font-weight: 600; line-height: 1.35; letter-spacing: 0; margin: 6px 0 4px; }
.card__title a { color: var(--ink); }
.card__title a::after { content: ''; position: absolute; inset: 0; }
.card__spec { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.card__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; }
.card__foot form { position: relative; z-index: 2; }
.section--navy .card { border-color: rgba(255, 255, 255, .1); }

.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; }
.price__now { font-size: 1.22rem; font-weight: 700; color: var(--ink); }
.price__was { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.price__unit { width: 100%; font-size: .74rem; color: var(--muted); }
.price--lg .price__now { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; }
.price--lg .price__unit { width: auto; font-size: .9rem; }

.badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 5px 12px; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--navy-900); color: var(--white); }
.badge--signature, .badge--custom { background: linear-gradient(135deg, #f1dfae, var(--gold-500)); color: var(--navy-950); }
.badge--new { background: var(--blue-600); }
.badge--eco-choice { background: #1d6b4a; }
.badge--seasonal { background: #a3222d; }

/* ---------- feature / stats ---------- */
.feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.feature__copy > p { font-size: 1.08rem; }
.feature__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat { padding: 34px 26px; border-radius: var(--radius); background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #b9c8e4; box-shadow: var(--shadow-md); }
.stat:nth-child(2), .stat:nth-child(3) { background: linear-gradient(150deg, var(--sky-100), var(--white)); color: var(--muted); border: 1px solid var(--line); box-shadow: none; }
.stat strong { display: block; font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--gold-300); margin-bottom: 8px; }
.stat:nth-child(2) strong, .stat:nth-child(3) strong { color: var(--blue-600); }
.stat span { font-size: .84rem; letter-spacing: .04em; text-transform: uppercase; }

.ticks { list-style: none; padding: 0; margin: 0 0 28px; }
.ticks li { position: relative; padding: 0 0 14px 34px; }
.ticks li::before { content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--sky-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%231447e6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.ticks strong { color: var(--ink); }
.steps { padding-left: 22px; margin: 0 0 30px; }
.steps li { padding: 0 0 14px 6px; }
.steps li::marker { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--gold-600); }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo__card { display: block; padding: clamp(32px, 4vw, 56px); border-radius: calc(var(--radius) + 6px); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.duo__card:hover { text-decoration: none; transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.duo__card h3 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); }
.duo__card--blue { background: radial-gradient(500px 300px at 100% 0%, rgba(46, 107, 255, .7), transparent 70%), var(--navy-900); color: #c5d3ec; }
.duo__card--blue h3 { color: var(--white); }
.duo__card--blue .link-arrow { color: var(--gold-300); }
.duo__card--cream { background: linear-gradient(150deg, var(--cream), #f0e8d6); color: var(--body); border: 1px solid #ebe1c9; }

.industries { text-align: center; }
.pills { list-style: none; padding: 0; margin: 30px auto 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 900px; }
.pills li { padding: 11px 22px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 500; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------- shop ---------- */
.shop { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }
.shop__side { position: sticky; top: 100px; }
.shop__side-title { font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.shop__cats { list-style: none; margin: 0; padding: 0; }
.shop__cats a { display: flex; justify-content: space-between; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--body); font-size: .92rem; font-weight: 500; }
.shop__cats a:hover { background: var(--sky-50); text-decoration: none; }
.shop__cats a.is-active { background: var(--navy-900); color: var(--white); }
.shop__cats span { font-size: .78rem; opacity: .6; }
.filters { display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; padding: 16px 18px; margin-bottom: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sky-50); }
.filters label { display: flex; flex-direction: column; gap: 4px; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.filters__count { margin-left: auto; font-size: .88rem; color: var(--muted); padding-bottom: 10px; }
select, .field input, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid #cdd8ea; border-radius: var(--radius-sm); background: var(--white); color: var(--ink); font-size: .95rem; transition: border-color .2s, box-shadow .2s; }
.filters select { min-width: 160px; padding: 9px 12px; font-size: .88rem; text-transform: none; letter-spacing: 0; font-weight: 500; }
select:focus, .field input:focus, .field textarea:focus { outline: 0; border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(20, 71, 230, .14); }
.empty { text-align: center; padding: 70px 20px; border: 1px dashed #cdd8ea; border-radius: var(--radius); background: var(--sky-50); }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 76px); align-items: start; margin-bottom: 72px; }
.pdp__media { position: sticky; top: 100px; border-radius: calc(var(--radius) + 6px); background: radial-gradient(circle at 30% 20%, #fff, transparent 55%), linear-gradient(150deg, var(--sky-100), #c6d9f6); padding: 20px; border: 1px solid var(--line); }
.pdp__media .badge { top: 22px; left: 22px; }
.pdp h1 { font-size: clamp(2.1rem, 3.6vw, 3.1rem); margin-bottom: 12px; }
.pdp__tagline { font-size: 1.1rem; margin-bottom: 22px; }
.pdp__per { font-size: .86rem; color: var(--muted); margin: 6px 0 26px; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin: 0 0 28px; }
.specs div { background: var(--white); padding: 14px 16px; }
.specs dt { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.specs dd { margin: 3px 0 0; font-weight: 600; color: var(--ink); font-size: .94rem; }
.buy { display: flex; gap: 14px; align-items: stretch; margin-bottom: 14px; }
.buy__btn { flex: 1; }
.qty { display: inline-flex; align-items: center; border: 1px solid #cdd8ea; border-radius: 999px; background: var(--white); overflow: hidden; }
.qty button { width: 46px; height: 100%; min-height: 46px; border: 0; background: none; cursor: pointer; font-size: 1.2rem; color: var(--ink); }
.qty button:hover { background: var(--sky-50); }
.qty input { width: 54px; border: 0; text-align: center; font-weight: 600; background: none; -moz-appearance: textfield; appearance: textfield; outline: 0; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--sm button { width: 36px; min-height: 38px; }
.qty--sm input { width: 42px; }
.pdp__stock { font-size: .88rem; font-weight: 600; margin-bottom: 24px; }
.pdp__stock.is-in { color: var(--ok); }
.pdp__stock.is-out { color: var(--err); }
.pdp__assure { list-style: none; margin: 0; padding: 22px 0 0; border-top: 1px solid var(--line); font-size: .9rem; }
.pdp__assure li { padding: 5px 0 5px 24px; position: relative; }
.pdp__assure li::before { content: ''; position: absolute; left: 2px; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
.pdp__detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 76px); padding-top: 56px; border-top: 1px solid var(--line); }
.pdp__detail h2 { font-size: 1.9rem; }

/* ---------- cart + checkout ---------- */
.checkout { display: grid; grid-template-columns: 1fr 390px; gap: 44px; align-items: start; }
.line { display: grid; grid-template-columns: 96px 1fr auto auto auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.line--compact { grid-template-columns: 64px 1fr auto; }
.line__art { border-radius: var(--radius-sm); background: linear-gradient(150deg, var(--sky-100), #cddef7); }
.line h2 { font-family: var(--sans); font-size: 1rem; font-weight: 600; letter-spacing: 0; line-height: 1.35; margin: 0 0 4px; }
.line h2 a { color: var(--ink); }
.line p { margin: 0; font-size: .84rem; color: var(--muted); }
.line__total { font-weight: 700; color: var(--ink); min-width: 84px; text-align: right; }
.line__remove { width: 34px; height: 34px; border-radius: 50%; border: 0; background: none; font-size: 1.4rem; line-height: 1; color: var(--muted); cursor: pointer; }
.line__remove:hover { background: #fdecea; color: var(--err); }
.summary { position: sticky; top: 100px; padding: 28px; border-radius: var(--radius); background: var(--sky-50); border: 1px solid var(--line); }
.summary h2 { font-size: 1.6rem; margin-bottom: 18px; }
.summary__item, .summary__row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: .92rem; }
.summary__item { color: var(--muted); font-size: .86rem; }
.summary__row--total { margin-top: 10px; padding-top: 16px; border-top: 1px solid #cdd8ea; font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.summary__hint { font-size: .84rem; color: var(--blue-600); font-weight: 500; }
.summary .btn { margin-top: 14px; }
.summary__secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 18px 0 0; font-size: .78rem; color: var(--muted); }
.summary--inline { position: static; background: none; border: 0; padding: 18px 0 0; max-width: 340px; margin-left: auto; }

.form--card { padding: clamp(24px, 3.4vw, 40px); border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.form h2 { font-size: 1.5rem; margin: 26px 0 14px; }
.form h2:first-of-type { margin-top: 0; }
.form__title { font-size: 2rem; margin-bottom: 8px; }
.form__lead { color: var(--muted); margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--3 { grid-template-columns: 2fr 1fr 1fr; }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field em { display: block; font-style: normal; font-size: .8rem; color: var(--err); margin-top: 5px; }
.field small { display: block; font-size: .78rem; color: var(--muted); margin-top: 5px; }
.form__note { font-size: .8rem; color: var(--muted); margin: 16px 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pay-note { padding: 18px 20px; border-radius: var(--radius-sm); background: var(--sky-50); border: 1px solid var(--sky-200); margin-bottom: 22px; }
.pay-note strong { color: var(--ink); }
.pay-note p { margin: 4px 0 0; font-size: .88rem; }
.notice { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .92rem; }
.notice--error { background: #fdecea; color: #7a1710; border: 1px solid #f6c8c3; }
.notice--success { background: #e9f7f0; color: #0b4f33; border: 1px solid #bfe5d2; }
.notice--success h3 { color: #0b4f33; font-size: 1.4rem; margin-bottom: 4px; }
.notice p { margin: 0; }

.confirm { text-align: center; margin-bottom: 40px; }
.confirm__check { width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); box-shadow: 0 16px 40px rgba(20, 71, 230, .4); }
.order-box { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); margin-bottom: 34px; box-shadow: var(--shadow-sm); }
.order-box__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.order-box__meta span { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.order-box__meta strong { color: var(--ink); }
.status { display: inline-block; text-transform: capitalize; padding: 2px 12px; border-radius: 999px; background: var(--sky-100); color: var(--blue-600) !important; font-size: .82rem; font-weight: 600; }
.account-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.account-head .page-title { margin-bottom: 6px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table th { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: var(--sky-50); }
.table tr:last-child td { border-bottom: 0; }
.table .num { text-align: right; }

/* ---------- content ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.prose h2 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1.04rem; }
.prose__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 44px; padding-top: 34px; border-top: 1px solid var(--line); }
.error-page { padding-block: 40px; }
.error-page__code { display: block; font-family: var(--serif); font-size: clamp(6rem, 16vw, 10rem); line-height: 1; font-weight: 700; background: linear-gradient(135deg, var(--blue-500), var(--navy-900)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- footer ---------- */
.trustbar { background: var(--navy-800); color: #b9c8e4; border-top: 1px solid rgba(255, 255, 255, .08); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 34px; }
.trustbar strong { display: block; color: var(--white); font-size: .96rem; }
.trustbar span { font-size: .84rem; }
.trustbar__grid > div { padding-left: 18px; border-left: 2px solid var(--gold-500); }
.site-footer { background: var(--navy-950); color: #8ea6d3; font-size: .9rem; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-block: 68px 48px; }
.site-footer__brand p { margin-top: 20px; max-width: 360px; line-height: 1.7; }
.site-footer h2 { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #b9c8e4; }
.site-footer a:hover { color: var(--white); }
.site-footer__base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .8rem; }

.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 300; padding: 14px 24px; border-radius: 999px; background: var(--navy-900); color: var(--white); font-weight: 500; font-size: .92rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(233, 213, 161, .4); opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }
.toast a { color: var(--gold-300); margin-left: 10px; font-weight: 600; }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .search input { width: 120px; }
  .mega__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .search { display: none; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 18px 22px; background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, .08); display: none; max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav.is-open { display: flex; }
  .nav__link { padding: 14px 8px; border-radius: 0; border-bottom: 1px solid rgba(255, 255, 255, .07); font-size: 1rem; }
  .nav__link svg { display: none; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; padding: 0; }
  .mega__grid { grid-template-columns: 1fr 1fr; background: none; box-shadow: none; border: 0; padding: 6px 0 10px; }
  .mega__link { padding: 10px 8px; color: #b9c8e4; }
  .mega__link strong { font-weight: 500; font-size: .88rem; }
  .mega__link span { display: none; }
  .mega__link:hover { background: rgba(255, 255, 255, .06); }
  .hero__inner, .feature, .pdp, .pdp__detail, .split, .checkout, .shop { grid-template-columns: 1fr; }
  .hero__stage { max-width: 420px; order: -1; }
  .pdp__media, .summary, .shop__side { position: static; }
  .shop__cats { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; }
  .shop__cats a { white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .duo { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .announce__inner span:not(:first-child), .announce__dot { display: none; }
  .brand__tag { display: none; }
  .brand__name { font-size: 1.45rem; }
  .brand__mark { width: 42px; height: 42px; }
  .site-header__inner { gap: 10px; min-height: 66px; }
  .grid, .grid--3, .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .card__body { padding: 14px; }
  .cat__body { padding: 14px; }
  .cat p { display: none; }
  .hero__points { gap: 24px; }
  .form__row, .form__row--3, .order-box__meta { grid-template-columns: 1fr; gap: 0; }
  .order-box__meta { gap: 14px; }
  .specs { grid-template-columns: 1fr 1fr; }
  .line { grid-template-columns: 72px 1fr auto; row-gap: 10px; }
  .line__qty { grid-column: 2; }
  .line__total { grid-column: 3; grid-row: 1; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .buy { flex-direction: column; }
  .qty { align-self: flex-start; }
  .filters__count { margin-left: 0; width: 100%; padding: 0; }
  .filters label { flex: 1; min-width: 130px; }
  .filters select { min-width: 0; }
}
