@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Montserrat:wght@400;500;600&family=Schibsted+Grotesk:ital,wght@0,600;0,700;0,800;1,700;1,800&display=swap');

:root {
  --ink: #071127;
  --ink-2: #15223a;
  --muted: #607089;
  --blue: #096dff;
  --blue-dark: #0054cf;
  --blue-soft: #eaf3ff;
  --cyan: #84e8ff;
  --mint: #aaf5d3;
  --paper: #f4f7fb;
  --white: #fff;
  --line: #dfe6f0;
  --line-dark: #c4cfde;
  --danger: #a92e3b;
  --success: #147447;
  --shadow-sm: 0 8px 30px rgba(15, 39, 76, .08);
  --shadow-lg: 0 28px 80px rgba(8, 33, 71, .15);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: 1260px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--cyan); color: var(--ink); }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 72px 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 42px; }
.section-heading--flush { margin-bottom: 0; }
.section-heading > div { max-width: 820px; }
.section-heading p { max-width: 520px; margin: 0; color: var(--muted); }
.section--ink .section-heading p { color: #aebcd1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 22px; height: 2px; background: currentColor; content: ""; }
.eyebrow--light { color: var(--cyan); }
h1, h2, h3, h4 { margin: 0; font-family: "Schibsted Grotesk", "DM Sans", sans-serif; line-height: 1.05; letter-spacing: -.035em; }
h1 { font-size: clamp(3.4rem, 7.4vw, 6.6rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
h3 { font-size: 1.3rem; }
p { font-family: "Montserrat", "DM Sans", sans-serif; }
.lead { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.75; }
.text-blue { color: var(--blue); }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button--primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 30px rgba(9, 109, 255, .25); }
.button--primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(9, 109, 255, .32); }
.button--secondary { border-color: var(--line-dark); background: var(--white); color: var(--ink); }
.button--secondary:hover { border-color: var(--ink); }
.button--ghost { border-color: rgba(255,255,255,.32); color: var(--white); }
.button--ghost:hover { background: rgba(255,255,255,.1); }
.button--dark { background: var(--ink); color: var(--white); }
.button--wide { width: 100%; }
.button:disabled { cursor: wait; opacity: .58; transform: none; }
.text-button { padding: 8px; border: 0; background: transparent; cursor: pointer; color: var(--muted); font-weight: 700; }
.text-button:hover { color: var(--ink); }
.icon-button {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.icon-button:hover { transform: rotate(4deg) scale(1.04); }
.icon-button--blue { border-color: var(--blue); background: var(--blue); color: var(--white); }
.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; }

/* Header */
.announcement { background: var(--ink); color: #dce8fa; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.announcement__inner { min-height: 35px; display: flex; align-items: center; justify-content: center; gap: 42px; }
.announcement__inner span { display: inline-flex; align-items: center; gap: 8px; }
.announcement__inner span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); content: ""; }
.site-header { position: sticky; z-index: 80; top: 0; border-bottom: 1px solid rgba(213,224,239,.8); background: rgba(255,255,255,.93); backdrop-filter: blur(18px); }
.site-header__inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 0 auto; }
.brand img { width: 126px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 31px; }
.main-nav a { position: relative; color: #435169; font-size: 14px; font-weight: 700; }
.main-nav a::after { position: absolute; right: 0; bottom: -10px; left: 0; height: 2px; transform: scaleX(0); background: var(--blue); content: ""; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 13px; }
.header-contact { color: var(--blue); font-size: 13px; font-weight: 800; }
.cart-button { position: relative; min-height: 43px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-size: 13px; font-weight: 800; }
.cart-button b { position: absolute; top: -7px; right: -4px; min-width: 21px; height: 21px; display: grid; place-items: center; padding: 0 5px; border: 2px solid white; border-radius: 999px; background: var(--blue); color: #fff; font-size: 10px; }
.menu-button { display: none; width: 43px; height: 43px; place-items: center; padding: 0; border: 0; border-radius: 50%; background: var(--ink); color: white; }
.mobile-nav { display: none; }

/* Home hero */
.home-hero { position: relative; min-height: 710px; display: flex; align-items: center; overflow: hidden; background: #e8f1ff; }
.home-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(232,241,255,.97) 0%, rgba(232,241,255,.93) 42%, rgba(232,241,255,.16) 68%, rgba(232,241,255,0) 100%); content: ""; }
.home-hero::after { position: absolute; bottom: -160px; left: 32%; z-index: 1; width: 480px; height: 480px; border: 1px solid rgba(9,109,255,.22); border-radius: 50%; content: ""; }
.home-hero__image { position: absolute; inset: 0 0 0 auto; width: 64%; height: 100%; object-fit: cover; object-position: center; }
.home-hero__content { position: relative; z-index: 2; max-width: 735px; padding: 76px 0 84px; }
.home-hero h1 em { display: block; color: var(--blue); font-weight: 800; }
.home-hero .lead { max-width: 660px; margin: 28px 0 34px; color: #33435b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 38px; color: #4b5d76; font-size: 13px; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof b { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--success); font-size: 12px; }

/* Brands */
.brand-strip { overflow: hidden; border-block: 1px solid var(--line); background: #fff; }
.brand-strip__inner { min-height: 138px; display: grid; grid-template-columns: 180px minmax(0, 1fr); align-items: center; gap: 30px; }
.brand-strip__label { margin: 0; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; line-height: 1.55; text-transform: uppercase; }
.brand-strip__viewport { min-width: 0; overflow: hidden; padding-block: 18px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.brand-strip__viewport:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.brand-strip__track { display: flex; width: max-content; animation: brand-strip-scroll 42s linear infinite; will-change: transform; }
.brand-strip__viewport:hover .brand-strip__track, .brand-strip__viewport:focus-within .brand-strip__track { animation-play-state: paused; }
.brand-strip__group { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; padding-right: 12px; }
.brand-strip__logo { width: 174px; height: 74px; flex: 0 0 174px; display: grid; place-items: center; margin: 0; padding: 14px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.brand-strip__logo:hover { transform: translateY(-2px); border-color: #bfd2ee; box-shadow: 0 9px 22px rgba(7, 25, 55, .08); }
.brand-strip__logo img { display: block; width: 138px; height: 44px; object-fit: contain; filter: grayscale(1); opacity: .72; transition: opacity .2s ease, filter .2s ease; }
.brand-strip__logo:hover img { filter: none; opacity: 1; }
.brand-strip__logo--compact img { width: 116px; height: 48px; }
.brand-strip__logo--tall img { width: 102px; height: 54px; }
.brand-strip__logo--square img { width: 76px; height: 54px; }
@keyframes brand-strip-scroll { to { transform: translateX(-50%); } }

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card { position: relative; min-height: 560px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: #fff; isolation: isolate; }
.category-card::after { position: absolute; inset: 28% 0 0; z-index: -1; background: linear-gradient(0deg, rgba(5,15,35,.97), rgba(5,15,35,.78) 54%, transparent); content: ""; }
.category-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.category-card:hover img { transform: scale(1.045); }
.category-card__content { padding: 34px; }
.category-card__index { position: absolute; top: 25px; left: 28px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.46); border-radius: 50%; font-size: 12px; font-weight: 800; }
.category-card h3 { margin-bottom: 12px; font-size: 2rem; text-transform: uppercase; }
.category-card p { min-height: 76px; margin: 0 0 20px; color: #c5d1e3; line-height: 1.6; }
.category-card a { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 13px; font-weight: 800; text-transform: uppercase; }

/* Product rail and cards */
.product-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #c7d8f0; box-shadow: var(--shadow-sm); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; display: block; overflow: hidden; background: #f1f5fa; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; mix-blend-mode: multiply; transition: transform .4s ease; }
.product-card:hover .product-card__media img { transform: scale(1.045); }
.product-card__badge { position: absolute; z-index: 2; top: 14px; left: 14px; max-width: calc(100% - 28px); padding: 7px 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.86); backdrop-filter: blur(9px); color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .03em; text-overflow: ellipsis; white-space: nowrap; }
.product-card__body { min-height: 208px; display: flex; flex-direction: column; padding: 19px; }
.product-card__meta { margin: 0 0 7px; color: var(--blue); font: 800 10px/1.2 "DM Sans", sans-serif; letter-spacing: .11em; text-transform: uppercase; }
.product-card h3 { font-size: 1.05rem; line-height: 1.25; letter-spacing: -.02em; }
.product-card h3 a:hover { color: var(--blue); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 19px; }
.product-card__footer strong { font-size: 1.15rem; }
.product-card__footer .icon-button { width: 40px; height: 40px; }
.product-card--compact .product-card__body { min-height: 185px; }

/* Design / support */
.split-feature { display: grid; grid-template-columns: 1.03fr .97fr; align-items: stretch; min-height: 650px; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: #fff; }
.split-feature__media { position: relative; min-height: 540px; }
.split-feature__media img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.split-feature__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 90px); }
.split-feature__content p { margin: 24px 0 30px; color: #b8c6da; line-height: 1.75; }
.split-feature__steps { display: grid; gap: 14px; margin: 0 0 32px; padding: 0; list-style: none; }
.split-feature__steps li { display: flex; align-items: center; gap: 13px; color: #e4edfa; }
.split-feature__steps b { width: 30px; height: 30px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: rgba(132,232,255,.14); color: var(--cyan); font-size: 11px; }
.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.support-grid__image { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--blue-soft); }
.support-grid__image::before { position: absolute; top: 20px; right: 20px; bottom: 20px; left: 20px; z-index: 1; border: 1px solid rgba(255,255,255,.65); border-radius: 25px; content: ""; pointer-events: none; }
.support-grid__image img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.support-grid__content h2 { max-width: 720px; }
.support-grid__content .lead { margin: 26px 0 30px; }
.support-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 31px; }
.support-point { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.support-point b { display: block; margin-bottom: 5px; font-size: 14px; }
.support-point span { color: var(--muted); font-size: 13px; }

/* Forms */
.form-shell { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-shell__intro { position: relative; padding: clamp(38px, 5vw, 72px); overflow: hidden; background: var(--blue); color: #fff; }
.form-shell__intro::after { position: absolute; right: -100px; bottom: -150px; width: 330px; height: 330px; border: 55px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; }
.form-shell__intro p { position: relative; z-index: 1; color: #dcecff; line-height: 1.75; }
.form-shell__intro h2 { position: relative; z-index: 1; font-size: clamp(2.3rem, 4vw, 3.9rem); }
.form-shell__form { padding: clamp(36px, 5vw, 68px); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 19px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #2e3d55; font-size: 12px; font-weight: 800; letter-spacing: .025em; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line-dark); border-radius: var(--radius-sm); outline: none; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(9,109,255,.1); }
.field small { color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1.6fr .7fr .55fr .55fr; gap: 12px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; }
.field--spaced, .block--spaced { margin-top: 17px; }
.block--spaced-lg { margin-top: 22px; }
.quote-button { margin-top: 18px; }
.textarea--compact { min-height: 85px !important; }
.pickup-note { margin-top: 18px; padding: 15px; border-radius: 12px; background: var(--paper); color: var(--muted); font-size: 13px; }
.honeypot { position: absolute !important; left: -10000px !important; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.faq-intro { position: sticky; top: 145px; }
.faq-intro p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 3px; cursor: pointer; list-style: none; font: 700 1.18rem/1.3 "Schibsted Grotesk", sans-serif; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { width: 31px; height: 31px; display: grid; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; color: var(--blue); content: "+"; font: 500 19px/1 "DM Sans"; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { max-width: 720px; margin: -5px 0 25px; color: var(--muted); line-height: 1.75; }

/* Inner heroes */
.inner-hero { padding: 94px 0 72px; overflow: hidden; background: var(--paper); }
.inner-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.inner-hero h1 { max-width: 920px; font-size: clamp(3.5rem, 7vw, 6.4rem); }
.inner-hero p { margin: 0 0 12px; color: var(--muted); line-height: 1.75; }
.inner-hero__stats { display: flex; gap: 12px; margin-top: 30px; }
.inner-hero__stats span { padding: 10px 14px; border: 1px solid var(--line-dark); border-radius: 999px; background: rgba(255,255,255,.7); font-size: 12px; font-weight: 800; }

/* Catalog */
.catalog { padding: 54px 0 108px; }
.catalog-tools { position: sticky; z-index: 20; top: 92px; display: grid; grid-template-columns: 1fr auto; gap: 18px; margin-bottom: 35px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 10px 38px rgba(12,38,75,.07); backdrop-filter: blur(16px); }
.catalog-search { position: relative; }
.catalog-search svg { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); color: var(--muted); }
.catalog-search input { width: 100%; height: 48px; padding: 10px 15px 10px 47px; border: 0; border-radius: 11px; outline: 0; background: var(--paper); }
.catalog-sort { height: 48px; padding: 8px 38px 8px 15px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-size: 13px; font-weight: 700; }
.catalog-filter-stack { display: grid; gap: 13px; margin-bottom: 30px; }
.catalog-filter-row { display: grid; grid-template-columns: 72px minmax(0,1fr); align-items: start; gap: 14px; }
.catalog-filter-label { padding-top: 10px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.catalog-chips { display: flex; flex-wrap: wrap; gap: 9px; min-width: 0; }
.filter-chip { padding: 10px 15px; border: 1px solid var(--line-dark); border-radius: 999px; background: #fff; cursor: pointer; color: #405068; font-size: 12px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.filter-chip:hover, .filter-chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.filter-chip--brand { border-color: #a9c9f7; color: var(--blue); }
.catalog-status { display: flex; align-items: center; justify-content: space-between; margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.catalog-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.catalog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.catalog-pagination button { min-width: 43px; height: 43px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-weight: 800; }
.catalog-pagination button.is-active { border-color: var(--blue); background: var(--blue); color: #fff; }
.catalog-empty { grid-column: 1 / -1; padding: 80px 24px; border: 1px dashed var(--line-dark); border-radius: var(--radius); text-align: center; color: var(--muted); }
.loading-grid { grid-column: 1 / -1; min-height: 300px; display: grid; place-items: center; color: var(--muted); }
.spinner { width: 21px; height: 21px; display: inline-block; border: 2px solid #cdd8e8; border-top-color: var(--blue); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Product detail */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; color: var(--muted); font-size: 12px; font-weight: 700; }
.breadcrumbs a:hover { color: var(--blue); }
.product-detail { padding: 54px 0 98px; }
.product-detail__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 76px; align-items: start; }
.product-detail__media { position: sticky; top: 128px; display: grid; place-items: center; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper); }
.product-detail__media img { width: 100%; height: 100%; object-fit: contain; padding: 44px; mix-blend-mode: multiply; }
.product-detail__content { padding-top: 12px; }
.product-detail__content h1 { margin: 10px 0 18px; font-size: clamp(2.55rem, 5vw, 4.55rem); }
.product-detail__subtitle { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-price { display: block; margin: 28px 0 8px; font: 800 clamp(1.9rem, 4vw, 2.7rem)/1 "Schibsted Grotesk", sans-serif; }
.product-installments { margin: 0 0 28px; color: var(--muted); font-size: 13px; }
.product-variants { margin: 0 0 22px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.product-variants__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.product-variants__head > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.product-variants__head strong { font-size: 13px; }
.product-variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.product-variant-option { min-height: 43px; display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px 7px 8px; border: 1px solid var(--line-dark); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; transition: border-color .18s, box-shadow .18s, background .18s; }
.product-variant-option i { width: 27px; height: 27px; flex: 0 0 27px; border: 3px solid #fff; border-radius: 50%; background: var(--variant-color); box-shadow: 0 0 0 1px rgba(4,12,28,.22); }
.product-variant-option small { color: var(--danger); font-size: 8px; }
.product-variant-option:hover:not(:disabled), .product-variant-option.is-selected { border-color: var(--blue); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); }
.product-variant-option:disabled { cursor: not-allowed; filter: grayscale(.55); opacity: .52; }
.product-variant-stock { min-height: 17px; margin: 12px 0 0; color: #138545; font-size: 11px; font-weight: 800; }
.product-variant-stock.is-out, .product-variant-unavailable { color: var(--danger); }
.product-variant-unavailable { margin: 0; font-size: 12px; }
.product-description { margin: 27px 0; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); line-height: 1.8; }
.product-buy { display: grid; grid-template-columns: 132px 1fr; gap: 12px; }
.quantity-input { height: 54px; display: grid; grid-template-columns: 38px 1fr 38px; align-items: center; border: 1px solid var(--line-dark); border-radius: 999px; }
.quantity-input button { display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.quantity-input input { width: 100%; padding: 0; border: 0; outline: 0; text-align: center; font-weight: 800; appearance: textfield; }
.quantity-input input::-webkit-inner-spin-button { display: none; }
.product-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 26px; }
.product-benefit { padding: 15px 12px; border-radius: 12px; background: var(--paper); text-align: center; }
.product-benefit b { display: block; font-size: 12px; }
.product-benefit span { color: var(--muted); font-size: 10px; }
.related-products { padding: 88px 0; background: var(--paper); }

/* Production */
.production-hero { position: relative; min-height: 720px; display: flex; align-items: end; overflow: hidden; background: var(--ink); color: white; }
.production-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.production-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,31,.95), rgba(5,13,31,.6) 56%, rgba(5,13,31,.08)), linear-gradient(0deg, rgba(5,13,31,.77), transparent 55%); content: ""; }
.production-hero__content { position: relative; z-index: 1; max-width: 920px; padding: 90px 0; }
.production-hero h1 { font-size: clamp(3.8rem, 7.6vw, 7rem); }
.production-hero p { max-width: 670px; margin: 25px 0 32px; color: #d0dced; font-size: 1.08rem; line-height: 1.75; }
.process-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.process-head .process-kicker { color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; counter-reset: process; }
.process-card { position: relative; min-height: 0; aspect-ratio: 49 / 73; overflow: hidden; border-radius: 20px; background: #f3f3f3; counter-increment: process; }
.process-card::before, .process-card::after { content: none; }
.process-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.process-card__content { position: relative; z-index: 2; padding: 22px; }
.process-card h3 { font-size: 1.18rem; }
.process-card p { margin: 8px 0 0; color: #bdc9da; font-size: 12px; line-height: 1.55; }
.technology-carousel { width: 100%; overflow: hidden; padding: 2px 0 4px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.technology-logos { display: flex; flex-flow: row nowrap; width: max-content; gap: 16px; will-change: transform; }
.technology-logos.is-ready { animation: technology-scroll 34s linear infinite; }
.technology-carousel:hover .technology-logos, .technology-carousel:focus-within .technology-logos { animation-play-state: paused; }
.technology-logo { position: relative; min-height: 248px; display: block; flex: 0 0 clamp(280px, 28vw, 370px); overflow: hidden; padding: 0; border: 1px solid rgba(8,25,54,.12); border-radius: 22px; background: var(--ink); box-shadow: 0 18px 44px rgba(8,25,54,.12); isolation: isolate; }
.technology-logo::after { position: absolute; inset: 34% 0 0; z-index: 1; background: linear-gradient(180deg, transparent, rgba(3,11,27,.9)); content: ""; pointer-events: none; }
.technology-logo img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; filter: none; opacity: 1; transition: transform .45s ease; }
.technology-logo:hover img { transform: scale(1.045); }
.technology-logo__label { position: absolute; right: 20px; bottom: 18px; left: 20px; z-index: 2; color: #fff; font-size: clamp(.95rem, 1.4vw, 1.16rem); font-weight: 800; letter-spacing: -.015em; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.technology-credits { max-width: 980px; margin-top: 18px; color: var(--muted); font-size: 10px; line-height: 1.65; }
.technology-credits summary { width: max-content; cursor: pointer; color: #536885; font-size: 10px; font-weight: 800; }
.technology-credits p { margin: 10px 0 0; }
.technology-credits a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
@keyframes technology-scroll { to { transform: translate3d(calc(-50% - 8px), 0, 0); } }
@media (prefers-reduced-motion: reduce) { .technology-carousel { overflow-x: auto; -webkit-mask-image: none; mask-image: none; } .technology-logos.is-ready { animation: none; } .technology-logo[aria-hidden="true"] { display: none; } }
.production-cta { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; border-radius: var(--radius-lg); color: white; }
.production-cta::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,16,37,.95), rgba(5,16,37,.52), rgba(5,16,37,.2)); content: ""; }
.production-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.production-cta__content { position: relative; z-index: 1; max-width: 690px; padding: clamp(42px, 7vw, 90px); }
.production-cta__content p { color: #d2dfef; font-size: 1.05rem; }

/* Contact */
.contact-hero { padding: 105px 0; background: var(--blue); color: #fff; }
.contact-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.contact-hero h1 { max-width: 900px; }
.contact-hero p { color: #dbeaff; line-height: 1.75; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: -44px; position: relative; z-index: 2; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-card__icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 13px; background: var(--blue-soft); color: var(--blue); font-weight: 800; }
.contact-card h3 { margin-bottom: 8px; }
.contact-card p, .contact-card span { color: var(--muted); font-size: 13px; }
.contact-card a { display: block; margin-top: 15px; color: var(--blue); font-weight: 800; }

/* Checkout */
.checkout-page { min-height: 100vh; background: var(--paper); }
.checkout-header { padding: 20px 0; border-bottom: 1px solid var(--line); background: #fff; }
.checkout-header__inner { display: flex; align-items: center; justify-content: space-between; }
.checkout-header img { width: 145px; height: auto; }
.checkout-header a:last-child { color: var(--muted); font-size: 13px; font-weight: 700; }
.checkout-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; padding: 50px 0 90px; }
.checkout-main { display: grid; gap: 18px; }
.checkout-card { padding: 31px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.checkout-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; }
.checkout-card__number { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-weight: 800; }
.checkout-card h2 { font-size: 1.45rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { min-height: 94px; display: flex; flex-direction: column; justify-content: center; padding: 17px; border: 1px solid var(--line-dark); border-radius: 13px; cursor: pointer; transition: border .2s, background .2s; }
.choice label b { margin-bottom: 4px; font-size: 13px; }
.choice label span { color: var(--muted); font-size: 11px; }
.choice input:checked + label { border-color: var(--blue); background: var(--blue-soft); box-shadow: inset 0 0 0 1px var(--blue); }
.quote-result { margin-top: 17px; }
.shipping-rate { display: flex; justify-content: space-between; gap: 15px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.shipping-rate + .shipping-rate { margin-top: 8px; }
.shipping-rate.is-selected { border-color: var(--blue); background: var(--blue-soft); }
.shipping-rate b { font-size: 13px; }
.shipping-rate small { display: block; color: var(--muted); }
.checkout-summary { position: sticky; top: 30px; padding: 30px; border-radius: 20px; background: var(--ink); color: #fff; }
.checkout-summary h2 { font-size: 1.55rem; }
.checkout-lines { display: grid; gap: 15px; margin: 25px 0; }
.checkout-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.checkout-line img { width: 56px; height: 56px; object-fit: contain; padding: 4px; border-radius: 10px; background: white; }
.checkout-line b { display: block; font-size: 11px; line-height: 1.35; }
.checkout-line span { color: #aebcd1; font-size: 10px; }
.checkout-line .checkout-line__variant { display: flex; align-items: center; gap: 5px; margin: 4px 0 2px; color: #fff; font-weight: 800; }
.checkout-line__variant i { width: 10px; height: 10px; flex: 0 0 10px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: var(--checkout-variant-color); }
.checkout-line .checkout-line__variant--error { color: #ff9ba4; }
.checkout-line strong { font-size: 12px; }
.checkout-totals { display: grid; gap: 10px; padding: 20px 0; border-block: 1px solid rgba(255,255,255,.16); }
.checkout-totals div { display: flex; justify-content: space-between; gap: 20px; color: #b9c6d8; font-size: 13px; }
.checkout-totals .checkout-total { padding-top: 7px; color: white; font-size: 17px; font-weight: 800; }
.checkout-trust { margin: 18px 0 0; color: #9fadc2; font-size: 11px; text-align: center; }
.checkout-error { padding: 13px 15px; border-radius: 10px; background: #fff0f1; color: var(--danger); font-size: 13px; }
.is-hidden { display: none !important; }

/* Payment status */
.status-page { min-height: 100vh; display: grid; place-items: center; padding: 45px 20px; background: var(--paper); }
.status-card { width: min(720px, 100%); padding: clamp(32px, 7vw, 64px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); }
.status-icon { width: 67px; height: 67px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 22px; font-weight: 800; }
.status-card h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.status-order__variant { display: flex; align-items: center; gap: 6px; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 700; }
.status-order__variant i { width: 11px; height: 11px; border: 1px solid rgba(4,12,28,.2); border-radius: 50%; background: var(--status-variant-color); }
.status-card .lead { margin: 18px 0 27px; }
.status-order { margin: 25px 0; padding: 22px; border-radius: 15px; background: var(--paper); }
.status-order__line { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 8px; font-size: 13px; }
.status-order__line:last-child { margin-bottom: 0; padding-top: 10px; border-top: 1px solid var(--line); font-weight: 800; }
.status-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* Cart drawer */
.drawer-backdrop { position: fixed; z-index: 190; inset: 0; background: rgba(4,12,28,.52); opacity: 0; transition: opacity .22s ease; backdrop-filter: blur(3px); }
.drawer-backdrop.is-open { opacity: 1; }
.cart-drawer { position: fixed; z-index: 200; top: 0; right: 0; width: min(480px, 100%); height: 100dvh; display: flex; flex-direction: column; transform: translateX(102%); background: #fff; box-shadow: -30px 0 80px rgba(8,25,54,.18); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 25px 26px; border-bottom: 1px solid var(--line); }
.cart-drawer__head .eyebrow { margin-bottom: 4px; }
.cart-drawer__head h2 { font-size: 2rem; }
.cart-drawer__body { min-height: 0; flex: 1; display: flex; flex-direction: column; overflow: auto; }
.empty-cart { margin: auto; padding: 40px 34px; text-align: center; }
.empty-cart__icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 23px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); font-size: 25px; }
.empty-cart h3 { font-size: 1.6rem; }
.empty-cart p { margin: 13px 0 25px; color: var(--muted); }
.loading-row { margin: auto; display: flex; align-items: center; gap: 10px; color: var(--muted); }
.cart-lines { padding: 10px 25px; }
.cart-line { position: relative; display: grid; grid-template-columns: 78px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 78px; height: 78px; object-fit: contain; padding: 6px; border-radius: 12px; background: var(--paper); }
.cart-line__info > a { display: block; padding-right: 42px; font-size: 12px; font-weight: 800; line-height: 1.4; }
.cart-line__variant { display: flex; align-items: center; gap: 6px; width: max-content; max-width: 100%; margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 800; }
.cart-line__variant i { width: 11px; height: 11px; flex: 0 0 11px; border: 1px solid rgba(4,12,28,.22); border-radius: 50%; background: var(--cart-variant-color); }
.cart-line__info > .cart-line__variant--error { padding-right: 0; color: var(--danger); text-decoration: underline; }
.cart-line__info > strong { display: block; margin: 6px 0 8px; color: var(--blue); font-size: 12px; }
.quantity { width: 98px; height: 32px; display: grid; grid-template-columns: 30px 1fr 30px; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.quantity button { display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.quantity svg { width: 13px; height: 13px; }
.quantity span { text-align: center; font-size: 11px; font-weight: 800; }
.cart-line__remove { position: absolute; top: 18px; right: 0; padding: 3px; border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 10px; text-decoration: underline; }
.cart-summary { position: sticky; bottom: 0; margin-top: auto; padding: 23px 25px 27px; border-top: 1px solid var(--line); background: white; box-shadow: 0 -14px 30px rgba(10,31,64,.06); }
.cart-summary > div { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 17px; }
.cart-summary p { margin: 0 0 17px; color: var(--muted); font-size: 11px; }
.cart-summary .text-button { width: 100%; margin-top: 8px; }
.toast-tray { position: fixed; z-index: 500; top: 22px; right: 22px; display: grid; gap: 9px; pointer-events: none; }
.toast { max-width: 350px; padding: 14px 18px; transform: translateY(-12px); border-radius: 12px; background: var(--ink); box-shadow: var(--shadow-lg); color: #fff; opacity: 0; font-size: 13px; font-weight: 700; transition: opacity .22s, transform .22s; }
.toast--error { background: var(--danger); }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.whatsapp-float { position: fixed; z-index: 70; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 16px; border-radius: 999px; background: #21c568; box-shadow: 0 12px 35px rgba(12,125,62,.27); color: #fff; font-size: 12px; font-weight: 800; }
.whatsapp-float b { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.13); }

/* Footer */
.site-footer { padding: 75px 0 23px; background: #040a16; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .8fr); gap: 65px; padding-bottom: 60px; }
.footer-grid h3 { margin-bottom: 20px; color: #8f9db1; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; margin-bottom: 10px; color: #c2cddd; font-size: 13px; }
.footer-grid a:hover { color: var(--cyan); }
.footer-brand img { width: 158px; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 330px; margin: 0; color: #8f9db1; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: #78869c; font-size: 11px; }

/* Admin */
.admin-page { min-height: 100vh; background: var(--paper); }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 25px; }
.admin-login__card { width: min(450px,100%); padding: 38px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.admin-login__card img { width: 145px; margin-bottom: 33px; }
.admin-login__card h1 { margin-bottom: 8px; font-size: 2.4rem; }
.admin-login__card p { margin: 0 0 25px; color: var(--muted); font-size: 13px; }
.admin-login__card .field { margin-bottom: 15px; }
.admin-shell { display: grid; grid-template-columns: 245px 1fr; min-height: 100vh; }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 28px 22px; background: var(--ink); color: #fff; }
.admin-sidebar img { width: 145px; margin: 0 10px 42px; filter: brightness(0) invert(1); }
.admin-nav { display: grid; gap: 6px; }
.admin-nav button, .admin-nav__link { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 14px; border: 0; border-radius: 10px; background: transparent; color: #aebcd1; cursor: pointer; text-align: left; font-size: 13px; font-weight: 700; text-decoration: none; }
.admin-nav button:hover, .admin-nav button.is-active, .admin-nav__link:hover { background: rgba(255,255,255,.1); color: #fff; }
.admin-nav__link { border: 1px solid rgba(255,255,255,.14); }
.admin-sidebar__bottom { position: absolute; right: 22px; bottom: 25px; left: 22px; }
.admin-logout { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; cursor: pointer; font-size: 12px; font-weight: 800; }
.admin-logout:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.12); }
.admin-content { min-width: 0; padding: 38px; }
.admin-head { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 28px; }
.admin-head h1 { font-size: 2.8rem; }
.admin-head p { margin: 6px 0 0; color: var(--muted); }
.admin-head__actions { display: grid; grid-template-columns: minmax(225px,290px) repeat(3,auto); align-items: end; gap: 10px; }
.admin-head__actions .field { min-width: 0; }
.admin-add-product { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 16px; border: 1px solid var(--line-dark); border-radius: 12px; background: #fff; color: var(--ink); cursor: pointer; white-space: nowrap; font-size: 12px; font-weight: 800; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.admin-add-product:hover { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-dark); }
.admin-add-product__icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: var(--blue); color: #fff; font-size: 18px; font-weight: 500; line-height: 1; }
.admin-import-products { position: relative; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 9px 16px; border: 1px solid #9fc1ff; border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark); cursor: pointer; white-space: nowrap; font-size: 12px; font-weight: 800; transition: border-color .2s ease, background .2s ease, opacity .2s ease; }
.admin-import-products:hover { border-color: var(--blue); background: #dceaff; }
.admin-import-products__icon { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 8px; background: #fff; color: var(--blue); font-size: 18px; line-height: 1; }
.admin-import-products input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.admin-import-products.is-busy { cursor: wait; opacity: .6; }
.admin-panel { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.admin-table-wrap { overflow: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-table th { padding: 14px 16px; background: #f8fafd; color: var(--muted); text-align: left; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.admin-table td { padding: 13px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:hover td { background: #fbfcfe; }
.admin-table img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; background: var(--paper); }
.status-pill { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: 10px; font-weight: 800; }
.admin-edit { padding: 7px 11px; border: 1px solid var(--line-dark); border-radius: 8px; background: #fff; cursor: pointer; font-size: 11px; font-weight: 800; }
.admin-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 25px; background: rgba(4,12,28,.55); }
.admin-modal__card { width: min(980px,100%); max-height: calc(100vh - 50px); overflow: auto; padding: 31px; border-radius: 20px; background: #fff; box-shadow: var(--shadow-lg); }
.admin-modal__head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 25px; }
.admin-photo-manager { margin-top: 5px; padding-top: 24px; border-top: 1px solid var(--line); }
.admin-photo-manager__head { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.admin-photo-manager__head h3 { margin: 0 0 5px; font-size: 1rem; }
.admin-photo-manager__head p { margin: 0; color: var(--muted); font-size: 11px; }
.admin-photo-manager__head > span { padding: 5px 9px; border-radius: 999px; background: var(--blue-soft); color: var(--blue-dark); font-size: 10px; font-weight: 800; }
.admin-photo-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; margin-bottom: 14px; }
.admin-photo-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.admin-photo-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper); }
.admin-photo-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.admin-photo-card__media > span { position: absolute; top: 8px; left: 8px; padding: 5px 8px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; font-weight: 800; }
.admin-photo-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 9px; }
.admin-photo-card__actions button, .admin-photo-file { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 6px 8px; border: 1px solid var(--line-dark); border-radius: 7px; background: #fff; color: var(--ink); cursor: pointer; font: inherit; font-size: 9px; font-weight: 800; }
.admin-photo-card__actions button:hover, .admin-photo-file:hover { border-color: var(--blue); color: var(--blue-dark); }
.admin-photo-card__actions button:disabled { cursor: default; opacity: .35; }
.admin-photo-order { display: inline-flex; gap: 4px; }
.admin-photo-order button { min-width: 30px; padding-inline: 5px; font-size: 13px; }
.admin-photo-file input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.admin-photo-card__actions .admin-photo-delete { border-color: #f1c5c9; color: #a4202c; }
.admin-photo-empty { margin-bottom: 14px; padding: 24px; border: 1px dashed var(--line-dark); border-radius: 12px; color: var(--muted); text-align: center; font-size: 12px; }
.admin-upload-zone { display: grid; place-items: center; min-height: 92px; padding: 18px; border: 1px dashed var(--blue); border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark); cursor: pointer; text-align: center; }
.admin-upload-zone b { font-size: 12px; }
.admin-upload-zone span { margin-top: 4px; color: var(--muted); font-size: 10px; }
.admin-upload-zone input { width: min(410px,100%); margin-top: 10px; font-size: 11px; }
.admin-variant-manager { margin-top: 5px; padding-top: 24px; border-top: 1px solid var(--line); }
.admin-variant-manager__head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.admin-variant-manager__head h3 { margin: 0 0 5px; font-size: 1rem; }
.admin-variant-manager__head p { margin: 0; color: var(--muted); font-size: 11px; }
.admin-variant-manager__head button { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid var(--blue); border-radius: 10px; background: var(--blue-soft); color: var(--blue-dark); cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; }
.admin-variant-manager__head button span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; background: var(--blue); color: #fff; font-size: 16px; line-height: 1; }
.admin-variant-list { display: grid; gap: 12px; }
.admin-variant-row { overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #f9fbfe; }
.admin-variant-row__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 11px 13px; border-bottom: 1px solid var(--line); background: #fff; }
.admin-variant-row__head > div { display: flex; align-items: center; gap: 9px; }
.admin-variant-row__head strong { font-size: 11px; }
.admin-variant-row__head button { padding: 5px 7px; border: 0; background: transparent; color: var(--danger); cursor: pointer; font: inherit; font-size: 9px; font-weight: 800; text-decoration: underline; }
.admin-variant-preview { width: 19px; height: 19px; border: 2px solid #fff; border-radius: 50%; background: var(--variant-admin-color); box-shadow: 0 0 0 1px rgba(4,12,28,.2); }
.admin-variant-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; padding: 14px; }
.admin-variant-grid .field label { font-size: 9px; }
.admin-variant-grid input[type="color"] { height: 46px; padding: 4px; cursor: pointer; }
.admin-variant-active label { min-height: 46px; padding: 8px 12px; }
.admin-variant-image { grid-column: span 2; display: grid; grid-template-columns: 72px 1fr; grid-template-rows: auto auto auto; column-gap: 12px; align-items: center; padding: 10px; border: 1px dashed var(--line-dark); border-radius: 11px; background: #fff; cursor: pointer; }
.admin-variant-image__preview { grid-row: 1 / 4; width: 72px; height: 72px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: var(--paper); color: var(--muted); text-align: center; font-size: 9px; }
.admin-variant-image__preview img { width: 100%; height: 100%; object-fit: contain; }
.admin-variant-image b { font-size: 10px; }
.admin-variant-image small { color: var(--muted); font-size: 9px; line-height: 1.4; }
.admin-variant-image input { max-width: 100%; font-size: 9px; }
.admin-variant-empty { margin: 0; padding: 19px; border: 1px dashed var(--line-dark); border-radius: 12px; color: var(--muted); text-align: center; font-size: 11px; }
.admin-product-actions { display: flex; align-items: end; justify-content: space-between; gap: 22px; margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--line); }
.admin-product-actions > div { display: flex; align-items: center; justify-content: end; gap: 15px; }
.admin-product-actions .form-note { max-width: 310px; margin: 0; text-align: right; }
.admin-delete-product { min-height: 43px; padding: 10px 14px; border: 1px solid #e8aeb4; border-radius: 10px; background: #fff4f5; color: #a4202c; cursor: pointer; font: inherit; font-size: 11px; font-weight: 800; }
.admin-delete-product:hover { border-color: var(--danger); background: #ffe5e8; }
.admin-delete-product:disabled { cursor: wait; opacity: .55; }

@media (max-width: 1120px) {
  .header-contact { display: none; }
  .category-card { min-height: 510px; }
  .catalog-grid, .product-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-card:nth-child(4), .process-card:nth-child(5) { min-height: 0; }
  .technology-logo { min-height: 226px; flex-basis: 320px; }
  .admin-head { align-items: stretch; flex-direction: column; }
  .admin-head__actions { grid-template-columns: minmax(210px,1fr) auto auto; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 34px, var(--container)); }
  .section { padding: 78px 0; }
  .announcement__inner span:nth-child(2), .announcement__inner span:nth-child(3) { display: none; }
  .site-header__inner { height: 69px; }
  .main-nav { display: none; }
  .menu-button { display: grid; }
  .cart-button span { display: none; }
  .mobile-nav { position: absolute; top: 69px; right: 0; left: 0; display: grid; max-height: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: #fff; opacity: 0; transition: max-height .3s, opacity .2s; }
  .mobile-nav.is-open { max-height: 360px; padding: 10px 17px 19px; opacity: 1; }
  .mobile-nav a { padding: 13px 9px; border-bottom: 1px solid var(--line); font-weight: 700; }
  .home-hero { min-height: 680px; align-items: end; }
  .home-hero__image { width: 100%; }
  .home-hero::before { background: linear-gradient(0deg, rgba(232,241,255,.99) 0%, rgba(232,241,255,.95) 53%, rgba(232,241,255,.1) 100%); }
  .home-hero__content { padding: 260px 0 60px; }
  .brand-strip__inner { min-height: 0; grid-template-columns: 1fr; gap: 10px; padding: 20px 0; }
  .brand-strip__label { text-align: center; }
  .brand-strip__viewport { width: 100%; padding-block: 6px; }
  .brand-strip__logo { width: 158px; height: 70px; flex-basis: 158px; padding: 12px 16px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 420px; }
  .split-feature, .support-grid, .form-shell, .faq-layout, .inner-hero__grid, .product-detail__grid, .contact-hero__grid, .checkout-layout { grid-template-columns: 1fr; }
  .split-feature__media { min-height: 420px; }
  .support-grid { gap: 42px; }
  .form-shell__intro { min-height: 350px; }
  .faq-layout { gap: 30px; }
  .faq-intro { position: static; }
  .catalog-tools { top: 82px; }
  .product-detail__grid { gap: 35px; }
  .product-detail__media { position: static; }
  .process-head { grid-template-columns: 1fr; gap: 20px; }
  .contact-hero__grid { gap: 24px; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -35px; }
  .checkout-summary { position: static; order: -1; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2,1fr); gap: 42px; }
  .footer-grid > div:last-child { grid-column: 2; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; display: flex; align-items: center; gap: 20px; padding: 16px 20px; }
  .admin-sidebar img { width: 125px; margin: 0 auto 0 0; }
  .admin-nav { display: flex; }
  .admin-sidebar__bottom { position: static; }
  .admin-content { padding: 28px 20px; }
  .admin-photo-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .admin-variant-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 26px, var(--container)); }
  .section { padding: 64px 0; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading p { margin-top: 15px; }
  h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  h2 { font-size: clamp(2.3rem, 12vw, 3.7rem); }
  .home-hero { min-height: 660px; }
  .home-hero__content { padding: 245px 0 44px; }
  .home-hero .lead { margin: 19px 0 25px; font-size: .94rem; line-height: 1.65; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-proof { display: grid; gap: 8px; margin-top: 25px; }
  .brand-strip__inner { padding: 18px 0; }
  .brand-strip__label { font-size: 10px; }
  .brand-strip__logo { width: 148px; height: 66px; flex-basis: 148px; padding: 10px 14px; border-radius: 14px; }
  .category-card { min-height: 390px; }
  .category-card__content { padding: 26px; }
  .category-card p { min-height: 0; }
  .product-rail, .catalog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .product-card__body { min-height: 185px; padding: 13px; }
  .product-card__media img { padding: 12px; }
  .product-card__badge { top: 8px; left: 8px; max-width: calc(100% - 16px); padding: 5px 7px; font-size: 8px; }
  .product-card h3 { font-size: .9rem; }
  .product-card__footer strong { font-size: .92rem; }
  .product-card__footer .icon-button { width: 35px; height: 35px; }
  .split-feature { border-radius: 24px; }
  .split-feature__media { min-height: 310px; }
  .split-feature__content { padding: 34px 25px 40px; }
  .support-points { grid-template-columns: 1fr; }
  .form-grid, .field-row { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-shell__intro { min-height: 300px; padding: 35px 25px; }
  .form-shell__form { padding: 31px 22px; }
  .form-actions { display: grid; }
  .inner-hero { padding: 64px 0 45px; }
  .inner-hero__stats { flex-wrap: wrap; }
  .catalog { padding-top: 28px; }
  .catalog-tools { position: static; grid-template-columns: 1fr; gap: 9px; }
  .catalog-sort { width: 100%; }
  .catalog-filter-stack { gap: 10px; }
  .catalog-filter-row { grid-template-columns: 1fr; gap: 3px; }
  .catalog-filter-label { padding-top: 0; }
  .catalog-chips { flex-wrap: nowrap; padding-bottom: 6px; overflow-x: auto; scrollbar-width: none; }
  .filter-chip { flex: 0 0 auto; }
  .product-detail { padding-top: 25px; }
  .product-detail__media img { padding: 22px; }
  .product-detail__content h1 { font-size: 2.45rem; }
  .product-buy { grid-template-columns: 1fr; }
  .product-benefits { grid-template-columns: 1fr; }
  .production-hero { min-height: 670px; }
  .production-hero__content { padding: 62px 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card:nth-child(4), .process-card:nth-child(5) { min-height: 0; }
  .technology-logo { min-height: 205px; flex-basis: min(78vw, 285px); border-radius: 18px; }
  .production-cta { min-height: 480px; }
  .contact-hero { padding: 68px 0 88px; }
  .choice-grid { grid-template-columns: 1fr; }
  .checkout-layout { padding-top: 25px; }
  .checkout-card, .checkout-summary { padding: 23px 19px; }
  .checkout-header__inner a:last-child { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; gap: 8px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 7px; }
  .toast-tray { right: 13px; left: 13px; }
  .toast { max-width: none; }
  .admin-nav { width: 100%; overflow-x: auto; }
  .admin-nav button, .admin-nav__link { flex: 0 0 auto; }
  .admin-sidebar { flex-wrap: wrap; }
  .admin-sidebar__bottom { margin-left: auto; }
  .admin-head { display: block; }
  .admin-head__actions { display: grid; grid-template-columns: 1fr; margin-top: 18px; }
  .admin-head__actions .field { min-width: 0; }
  .admin-add-product, .admin-import-products { width: 100%; }
  .admin-modal { padding: 10px; }
  .admin-modal__card { max-height: calc(100vh - 20px); padding: 22px 16px; }
  .admin-photo-grid { grid-template-columns: 1fr; }
  .admin-variant-manager__head, .admin-product-actions { align-items: stretch; flex-direction: column; }
  .admin-variant-manager__head button { justify-content: center; }
  .admin-variant-grid { grid-template-columns: 1fr; }
  .admin-variant-image { grid-column: auto; }
  .admin-product-actions > div { align-items: stretch; flex-direction: column; }
  .admin-product-actions .form-note { max-width: none; text-align: left; }
  .admin-delete-product { order: 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .brand-strip__viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: thin; }
  .brand-strip__track { animation: none !important; }
  .brand-strip__group[aria-hidden="true"] { display: none; }
}

/* Mobile experience */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .section-heading { align-items: start; }
  .admin-table { min-width: 720px; }
  .checkout-line > div, .cart-line__info, .product-card__body { min-width: 0; }
}

@media (max-width: 680px) {
  :root { --radius-lg: 24px; }
  html { scroll-padding-top: 105px; }
  body { font-size: 15px; overflow-wrap: break-word; }
  .container { width: calc(100% - 24px); }
  .section { padding: 54px 0; }
  .section--compact { padding: 48px 0; }
  h1, h2, h3 { overflow-wrap: anywhere; text-wrap: balance; }
  h1 { font-size: clamp(2.75rem, 13vw, 3.5rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .lead { font-size: .96rem; line-height: 1.65; }
  .button { min-height: 50px; padding-inline: 18px; }
  .section-heading > .button { width: 100%; margin-top: 20px; }
  .section-heading p { font-size: 13px; line-height: 1.65; }
  .eyebrow { max-width: 100%; font-size: 10px; letter-spacing: .12em; }

  .announcement__inner { min-height: 32px; font-size: 10px; text-align: center; }
  .site-header__inner { height: 64px; gap: 10px; }
  .brand img { width: 108px; }
  .header-actions { gap: 8px; }
  .cart-button, .menu-button { width: 42px; min-width: 42px; height: 42px; min-height: 42px; justify-content: center; padding: 0; }
  .mobile-nav { top: 64px; box-shadow: 0 18px 35px rgba(7,17,39,.13); }
  .mobile-nav.is-open { max-height: calc(100dvh - 96px); overflow-y: auto; padding: 8px 14px 18px; }
  .mobile-nav a { min-height: 49px; display: flex; align-items: center; padding: 11px 8px; }

  .home-hero { min-height: 625px; }
  .home-hero__image { object-position: 64% center; }
  .home-hero__content { padding: 215px 0 38px; }
  .home-hero h1 { font-size: clamp(2.8rem, 13.5vw, 3.65rem); }
  .home-hero .lead { max-width: 34rem; }
  .hero-actions .button { width: 100%; }
  .hero-proof { font-size: 12px; }

  .brand-strip__inner { padding: 16px 0; }
  .brand-strip__viewport { margin-inline: -12px; width: calc(100% + 24px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
  .brand-strip__logo { width: 144px; height: 64px; flex-basis: 144px; padding: 9px 13px; }
  .brand-strip__logo img { width: 116px; height: 38px; }
  .brand-strip__logo--compact img { width: 100px; height: 42px; }
  .brand-strip__logo--tall img { width: 84px; height: 46px; }
  .brand-strip__logo--square img { width: 66px; height: 46px; }
  .category-card { min-height: 370px; border-radius: 24px; }
  .category-card__content { padding: 24px; }
  .category-card h3 { font-size: 1.75rem; }
  .category-card__index { top: 18px; left: 20px; width: 40px; height: 40px; }

  .product-rail, .catalog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; }
  .product-card { border-radius: 15px; }
  .product-card__body { min-height: 176px; padding: 12px; }
  .product-card h3 { display: -webkit-box; overflow: hidden; font-size: .86rem; line-height: 1.28; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .product-card__footer { gap: 5px; padding-top: 14px; }
  .product-card__footer strong { font-size: .84rem; white-space: nowrap; }
  .product-card__footer .icon-button { width: 34px; min-width: 34px; height: 34px; }

  .split-feature__media { min-height: 0; aspect-ratio: 4 / 3; }
  .split-feature__content { padding: 31px 22px 35px; }
  .split-feature__content .button, .support-grid__content > .button { width: 100%; }
  .support-grid { gap: 30px; }
  .support-grid__image { border-radius: 22px; }
  .support-grid__image::before { inset: 12px; border-radius: 16px; }
  .support-point { padding: 15px; }

  .form-shell { border-radius: 22px; }
  .form-shell__intro { min-height: 0; padding: 31px 22px; }
  .form-shell__form { padding: 27px 18px; }
  .form-grid { gap: 15px; }
  .field input, .field select, .field textarea { min-height: 50px; font-size: 16px; }
  .field textarea { min-height: 115px; }
  .form-actions { gap: 12px; margin-top: 20px; }
  .form-actions .button { width: 100%; }
  .faq-item summary { padding: 21px 2px; font-size: 1rem; }
  .faq-item p { font-size: 13px; line-height: 1.65; }

  .inner-hero { padding: 52px 0 38px; }
  .inner-hero__grid { gap: 20px; }
  .inner-hero h1 { font-size: clamp(2.7rem, 13vw, 3.45rem); }
  .inner-hero__stats { gap: 7px; margin-top: 19px; }
  .inner-hero__stats span { padding: 8px 10px; font-size: 10px; }
  .catalog { padding: 24px 0 64px; }
  .catalog-tools { padding: 10px; border-radius: 14px; }
  .catalog-chips { margin-bottom: 20px; }
  .catalog-status { display: grid; justify-content: start; gap: 2px; font-size: 11px; }
  .catalog-pagination { flex-wrap: wrap; margin-top: 34px; }

  .breadcrumbs { margin-bottom: 20px; font-size: 10px; }
  .product-detail { padding: 24px 0 60px; }
  .product-detail__grid { gap: 25px; }
  .product-detail__media { border-radius: 22px; }
  .product-detail__media img { padding: 24px; }
  .product-detail__content h1 { margin-bottom: 13px; font-size: clamp(2rem, 10vw, 2.6rem); }
  .product-price { margin-top: 22px; }
  .product-variants { padding: 14px; }
  .product-variants__head { align-items: start; gap: 9px; }
  .product-variant-options { gap: 7px; }
  .product-variant-option { min-height: 44px; }
  .product-description { margin: 22px 0; padding-top: 21px; }
  .product-buy .button { width: 100%; }
  .related-products { padding: 54px 0; }

  .production-hero { min-height: 570px; }
  .production-hero img { object-position: 60% center; }
  .production-hero__content { padding: 55px 0; }
  .production-hero h1 { font-size: clamp(2.9rem, 14vw, 3.7rem); }
  .production-hero p { margin: 19px 0 25px; font-size: .94rem; line-height: 1.65; }
  .process-head { margin-bottom: 28px; }
  .process-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(82vw, 310px); gap: 12px; overflow-x: auto; padding: 0 2px 14px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .process-grid::-webkit-scrollbar { display: none; }
  .process-card { scroll-snap-align: start; }
  .production-cta { min-height: 430px; border-radius: 22px; }
  .production-cta::after { background: linear-gradient(90deg, rgba(5,16,37,.94), rgba(5,16,37,.63)); }
  .production-cta__content { padding: 31px 22px; }
  .production-cta__content .button { width: 100%; }

  .contact-hero { padding: 56px 0 72px; }
  .contact-hero h1 { font-size: clamp(2.65rem, 13vw, 3.4rem); }
  .contact-hero p { font-size: 13px; }
  .contact-hero .button { width: 100%; }
  .contact-cards { margin-top: -24px; gap: 10px; }
  .contact-card { padding: 22px; border-radius: 17px; }
  .contact-card a { overflow-wrap: anywhere; }

  .checkout-header { padding: 13px 0; }
  .checkout-header img { width: 116px; }
  .checkout-header__inner { gap: 14px; }
  .checkout-header__inner a:last-child { display: inline-flex; font-size: 11px; white-space: nowrap; }
  .checkout-layout { gap: 14px; padding: 22px 0 55px; }
  .checkout-summary { order: -1; padding: 22px 17px; border-radius: 17px; }
  .checkout-card { padding: 21px 16px; border-radius: 17px; }
  .checkout-card__head { margin-bottom: 20px; }
  .choice label { min-height: 84px; padding: 15px; }
  .quote-button { width: 100%; }
  .shipping-rate { align-items: start; padding: 13px; }
  .checkout-line { grid-template-columns: 48px minmax(0,1fr); gap: 10px; }
  .checkout-line img { width: 48px; height: 48px; }
  .checkout-line strong { grid-column: 2; justify-self: end; }
  .checkout-totals div { gap: 12px; }

  .status-page { align-items: start; padding: 24px 12px; }
  .status-card { padding: 27px 18px; border-radius: 22px; }
  .status-card h1 { font-size: 2.35rem; }
  .status-order { padding: 17px; }
  .status-order__line { gap: 10px; }
  .status-actions { display: grid; }
  .status-actions .button { width: 100%; }

  .cart-drawer { width: 100%; }
  .cart-drawer__head { padding: 18px 16px; }
  .cart-drawer__head h2 { font-size: 1.7rem; }
  .cart-lines { padding: 7px 14px; }
  .cart-line { grid-template-columns: 64px minmax(0,1fr); gap: 11px; }
  .cart-line img { width: 64px; height: 64px; }
  .cart-line__info > a { padding-right: 37px; }
  .cart-summary { padding: 18px 15px calc(19px + env(safe-area-inset-bottom)); }
  .toast-tray { top: 10px; }
  .whatsapp-float { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); }

  .site-footer { padding-top: 54px; }
  .footer-grid { padding-bottom: 38px; }
  .footer-grid a { overflow-wrap: anywhere; }
  .footer-bottom { font-size: 10px; }

  .admin-login { padding: 12px; }
  .admin-login__card { padding: 25px 19px; border-radius: 20px; }
  .admin-login__card h1 { font-size: 2.1rem; }
  .admin-sidebar { position: sticky; z-index: 90; top: 0; display: grid; grid-template-columns: auto minmax(0,1fr); gap: 9px; padding: 11px 12px; }
  .admin-sidebar img { width: 99px; margin: 0; }
  .admin-nav { min-width: 0; gap: 5px; }
  .admin-nav button, .admin-nav__link { min-height: 42px; padding: 10px 11px; }
  .admin-sidebar__bottom { grid-column: 1 / -1; width: 100%; margin: 0; }
  .admin-logout { min-height: 40px; }
  .admin-content { padding: 20px 12px 50px; }
  .admin-head { margin-bottom: 20px; }
  .admin-head h1 { font-size: 2.2rem; }
  .admin-head p { font-size: 12px; }
  .admin-panel { overflow: visible; border: 0; background: transparent; }
  .admin-table-wrap { overflow: visible; }
  .admin-table { min-width: 0; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td { display: block; width: 100%; }
  .admin-table thead { display: none; }
  .admin-table tbody { display: grid; gap: 11px; }
  .admin-table tr { overflow: hidden; padding: 11px 13px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 5px 18px rgba(15,39,76,.04); }
  .admin-table td { display: grid; grid-template-columns: 82px minmax(0,1fr); align-items: center; gap: 10px; padding: 7px 0; border: 0; }
  .admin-table td::before { color: var(--muted); content: attr(data-label); font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
  .admin-table td > * { min-width: 0; justify-self: end; text-align: right; overflow-wrap: anywhere; }
  .admin-table td[data-label="Imagen"] img { width: 58px; height: 58px; }
  .admin-table td[colspan] { display: block; padding: 18px 4px; text-align: center; }
  .admin-table td[colspan]::before { content: none; }
  .admin-edit { min-height: 42px; padding: 9px 13px; }
  .admin-modal { align-items: end; padding: 0; }
  .admin-modal__card { width: 100%; max-height: 94dvh; padding: 20px 15px calc(22px + env(safe-area-inset-bottom)); border-radius: 22px 22px 0 0; }
  .admin-modal__head { position: sticky; z-index: 5; top: -20px; align-items: start; margin: 0 -15px 20px; padding: 17px 15px 13px; border-bottom: 1px solid var(--line); background: #fff; }
  .admin-photo-manager__head { flex-direction: column; }
  .admin-photo-card__actions > button, .admin-photo-file { flex: 1 1 auto; }
  .admin-upload-zone { padding: 15px; }
  .admin-variant-row__head { align-items: start; }
  .admin-variant-image { grid-template-columns: 62px minmax(0,1fr); }
  .admin-variant-image__preview { width: 62px; height: 62px; }
  .admin-product-actions button, .admin-product-actions .button { width: 100%; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 20px); }
  .brand img { width: 96px; }
  .product-card__body { min-height: 170px; padding: 10px; }
  .product-card h3 { font-size: .8rem; }
  .product-card__footer strong { font-size: .78rem; }
  .checkout-header img { width: 105px; }
  .checkout-header__inner a:last-child { font-size: 10px; }
  .admin-sidebar { grid-template-columns: 1fr; }
  .admin-sidebar img { margin: 0 auto; }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover, .product-card:hover, .category-card:hover img, .icon-button:hover { transform: none; }
}
