/* ShiftBrace España — sitio moderno responsivo */

:root {
  --brand: #ff6b1a;
  --brand-dark: #e25400;
  --ink: #1a1a1a;
  --ink-2: #2c2c2c;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --bg-soft: #f6f6f4;
  --bg-dark: #111111;
  --line: #e6e6e3;
  --ok: #2d9a47;
  --danger: #d93025;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
  --shadow: 0 12px 32px rgba(0, 0, 0, .08);
  --container: 1200px;
  --font-sans: "Inter", "Helvetica Neue", Helvetica, Arial, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--font-sans); line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section--tight { padding: 36px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark a { color: #fff; }
.section--dark h2 { color: #fff; }

/* === Top bar === */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: .04em;
  text-align: center;
  padding: 8px 16px;
}
.topbar strong { color: var(--brand); }

/* === Header === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 96px; width: auto; }
.logo__text { font-weight: 900; font-size: 2rem; letter-spacing: .02em; }
.logo__text span { color: var(--brand); }
.footer .logo img { height: 84px !important; padding: 8px 18px !important; border-radius: 12px !important; }

.nav { display: flex; gap: 26px; }
.nav a { font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--brand); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: transparent; border: none; cursor: pointer;
  color: var(--ink); position: relative;
}
.icon-btn:hover { background: var(--bg-soft); color: var(--brand); }
.icon-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; line-height: 18px;
  padding: 0 5px; font-size: 11px; font-weight: 700;
  background: var(--brand); color: #fff;
  border-radius: 9px; text-align: center;
}
.cart-count[hidden] { display: none; }

.hamburger { display: none; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--brand); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  border: 2px solid var(--brand); cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  text-decoration: none;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--full { width: 100%; }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }

/* === Hero === */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  background: var(--ink); color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.7);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 640px; padding: 100px 0; }
.hero__eyebrow {
  display: inline-block; font-size: .85rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 18px;
}
.hero h1 { color: #fff; }
.hero p { font-size: 1.15rem; opacity: .9; max-width: 540px; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* === Trust bar === */
.trustbar {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  align-items: center;
}
.trustbar__item { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--brand); flex-shrink: 0; }
.trustbar__item strong { display: block; color: var(--brand); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }

/* === Section header === */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head__eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 10px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* === Product grid === */
.product-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.product-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.product-card__media {
  position: relative; aspect-ratio: 1/1;
  background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brand); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
}
.product-card__badge--green { background: var(--ok); }
.product-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex-grow: 1; }
.product-card__title { font-size: 1.05rem; font-weight: 700; margin: 0; color: var(--ink); }
.product-card__title a:hover { color: var(--brand); }
.product-card__cat { font-size: .78rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.product-card__price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 8px; }
.product-card__price-now { font-size: 1.25rem; font-weight: 800; color: var(--ink); }
.product-card__price-old { font-size: .95rem; text-decoration: line-through; color: var(--muted); }
.product-card__rating { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.product-card__rating .stars { color: #f5a623; }

/* === Banner block === */
.banner {
  position: relative; min-height: 360px;
  border-radius: var(--radius); overflow: hidden;
  background: var(--ink); color: #fff;
  display: flex; align-items: center;
}
.banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.65); }
.banner__content { position: relative; z-index: 2; padding: 60px 50px; max-width: 600px; }
.banner h2 { color: #fff; }
.banner p { opacity: .9; }

/* === Features (icon with text) === */
.features {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature { text-align: center; padding: 24px 18px; }
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 107, 26, .12);
  border-radius: 50%;
}
.feature__icon svg { width: 32px; height: 32px; color: var(--brand); }
.feature h3 { margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* === Reviews === */
.reviews {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
}
.review__stars { color: #f5a623; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-size: .97rem; }
.review__author { font-weight: 700; font-size: .9rem; }
.review__author span { color: var(--muted); font-weight: 400; }

/* === FAQ accordion === */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 0; margin-bottom: 14px;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-weight: 700; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; font-weight: 700; transition: transform .2s ease; }
.faq details[open] summary::after { content: "−"; }
.faq details > p,
.faq details > div { padding: 0 22px 18px; color: var(--muted); margin: 0; }

/* === Newsletter === */
.newsletter {
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius);
  padding: 60px 40px; text-align: center;
}
.newsletter h2 { color: #fff; margin-bottom: 8px; }
.newsletter p { opacity: .8; margin-bottom: 26px; }
.newsletter__form { max-width: 460px; margin: 0 auto; display: flex; gap: 10px; }
.newsletter input[type="email"] {
  flex-grow: 1; padding: 14px 18px; border-radius: 999px;
  border: none; font-size: .95rem; outline: none;
}

/* === Footer === */
.footer { background: #0d0d0d; color: #cfcfcf; padding: 60px 0 30px; font-size: .94rem; }
.footer a { color: #cfcfcf; }
.footer a:hover { color: var(--brand); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.footer h4 { color: #fff; font-size: .98rem; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer__bottom {
  border-top: 1px solid #222; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  color: #888; font-size: .85rem;
}
.footer__payments { display: flex; gap: 8px; align-items: center; }
.footer__payments span {
  background: #1c1c1c; color: #fff; font-size: .7rem;
  padding: 4px 8px; border-radius: 4px; font-weight: 700;
}

/* === Product page === */
.product-detail {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px;
  align-items: flex-start;
}
.product-detail__media { position: relative; }
.product-detail__media-main {
  aspect-ratio: 1/1; background: var(--bg-soft);
  border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-detail__media-main img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px;
}
.product-detail__thumbs button {
  aspect-ratio: 1/1; background: var(--bg-soft); border: 2px solid var(--line);
  border-radius: 10px; padding: 0; overflow: hidden; cursor: pointer;
}
.product-detail__thumbs button.is-active { border-color: var(--brand); }
.product-detail__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-detail__info h1 { margin-bottom: 12px; }
.product-detail__price { font-size: 2rem; font-weight: 800; color: var(--ink); display: flex; align-items: baseline; gap: 12px; margin: 12px 0 6px; }
.product-detail__price-old { font-size: 1.1rem; text-decoration: line-through; color: var(--muted); }
.product-detail__save {
  display: inline-block; background: var(--ok); color: #fff;
  padding: 4px 10px; border-radius: 999px; font-size: .78rem;
  font-weight: 700; letter-spacing: .04em; margin-bottom: 14px;
}
.product-detail__desc { color: var(--ink-2); font-size: 1.02rem; margin: 18px 0; }

.opt-group { margin: 22px 0; }
.opt-group__label { display: block; font-weight: 700; margin-bottom: 10px; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; }
.opt-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.opt-pill {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 56px; padding: 10px 16px;
  background: #fff; border: 2px solid var(--line);
  border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: .92rem;
}
.opt-pill input { position: absolute; opacity: 0; pointer-events: none; }
.opt-pill:hover { border-color: var(--ink); }
.opt-pill.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }

.qty-row { display: flex; gap: 14px; align-items: stretch; margin: 24px 0 12px; }
.qty-input {
  display: flex; align-items: center;
  border: 2px solid var(--line); border-radius: 999px; padding: 4px 6px;
}
.qty-input button {
  width: 38px; height: 38px; border: none; background: transparent;
  font-size: 1.2rem; cursor: pointer; color: var(--ink);
}
.qty-input input {
  width: 44px; text-align: center; border: none; outline: none;
  font-size: 1rem; font-weight: 700; background: transparent;
}

.product-detail__features { margin: 30px 0; padding: 24px; background: var(--bg-soft); border-radius: var(--radius); }
.product-detail__features ul { list-style: none; padding: 0; margin: 0; }
.product-detail__features li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 6px 0; font-size: .96rem;
}
.product-detail__features li::before {
  content: "✓"; color: var(--brand); font-weight: 700; flex-shrink: 0; font-size: 1.1rem;
}

.product-tabs { margin-top: 60px; }
.product-tabs__nav { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.product-tabs__nav button {
  background: transparent; border: none; padding: 14px 20px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -1px; color: var(--muted);
}
.product-tabs__nav button.is-active { color: var(--ink); border-bottom-color: var(--brand); }
.product-tabs__panel { display: none; padding: 30px 0; }
.product-tabs__panel.is-active { display: block; }
.product-tabs__panel table { width: 100%; border-collapse: collapse; }
.product-tabs__panel th, .product-tabs__panel td {
  border-bottom: 1px solid var(--line); padding: 12px 14px; text-align: left; font-size: .94rem;
}
.product-tabs__panel th { background: var(--bg-soft); font-weight: 700; }

/* === Cart === */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 36px; align-items: flex-start; }
.cart-items { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.cart-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 18px;
  padding: 18px; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-item:last-child { border-bottom: none; }
.cart-item__media { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: var(--bg-soft); }
.cart-item__title { font-weight: 700; margin: 0 0 4px; }
.cart-item__meta { color: var(--muted); font-size: .85rem; }
.cart-item__price { font-weight: 800; margin-top: 6px; }
.cart-item__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-item__remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .85rem; }
.cart-item__remove:hover { color: var(--danger); }

.cart-summary {
  background: var(--bg-soft); border-radius: var(--radius);
  padding: 28px; position: sticky; top: 100px;
}
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 16px; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .96rem; }
.cart-summary__total { font-size: 1.2rem; font-weight: 800; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 8px; }
.cart-empty { text-align: center; padding: 80px 20px; }

/* === Checkout === */
.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: flex-start; }
.checkout-form fieldset { border: none; padding: 0; margin: 0 0 32px; }
.checkout-form legend {
  font-size: 1.15rem; font-weight: 800; padding: 0; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.checkout-form legend span.step-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--brand);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: .92rem; font-weight: 800;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); }
.field--error input, .field--error select { border-color: var(--danger); }
.field__hint { font-size: .8rem; color: var(--muted); }
.field__error { font-size: .8rem; color: var(--danger); display: none; }
.field--error .field__error { display: block; }

.payment-method {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.payment-method:hover { border-color: var(--ink); }
.payment-method input[type="radio"] {
  grid-column: 1; grid-row: 1 / span 2;
  margin: 0; width: 18px; height: 18px;
  accent-color: var(--brand);
  align-self: center;
}
.payment-method > strong { grid-column: 2; grid-row: 1; font-weight: 700; align-self: end; line-height: 1.2; }
.payment-method > span { grid-column: 2; grid-row: 2; color: var(--muted); font-size: .88rem; align-self: start; line-height: 1.3; }
.payment-method.is-active { border-color: var(--brand); background: rgba(255, 107, 26, .04); }
.payment-method__details {
  display: none;
  grid-column: 1 / -1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.payment-method.is-active .payment-method__details { display: block; }

.order-summary { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.order-summary__item {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.order-summary__item:last-of-type { border-bottom: 0; }
.order-summary__media { aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; background: #fff; position: relative; }
.order-summary__media span.qbadge {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; line-height: 22px; text-align: center;
  background: var(--ink); color: #fff; border-radius: 50%;
  font-size: .75rem; font-weight: 700;
}
.order-summary__name { font-size: .92rem; }
.order-summary__price { font-weight: 700; font-size: .96rem; }
.order-summary__totals { margin-top: 16px; }
.order-summary__totals .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .94rem; }
.order-summary__totals .row--total { font-size: 1.2rem; font-weight: 800; border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px; }

/* === Confirmation === */
.confirm { max-width: 720px; margin: 0 auto; text-align: center; padding: 80px 20px; }
.confirm__icon {
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(45, 154, 71, .14); color: var(--ok);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.confirm__icon svg { width: 48px; height: 48px; }
.confirm__order-num { background: var(--bg-soft); padding: 18px; border-radius: 12px; margin: 20px 0; font-weight: 700; font-size: 1.1rem; }

/* === Page header === */
.page-header { background: var(--bg-soft); padding: 50px 0; text-align: center; }
.page-header .breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.page-header .breadcrumb a { color: var(--muted); }
.page-header .breadcrumb a:hover { color: var(--brand); }

.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin-top: 32px; }
.prose h3 { margin-top: 24px; }
.prose p, .prose li { color: var(--ink-2); font-size: 1.02rem; }
.prose ul { padding-left: 22px; }

/* === Toast === */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow); z-index: 1000;
  transform: translateY(120%); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  font-weight: 600; font-size: .94rem;
  display: flex; align-items: center; gap: 10px;
}
.toast.is-show { transform: translateY(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: var(--brand); }

/* === Drawer (mobile menu) === */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, .4);
  z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(360px, 90vw); background: #fff; z-index: 101;
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin: 0; }
.drawer__close { background: transparent; border: none; cursor: pointer; font-size: 1.6rem; color: var(--muted); }
.drawer__body { flex-grow: 1; overflow-y: auto; padding: 18px 22px; }
.drawer__body a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; }

/* === Responsive === */
@media (max-width: 990px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .order-summary { position: static; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .logo img { height: 72px; }
  .footer .logo img { height: 64px !important; }
  .section { padding: 48px 0; }
  .hero { min-height: 480px; }
  .hero__content { padding: 70px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .banner__content { padding: 40px 26px; }
  .newsletter { padding: 40px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter input[type="email"] { width: 100%; }
  .field--row { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__actions { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; }
}
