/* Don Licencia — boceto web. Estilos basados en el manual de marca. */

:root {
  --navy: #071B3C;
  --navy-2: #0D2C66;
  --navy-3: #0a2350;
  --gold: #D9A441;
  --gold-soft: #e8c074;
  --white: #FFFFFF;
  --ink: #111827;
  --surface: #F7F9FC;
  --line: rgba(217, 164, 65, .22);
  --muted: #9fb0c9;

  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 16px;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 800; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: 12px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 24px rgba(217,164,65,.28); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.16); }
.btn-wa:hover { color: #25D366; border-color: #25D366; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,27,60,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; letter-spacing: 1px; display: flex; flex-direction: column; line-height: 1.1; }
.brand-name small { font-weight: 500; font-size: 10px; letter-spacing: 2px; color: var(--gold); font-family: var(--font-body); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-size: 15px; color: #c9d4e6; font-weight: 500; }
.nav a:hover { color: var(--gold); }
.header-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 75% -10%, rgba(13,44,102,.7), transparent 60%),
    radial-gradient(600px 400px at 90% 30%, rgba(217,164,65,.10), transparent 60%),
    var(--navy);
  padding: 88px 0 72px;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 18px; }
.grad { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: #cdd8ea; max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; color: #b9c6dc; font-size: 14px; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.hero-art { position: relative; display: grid; place-items: center; }
.hero-logo { width: min(340px, 78%); border-radius: 50%; box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 6px rgba(255,255,255,.04), 0 0 0 7px rgba(217,164,65,.45); }
.hero-glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(217,164,65,.22), transparent 65%); filter: blur(10px); }

/* ---------- Trust strip ---------- */
.strip { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 26px 24px; }
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-item .ic { width: 34px; height: 34px; flex: none; }
.strip-item strong { display: block; font-family: var(--font-head); font-size: 15px; }
.strip-item span { font-size: 13px; color: var(--muted); }
.ic, .tick, .card-icon svg, .proof-key, .btn-wa svg { fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-wa svg { stroke: none; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-dark { background: var(--navy-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head .muted { margin-top: 10px; }

/* ---------- Product cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  position: relative; background: linear-gradient(180deg, rgba(13,44,102,.55), rgba(7,27,60,.6));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(217,164,65,.55); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.card-badge { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 11px; padding: 4px 10px; border-radius: 999px; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(217,164,65,.10); border: 1px solid var(--line); margin-bottom: 18px; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card-desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.price .amount { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--white); }
.price .per { font-size: 13px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: rgba(7,27,60,.45); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; text-align: center; }
.step-n { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 20px; margin-bottom: 16px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }

/* ---------- Por qué (two-col) ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.two-col h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 6px 0 16px; }
.feature-list { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #dbe4f1; }
.tick { width: 22px; height: 22px; flex: none; }
.proof-card { background: linear-gradient(180deg, var(--navy-2), var(--navy)); border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.proof-head { display: flex; align-items: center; gap: 12px; color: var(--gold); font-family: var(--font-head); font-weight: 700; }
.proof-key { width: 34px; height: 34px; }
.proof-prod { font-family: var(--font-head); font-weight: 800; font-size: 24px; margin: 16px 0 6px; }
.proof-status { display: flex; align-items: center; gap: 8px; color: #25D366; font-weight: 600; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #25D366; box-shadow: 0 0 10px #25D366; }
.proof-divider { height: 1px; background: var(--line); margin: 18px 0; }
.proof-note { font-size: 14px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(90deg, var(--gold), var(--gold-soft)); color: var(--navy); }
.cta-inner { text-align: center; padding: 56px 24px; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); }
.cta-band p { margin: 10px 0 24px; font-weight: 500; }

/* ---------- Footer ---------- */
.footer { background: #050f24; padding-top: 56px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 14px; }
.footer-col h4 { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; color: #c2cee0; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Hero centrado ---------- */
.hero-centered { padding: 72px 0 64px; text-align: center; }
.hero-c-inner { display: flex; flex-direction: column; align-items: center; }
.hero-medallion { position: relative; display: grid; place-items: center; margin-bottom: 28px; }
.hero-centered .hero-logo { width: 168px; }
.hero-centered .hero-glow { width: 240px; height: 240px; }
.lead-center { margin-left: auto; margin-right: auto; }
.hero-actions-center { justify-content: center; }
.hero-trust-center { justify-content: center; }

/* ---------- Categorías ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.amount-consult { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--gold); }
.cat-card {
  background: linear-gradient(180deg, rgba(13,44,102,.5), rgba(7,27,60,.6));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s ease, border-color .2s, box-shadow .25s;
}
.cat-card:hover { transform: translateY(-6px); border-color: rgba(217,164,65,.55); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.cat-card h3 { font-size: 19px; margin-top: 6px; }
.cat-link { margin-top: auto; padding-top: 12px; color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Page hero (productos) ---------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 80% -20%, rgba(13,44,102,.7), transparent 60%),
    var(--navy);
  padding: 56px 0 40px; border-bottom: 1px solid var(--line);
}
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--gold); }
.crumbs span { margin: 0 6px; opacity: .6; }
.page-hero h1 { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; }
.page-hero .lead { max-width: 620px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: #c9d4e6; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: all .18s;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }
.chip.is-active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.nav a.active { color: var(--gold); }
.section-pad { padding-top: 56px; }
.cards-catalog { grid-template-columns: repeat(4, 1fr); }
.card-cat { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; display: block; }
.catalog-note { text-align: center; margin-top: 36px; color: var(--muted); }
.catalog-note a { color: var(--gold); font-weight: 600; }

/* ---------- Cart button + badge ---------- */
.cart-btn { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); color: #fff; cursor: pointer; transition: border-color .18s, color .18s; }
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-btn svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; display: none; place-items: center; background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 11px; border-radius: 999px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(3,10,24,.6); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 90; }
.cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 92vw; background: var(--navy); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .28s ease; z-index: 95; display: flex; flex-direction: column; box-shadow: -20px 0 50px rgba(0,0,0,.4); }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
body.drawer-open .cart-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-size: 17px; }
.drawer-close { background: none; border: none; color: #fff; font-size: 28px; line-height: 1; cursor: pointer; }
.drawer-close:hover { color: var(--gold); }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 22px; }
.drawer-foot { padding: 18px 22px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.cart-item { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.ci-info strong { display: block; font-family: var(--font-head); font-size: 14px; }
.ci-info span { font-size: 13px; color: var(--muted); }
.ci-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); color: #fff; cursor: pointer; font-size: 16px; line-height: 1; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.ci-remove { background: none; border: none; color: var(--muted); font-size: 20px; cursor: pointer; }
.ci-remove:hover { color: #ff6b6b; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-head); }
.cart-total strong { font-size: 22px; }
.cart-empty { text-align: center; padding: 48px 10px; display: grid; gap: 16px; place-items: center; color: var(--muted); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); background: var(--navy-2); border: 1px solid var(--gold); color: #fff; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; box-shadow: 0 12px 30px rgba(0,0,0,.45); opacity: 0; visibility: hidden; transition: all .25s; z-index: 100; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr .9fr; gap: 32px; align-items: start; }
.block-title { font-size: 20px; margin-bottom: 18px; }
.checkout-form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; font-weight: 600; color: #d6e0ef; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16); border-radius: 10px; padding: 13px 14px; color: #fff; font-family: var(--font-body); font-size: 15px; }
.field input:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: #6f80a0; }
.field-group-title { font-family: var(--font-head); font-size: 15px; margin-top: 8px; }
.pay-options { display: grid; gap: 10px; }
.pay-opt { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.pay-opt input { accent-color: var(--gold); width: 18px; height: 18px; }
.pay-card { flex: 1; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 12px 14px; transition: border-color .18s, background .18s; }
.pay-opt input:checked + .pay-card { border-color: var(--gold); background: rgba(217,164,65,.08); }
.pay-card strong { display: block; font-family: var(--font-head); font-size: 14px; }
.pay-card small { color: var(--muted); font-size: 13px; }
.checkout-legal { font-size: 13px; color: var(--muted); text-align: center; }
.summary-card { background: linear-gradient(180deg, var(--navy-2), var(--navy)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 92px; }
.summary-list { display: grid; gap: 10px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: #d6e0ef; }
.sum-row em { color: var(--muted); font-style: normal; }
.sum-total { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 6px; font-family: var(--font-head); font-size: 18px; color: #fff; }
.summary-perks { list-style: none; display: grid; gap: 10px; border-top: 1px solid var(--line); padding-top: 16px; }
.summary-perks li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.empty-state { text-align: center; padding: 60px 20px; display: grid; gap: 16px; place-items: center; }
.empty-state.success .success-check { width: 72px; height: 72px; border-radius: 50%; background: rgba(37,211,102,.12); border: 1px solid #25D366; display: grid; place-items: center; }
.success-check svg { width: 36px; height: 36px; fill: none; stroke: #25D366; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Listado: enlaces a ficha ---------- */
.card-title-link { color: inherit; }
.card-title-link:hover { color: var(--gold); }
.card-details-link { display: inline-block; color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.card-details-link:hover { text-decoration: underline; }

/* ---------- Página de producto ---------- */
.product-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: start; }
.pd-visual { position: relative; background: linear-gradient(180deg, var(--navy-2), var(--navy)); border: 1px solid var(--line); border-radius: 20px; aspect-ratio: 1; display: grid; place-items: center; }
.pd-iconwrap { width: 46%; }
.pd-iconwrap svg { width: 100%; height: auto; fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.pd-badge { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--navy); font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 12px; border-radius: 999px; }
.pd-info h1 { font-size: clamp(28px, 4vw, 40px); margin: 6px 0 10px; }
.pd-tagline { font-size: 18px; color: #cdd8ea; margin-bottom: 18px; }
.pd-price { margin-bottom: 22px; }
.pd-price .amount { font-size: 34px; }
.pd-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.pd-perks { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.pd-perks li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }

.pd-content { display: grid; grid-template-columns: 1.4fr .9fr; gap: 36px; margin-top: 56px; align-items: start; }
.pd-desc { color: #cdd8ea; margin-bottom: 24px; }
.pd-side { display: grid; gap: 18px; }
.side-card { background: rgba(7,27,60,.5); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.side-card h3 { font-size: 16px; margin-bottom: 14px; }
.includes-list { list-style: none; display: grid; gap: 10px; }
.includes-list li { position: relative; padding-left: 22px; font-size: 14px; color: #d6e0ef; }
.includes-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.specs { display: grid; gap: 0; }
.spec-row { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 14px; }
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--muted); }
.spec-row strong { text-align: right; }

.pd-faq { margin-top: 56px; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item h4 { font-size: 16px; margin-bottom: 6px; }

.pd-related { margin-top: 56px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { background: rgba(7,27,60,.5); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .2s, border-color .2s; }
.rel-card:hover { transform: translateY(-4px); border-color: rgba(217,164,65,.55); }
.rel-card h4 { font-size: 16px; margin: 12px 0 6px; }
.rel-price { color: var(--gold); font-family: var(--font-head); font-weight: 700; }
.rel-price em { color: var(--muted); font-style: normal; font-weight: 400; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav { display: none; }
  .hero-inner, .two-col { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-logo { width: 220px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .cards, .cards-catalog, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .pd-visual { aspect-ratio: 16/10; }
  .pd-content { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header-cta .btn-gold { display: none; }
  .cards, .cards-catalog, .cat-grid, .strip-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 14px; }
}
