@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #111827;
  --ink-soft: #1d2939;
  --paper: #f2f7ff;
  --white: #ffffff;
  --muted: #627087;
  --line: rgba(29, 78, 154, .13);
  --accent: #1677ff;
  --red: var(--accent);
  --red-dark: #075ed1;
  --green: #73d216;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --shadow: 0 28px 80px rgba(44, 92, 160, .15);
  --glass: rgba(255, 255, 255, .58);
  --glass-strong: rgba(255, 255, 255, .76);
  --glass-border: rgba(255, 255, 255, .72);
  --container: 1180px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 12% 4%, rgba(79, 156, 255, .15), transparent 27%), radial-gradient(circle at 90% 30%, rgba(190, 222, 255, .34), transparent 30%), var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open, body.drawer-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--white); padding: 10px 16px; border-radius: 8px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--red); }
.eyebrow-light { color: rgba(255,255,255,.72); }
.section { padding: 112px 0; }
.section-white { background: rgba(255,255,255,.64); backdrop-filter: blur(20px); }
.section-dark { color: var(--ink); background: linear-gradient(145deg, rgba(221,237,255,.9), rgba(255,255,255,.72)); border-block: 1px solid var(--glass-border); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head h2 { max-width: 720px; margin: 12px 0 0; font: 700 clamp(34px, 5vw, 62px)/1.03 var(--font-display); letter-spacing: -.045em; }
.section-head p { max-width: 400px; margin: 0; color: var(--muted); }
.section-dark .section-head p { color: var(--muted); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 80; height: 84px; transition: background .25s, box-shadow .25s, height .25s; }
.site-header.is-scrolled { height: 72px; background: rgba(255,255,255,.68); box-shadow: 0 1px rgba(255,255,255,.9), 0 14px 40px rgba(65,105,165,.08); backdrop-filter: blur(24px) saturate(150%); }
.header-on-dark:not(.is-scrolled) .main-nav a,
body:has(.custom-hero) .site-header:not(.is-scrolled) .main-nav a { color: var(--ink); }
.header-on-dark:not(.is-scrolled) .icon-button,
body:has(.custom-hero) .site-header:not(.is-scrolled) .icon-button { color: var(--ink); border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.48); backdrop-filter: blur(16px); }
.header-on-dark:not(.is-scrolled) .header-actions .button-dark,
body:has(.custom-hero) .site-header:not(.is-scrolled) .header-actions .button-dark { color: var(--white); background: var(--accent); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { position: relative; width: 190px; height: 62px; overflow: hidden; flex: 0 0 auto; }
.brand img { position: absolute; width: 184px; height: 184px; max-width: none; left: 0; top: -61px; object-fit: contain; }
.main-nav { display: flex; gap: 30px; align-items: center; margin-left: auto; }
.main-nav a { position: relative; font-size: 14px; font-weight: 600; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { width: 43px; height: 43px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.7); cursor: pointer; transition: transform .2s, background .2s; }
.icon-button:hover { transform: translateY(-2px); background: var(--white); }
.icon-button svg, .text-icon svg, .qty-control svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-button { position: relative; }
.cart-count { position: absolute; right: -3px; top: -4px; min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; color: var(--white); background: var(--red); border: 2px solid var(--white); border-radius: 99px; font-size: 10px; font-weight: 700; }
.menu-button { display: none; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform .2s; }
.menu-button span { margin: 4px 0; }

.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 99px; font-weight: 700; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 30px rgba(22,119,255,.25); }
.button-primary:hover { background: var(--red-dark); }
.button-dark { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); }
.button-outline { border-color: var(--line); background: transparent; }
.button-ghost-light { color: var(--white); border-color: rgba(255,255,255,.26); }
.hero .button-ghost-light { color: var(--ink); border-color: var(--glass-border); background: rgba(255,255,255,.42); box-shadow: inset 0 1px rgba(255,255,255,.9); backdrop-filter: blur(14px); }
.button-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(5px); }

.hero { min-height: 820px; padding: 130px 0 54px; display: grid; align-items: center; position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(135deg, #f9fcff 0%, #edf6ff 48%, #dcecff 100%); }
.hero::before { content: ""; position: absolute; width: 760px; height: 760px; right: -150px; top: -260px; background: radial-gradient(circle, rgba(30,126,255,.36), rgba(110,180,255,.12) 43%, transparent 70%); filter: blur(18px); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(24,92,178,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(24,92,178,.07) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.hero-copy h1 { max-width: 700px; margin: 18px 0 24px; font: 700 clamp(52px, 7vw, 92px)/.95 var(--font-display); letter-spacing: -.065em; }
.hero-copy h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(17,24,39,.42); }
.hero-copy > p { max-width: 580px; color: var(--muted); font-size: 18px; }
.hero .eyebrow-light, .custom-hero .eyebrow-light { color: #4f6078; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-visual { position: relative; height: 580px; }
.hero-card { position: absolute; inset: 12px 0 0; overflow: hidden; border: 1px solid var(--glass-border); border-radius: 48px; background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(214,234,255,.32)); box-shadow: inset 0 1px rgba(255,255,255,.95), inset 0 -1px rgba(255,255,255,.36), 0 40px 110px rgba(49,104,174,.22); backdrop-filter: blur(20px) saturate(140%); }
.hero-card::before { content: ""; position: absolute; inset: auto 5% -22% 5%; height: 52%; background: radial-gradient(ellipse, rgba(22,119,255,.38), transparent 67%); filter: blur(32px); }
.hero-product { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity .8s ease, transform 1.1s ease; }
.hero-product.is-active { opacity: 1; transform: scale(1); }
.hero-card:hover .hero-product.is-active { transform: scale(1.025); }
.floating-label { position: absolute; z-index: 2; padding: 12px 16px; border: 1px solid var(--glass-border); border-radius: 14px; background: rgba(255,255,255,.62); box-shadow: 0 14px 40px rgba(39,91,158,.17), inset 0 1px rgba(255,255,255,.9); backdrop-filter: blur(18px) saturate(150%); }
.floating-label small { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.floating-label strong { font-size: 14px; }
.label-one { left: -36px; top: 76px; }
.label-two { right: -24px; bottom: 72px; }
.hero-foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; }
.hero-foot-inner { padding: 20px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(49,96,156,.13); color: var(--muted); font-size: 13px; }
.hero-foot-inner span { display: flex; align-items: center; gap: 9px; }
.hero-foot-inner i { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }

.trust-bar { background: rgba(255,255,255,.56); border-bottom: 1px solid var(--glass-border); backdrop-filter: blur(22px); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.trust-item { padding: 24px 30px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(222,238,255,.72); box-shadow: inset 0 1px rgba(255,255,255,.9); font-weight: 800; }
.trust-item strong { display: block; font-size: 14px; }
.trust-item small { color: var(--muted); }

.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.category-card { min-height: 430px; position: relative; overflow: hidden; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--ink); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); background: var(--glass); box-shadow: inset 0 1px rgba(255,255,255,.95), 0 25px 60px rgba(55,103,166,.12); backdrop-filter: blur(20px) saturate(140%); }
.category-card-image { position: absolute !important; inset: 0 !important; display: block; width: 100% !important; height: 100% !important; max-width: none !important; object-fit: cover; object-position: center center; opacity: 1; transition: transform .5s ease; }
.category-card:hover .category-card-image { transform: scale(1.045); }
.category-card::before { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(180deg, rgba(11,28,54,.02) 24%, rgba(11,28,54,.18) 52%, rgba(11,28,54,.58) 100%); }
.category-pattern { position: absolute; z-index: 1; inset: 0; opacity: .18; background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(37,94,166,.11) 18px 19px); transition: transform .4s; }
.category-card:hover .category-pattern { transform: scale(1.06); }
.category-card-content { position: relative; z-index: 2; padding: 20px; border: 1px solid rgba(255,255,255,.72); border-radius: 20px; background: rgba(255,255,255,.86); box-shadow: 0 14px 32px rgba(14,40,78,.16), inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(14px); }
.category-number { display: block; margin-bottom: auto; position: absolute; left: 0; bottom: 122px; color: rgba(24,68,125,.52); font-size: 13px; }
.category-card h3 { margin: 0 0 5px; font: 700 30px var(--font-display); letter-spacing: -.035em; }
.category-card p { margin: 0 0 18px; color: #52637a; }
.category-card.is-muted { color: var(--ink); }

.featured-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.featured-media { position: relative; padding: 32px; border: 1px solid var(--glass-border); border-radius: 44px; background: var(--glass); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.94); backdrop-filter: blur(18px); }
.featured-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 28px; }
.media-badge { position: absolute; top: 18px; left: 18px; padding: 9px 14px; color: var(--white); background: var(--red); border-radius: 99px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.featured-copy h2 { margin: 14px 0 20px; font: 700 clamp(42px, 5vw, 68px)/1 var(--font-display); letter-spacing: -.055em; }
.featured-copy > p { max-width: 540px; color: var(--muted); font-size: 18px; }
.feature-list { margin: 30px 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-list li { padding: 12px 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 14px; }
.feature-list li::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--red); border-radius: 50%; }
.product-price { margin: 8px 0 26px; }
.product-price strong { display: block; font: 700 25px var(--font-display); }
.product-price small { color: var(--muted); }

.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.process-copy { position: sticky; top: 120px; }
.section-dark .eyebrow-light { color: var(--muted); }
.process-copy h2 { margin: 15px 0 24px; font: 700 clamp(42px, 5vw, 66px)/1 var(--font-display); letter-spacing: -.05em; }
.process-copy p { max-width: 470px; color: var(--muted); }
.steps { counter-reset: step; }
.step { position: relative; padding: 38px 0 38px 82px; border-bottom: 1px solid rgba(38,92,160,.14); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; left: 0; top: 41px; color: var(--red); font: 700 14px var(--font-display); }
.step h3 { margin: 0 0 8px; font: 600 24px var(--font-display); }
.step p { margin: 0; color: var(--muted); }

.cta-panel { min-height: 450px; padding: 70px; position: relative; overflow: hidden; display: flex; align-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.6); border-radius: 44px; background: linear-gradient(135deg, #0868ec, #42a1ff); box-shadow: 0 30px 80px rgba(18,105,222,.28), inset 0 1px rgba(255,255,255,.5); }
.cta-panel::after { content: "M"; position: absolute; right: -20px; bottom: -150px; color: rgba(0,0,0,.08); font: 800 520px/.8 var(--font-display); }
.cta-copy { position: relative; z-index: 1; max-width: 690px; }
.cta-copy h2 { margin: 14px 0 20px; font: 700 clamp(42px, 6vw, 72px)/.98 var(--font-display); letter-spacing: -.06em; }
.cta-copy p { color: rgba(255,255,255,.76); font-size: 18px; }
.cta-copy .button { margin-top: 20px; }

.site-footer { padding: 80px 0 24px; color: var(--white); background: #08080a; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; padding-bottom: 60px; }
.footer-contact { grid-column: 1; }
.footer-brand { max-width: 380px; }
.footer-wordmark { font: 800 25px var(--font-display); letter-spacing: -.04em; }
.footer-wordmark em { color: var(--red); font-style: normal; }
.footer-brand p { margin: 17px 0; color: rgba(255,255,255,.52); }
.footer-col h3 { margin: 0 0 18px; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.36); font-size: 12px; }

.page-hero { padding: 158px 0 70px; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(222,238,255,.64)); border-bottom: 1px solid var(--glass-border); }
.page-hero h1 { max-width: 850px; margin: 14px 0 18px; font: 700 clamp(48px, 7vw, 88px)/.96 var(--font-display); letter-spacing: -.065em; }
.page-hero p { max-width: 620px; margin: 0; color: var(--muted); font-size: 18px; }
.legal-page { padding: 150px 0 100px; background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(222,238,255,.55)); }
.legal-wrap { max-width: 860px; }.legal-wrap h1 { margin: 14px 0 22px; font: 700 clamp(46px,7vw,78px)/.97 var(--font-display); letter-spacing: -.06em; }.legal-wrap h2 { margin: 52px 0 15px; font: 700 30px var(--font-display); letter-spacing: -.04em; }.legal-wrap p,.legal-wrap li { color: var(--muted); line-height: 1.7; }.legal-wrap ul { padding-left: 22px; }.legal-panel { margin: 28px 0; padding: 23px 25px; border: 1px solid var(--glass-border); border-radius: 20px; background: rgba(255,255,255,.66); box-shadow: var(--shadow); }.legal-panel p:last-child { margin-bottom: 0; }
.breadcrumbs { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--ink); }

.catalog-tools { padding: 28px 0; background: rgba(255,255,255,.56); border-bottom: 1px solid var(--glass-border); backdrop-filter: blur(20px); }
.catalog-tools-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.search-field { width: min(100%, 420px); position: relative; }
.search-field input { width: 100%; height: 48px; padding: 0 20px 0 46px; border: 1px solid var(--line); border-radius: 99px; outline: none; background: var(--paper); }
.search-field input:focus { border-color: var(--ink); }
.search-field svg { position: absolute; left: 17px; top: 14px; width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.catalog-count { color: var(--muted); font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--glass-border); border-radius: 28px; background: var(--glass-strong); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(18px); }
.product-card-media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: #eceae6; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-card-media img { transform: scale(1.035); }
.favorite-button { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); cursor: pointer; }
.favorite-button svg { width: 20px; fill: none; stroke: var(--ink); stroke-width: 1.8; }
.favorite-button.is-active svg { fill: var(--red); stroke: var(--red); }
.product-card-body { padding: 22px; }
.product-category { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.product-card h2, .product-card h3 { margin: 7px 0 14px; font: 700 21px/1.25 var(--font-display); letter-spacing: -.025em; }
.product-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.product-meta strong { font-size: 16px; }
.product-meta span { color: var(--muted); font-size: 12px; }
.coming-card { min-height: 490px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; border: 1px dashed rgba(0,0,0,.2); border-radius: 28px; }
.coming-card .coming-icon { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 18px; background: var(--white); font: 700 18px var(--font-display); }
.coming-card p { color: var(--muted); }

.product-page { padding: 142px 0 100px; background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(231,242,255,.68)); }
.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 76px; }
.product-gallery { display: grid; grid-template-columns: 82px 1fr; gap: 14px; position: sticky; top: 100px; align-self: start; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery-thumb { padding: 0; overflow: hidden; aspect-ratio: 1/1; border: 2px solid transparent; border-radius: 13px; background: #eee; cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--ink); }
.gallery-thumb img, .gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { aspect-ratio: 1/1.1; overflow: hidden; border-radius: 30px; background: #edece9; }
.product-info { padding-top: 18px; }
.product-info h1 { margin: 12px 0 16px; font: 700 clamp(38px, 5vw, 60px)/1 var(--font-display); letter-spacing: -.055em; }
.product-description { color: var(--muted); font-size: 17px; }
.rating-line { display: flex; gap: 10px; color: var(--muted); font-size: 13px; }
.stars { color: var(--red); letter-spacing: 2px; }
.product-divider { margin: 28px 0; border: 0; border-top: 1px solid var(--line); }
.option-label { margin-bottom: 12px; display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; }
.option-label span { color: var(--muted); font-weight: 400; }
.color-options { display: flex; gap: 10px; }
.color-option { width: 43px; height: 43px; padding: 4px; border: 2px solid transparent; border-radius: 50%; background: transparent; cursor: pointer; }
.color-option::after { content: ""; width: 100%; height: 100%; display: block; border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }
.color-option.is-selected { border-color: var(--ink); }
.buy-row { margin-top: 28px; display: grid; grid-template-columns: 122px 1fr; gap: 12px; }
.qty-control { height: 52px; display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; border: 1px solid var(--line); border-radius: 99px; }
.qty-control button { height: 100%; padding: 0; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.qty-control input { width: 40px; padding: 0; text-align: center; border: 0; outline: none; background: transparent; font-weight: 700; -moz-appearance: textfield; }
.qty-control input::-webkit-inner-spin-button { display: none; }
.product-assurance { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.assurance-item { padding: 14px; border-radius: 14px; background: var(--paper); }
.assurance-item strong { display: block; font-size: 13px; }
.assurance-item span { color: var(--muted); font-size: 12px; }
.accordion { margin-top: 30px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { padding: 19px 0; display: flex; justify-content: space-between; cursor: pointer; font-weight: 700; list-style: none; }
.accordion summary::after { content: "+"; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: -2px 0 20px; color: var(--muted); }

.custom-hero { min-height: 720px; padding: 150px 0 80px; display: grid; align-items: center; color: var(--ink); background: radial-gradient(circle at 82% 28%, rgba(22,119,255,.28), transparent 32%), linear-gradient(145deg, #fafdff, #deedff); }
.custom-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.custom-hero h1 { margin: 16px 0 23px; font: 700 clamp(50px, 7vw, 88px)/.94 var(--font-display); letter-spacing: -.065em; }
.custom-hero p { color: var(--muted); font-size: 18px; }
.custom-visual { height: 480px; position: relative; display: grid; place-items: center; border: 1px solid var(--glass-border); border-radius: 42px; background: radial-gradient(circle, rgba(22,119,255,.25), transparent 55%), rgba(255,255,255,.38); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(22px); }
.custom-cube { width: 180px; height: 180px; position: relative; transform: rotate(30deg) skew(-6deg); border: 2px solid rgba(28,77,140,.72); box-shadow: 35px 35px 0 rgba(22,119,255,.22), -35px -35px 0 rgba(255,255,255,.48); }
.custom-orbit { position: absolute; width: 360px; height: 180px; border: 1px solid rgba(29,87,158,.22); border-radius: 50%; transform: rotate(-20deg); }
.custom-form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.custom-form-intro h2 { margin: 14px 0 20px; font: 700 clamp(40px, 5vw, 64px)/1 var(--font-display); letter-spacing: -.05em; }
.custom-form-intro p { color: var(--muted); }
.brief-form { padding: 36px; border: 1px solid var(--glass-border); border-radius: 28px; background: var(--glass-strong); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(22px); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { margin-bottom: 7px; display: block; font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: var(--paper); }
.field input.is-invalid, .field textarea.is-invalid, .field select.is-invalid { border-color: #d92d20; box-shadow: 0 0 0 3px rgba(217,45,32,.13); background: #fff8f7; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.file-drop { min-height: 130px; position: relative; padding: 22px; display: grid; place-items: center; text-align: center; border: 1px dashed rgba(0,0,0,.28); border-radius: 16px; background: var(--paper); cursor: pointer; }
.file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop strong { display: block; }
.file-drop small { color: var(--muted); }

.checkout-page { padding: 145px 0 100px; }
.checkout-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: start; }
.checkout-main h1 { margin: 12px 0 35px; font: 700 clamp(44px, 6vw, 70px)/1 var(--font-display); letter-spacing: -.055em; }
.checkout-card { padding: 32px; border: 1px solid var(--glass-border); border-radius: 24px; background: var(--glass-strong); box-shadow: inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(20px); }
.checkout-card h2 { margin: 0 0 22px; font: 700 22px var(--font-display); }
.checkout-side { position: sticky; top: 100px; padding: 30px; border: 1px solid var(--glass-border); border-radius: 26px; background: var(--glass-strong); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.95); backdrop-filter: blur(20px); }
.checkout-item { padding: 14px 0; display: grid; grid-template-columns: 64px 1fr auto; gap: 13px; align-items: center; border-bottom: 1px solid var(--line); }
.checkout-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.checkout-item strong, .checkout-item span { display: block; }
.checkout-item strong { font-size: 13px; }
.checkout-item span { color: var(--muted); font-size: 11px; }
.checkout-item b { font-size: 12px; }
.form-status { margin-top: 18px; padding: 15px; display: none; border-radius: 12px; color: #5b3910; background: #fff2d9; font-size: 13px; }
.form-status.is-visible { display: block; }

.cart-layer { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.cart-layer.is-open { pointer-events: auto; visibility: visible; }
.cart-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(5px); transition: opacity .3s; }
.cart-layer.is-open .cart-backdrop { opacity: 1; }
.cart-drawer { position: absolute; top: 0; right: 0; width: min(100%, 470px); height: 100%; padding: 28px; display: grid; grid-template-rows: auto 1fr auto; background: var(--white); transform: translateX(102%); transition: transform .35s cubic-bezier(.22,.8,.25,1); }
.cart-layer.is-open .cart-drawer { transform: translateX(0); }
.cart-head { padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.cart-head h2 { margin: 2px 0 0; font: 700 30px var(--font-display); }
.cart-content { overflow: auto; padding: 10px 0; }
.cart-item { padding: 18px 0; display: grid; grid-template-columns: 92px 1fr; gap: 15px; border-bottom: 1px solid var(--line); }
.cart-item > img { width: 92px; height: 108px; object-fit: cover; border-radius: 12px; }
.cart-item-copy { min-width: 0; }
.cart-item-top, .cart-item-bottom { display: flex; justify-content: space-between; gap: 10px; }
.cart-item h3 { margin: 2px 0; font: 700 14px var(--font-display); }
.cart-item p { margin: 4px 0 14px; color: var(--muted); font-size: 12px; }
.text-icon { padding: 2px; border: 0; background: transparent; cursor: pointer; }
.text-icon svg { width: 17px; }
.qty-control.compact { width: 92px; height: 32px; grid-template-columns: 1fr 28px 1fr; }
.qty-control.compact svg { width: 14px; }
.qty-control.compact span { text-align: center; font-size: 12px; font-weight: 700; }
.cart-item-bottom strong { font-size: 13px; }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; font-size: 17px; }
.cart-note, .secure-note { color: var(--muted); font-size: 11px; text-align: center; }
.cart-note { text-align: left; }
.empty-state { min-height: 100%; padding: 45px 20px; display: grid; place-items: center; align-content: center; text-align: center; }
.empty-state h3 { margin: 15px 0 5px; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }
.empty-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--white); background: var(--ink); border-radius: 20px; font: 800 24px var(--font-display); }
.empty-state.small { min-height: 180px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .main-nav { display: none; position: fixed; inset: 72px 0 0; padding: 40px 24px; flex-direction: column; align-items: flex-start; background: rgba(255,255,255,.98); }
  .main-nav.is-open { display: flex; }
  .main-nav a { font: 700 30px var(--font-display); }
  .header-on-dark:not(.is-scrolled) .main-nav a,
  body:has(.custom-hero) .site-header:not(.is-scrolled) .main-nav a { color: var(--ink); }
  .menu-button { display: grid; place-content: center; }
  .hero { min-height: auto; padding-bottom: 100px; }
  .hero-inner, .featured-grid, .process-grid, .custom-hero-grid, .custom-form-grid, .product-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 40px; }
  .hero-visual { width: min(100%, 620px); margin-inline: auto; }
  .hero-foot { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card:first-child { grid-column: auto; }
  .featured-grid, .process-grid, .custom-form-grid { gap: 55px; }
  .process-copy, .product-gallery, .checkout-side { position: static; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .site-header, .site-header.is-scrolled { height: 68px; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); }
  .brand { width: 155px; height: 54px; }
  .brand img { width: 152px; height: 152px; top: -48px; }
  .header-actions .button { display: none; }
  .hero { padding-top: 98px; }
  .hero-inner { gap: 40px; }
  .hero-copy h1 { font-size: clamp(50px, 15vw, 68px); }
  .hero-copy > p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { height: 430px; }
  .hero-card { border-radius: 30px; }
  .floating-label { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head { align-items: flex-start; flex-direction: column; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card:first-child { grid-column: auto; }
  .category-card { min-height: 360px; }
  .featured-grid { gap: 42px; }
  .featured-media { padding: 18px; border-radius: 30px; }
  .featured-media img { border-radius: 19px; }
  .feature-list { grid-template-columns: 1fr; }
  .step { padding-left: 56px; }
  .cta-panel { min-height: 500px; padding: 38px 26px; border-radius: 30px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 118px 0 55px; }
  .catalog-tools-inner { align-items: stretch; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .coming-card { min-height: 330px; }
  .product-page { padding-top: 100px; }
  .product-layout { gap: 38px; }
  .product-gallery { grid-template-columns: 1fr; }
  .gallery-thumbs { order: 2; flex-direction: row; overflow-x: auto; }
  .gallery-thumb { flex: 0 0 68px; }
  .gallery-main { aspect-ratio: 1/1; }
  .buy-row { grid-template-columns: 1fr; }
  .product-assurance { grid-template-columns: 1fr; }
  .custom-hero { min-height: auto; padding-top: 120px; }
  .custom-hero-grid { gap: 45px; }
  .custom-visual { height: 360px; }
  .custom-cube { width: 125px; height: 125px; }
  .custom-orbit { width: 270px; height: 130px; }
  .brief-form, .checkout-card, .checkout-side { padding: 22px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .cart-drawer { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Liquid Obsidian — unified visual system */
:root{--ink:#f5f3f0;--ink-soft:#e2dfdc;--paper:#101012;--white:#fbfaf8;--muted:#b2afb2;--line:rgba(255,255,255,.13);--accent:#e5232a;--red:#e5232a;--red-dark:#b9141b;--shadow:0 28px 80px rgba(0,0,0,.36);--glass:rgba(36,36,40,.56);--glass-strong:rgba(31,31,35,.78);--glass-border:rgba(255,255,255,.16)}
body{color:var(--ink);background:radial-gradient(circle at 8% 4%,rgba(229,35,42,.16),transparent 24%),radial-gradient(circle at 94% 15%,rgba(255,255,255,.08),transparent 25%),radial-gradient(circle at 50% 100%,rgba(77,77,86,.2),transparent 42%),#101012}
body::before{content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;opacity:.42;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,#000,transparent 78%)}
.section-white,.section-dark,.catalog-tools{color:var(--ink);background:rgba(17,17,20,.58);border-color:var(--glass-border);backdrop-filter:blur(24px) saturate(120%)}
.section-head p,.section-dark .section-head p,.product-price small,.featured-copy>p,.process-copy p,.page-hero p,.legal-wrap p,.legal-wrap li{color:var(--muted)}
.site-header,.site-header.is-scrolled{background:rgba(13,13,15,.68);box-shadow:0 1px rgba(255,255,255,.09),0 14px 40px rgba(0,0,0,.22);backdrop-filter:blur(26px) saturate(115%)}
.brand{width:182px;height:58px;overflow:visible}.brand img{position:static;width:100%;height:100%;max-width:100%;object-fit:contain;object-position:left center}
.main-nav a,.header-on-dark:not(.is-scrolled) .main-nav a,body:has(.custom-hero) .site-header:not(.is-scrolled) .main-nav a{color:rgba(255,255,255,.84)}.main-nav a:hover{color:var(--white)}
.header-on-dark:not(.is-scrolled) .icon-button,body:has(.custom-hero) .site-header:not(.is-scrolled) .icon-button,.icon-button{color:var(--white);border-color:var(--line);background:rgba(255,255,255,.06)}.icon-button:hover{background:rgba(255,255,255,.13)}
.header-on-dark:not(.is-scrolled) .header-actions .button-dark,body:has(.custom-hero) .site-header:not(.is-scrolled) .header-actions .button-dark,.button-dark{color:var(--white);background:#242429;border-color:rgba(255,255,255,.1)}
.button-primary{background:linear-gradient(135deg,#f1373e,#c81720);box-shadow:0 12px 30px rgba(229,35,42,.28)}.button-primary:hover{background:linear-gradient(135deg,#ff4b51,#d51d25)}.button-light{color:#171719;background:#f8f6f3}.button-outline{border-color:rgba(255,255,255,.25);color:var(--white)}.hero .button-ghost-light{color:var(--white);border-color:rgba(255,255,255,.22);background:rgba(255,255,255,.08);box-shadow:inset 0 1px rgba(255,255,255,.14)}.cart-count{border-color:#171719}
.hero{color:var(--ink);background:radial-gradient(circle at 84% 19%,rgba(229,35,42,.2),transparent 25%),radial-gradient(circle at 11% 108%,rgba(255,255,255,.1),transparent 43%),linear-gradient(140deg,#101012,#18181c 54%,#0d0d0f)}.hero::before{background:radial-gradient(circle,rgba(229,35,42,.24),rgba(95,95,102,.11) 43%,transparent 70%)}.hero::after{opacity:.28;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px)}.hero-copy h1 span{-webkit-text-stroke-color:rgba(255,255,255,.31)}.hero-copy>p,.hero .eyebrow-light,.custom-hero .eyebrow-light,.hero-foot-inner{color:var(--muted)}
.hero-card,.featured-media,.custom-visual,.brief-form,.checkout-card,.checkout-side,.product-card,.legal-panel{border-color:var(--glass-border);background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.035));box-shadow:inset 0 1px rgba(255,255,255,.17),inset 0 -1px rgba(255,255,255,.04),var(--shadow)}.hero-card::before{background:radial-gradient(ellipse,rgba(229,35,42,.32),transparent 67%)}
.floating-label{color:var(--ink);border-color:rgba(255,255,255,.22);background:rgba(23,23,27,.72);box-shadow:0 14px 40px rgba(0,0,0,.25),inset 0 1px rgba(255,255,255,.18)}.floating-label small{color:var(--muted)}.hero-foot-inner{border-color:rgba(255,255,255,.13)}
.trust-bar{background:rgba(20,20,23,.68);border-color:rgba(255,255,255,.1)}.trust-icon{color:var(--white);background:rgba(229,35,42,.17);border-color:rgba(255,255,255,.18);box-shadow:inset 0 1px rgba(255,255,255,.17)}.trust-item small{color:var(--muted)}
.category-card{color:var(--white);border-color:rgba(255,255,255,.16);background:#18181b;box-shadow:inset 0 1px rgba(255,255,255,.14),0 25px 60px rgba(0,0,0,.28)}.category-card::before{background:linear-gradient(180deg,rgba(8,8,10,.04) 18%,rgba(8,8,10,.35) 50%,rgba(8,8,10,.9) 100%)}.category-pattern{opacity:.16;background:repeating-linear-gradient(135deg,transparent 0 18px,rgba(255,255,255,.15) 18px 19px)}.category-card-content{color:var(--white);border-color:rgba(255,255,255,.18);background:rgba(18,18,21,.64);box-shadow:0 14px 32px rgba(0,0,0,.28),inset 0 1px rgba(255,255,255,.14)}.category-card p{color:rgba(255,255,255,.7)}.category-number{display:none}.category-card .text-link{color:#fff}
.featured-media img{box-shadow:0 18px 42px rgba(0,0,0,.22)}.feature-list li,.step{border-color:rgba(255,255,255,.14)}.cta-panel{border-color:rgba(255,255,255,.18);background:linear-gradient(135deg,#291316,#a71921 58%,#e32b32);box-shadow:0 30px 80px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.22)}.cta-panel::after{color:rgba(255,255,255,.06)}
.page-hero,.legal-page,.product-page{color:var(--ink);background:linear-gradient(145deg,rgba(23,23,27,.96),rgba(15,15,17,.92));border-color:rgba(255,255,255,.12)}
.search-field input,.field input,.field textarea,.field select,.qty-control,.file-drop{color:var(--white);background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.16)}.search-field input::placeholder,.field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.46)}.product-card-media,.gallery-main,.gallery-thumb{background:#e8e6e1}.favorite-button{color:#1a1a1d;background:rgba(250,248,245,.88)}.assurance-item{background:rgba(255,255,255,.06)}
.custom-hero{color:var(--ink);background:radial-gradient(circle at 82% 28%,rgba(229,35,42,.24),transparent 32%),linear-gradient(145deg,#121215,#202024)}.custom-cube{border-color:rgba(255,255,255,.72);box-shadow:35px 35px 0 rgba(229,35,42,.24),-35px -35px 0 rgba(255,255,255,.06)}.form-status{color:#ffe4e4;background:rgba(229,35,42,.18)}.cart-drawer{color:#1a1a1d;background:#f7f5f2}.site-footer{background:#080809;border-top:1px solid rgba(255,255,255,.08)}
@media(max-width:640px){.site-header,.site-header.is-scrolled{background:rgba(13,13,15,.92)}.brand{width:148px;height:47px}.main-nav{background:rgba(14,14,17,.98)}.main-nav a{color:var(--white)}}

/* Liquid Obsidian refinement: a clear, reflective layer over the dark base. */
.site-header,.site-header.is-scrolled{
  background:linear-gradient(115deg,rgba(18,18,21,.88),rgba(36,26,30,.68) 58%,rgba(80,18,23,.48));
  border-bottom:1px solid rgba(255,255,255,.13);
  box-shadow:inset 0 1px rgba(255,255,255,.14),0 18px 46px rgba(0,0,0,.28);
}
.brand{
  position:relative;
  padding:5px 9px;
  border:1px solid rgba(255,255,255,.30);
  border-radius:17px;
  background:linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,255,255,.24) 48%,rgba(255,255,255,.10));
  box-shadow:inset 0 1px rgba(255,255,255,.92),inset 0 -1px rgba(255,255,255,.12),0 10px 24px rgba(0,0,0,.20);
  backdrop-filter:blur(20px) saturate(110%);
}
.brand::after{
  content:"";
  position:absolute;
  inset:1px 18% 51% 8%;
  border-radius:inherit;
  background:linear-gradient(110deg,rgba(255,255,255,.62),rgba(255,255,255,0));
  pointer-events:none;
  opacity:.7;
}
.brand img{position:relative;z-index:1}

.hero-card,.featured-media,.custom-visual,.brief-form,.checkout-card,.checkout-side,.product-card,.legal-panel,.category-card-content,.floating-label{
  position:relative;
  overflow:hidden;
  border-color:rgba(255,255,255,.24);
  background:linear-gradient(135deg,rgba(255,255,255,.17),rgba(255,255,255,.055) 36%,rgba(255,255,255,.015));
  box-shadow:inset 0 1px rgba(255,255,255,.36),inset 1px 0 rgba(255,255,255,.10),inset 0 -1px rgba(255,255,255,.07),0 24px 60px rgba(0,0,0,.30);
  backdrop-filter:blur(26px) saturate(120%) contrast(108%);
}
.hero-card::after,.featured-media::after,.custom-visual::after,.brief-form::after,.checkout-card::after,.checkout-side::after,.product-card::after,.legal-panel::after,.category-card-content::after,.floating-label::after{
  content:"";
  position:absolute;
  z-index:0;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(120deg,rgba(255,255,255,.29),rgba(255,255,255,0) 21%,rgba(255,255,255,.08) 56%,rgba(255,255,255,0) 72%);
  mix-blend-mode:screen;
}
.hero-card>*:not(img),.featured-media>*:not(img),.custom-visual>*,.brief-form>*,.checkout-card>*,.checkout-side>*,.product-card>*,.legal-panel>*,.category-card-content>*,.floating-label>*{position:relative;z-index:1}
.category-card-content{background:linear-gradient(135deg,rgba(21,21,24,.72),rgba(21,21,24,.38));}
.floating-label{background:linear-gradient(135deg,rgba(38,38,43,.76),rgba(16,16,19,.52));}
.trust-bar{background:linear-gradient(105deg,rgba(28,28,32,.72),rgba(43,27,31,.60));border-top:1px solid rgba(255,255,255,.10)}
.cta-panel{background:linear-gradient(135deg,rgba(66,14,18,.90),rgba(171,25,32,.84) 58%,rgba(229,35,42,.78));border-color:rgba(255,255,255,.26);box-shadow:inset 0 1px rgba(255,255,255,.34),0 30px 80px rgba(0,0,0,.38);backdrop-filter:blur(22px) saturate(120%)}
@media(max-width:640px){.brand{padding:4px 7px;border-radius:14px}}

/* Balance pass: lighter obsidian, an unobtrusive clear header and a protected carousel layer. */
:root{--paper:#19191c;--muted:#bdb9b8;--glass:rgba(57,56,61,.46);--glass-strong:rgba(54,53,58,.64);--glass-border:rgba(255,255,255,.21)}
body{background:radial-gradient(circle at 7% 4%,rgba(229,35,42,.14),transparent 25%),radial-gradient(circle at 92% 12%,rgba(255,255,255,.16),transparent 26%),radial-gradient(circle at 45% 95%,rgba(138,134,140,.20),transparent 48%),#19191c}
.section-white,.section-dark,.catalog-tools{background:rgba(39,38,42,.54)}
.hero{background:radial-gradient(circle at 84% 19%,rgba(229,35,42,.20),transparent 27%),radial-gradient(circle at 10% 104%,rgba(255,255,255,.13),transparent 43%),linear-gradient(140deg,#1c1c20,#29282d 54%,#17171a)}
.site-header,.site-header.is-scrolled{background:linear-gradient(110deg,rgba(247,244,241,.84),rgba(218,215,216,.73) 52%,rgba(234,221,222,.70));border-bottom-color:rgba(32,30,31,.14);box-shadow:inset 0 1px rgba(255,255,255,.96),0 14px 36px rgba(0,0,0,.16);backdrop-filter:blur(28px) saturate(115%)}
.brand{width:176px;height:56px;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none;overflow:visible}
.brand::after{display:none}.brand img{position:static;z-index:auto;width:100%;height:100%;object-fit:contain;object-position:left center;filter:drop-shadow(0 1px 1px rgba(255,255,255,.42))}
.main-nav a,.header-on-dark:not(.is-scrolled) .main-nav a,body:has(.custom-hero) .site-header:not(.is-scrolled) .main-nav a{color:#202024}.main-nav a:hover{color:#000}.header-on-dark:not(.is-scrolled) .icon-button,body:has(.custom-hero) .site-header:not(.is-scrolled) .icon-button,.icon-button{color:#1d1c20;border-color:rgba(25,24,27,.16);background:rgba(255,255,255,.36)}.icon-button:hover{background:rgba(255,255,255,.70)}.header-on-dark:not(.is-scrolled) .header-actions .button-dark,.button-dark{background:#242428;border-color:rgba(255,255,255,.16)}
.hero-card{position:absolute;inset:12px 0 0;min-height:0}.hero-card .hero-product{z-index:0;opacity:0}.hero-card .hero-product.is-active{opacity:1}.hero-card::before{z-index:1;pointer-events:none}.hero-card::after{z-index:1;opacity:.46;pointer-events:none}.hero-card>*:not(img){z-index:2}
.hero-card,.featured-media,.custom-visual,.brief-form,.checkout-card,.checkout-side,.product-card,.legal-panel{background:linear-gradient(135deg,rgba(255,255,255,.19),rgba(255,255,255,.07) 38%,rgba(255,255,255,.025))}
.category-card-content{background:linear-gradient(135deg,rgba(37,36,40,.65),rgba(30,30,34,.38))}.page-hero,.legal-page,.product-page{background:linear-gradient(145deg,rgba(42,41,46,.90),rgba(27,27,31,.88))}
@media(max-width:640px){.site-header,.site-header.is-scrolled{background:rgba(243,240,237,.88)}.brand{width:142px;height:46px;padding:0}.main-nav{background:rgba(239,236,233,.98)}.main-nav a{color:#202024}}

/* Final lightness adjustment. */
:root{--paper:#242328;--glass:rgba(73,71,77,.42);--glass-strong:rgba(67,65,71,.59)}
body{background:radial-gradient(circle at 7% 4%,rgba(229,35,42,.13),transparent 26%),radial-gradient(circle at 92% 12%,rgba(255,255,255,.19),transparent 28%),radial-gradient(circle at 45% 95%,rgba(155,150,158,.22),transparent 50%),#242328}
.section-white,.section-dark,.catalog-tools{background:rgba(53,51,57,.48)}
.hero{background:radial-gradient(circle at 84% 19%,rgba(229,35,42,.18),transparent 28%),radial-gradient(circle at 10% 104%,rgba(255,255,255,.17),transparent 45%),linear-gradient(140deg,#26252a,#343239 54%,#202025)}
.site-header,.site-header.is-scrolled{background:linear-gradient(110deg,rgba(249,247,244,.63),rgba(219,216,217,.51) 52%,rgba(239,222,223,.48));border-bottom-color:rgba(255,255,255,.34);box-shadow:inset 0 1px rgba(255,255,255,.82),0 14px 36px rgba(0,0,0,.13);backdrop-filter:blur(30px) saturate(116%)}
.page-hero,.legal-page,.product-page{background:linear-gradient(145deg,rgba(59,57,64,.82),rgba(39,38,44,.80))}
@media(max-width:640px){.site-header,.site-header.is-scrolled{background:rgba(243,240,237,.72)}.main-nav{background:rgba(239,236,233,.94)}}

/* Faixa promocional fixa: visível como fita de segurança, sem esconder a navegação. */
.announcement-bar{position:fixed;z-index:75;top:84px;left:0;right:0;min-height:34px;display:flex;align-items:center;justify-content:center;overflow:hidden;padding:6px 24px;color:#151419;background:repeating-linear-gradient(-45deg,#f4f0eb 0 12px,#f4f0eb 12px 16px,#e5232a 16px 28px,#c81720 28px 32px);box-shadow:0 4px 16px rgba(0,0,0,.23),inset 0 1px rgba(255,255,255,.58);font-size:12px;font-weight:800;letter-spacing:.09em;text-align:center;text-transform:uppercase}
.announcement-bar span{padding:2px 14px;border:1px solid rgba(255,255,255,.6);border-radius:99px;background:rgba(255,255,255,.78);box-shadow:0 2px 8px rgba(0,0,0,.12)}
.site-header.is-scrolled~.announcement-bar{top:72px}
body.has-announcement .hero{padding-top:164px}body.has-announcement .page-hero{padding-top:194px}body.has-announcement .product-page{padding-top:178px}body.has-announcement .legal-page{padding-top:186px}
@media(max-width:700px){.announcement-bar{top:68px;min-height:32px;padding:5px 12px;font-size:10px;letter-spacing:.055em}.announcement-bar span{padding:2px 9px}.site-header.is-scrolled~.announcement-bar{top:68px}body.has-announcement .hero{padding-top:136px}body.has-announcement .page-hero{padding-top:151px}body.has-announcement .product-page{padding-top:134px}body.has-announcement .legal-page{padding-top:151px}}

/* Variação de alerta: fita zebrada amarela e preta, sem caixa de texto. */
.announcement-bar{color:#111114;background:repeating-linear-gradient(-45deg,#f6c915 0 13px,#f6c915 13px 17px,#121214 17px 30px,#121214 30px 34px);border-block:1px solid rgba(0,0,0,.65);box-shadow:0 4px 16px rgba(0,0,0,.30),inset 0 1px rgba(255,255,255,.36);text-shadow:0 1px rgba(255,255,255,.25)}
.announcement-bar span{padding:0;border:0;border-radius:0;background:transparent;box-shadow:none}

.announcement-bar{font-size:15px;font-weight:900;letter-spacing:.115em;text-shadow:0 2px 0 rgba(0,0,0,.88),0 4px 9px rgba(0,0,0,.60)}
.announcement-bar span{color:#fff}
@media(max-width:700px){.announcement-bar{font-size:12px;font-weight:900;letter-spacing:.085em;text-shadow:0 1px 0 rgba(0,0,0,.88),0 3px 7px rgba(0,0,0,.55)}}

/* Boneco low-poly interativo — construído em CSS para não carregar um modelo pesado. */
.custom-model-stage{cursor:grab;touch-action:none;user-select:none;perspective:900px;isolation:isolate}.custom-model-stage.is-dragging{cursor:grabbing}.custom-model-stage:focus-visible{outline:2px solid #f6c915;outline-offset:5px}.model-hint{position:absolute;z-index:3;bottom:23px;left:50%;transform:translateX(-50%);padding:7px 12px;border:1px solid rgba(255,255,255,.22);border-radius:99px;color:rgba(255,255,255,.82);background:rgba(20,20,24,.46);font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;backdrop-filter:blur(10px);pointer-events:none}.lowpoly-scene{position:relative;z-index:2;width:260px;height:350px;transform-style:preserve-3d;transform:var(--model-rotation,rotateX(-9deg) rotateY(27deg));transition:transform .18s ease-out}.custom-model-stage.is-dragging .lowpoly-scene{transition:none}.lowpoly-figure,.lowpoly-figure>*{position:absolute;left:50%;transform-style:preserve-3d}.lowpoly-figure{inset:0 auto auto 0;width:100%;height:100%}.figure-head{top:38px;width:100px;height:100px;margin-left:-50px;transform:translateZ(18px) rotateY(-8deg);clip-path:polygon(22% 0,78% 0,100% 27%,88% 83%,61% 100%,29% 94%,0 62%,4% 23%);background:linear-gradient(135deg,#f2f0ed,#8c8990 50%,#302f35);box-shadow:inset 12px 9px 18px rgba(255,255,255,.28),inset -16px -12px 22px rgba(0,0,0,.42),0 18px 24px rgba(0,0,0,.28)}.figure-head::before{content:"";position:absolute;inset:20px 16px 21px;background:linear-gradient(135deg,#24242a,#101014);clip-path:polygon(0 20%,100% 0,88% 75%,24% 100%);opacity:.9}.figure-head i{position:absolute;z-index:1;left:30px;top:40px;width:41px;height:5px;background:#e5232a;box-shadow:0 0 10px rgba(229,35,42,.75);transform:skewX(-24deg)}.figure-neck{top:132px;width:35px;height:28px;margin-left:-17px;background:#55535a;transform:translateZ(6px) rotateX(-12deg);box-shadow:inset 5px 0 rgba(255,255,255,.16),inset -6px 0 rgba(0,0,0,.35)}.figure-torso{top:153px;width:126px;height:112px;margin-left:-63px;transform:translateZ(8px) rotateX(-2deg);clip-path:polygon(18% 0,82% 0,100% 23%,88% 100%,12% 100%,0 23%);background:linear-gradient(135deg,#e0dedb,#6c6971 49%,#25242a);box-shadow:inset 13px 9px 20px rgba(255,255,255,.25),inset -18px -13px 24px rgba(0,0,0,.46),0 20px 24px rgba(0,0,0,.2)}.figure-torso i{position:absolute;left:23px;right:23px;top:30px;height:18px;background:linear-gradient(90deg,#18181c,#e5232a,#18181c);clip-path:polygon(0 0,100% 18%,87% 100%,12% 80%);opacity:.9}.figure-arm{top:164px;width:30px;height:108px;background:linear-gradient(135deg,#b7b4b4,#4a4850 55%,#202026);box-shadow:inset 5px 0 rgba(255,255,255,.18),inset -6px 0 rgba(0,0,0,.4)}.arm-left{margin-left:-83px;transform:translateZ(3px) rotateZ(12deg)}.arm-right{margin-left:53px;transform:translateZ(3px) rotateZ(-12deg)}.figure-leg{top:258px;width:42px;height:78px;background:linear-gradient(135deg,#c5c2c2,#4c4a52 53%,#1e1e23);box-shadow:inset 6px 0 rgba(255,255,255,.15),inset -7px 0 rgba(0,0,0,.4)}.leg-left{margin-left:-48px;transform:translateZ(5px) skewY(4deg)}.leg-right{margin-left:6px;transform:translateZ(5px) skewY(-4deg)}.figure-base{top:330px;width:160px;height:20px;margin-left:-80px;border-radius:50%;background:radial-gradient(ellipse,rgba(229,35,42,.55),rgba(0,0,0,.05) 62%,transparent 70%);transform:translateZ(-18px)}
@media(max-width:700px){.lowpoly-scene{width:205px;height:290px;transform:scale(.84) var(--model-rotation,rotateX(-9deg) rotateY(27deg))}.model-hint{bottom:16px;font-size:9px}}

/* Robô de apresentação: uma peça mais credível, com volume, juntas e traseira visíveis quando rodada. */
.custom-model-stage{overflow:hidden}
.custom-model-stage::before{content:"";position:absolute;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(246,246,244,.18),rgba(229,35,42,.10) 36%,transparent 68%);filter:blur(10px);transform:translateY(18px);pointer-events:none}
.custom-model-stage .lowpoly-scene{width:300px;height:406px;transform:translateY(8px) var(--model-rotation,rotateX(-9deg) rotateY(27deg));transform-origin:center 55%}
.robot-figure{filter:drop-shadow(0 22px 18px rgba(0,0,0,.40))}
.robot-antenna{top:2px!important;width:6px;height:29px;margin-left:-3px;background:linear-gradient(90deg,#29282e,#d9d4d0 48%,#35333a);transform:translateZ(35px)!important}.robot-antenna::before{content:"";position:absolute;top:-10px;left:-5px;width:16px;height:16px;border-radius:50%;background:radial-gradient(circle at 32% 28%,#fff,#e5232a 35%,#4e1115 68%);box-shadow:0 0 15px rgba(229,35,42,.55)}
.custom-model-stage .figure-head{top:29px;width:104px;height:91px;margin-left:-52px;border-radius:17px 17px 22px 22px;transform:translateZ(40px) rotateY(-7deg)!important;background:linear-gradient(130deg,#f7f5f0,#a19da2 42%,#47454d 72%,#24232a)}
.custom-model-stage .figure-head::before{width:26px;height:91px;right:-26px;background:linear-gradient(90deg,#5b5861,#202026)}.custom-model-stage .figure-head::after{width:104px;height:23px;top:-23px;background:linear-gradient(180deg,#fff,#87848c)}
.custom-model-stage .figure-head i{left:20px;top:32px;width:61px;height:25px;border-radius:2px;background:linear-gradient(135deg,#24242a,#07070a);box-shadow:inset 0 1px rgba(255,255,255,.18)}.custom-model-stage .figure-head i::after{left:14px;right:13px;top:10px;height:5px;border-radius:4px}
.custom-model-stage .figure-head b{position:absolute;z-index:2;left:14px;bottom:12px;width:13px;height:6px;background:#c7c2bd;transform:translateZ(3px) skewX(-25deg);box-shadow:20px 0 #c7c2bd,40px 0 #c7c2bd}
.custom-model-stage .figure-ear{top:58px;height:35px;width:22px;transform:translateZ(32px)!important}.custom-model-stage .ear-left{margin-left:-73px;transform:translateZ(32px) rotateY(-25deg)!important}.custom-model-stage .ear-right{margin-left:51px;transform:translateZ(32px) rotateY(25deg)!important}
.custom-model-stage .figure-neck{top:121px;height:31px;transform:translateZ(21px) rotateX(-12deg)!important}.robot-backpack{top:154px;width:83px;height:78px;margin-left:-41px;border-radius:8px;background:linear-gradient(135deg,#37363d,#17171c);transform:translateZ(-26px)!important;box-shadow:inset 8px 6px 9px rgba(255,255,255,.09),0 8px 10px rgba(0,0,0,.36)}.robot-backpack::after{content:"";position:absolute;left:13px;right:13px;top:19px;height:9px;border-top:2px solid rgba(229,35,42,.8);border-bottom:2px solid rgba(255,255,255,.22)}
.custom-model-stage .figure-torso{top:149px;width:139px;height:116px;margin-left:-69px;border-radius:14px 14px 22px 22px;transform:translateZ(26px) rotateX(-3deg)!important}.custom-model-stage .figure-torso::before{width:29px;height:116px;right:-29px}.custom-model-stage .figure-torso::after{width:139px;height:21px;top:-21px}.custom-model-stage .figure-torso i{left:24px;right:24px;top:28px;height:28px}.robot-chest-detail{position:absolute;left:31px;right:31px;bottom:21px;height:14px;border-top:2px solid rgba(255,255,255,.5);border-bottom:2px solid rgba(28,27,31,.55);transform:translateZ(4px);background:repeating-linear-gradient(90deg,transparent 0 10px,rgba(255,255,255,.25) 10px 12px)}
.custom-model-stage .figure-shoulder{top:154px;width:44px;height:39px;transform:translateZ(38px)!important}.custom-model-stage .shoulder-left{margin-left:-94px}.custom-model-stage .shoulder-right{margin-left:50px}.custom-model-stage .figure-arm{top:190px;width:31px;height:100px;transform:translateZ(23px)!important}.custom-model-stage .arm-left{margin-left:-96px;transform:translateZ(23px) rotateZ(12deg)!important}.custom-model-stage .arm-right{margin-left:65px;transform:translateZ(23px) rotateZ(-12deg)!important}.robot-elbow{position:absolute;left:-3px;right:-3px;top:49px;height:12px;border-top:2px solid rgba(255,255,255,.36);border-bottom:2px solid rgba(0,0,0,.38);background:#4a4850}.robot-hand{position:absolute;left:-4px;top:98px;width:38px;height:22px;border-radius:6px 6px 11px 11px;background:linear-gradient(135deg,#d7d2cf,#55525a 60%,#242329);box-shadow:inset 4px 3px 6px rgba(255,255,255,.22),inset -5px -4px 5px rgba(0,0,0,.34)}
.robot-hip{top:265px;width:103px;height:31px;margin-left:-51px;border-radius:5px 5px 15px 15px;background:linear-gradient(135deg,#e7e3de,#66636b 55%,#29282f);transform:translateZ(25px)!important;box-shadow:inset 6px 4px 8px rgba(255,255,255,.24),inset -8px -4px 8px rgba(0,0,0,.34)}.robot-hip::after{content:"";position:absolute;left:47px;top:2px;width:8px;height:27px;background:#242329}
.custom-model-stage .figure-leg{top:292px;width:42px;height:83px;transform:translateZ(22px)!important}.custom-model-stage .leg-left{margin-left:-49px;transform:translateZ(22px) skewY(3deg)!important}.custom-model-stage .leg-right{margin-left:7px;transform:translateZ(22px) skewY(-3deg)!important}.robot-knee{position:absolute;left:2px;right:2px;top:36px;height:17px;border-radius:3px;background:linear-gradient(#aaa6aa,#3a3940);border-top:1px solid rgba(255,255,255,.38);border-bottom:2px solid rgba(0,0,0,.35)}.custom-model-stage .figure-foot{top:370px;width:66px;height:23px;transform:translateZ(29px)!important}.custom-model-stage .foot-left{margin-left:-66px;transform:translateZ(29px) translateX(-8px)!important}.custom-model-stage .foot-right{margin-left:0;transform:translateZ(29px) translateX(8px)!important}.custom-model-stage .figure-base{top:386px;width:195px;margin-left:-97px;transform:translateZ(-23px)!important}
@media(max-width:700px){.custom-model-stage .lowpoly-scene{width:258px;height:350px;transform:translateY(10px) scale(.86) var(--model-rotation,rotateX(-9deg) rotateY(27deg))}.custom-model-stage .figure-base{top:386px}.custom-model-stage::before{transform:scale(.8) translateY(12px)}}

/* Visualizador WebGL para o ficheiro GLB real do robô. */
.custom-model-viewer{cursor:grab;isolation:isolate}
.custom-model-viewer:active{cursor:grabbing}
.custom-model-viewer model-viewer{position:relative;z-index:2;width:100%;height:100%;min-height:480px;background:transparent;--progress-bar-color:#e5232a;--poster-color:transparent;outline:none}
.custom-model-viewer .custom-orbit{z-index:1;width:400px;height:205px;border-color:rgba(229,35,42,.28);box-shadow:0 0 40px rgba(229,35,42,.10)}
.custom-model-viewer .model-hint{z-index:4;bottom:20px;color:#fff;background:rgba(22,22,26,.78);border-color:rgba(255,255,255,.28);text-shadow:0 1px 2px #000}
@media(max-width:700px){.custom-model-viewer model-viewer{min-height:360px}.custom-model-viewer .custom-orbit{width:280px;height:145px}}

/* Imagem fixa do dragão: mais leve e previsível do que WebGL em todos os ecrãs. */
.custom-dragon-stage{isolation:isolate;background:radial-gradient(circle at 50% 45%,rgba(122,18,25,.34),transparent 42%),linear-gradient(145deg,#0b0b0e,#1b1518 60%,#49191e)}
.custom-dragon-stage .custom-orbit{z-index:1;width:400px;height:205px;border-color:rgba(229,35,42,.26);box-shadow:0 0 40px rgba(229,35,42,.1)}
.custom-dragon-image{position:relative;z-index:2;width:100%;height:100%;object-fit:cover;transform:scale(1.55);filter:contrast(1.06) saturate(.78) drop-shadow(0 22px 28px rgba(0,0,0,.48));mix-blend-mode:screen}
@media(max-width:700px){.custom-dragon-image{transform:scale(1.32)}.custom-dragon-stage .custom-orbit{width:280px;height:145px}}

/* Imagem final criada para o destaque: preenche todo o quadro sem corte do assunto. */
.custom-dragon-stage{background:#171719}
.custom-dragon-image{position:absolute!important;inset:0;width:100%!important;height:100%!important;object-fit:cover!important;object-position:center center;transform:none!important;filter:contrast(1.04) saturate(.82);mix-blend-mode:normal}
@media(max-width:700px){.custom-dragon-image{transform:none!important}}

/* Ajustes finais para telemóvel: rodapé, catálogo compacto e navegação legível. */
@media (max-width:700px){
  html,body{min-height:100%;}
  body{min-height:100svh;display:flex;flex-direction:column;}
  body>main{flex:1 0 auto;}
  .site-footer{flex:0 0 auto;}

  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
  .product-card{border-radius:20px;min-width:0;}
  .product-card-body{padding:13px;}
  .product-card h2,.product-card h3{margin:5px 0 10px;font-size:16px;line-height:1.18;}
  .product-category{font-size:9px;letter-spacing:.08em;}
  .product-meta{align-items:flex-start;gap:6px;flex-direction:column;}
  .product-meta strong{font-size:15px;}
  .product-meta span{font-size:10px;line-height:1.2;}
  .favorite-button{top:9px;right:9px;width:32px;height:32px;}
  .favorite-button svg{width:17px;}

  .main-nav,
  .main-nav.is-open{
    position:fixed;
    z-index:200;
    inset:68px 0 0;
    min-height:calc(100dvh - 68px);
    padding:34px 28px 42px;
    gap:22px;
    background:#f1eeeb !important;
    border-top:1px solid rgba(23,22,25,.14);
    box-shadow:0 22px 48px rgba(0,0,0,.26);
    backdrop-filter:none;
  }
  .main-nav a,
  .header-on-dark:not(.is-scrolled) .main-nav a,
  body:has(.custom-hero) .site-header:not(.is-scrolled) .main-nav a{
    color:#1c1b20 !important;
    font:800 29px/1.16 var(--font-display);
    text-shadow:none;
  }
  .main-nav a::after{background:var(--red);bottom:-5px;}
  body.menu-open{overflow:hidden;}
}

@media (max-width:370px){
  .product-grid{gap:10px;}
  .product-card-body{padding:11px;}
  .product-card h2,.product-card h3{font-size:15px;}
}

/* Reforço para os cartões renderizados pelo catálogo e o menu aberto. */
@media (max-width:900px){
  .product-grid[data-catalog-grid]{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:12px !important;
  }
}

@media (max-width:700px){
  .site-header .main-nav.is-open{
    display:flex !important;
    position:fixed !important;
    z-index:999 !important;
    top:68px !important;
    right:0 !important;
    bottom:auto !important;
    left:0 !important;
    width:100vw !important;
    height:calc(100dvh - 68px) !important;
    min-height:calc(100dvh - 68px) !important;
    padding:34px 28px 42px !important;
    background:#f1eeeb !important;
    opacity:1 !important;
    isolation:isolate;
  }
  .site-header .main-nav.is-open::before{
    content:"";
    position:absolute;
    z-index:-1;
    inset:0;
    background:#f1eeeb;
  }
}

/* Compatibilidade móvel: sem depender de CSS Grid nem da camada do cabeçalho. */
@media (max-width:1020px){
  .product-grid[data-catalog-grid]{
    display:flex !important;
    flex-wrap:wrap !important;
    align-items:stretch;
    gap:12px !important;
  }
  .product-grid[data-catalog-grid]>.product-card,
  .product-grid[data-catalog-grid]>.coming-card{
    flex:0 0 calc(50% - 6px) !important;
    width:calc(50% - 6px) !important;
    min-width:0;
  }
  .product-grid[data-catalog-grid]>.coming-card{min-height:0;}
}

@media (max-width:700px){
  body.menu-open::after{
    content:"";
    position:fixed;
    z-index:79;
    inset:68px 0 0;
    background:#f1eeeb;
    box-shadow:0 22px 48px rgba(0,0,0,.26);
  }
  .site-header .main-nav.is-open{z-index:1000 !important;background:transparent !important;}
  .site-header .main-nav.is-open::before{display:none;}
}

/* Checkout: manter contraste e interação durante a validação. */
.checkout-card .field{position:relative;z-index:3}
.checkout-card .field input,.checkout-card .field select,.checkout-card .field textarea{color:#fff;caret-color:#fff;pointer-events:auto}
.checkout-card .field input:focus,.checkout-card .field select:focus,.checkout-card .field textarea:focus{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.58);box-shadow:0 0 0 3px rgba(229,35,42,.16)}
.checkout-card .field input.is-invalid,.checkout-card .field select.is-invalid,.checkout-card .field textarea.is-invalid{color:#fff;background:rgba(155,26,32,.24);border-color:#f15b61;box-shadow:0 0 0 3px rgba(229,35,42,.14)}

/* O Chrome aplica um fundo branco próprio a e-mails/autopreenchimento. */
.checkout-card .field input:-webkit-autofill,
.checkout-card .field input:-webkit-autofill:hover,
.checkout-card .field input:-webkit-autofill:focus,
.checkout-card .field input:-webkit-autofill:active{
  -webkit-text-fill-color:#fff!important;
  caret-color:#fff;
  -webkit-box-shadow:0 0 0 1000px #3b393f inset!important;
  box-shadow:0 0 0 1000px #3b393f inset!important;
  transition:background-color 9999s ease-out 0s;
}

/* Profundidade real nas peças do boneco: faces frontal, lateral e superior. */
.lowpoly-figure>*{transform-style:preserve-3d}.figure-head{width:88px;height:78px;margin-left:-44px;clip-path:none;border-radius:12px;background:linear-gradient(135deg,#fbf9f5,#96939b 52%,#4b4951);transform:translateZ(34px) rotateY(-7deg);box-shadow:inset 11px 9px 18px rgba(255,255,255,.38),inset -14px -11px 18px rgba(0,0,0,.42),0 18px 24px rgba(0,0,0,.28)}.figure-head::before{inset:auto -22px 0 auto;width:22px;height:78px;background:linear-gradient(90deg,#514f57,#242329);clip-path:none;transform:rotateY(90deg);transform-origin:left center;opacity:1}.figure-head::after{content:"";position:absolute;left:0;top:-18px;width:88px;height:18px;background:linear-gradient(180deg,#fff,#8f8d95);transform:rotateX(90deg);transform-origin:bottom;box-shadow:none}.figure-head i{left:22px;top:31px;width:45px;height:18px;background:#141419;clip-path:polygon(5% 0,100% 12%,88% 100%,0 86%);transform:translateZ(3px)}.figure-head i::after{content:"";position:absolute;left:12px;right:10px;top:7px;height:4px;background:#f32c34;box-shadow:0 0 11px rgba(243,44,52,.85)}.figure-neck{width:32px;height:30px;margin-left:-16px;background:linear-gradient(90deg,#4b4950,#c4c0bf,#3a383f);transform:translateZ(15px) rotateX(-12deg)}.figure-neck::after{content:"";position:absolute;right:-10px;top:0;width:10px;height:30px;background:#27262c;transform:rotateY(90deg);transform-origin:left}.figure-torso{width:118px;height:102px;margin-left:-59px;clip-path:none;border-radius:9px 9px 16px 16px;background:linear-gradient(135deg,#f1eeea,#77747d 51%,#302f35);transform:translateZ(18px) rotateX(-3deg);box-shadow:inset 13px 9px 20px rgba(255,255,255,.28),inset -18px -13px 24px rgba(0,0,0,.48),0 20px 24px rgba(0,0,0,.22)}.figure-torso::before{content:"";position:absolute;right:-24px;top:0;width:24px;height:102px;background:linear-gradient(90deg,#504e56,#25242a);transform:rotateY(90deg);transform-origin:left}.figure-torso::after{content:"";position:absolute;left:0;top:-18px;width:118px;height:18px;background:linear-gradient(180deg,#f7f4f1,#77747d);transform:rotateX(90deg);transform-origin:bottom}.figure-torso i{left:19px;right:19px;top:27px;height:26px;transform:translateZ(3px);background:linear-gradient(90deg,#111116,#e5232a 52%,#111116);clip-path:polygon(0 0,100% 13%,86% 100%,11% 82%)}.figure-arm{width:28px;height:102px;border-radius:5px;background:linear-gradient(135deg,#d9d6d4,#55535c 56%,#25242b);transform:translateZ(13px)!important;box-shadow:inset 5px 0 rgba(255,255,255,.2),inset -6px 0 rgba(0,0,0,.42)}.figure-arm::after,.figure-leg::after{content:"";position:absolute;right:-13px;top:0;width:13px;height:100%;background:#29282f;transform:rotateY(90deg);transform-origin:left}.arm-left{margin-left:-82px;transform:translateZ(13px) rotateZ(13deg)!important}.arm-right{margin-left:54px;transform:translateZ(13px) rotateZ(-13deg)!important}.figure-shoulder{top:158px;width:38px;height:33px;border-radius:50% 50% 7px 7px;background:radial-gradient(circle at 30% 25%,#f2f0ed,#5b5962 58%,#24242a);box-shadow:inset 4px 4px 7px rgba(255,255,255,.3),inset -6px -6px 8px rgba(0,0,0,.38)}.shoulder-left{margin-left:-79px;transform:translateZ(28px)}.shoulder-right{margin-left:41px;transform:translateZ(28px)}.figure-ear{top:58px;width:18px;height:30px;background:linear-gradient(135deg,#d7d4d0,#4b4951);box-shadow:inset 3px 2px 5px rgba(255,255,255,.26),inset -4px -4px 6px rgba(0,0,0,.4)}.ear-left{margin-left:-57px;transform:translateZ(26px) rotateY(-25deg)}.ear-right{margin-left:39px;transform:translateZ(26px) rotateY(25deg)}.figure-leg{width:38px;height:74px;background:linear-gradient(135deg,#d4d1cf,#514f58 54%,#24242b);transform:translateZ(16px)!important}.leg-left{margin-left:-46px;transform:translateZ(16px) skewY(4deg)!important}.leg-right{margin-left:8px;transform:translateZ(16px) skewY(-4deg)!important}.figure-foot{top:323px;width:57px;height:20px;border-radius:6px 17px 6px 6px;background:linear-gradient(135deg,#d5d2d0,#45434b 55%,#1c1c22);box-shadow:inset 5px 2px 6px rgba(255,255,255,.22),inset -7px -4px 8px rgba(0,0,0,.38)}.foot-left{margin-left:-58px;transform:translateZ(22px) translateX(-8px)}.foot-right{margin-left:1px;transform:translateZ(22px) translateX(8px)}
