:root {
    --bg: #050b14;
    --bg-soft: #0a1726;
    --panel: #0c1a2b;
    --panel-soft: #10263c;
    --text: #f4f8fc;
    --muted: #a5b7ca;
    --line: rgba(255, 255, 255, 0.08);
    --surface: #f6f7f9;
    --surface-warm: #fff7ef;
    --surface-text: #101820;
    --surface-muted: #5f6f7f;
    --accent: #ff7a1a;
    --accent-strong: #ffad4d;
    --accent-soft: #ffe1c2;
    --link-hover: var(--accent);
    --link-hover-aplium-green: #7fbf3f;
    --brand-blue: #113a5f;
    --success: #1d7b54;
    --danger: #c14f5f;
    --max: 1200px;
    --radius: 14px;
    --shadow: 0 14px 34px rgba(1, 8, 20, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 122, 26, 0.22), transparent 28%),
        radial-gradient(circle at 8% 12%, rgba(31, 125, 214, 0.14), transparent 28%),
        linear-gradient(180deg, #050b14 0%, #091827 100%);
    color: var(--text);
}

.liquid-glass {
    background: rgba(0, 0, 0, 0.4);
    background-blend-mode: luminosity;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: none;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.liquid-glass::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.4px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        rgba(255, 255, 255, 0.3) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease-in-out;
}

a:hover,
a:focus-visible {
    color: var(--link-hover);
}

a:not(.btn):not(.aplium-btn):not(.video-btn):not(.video-nav-cta):not(.aplium-nav-cta):not(.nav-cta):not(.quick-link):not(.store-family-card-premium):not(.search-result-card):focus-visible,
button.footer-cookie-settings:focus-visible {
    outline: 2px solid var(--accent-strong);
    outline-offset: 2px;
    border-radius: 6px;
}

a.btn:hover,
a.btn:focus-visible,
a.aplium-btn:hover,
a.aplium-btn:focus-visible,
a.aplium-nav-cta:hover,
a.aplium-nav-cta:focus-visible,
a.nav-cta:hover,
a.nav-cta:focus-visible,
a.store-family-card-premium:hover,
a.store-family-card-premium:focus-visible,
a.search-result-card:hover,
a.search-result-card:focus-visible,
a.quick-link:hover,
a.quick-link:focus-visible {
    color: inherit;
}

p,
li {
    line-height: 1.7;
}

.container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(20px);
    background: rgba(7, 17, 31, 0.82);
    border-bottom: 1px solid var(--line);
}

.home-immersive .site-header {
    display: none;
}

.video-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #000;
    color: #fff;
}

.video-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-hero-shell {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 3rem;
}

.video-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
}

.video-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.video-logo-image {
    display: block;
    width: clamp(10rem, 15vw, 13.5rem);
    height: auto;
}

.video-nav-links {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
}

.video-nav-links a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}

.video-nav-links a:hover {
    color: #d1d5db;
}

.video-nav-cta,
.video-btn-primary {
    background: #fff;
    color: #000;
}

.video-nav-cta {
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.video-nav-spacer {
    display: none;
}

.video-nav-cta:hover,
.video-nav-cta:focus-visible,
.video-btn-primary:hover,
.video-btn-primary:focus-visible {
    background: #f3f4f6;
    color: #000;
}

.video-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
}

.video-hero-grid {
    display: grid;
    gap: 2rem;
}

.video-copy-stack {
    max-width: 68rem;
}

.video-headline {
    margin: 0 0 1.5rem;
    max-width: 20ch;
    font-size: clamp(2.4rem, 5.2vw, 5.6rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.video-brand-row {
    margin: 0 0 1.15rem;
}

.video-ipecs-logo {
    display: block;
    width: clamp(14rem, 34vw, 26rem);
    height: auto;
    margin: 0;
}

.heading-line {
    display: block;
}

.heading-char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-18px);
    transition-property: opacity, transform;
    transition-duration: 500ms;
    transition-timing-function: ease;
}

.animated-heading.is-visible .heading-char {
    opacity: 1;
    transform: translateX(0);
}

.video-subheading {
    max-width: 42rem;
    color: #d1d5db;
    font-size: 0.97rem;
    line-height: 1.5;
    margin: 0 0 2rem;
}

.fade-in {
    opacity: 0;
    transition-property: opacity;
    transition-timing-function: ease;
    transition-duration: 1000ms;
}

.fade-in.is-visible {
    opacity: 1;
}

.video-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.85rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1.05rem;
}

.video-btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: transparent;
}

.video-btn-glass:hover {
    background: #fff;
    color: #000;
}

.video-tag-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.video-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    text-wrap: balance;
}

@media (max-width: 767px) {
    .video-navbar {
        flex-wrap: wrap;
        row-gap: 0.4rem;
    }

    .video-nav-links {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.55rem;
        font-size: 0.8rem;
        line-height: 1.1;
    }

    .video-nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 0;
        min-height: 1.5rem;
        padding: 0 0.15rem;
        text-align: center;
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .video-hero-shell {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .video-nav-spacer {
        display: block;
        width: 7rem; /* Reduced from 8.5rem */
        height: 2.5rem;
        flex: 0 0 8.5rem;
    }

    .video-subheading {
        font-size: 1.02rem;
    }

    .video-btn {
        font-size: 1.14rem;
    }

    .video-tag {
        font-size: 1.45rem;
    }
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem; /* More compact for responsive fit */
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo-frame {
    width: 10rem;
    height: 3.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-frame img,
.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    width: min(14rem, 100%);
    height: auto;
    margin: 0 0 1.1rem;
}

.footer-legal-name {
    margin: 0.35rem 0 1.25rem;
    color: rgba(244, 248, 252, 0.78);
    font-size: 0.92rem;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 0; /* Reduced padding: 1000px instead of 1120px for better fit */
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.45;
    padding-bottom: 0.15rem;
}

.footer-contact-label {
    color: rgba(244, 248, 252, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
}

.footer-contact-value {
    color: rgba(244, 248, 252, 0.9);
    text-decoration: none;
    word-break: normal;
    overflow-wrap: anywhere;
    transition: color 0.15s ease-in-out;
    max-width: 28rem;
}

.footer-contact-value-address {
    line-height: 1.6;
}

a.footer-contact-value:hover,
a.footer-contact-value:focus-visible {
    color: var(--accent);
}

.brand-copy small,
.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
    position: static;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item-has-menu {
    /* Keep hover active while moving cursor from trigger to mega menu. */
    position: static;
}

@media (min-width: 981px) {
    .nav-item-has-menu {
        margin-bottom: -1.55rem;
        padding-bottom: 1.55rem;
    }
}

.nav-item-has-menu > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-mega-menu {
    position: absolute;
    top: calc(100% - 0.15rem);
    left: 50%;
    z-index: 90;
    width: min(1040px, calc(100vw - 2rem));
    max-height: min(72vh, 34rem);
    overflow-y: auto;
    padding: 0.8rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(6, 16, 29, 0.99);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.52);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.nav-item-has-menu:hover .store-mega-menu,
.nav-item-has-menu:focus-within .store-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.store-mega-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
}

.store-mega-col {
    min-width: 0;
    padding: 0.55rem 0.6rem;
    border-radius: 0.5rem;
    background: rgba(15, 28, 45, 0.92);
}

.store-mega-col h3 {
    margin: 0 0 0.55rem;
    font-size: 0.88rem;
    line-height: 1.2;
    color: #f8fafc;
}

.store-mega-col h3 a {
    color: #f8fafc;
}

.store-mega-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.32rem;
}

.store-mega-col li a {
    color: #9fb2c8;
    display: block;
    font-size: 0.8rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
}

.store-mega-col li a:hover,
.store-mega-col li a:focus-visible {
    color: var(--accent-strong);
}

.nav-highlight {
    color: inherit;
    font-weight: inherit;
}

.nav-cta {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: var(--accent);
    color: #120903;
    font-weight: 700;
}

.flash-stack {
    padding-top: 1rem;
}

.flash {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 31, 49, 0.94);
    box-shadow: var(--shadow);
}

.flash-success {
    border-color: rgba(29, 123, 84, 0.55);
}

.hero,
.page-hero,
.section {
    padding: 4.5rem 0;
}

.simple-hero {
    padding: 4rem 0 3.5rem;
}

.hero-simple-inner {
    max-width: 820px;
}

.compact-section {
    padding: 3rem 0;
}

.page-hero {
    padding-bottom: 2.5rem;
}

.page-hero-with-visual {
    padding: 5rem 0;
}

.category-page-hero {
    padding-bottom: clamp(0.9rem, 2vw, 1.4rem);
}

.category-page-hero .lead {
    margin-bottom: 0;
}

.catalog-results-section {
    padding-top: clamp(0.6rem, 1.4vw, 1.1rem);
}

.catalog-results-section .store-results-bar {
    margin-top: 0.45rem;
}

.hero-grid,
.split-grid,
.footer-grid,
.detail-grid,
.form-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
}

.split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.align-start {
    align-items: start;
}

.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.category-hero-copy {
    min-width: 0;
}

.category-hero-visual {
    justify-self: end;
    width: min(100%, 480px);
    min-height: 360px;
    position: relative;
}

.manuals-hero-visual {
    display: grid;
    place-items: center;
    isolation: isolate;
}

.manuals-visual-orbit {
    position: absolute;
    inset: 8%;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 32%, rgba(255, 140, 0, 0.18), transparent 22%),
        radial-gradient(circle at 70% 68%, rgba(14, 165, 233, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    filter: blur(0.1px);
    transform: rotate(-8deg);
    z-index: -1;
}

.manuals-visual-stack {
    position: relative;
    width: min(82%, 360px);
    height: 300px;
}

.manuals-visual-sheet {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: space-between;
    padding: 1.35rem;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.96)),
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.08), transparent 30%);
    color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 54px rgba(2, 6, 23, 0.35);
}

.manuals-visual-sheet::before {
    content: "";
    position: absolute;
    inset: 4.5rem 1.35rem auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.18), transparent);
}

.manuals-visual-sheet span {
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.manuals-visual-sheet strong {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.04;
    max-width: 9ch;
}

.manuals-visual-sheet img {
    width: min(78%, 230px);
    align-self: center;
    justify-self: center;
    padding: 0.9rem 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #020617, #0b1726);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.manuals-visual-sheet-back {
    transform: translate(34px, -28px) rotate(8deg);
    opacity: 0.52;
}

.manuals-visual-sheet-mid {
    transform: translate(16px, -12px) rotate(3deg);
    opacity: 0.72;
}

.manuals-visual-sheet-front {
    transform: rotate(-3deg);
}

.manuals-visual-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.7rem;
}

.manuals-visual-meta span {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero h1,
.page-hero h1,
.section h1,
.section h2,
.section h3 {
    margin: 0.5rem 0 1rem;
    line-height: 1.08;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    max-width: 16ch;
}

.lead {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 68ch;
}

.cta-row,
.meta-chip-row,
.trust-bar,
.stack-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.cta-row {
    margin-top: 2rem;
}

.stack-actions {
    flex-direction: column;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    color: #120903;
    box-shadow: 0 16px 28px rgba(255, 122, 26, 0.22);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}

.btn-ghost {
    border-color: rgba(255, 122, 26, 0.44);
    color: #ffd5aa;
    background: transparent;
}

.text-link {
    color: #d96712;
    font-weight: 600;
}

.meta-chip {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #d6e2ef;
    font-size: 0.92rem;
}

.product-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.product-trust-strip span {
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 122, 26, 0.1);
    border: 1px solid rgba(255, 122, 26, 0.22);
    color: #ffd3a8;
    font-size: 0.9rem;
}

.hero-card,
.info-card,
.trust-card,
.placeholder-box,
.cta-panel,
.detail-card,
.empty-card {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-card,
.placeholder-box,
.cta-panel,
.detail-card,
.empty-card {
    background: linear-gradient(180deg, rgba(16, 38, 60, 0.94), rgba(7, 18, 31, 0.98));
    border-radius: var(--radius);
    padding: 2rem;
}

.hero-card-title,
.card-tag {
    color: var(--accent);
    font-weight: 600;
}

.price-panel {
    margin-top: 1.25rem;
    color: #ffd1a3;
}

.price-copy,
.status-copy {
    color: var(--surface-muted);
}

.helper-copy {
    color: var(--muted);
    font-size: 0.95rem;
}

.trust-bar {
    margin-top: 1.6rem;
    color: #dbe6f2;
    font-size: 0.9rem;
}

.section-alt {
    background:
        radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 28%),
        var(--surface);
    color: var(--surface-text);
}

.section-alt .btn-secondary {
    background: var(--surface-text);
    border-color: var(--surface-text);
    color: #fff;
}

.section-alt .btn-ghost {
    border-color: rgba(255, 122, 26, 0.42);
    color: #a84f0c;
}

.section-heading {
    max-width: 72ch;
    margin-bottom: 2rem;
}

.section-heading p,
.section-alt .lead,
.section-alt .feature-list,
.section-alt > .container > .rich-copy,
.section-alt .info-card p {
    color: var(--surface-muted);
}

/* placeholder-box, empty-card y detail-card tienen fondo oscuro propio:
   dentro de section-alt el texto sigue siendo claro para mantener contraste. */
.section-alt .placeholder-box,
.section-alt .placeholder-box p,
.section-alt .placeholder-box li,
.section-alt .placeholder-box strong,
.section-alt .empty-card,
.section-alt .empty-card p,
.section-alt .empty-card h2,
.section-alt .empty-card h3,
.section-alt .detail-card,
.section-alt .detail-card p,
.section-alt .detail-card li,
.section-alt .detail-card h2,
.section-alt .detail-card h3 {
    color: var(--text);
}

.section-alt .placeholder-box .helper-copy,
.section-alt .empty-card .helper-copy,
.section-alt .detail-card .helper-copy {
    color: var(--muted);
}

.card-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.25rem;
}

.product-results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}

.related-families-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1320px) {
    .product-results-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.trust-card {
    background: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    padding: 1.15rem;
    color: var(--surface-text);
}

.info-card h2,
.info-card h3,
.info-card h4,
.info-card p,
.info-card li,
.info-card a,
.trust-card h2,
.trust-card h3,
.trust-card h4,
.trust-card p,
.trust-card li,
.trust-card a {
    color: var(--surface-text);
}

.info-card .helper-copy,
.trust-card .helper-copy {
    color: var(--surface-muted);
}

.info-card .card-tag,
.trust-card .card-tag {
    color: var(--accent);
}

.info-card .text-link,
.trust-card .text-link {
    color: #a84f0c;
}

.promise-card,
.path-card {
    border: 1px solid rgba(255, 122, 26, 0.2);
    border-radius: var(--radius);
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        rgba(12, 26, 43, 0.82);
    box-shadow: var(--shadow);
}

.section-alt .path-card {
    background: #fff;
    border-color: rgba(16, 24, 32, 0.08);
}

.promise-card p,
.path-card p {
    color: var(--muted);
}

.section-alt .path-card p,
.section-alt .path-card h3 {
    color: var(--surface-text);
}

.path-number {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    background: var(--accent);
    color: #120903;
    font-weight: 800;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.9rem;
}

.quick-link {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(255, 122, 26, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 26, 0.55);
    box-shadow: 0 18px 36px rgba(10, 24, 38, 0.12);
}

.quick-link span {
    color: var(--surface-muted);
    font-size: 0.92rem;
}

.store-family-band {
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 122, 26, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f5 100%);
}

.store-family-hero {
    padding: clamp(2.1rem, 4vw, 3.25rem) 0 clamp(1rem, 2vw, 1.55rem);
}

.store-family-hero .container {
    display: flex;
}

.store-family-hero-copy {
    max-width: min(64rem, 100%);
    padding: clamp(1.1rem, 2.2vw, 1.75rem) clamp(1.1rem, 2.6vw, 2rem);
    border-radius: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(160deg, rgba(8, 19, 33, 0.74), rgba(6, 14, 26, 0.58)),
        radial-gradient(circle at 85% 10%, rgba(255, 122, 26, 0.1), transparent 48%);
    box-shadow: 0 24px 54px rgba(2, 10, 21, 0.35);
}

.store-family-hero h1 {
    max-width: 22ch;
    margin: 0.35rem 0 0.75rem;
    line-height: 1.03;
}

.store-family-hero .lead {
    max-width: 58ch;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
}

.store-family-hero .cta-row {
    margin-top: 1.1rem;
}

.store-family-hero .btn {
    min-height: 2.75rem;
    padding: 0 1.05rem;
    font-size: 0.94rem;
}

.store-family-results-section {
    padding-top: clamp(0.35rem, 1.1vw, 0.8rem);
}

.store-hybrid-band {
    background:
        radial-gradient(circle at 85% 0%, rgba(255, 122, 26, 0.1), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f5 100%);
}

.store-hero-premium {
    padding-bottom: 4rem;
}

.store-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 1fr);
    gap: 2rem;
    align-items: start;
}

.store-hero-copy p {
    max-width: 64ch;
}

.store-hero-cta-grid {
    display: grid;
    gap: 0.75rem;
}

.store-architecture-band {
    padding-top: 1.4rem;
}

.store-architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.store-architecture-card {
    border: 1px solid rgba(15, 29, 45, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.store-architecture-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

.store-architecture-card ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.18rem;
}

.store-architecture-card ul a {
    color: #47607a;
    font-size: 0.88rem;
}

.store-architecture-card ul a:hover,
.store-architecture-card ul a:focus-visible {
    color: var(--accent);
}

.store-hero-cta-card {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1rem;
    background: rgba(7, 17, 31, 0.48);
}

.store-hero-cta-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.store-hero-cta-card p {
    margin: 0;
    color: var(--muted);
}

.store-family-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    grid-auto-rows: 1fr;
}

.store-family-grid-grouped .store-family-card-premium {
    min-height: 17.2rem;
}

.store-hybrid-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.store-hybrid-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(15, 29, 45, 0.08);
    border-radius: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.16), transparent 30%);
    box-shadow: 0 18px 40px rgba(10, 24, 38, 0.1);
}

.store-hybrid-card-main {
    display: grid;
    gap: 0.7rem;
    color: var(--surface-text);
    text-decoration: none;
}

.store-hybrid-card-main:hover,
.store-hybrid-card-main:focus-visible {
    color: var(--surface-text);
    text-decoration: none;
}

.store-hybrid-card-main strong {
    font-size: 1.1rem;
    max-width: 22ch;
}

.store-hybrid-card-main span:not(.store-family-index) {
    color: var(--surface-muted);
    font-size: 0.92rem;
}

.store-hybrid-card-main small {
    color: var(--accent);
    font-weight: 700;
}

.store-hybrid-tech {
    display: grid;
    gap: 0.7rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(15, 29, 45, 0.1);
}

.store-hybrid-tech-group {
    display: grid;
    gap: 0.35rem;
}

.store-hybrid-tech-title {
    color: #0f3d5d;
    font-size: 0.88rem;
    font-weight: 800;
}

.store-hybrid-tech ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.2rem;
}

.store-hybrid-tech ul a {
    color: #47607a;
    font-size: 0.84rem;
}

.store-hybrid-tech ul a:hover,
.store-hybrid-tech ul a:focus-visible {
    color: var(--accent);
}

.family-empty-note {
    color: #0f3d5d;
}

.store-family-card-premium {
    position: relative;
    display: grid;
    gap: 0.7rem;
    min-height: 17rem;
    padding: 1.2rem;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(15, 29, 45, 0.08);
    border-radius: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.16), transparent 30%);
    color: var(--surface-text);
    box-shadow: 0 18px 40px rgba(10, 24, 38, 0.1);
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.store-family-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.store-family-card-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 26, 0.38);
    box-shadow: 0 24px 52px rgba(10, 24, 38, 0.16);
}

.store-family-index {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.7rem;
    background: var(--accent);
    color: #120903;
    font-size: 0.82rem;
    font-weight: 800;
}

.store-family-visual {
    display: flex;
    width: 4.75rem;
    height: 4.75rem;
    flex: 0 0 4.75rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(15, 29, 45, 0.08);
    border-radius: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.95)),
        radial-gradient(circle at 100% 0%, rgba(255, 122, 26, 0.12), transparent 45%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.store-family-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.45rem;
}

.store-family-visual span {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.store-family-card-premium h3 {
    margin: 0;
    font-size: 1.1rem;
    max-width: 20ch;
    min-height: 2.7em;
    line-height: 1.28;
}

.store-family-card-premium span:not(.store-family-index) {
    color: var(--surface-muted);
    font-size: 0.92rem;
    line-height: 1.4;
    min-height: 5.5em;
}

.store-family-card-premium small {
    align-self: end;
    color: var(--accent);
    font-weight: 700;
}

.simple-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

.commerce-path-grid,
.guidance-grid,
.decision-grid,
.signal-metric-grid {
    display: grid;
    gap: 0.75rem;
}

.commerce-path-grid,
.guidance-grid,
.decision-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.decision-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-scenario-grid,
.store-sector-grid {
    align-items: stretch;
}

.store-scenario-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.store-sector-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.store-scenario-grid > .store-scenario-card,
.store-sector-grid > .store-scenario-card {
    height: 100%;
}

@media (min-width: 981px) {
    .store-sector-grid > .store-scenario-card:nth-child(5):nth-last-child(3) {
        grid-column: 2;
    }
}

.store-scenario-card {
    display: grid;
    align-content: start;
    grid-template-rows: auto 1fr auto;
    gap: 0.8rem;
}

.store-scenario-card h3,
.store-scenario-card p {
    margin: 0;
}

.store-configurator {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(7, 17, 31, 0.42);
}

.store-configurator-status {
    display: grid;
    gap: 0.45rem;
}

.store-configurator-progress-meta {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.store-configurator-progress-count {
    color: #ffd9b9;
    font-size: 0.92rem;
    font-weight: 800;
}

.store-configurator-progress-label {
    color: #c8d6e8;
    font-size: 0.82rem;
}

.store-configurator-progress-track {
    width: 100%;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.store-configurator-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, #ff7a1a 0%, #ffb252 100%);
    transition: width 220ms ease;
}

.store-configurator-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.store-configurator-field {
    display: grid;
    gap: 0.45rem;
}

.store-configurator label {
    display: grid;
    gap: 0.4rem;
}

.store-configurator label span {
    color: #f4f8fc;
    font-size: 0.9rem;
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(5, 10, 18, 0.35);
}

.store-configurator select {
    min-height: 2.9rem;
}

.store-configurator-field.is-chip-enhanced select {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.store-configurator-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.choice-chip {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #e4edf7;
    min-height: 2.5rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.choice-chip:hover {
    border-color: rgba(255, 122, 26, 0.55);
    transform: translateY(-1px);
}

.choice-chip.is-active {
    border-color: rgba(255, 122, 26, 0.95);
    background: linear-gradient(135deg, #ff7a1a 0%, #ffb252 100%);
    color: #1e1208;
}

.store-configurator-live {
    display: grid;
    gap: 0.35rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
}

.store-configurator-live strong {
    color: #ffd4ae;
    font-size: 0.84rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-configurator-live p {
    margin: 0;
    color: #d8e4f1;
    font-size: 0.92rem;
}

.store-configurator-result {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 122, 26, 0.38);
    border-radius: 1rem;
    background: rgba(24, 33, 47, 0.84);
    animation: recommendation-appear 260ms ease both;
}

#configurador-resultado-ipecs {
    scroll-margin-top: 7.5rem;
}

.store-configurator-result h3,
.store-configurator-result p {
    margin: 0;
}

.store-configurator-result h3 {
    color: #f5f8fc;
}

.store-configurator-result p {
    color: #d9e5f2;
}

.store-configurator-reasons {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.2rem;
    color: #d9e5f2;
}

@keyframes recommendation-appear {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-configurator-progress-fill,
    .choice-chip,
    .store-configurator-result {
        transition: none;
        animation: none;
    }
}

.store-internal-links {
    margin-top: 0.4rem;
    color: var(--surface-muted);
}

.store-internal-links a {
    font-weight: 700;
}

.signal-metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    margin-top: 1.5rem;
}

.signal-metric-grid div {
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.signal-metric-grid strong {
    color: var(--accent);
    font-size: 1.45rem;
}

.signal-metric-grid span {
    color: var(--muted);
    font-size: 0.88rem;
}

.aplium-signal-card {
    position: relative;
    overflow: hidden;
}

.aplium-signal-card::before {
    content: "";
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 0.9rem;
    background: var(--accent);
    opacity: 0.92;
}

.aplium-signal-card > * {
    position: relative;
}

.simple-choice-grid article {
    display: grid;
    align-content: start;
}

.cta-simple {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: center;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.2rem;
    background: #fff;
    color: var(--surface-text);
    border-color: rgba(16, 24, 32, 0.08);
    min-height: 100%;
}

.product-image,
.product-detail-image {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(15, 29, 45, 0.08);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 122, 26, 0.05), transparent 34%),
        #f8fafc;
    box-shadow: inset 0 0 0 0.45rem #fff;
}

.product-image {
    aspect-ratio: 4 / 3;
    padding: 0.7rem;
}

.product-image-link {
    display: block;
    border-radius: var(--radius);
    text-decoration: none;
}

.product-image img,
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
}

.product-image span,
.product-detail-image span {
    color: var(--surface-muted);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.product-detail-image {
    width: min(100%, 340px);
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
}

.product-detail-image-large {
    width: 100%;
    min-height: 320px;
    margin: 0;
    padding: 1.2rem;
}

.product-buy-card {
    position: sticky;
    top: 6rem;
}

.product-price-block {
    display: grid;
    gap: 0.35rem;
    margin: 1rem 0;
}

.product-price-block span {
    color: var(--muted);
}

.product-price-block strong {
    color: #ffd1a3;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1;
}

.decision-card {
    display: grid;
    gap: 0.8rem;
    align-content: start;
}

.collection-card {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    min-height: 100%;
    padding: 1.25rem 1.15rem;
}

.collection-explore-section .section-heading {
    max-width: 62ch;
    margin-bottom: 1.35rem;
}

.collection-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.collection-card h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
}

.collection-card p {
    margin: 0;
    color: var(--surface-muted);
    line-height: 1.62;
}

.collection-card .text-link {
    margin-top: auto;
    align-self: start;
}

.product-card-simple h3 {
    font-size: 1.14rem;
    line-height: 1.3;
    margin: 0;
    color: var(--surface-text);
}

.product-card-simple p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--surface-muted);
}

.product-card-body {
    display: grid;
    gap: 0.72rem;
    align-content: start;
}

.product-card-footer {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
}

.product-card-summary {
    margin: 0;
    color: #475569;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-ref {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: baseline;
    font-size: 0.86rem;
}

.product-card-ref span {
    color: #64748b;
    font-weight: 600;
}

.product-card-ref strong {
    color: #0f172a;
    letter-spacing: 0.01em;
}

.product-card-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.product-state-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    border: 1px solid;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-state-direct {
    border-color: rgba(22, 163, 74, 0.36);
    color: #166534;
    background: rgba(187, 247, 208, 0.34);
}

.product-state-validation {
    border-color: rgba(37, 99, 235, 0.3);
    color: #1d4ed8;
    background: rgba(219, 234, 254, 0.55);
}

.product-state-proposal {
    border-color: rgba(217, 119, 6, 0.34);
    color: #b45309;
    background: rgba(254, 243, 199, 0.54);
}

.product-card-specs {
    display: grid;
    gap: 0.45rem;
    margin: 0.25rem 0 0;
}

.product-card-specs div {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.product-card-specs dt {
    margin: 0;
    color: var(--surface-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-card-specs dd {
    margin: 0;
    color: var(--surface-text);
    font-size: 0.84rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.compat-chip {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 29, 45, 0.14);
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.15;
    white-space: nowrap;
    max-width: 100%;
}

.product-commercial-note {
    margin: 0.15rem 0 0;
    padding: 0.6rem 0.72rem;
    border-radius: 0.7rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 0.84rem;
    line-height: 1.4;
}

.product-compact-meta,
.product-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

.product-actions,
.product-consultive-action,
.product-actions .btn,
.product-consultive-action .text-link,
.product-card .inline-action-form {
    position: relative;
    z-index: 2;
}

.product-image-link:focus-visible .product-image {
    outline: 3px solid rgba(255, 122, 26, 0.8);
    outline-offset: 2px;
}

.product-compact-meta {
    color: var(--surface-muted);
    font-size: 0.92rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 0.75rem;
}

.product-price-label {
    color: #64748b;
    font-weight: 600;
}

.product-compact-meta strong {
    color: #0f172a;
    font-size: 1.08rem;
    letter-spacing: 0.01em;
}

.product-actions form {
    flex: 1;
}

.product-actions .btn-secondary {
    background: var(--surface-text);
    border-color: var(--surface-text);
    color: #fff;
}

.product-consultive-action {
    display: flex;
    justify-content: flex-end;
}

.category-playbook-card {
    display: grid;
    gap: 1.25rem;
    padding: clamp(1rem, 2.4vw, 1.5rem);
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.category-playbook-heading {
    margin-bottom: 0;
}

.category-playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.95rem;
}

.category-playbook-grid article {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 0.95rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #f8fafc;
}

.category-playbook-grid p {
    margin: 0;
    color: #475569;
}

.category-playbook-cta {
    margin-top: 0;
}

.product-trust-inline {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.55rem;
}

.product-trust-inline li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d6e7f8;
    font-size: 0.9rem;
}

.product-trust-inline li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: #ffae5c;
    box-shadow: 0 0 0 3px rgba(255, 174, 92, 0.18);
}

.decision-grid-product {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-card-product {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(148, 163, 184, 0.24);
}

.product-facts {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.product-facts div {
    display: grid;
    grid-template-columns: minmax(7rem, 0.7fr) 1fr;
    gap: 0.75rem;
    align-items: start;
}

.product-facts dt {
    color: var(--surface-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.product-facts dd {
    margin: 0;
    color: var(--surface-text);
    overflow-wrap: anywhere;
}

.store-filter-panel {
    display: grid;
    gap: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 1.1rem;
    border: 1px solid rgba(15, 29, 45, 0.1);
    border-radius: 1rem;
    background: #fff;
}

.store-filter-top {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 0.9rem;
    align-items: end;
}

.store-filter-top .btn {
    min-width: 12rem;
}

.store-filter-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 0.75rem;
}

.store-filter-grid-rich {
    grid-template-columns: repeat(5, minmax(140px, 1fr));
}

.advanced-filters {
    color: var(--surface-text);
}

.advanced-filters summary {
    cursor: pointer;
    color: var(--surface-muted);
    font-weight: 700;
}

.advanced-filters[open] summary {
    margin-bottom: 1rem;
}

.store-filter-panel .field-row input,
.store-filter-panel .field-row select {
    border-color: rgba(15, 29, 45, 0.14);
    background: #fff;
    color: var(--surface-text);
}

.store-filter-panel .field-row label {
    color: var(--surface-text);
}

.store-filter-actions,
.store-results-bar,
.pagination-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    align-items: center;
}

.store-filter-actions {
    justify-content: flex-start;
}

.store-results-bar,
.pagination-bar {
    justify-content: space-between;
    margin: 1.25rem 0;
    color: var(--surface-muted);
}

.section-alt .info-card h3,
.section-alt .trust-card p {
    color: var(--surface-text);
}

.manual-library-card,
.manual-card {
    display: grid;
    gap: 0.9rem;
}

.manuals-intro-card p,
.manual-card p {
    margin: 0;
}

.manuals-grid {
    align-items: stretch;
}

.manual-list {
    display: grid;
    gap: 0.55rem;
    padding-left: 1.1rem;
    margin: 0;
    color: var(--surface-muted);
}

.manual-list li::marker {
    color: var(--accent);
}

.manual-card .btn {
    justify-self: start;
    margin-top: 0.3rem;
}

.feature-list {
    color: var(--muted);
    line-height: 1.9;
}

.detail-card h2,
.detail-card h3 {
    margin-top: 0;
}

.order-number {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.detail-card-wide {
    grid-column: 1 / -1;
}

.product-knowledge-section {
    padding-top: clamp(1.8rem, 4vw, 3rem);
}

.product-knowledge-section > .container {
    width: min(calc(100% - 2rem), var(--max));
}

.product-detail-tabs {
    position: sticky;
    top: 5.4rem;
    z-index: 8;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    padding: 0.45rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    background: rgba(7, 18, 31, 0.78);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.product-detail-tabs a {
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    color: #dbe6f2;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-detail-tabs a:hover,
.product-detail-tabs a:focus-visible {
    background: var(--accent);
    color: #0b1220;
    transform: translateY(-1px);
}

.product-knowledge-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    margin: 0 auto;
}

.product-knowledge-card {
    scroll-margin-top: 8rem;
    padding: clamp(1.8rem, 3.2vw, 3rem);
}

.product-knowledge-card-main {
    grid-row: auto;
}

.product-knowledge-card-technical {
    background:
        radial-gradient(circle at top right, rgba(255, 122, 26, 0.13), transparent 36%),
        linear-gradient(180deg, rgba(16, 38, 60, 0.97), rgba(7, 18, 31, 0.99));
}

.product-knowledge-card .card-tag {
    display: inline-block;
    margin-bottom: 0.65rem;
}

.knowledge-card-intro {
    margin: -0.2rem 0 1.2rem;
    color: #c6d1df;
    font-size: clamp(1.05rem, 0.9rem + 0.35vw, 1.18rem);
    line-height: 1.75;
}

.product-knowledge-card p,
.faq-stack .rich-copy p {
    font-size: clamp(1.06rem, 0.96rem + 0.28vw, 1.18rem);
    line-height: 1.82;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.product-knowledge-card > .rich-copy:not(.technical-copy),
.product-knowledge-card > .simple-list {
    max-width: none;
}

.product-knowledge-card .rich-copy p:last-child,
.product-knowledge-card .rich-copy ul:last-child,
.product-knowledge-card .simple-list:last-child {
    margin-bottom: 0;
}

.technical-copy {
    display: grid;
    gap: 1rem;
}

.technical-copy h3 {
    margin: 0.45rem 0 0;
    color: #f8fafc;
    font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.18rem);
}

.technical-copy p {
    margin: 0;
    max-width: none;
}

.technical-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding-left: 1.1rem;
    max-width: none;
    font-size: clamp(1.04rem, 0.95rem + 0.26vw, 1.14rem);
}

.technical-list li::marker {
    color: var(--accent);
}

.technical-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(219, 230, 242, 0.12);
    border-radius: calc(var(--radius) - 0.5rem);
    background: rgba(255, 255, 255, 0.035);
}

.technical-spec-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    color: #dbe6f2;
    font-size: 0.92rem;
}

.technical-spec-table th,
.technical-spec-table td {
    padding: 0.7rem 0.85rem;
    border-bottom: 1px solid rgba(219, 230, 242, 0.1);
    text-align: left;
    vertical-align: top;
}

.technical-spec-table th {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 122, 26, 0.12);
}

.technical-spec-table tr:last-child td {
    border-bottom: 0;
}

.rich-copy,
.simple-list {
    color: var(--muted);
}

.simple-list {
    margin: 0;
    padding-left: 1.2rem;
}

.faq-stack,
.form-shell {
    display: grid;
    gap: 1.5rem;
}

.inline-action-form,
.stack-form {
    margin: 0;
}

.inline-action-form button,
.stack-form button {
    width: 100%;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-row {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.field-row label {
    font-weight: 600;
}

.field-row input,
.field-row select,
.field-row textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 0.9rem 1rem;
    font: inherit;
}

/* En formularios oscuros, algunos navegadores renderizan el desplegable con
 * fondo claro pero mantienen texto claro del <select>. Forzamos contraste. */
.field-row select option,
.field-row select optgroup {
    background: #ffffff;
    color: var(--surface-text);
}

.field-row-checkbox {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
    align-items: start;
}

.field-row-checkbox label {
    order: 2;
    font-weight: 500;
}

.field-row-checkbox input {
    order: 1;
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.25rem;
}

.form-error {
    margin: 0;
    color: #ffb3bf;
    font-size: 0.92rem;
}

.success-box {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: rgba(29, 123, 84, 0.18);
    border: 1px solid rgba(29, 123, 84, 0.4);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    gap: 1.5rem;
    align-items: start;
}

.cart-lines,
.checkout-lines {
    display: grid;
    gap: 0.75rem;
}

.cart-line-main,
.checkout-line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: start;
}

.cart-line-meta,
.summary-list,
.trust-list {
    display: grid;
    gap: 0.75rem;
}

.summary-list,
.trust-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.cart-quantity-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
}

.cart-quantity-form input {
    width: 7rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    padding: 0.75rem 0.9rem;
    font: inherit;
}

.cart-summary-card {
    position: sticky;
    top: 6rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    margin: 1.5rem 0;
}

.checkout-block + .checkout-block {
    margin-top: 2rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 3rem 0 4rem;
    color: var(--muted);
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer h2 {
    color: var(--text);
    font-size: 1rem;
}

.footer-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible {
    color: var(--link-hover);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.global-search-form {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    min-width: min(100%, 22rem);
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.global-search-form input {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 0.55rem 0.75rem;
    outline: none;
}

.global-search-form input::placeholder {
    color: rgba(244, 248, 252, 0.58);
}

.global-search-form button {
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #120903;
    padding: 0.5rem 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.search-hero-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.search-hero-form input {
    min-height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 0 1rem;
}

.search-result-stack {
    display: grid;
    gap: 2rem;
}

.search-result-group h3 {
    margin: 0 0 1rem;
}

.search-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.search-result-card {
    display: grid;
    gap: 0.5rem;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.search-result-thumb {
    margin: 0 0 0.15rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-card span {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-result-card p {
    margin: 0;
    color: var(--muted);
}

.aplium-hls-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #020914;
    color: #fff;
}

.aplium-hls-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aplium-landing-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem clamp(1rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.aplium-glass-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 1rem;
    background: rgba(2, 9, 20, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16);
}

.aplium-nav-logo {
    display: inline-flex;
    width: 10rem;
    height: 3rem;
}

.aplium-nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aplium-nav-links {
    display: flex;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.78);
}

.aplium-nav-cta,
.aplium-btn-primary {
    background: #fff;
    color: #07111f;
}

.aplium-nav-cta {
    padding: 0.65rem 1.35rem;
    border-radius: 0.7rem;
    font-weight: 700;
}

.aplium-hero-content {
    max-width: 760px;
    margin-top: auto;
}

.aplium-kicker {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.aplium-hero-content h1 {
    margin: 0 0 1rem;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
    font-weight: 500;
}

.aplium-hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.35rem, 1.3vw, 0.9rem);
}

.aplium-hero-title-line {
    display: block;
}

.aplium-hero-title-logo-wrap {
    display: block;
    width: min(100%, 420px);
    margin-left: clamp(0.1rem, 0.45vw, 0.5rem);
}

.aplium-hero-title-logo {
    display: block;
    width: 100%;
    height: auto;
}

.aplium-hero-copy {
    max-width: 620px;
    color: #d8e1ea;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.aplium-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.aplium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0 1.6rem;
    border-radius: 0.75rem;
    font-weight: 800;
}

.aplium-btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(2, 9, 20, 0.36);
    backdrop-filter: blur(8px);
}

.aplium-hero-tag {
    position: absolute;
    right: clamp(1rem, 4vw, 4rem);
    bottom: clamp(2rem, 5vw, 4rem);
    padding: 0.9rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: rgba(2, 9, 20, 0.42);
    backdrop-filter: blur(8px);
    color: #fff;
}

@media (max-width: 900px) {
    .aplium-hero-title-logo-wrap {
        width: min(100%, 320px);
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .aplium-hero-title {
        gap: 0.5rem;
    }

    .aplium-hero-title-logo-wrap {
        width: min(92vw, 260px);
    }
}

.product-zoom-trigger {
    position: relative;
    border: 0;
    cursor: zoom-in;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-zoom-trigger:hover {
    box-shadow: inset 0 0 0 0.45rem #fff, 0 24px 60px rgba(0, 0, 0, 0.26);
}

.product-zoom-hint {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(5, 11, 20, 0.78);
    color: #fff;
    font-size: 0.82rem;
}

.product-thumb-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-thumb {
    aspect-ratio: 1 / 0.8;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem;
    cursor: pointer;
}

.product-thumb.is-active {
    border-color: var(--accent);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.viewer-open {
    overflow: hidden;
}

.product-image-viewer[hidden] {
    display: none;
}

.product-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.product-image-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 9, 20, 0.88);
    backdrop-filter: blur(8px);
}

.product-image-viewer-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 1100px);
    max-height: min(90vh, 820px);
    display: grid;
    gap: 0.75rem;
    place-items: center;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.25rem;
    background: #fff;
    color: var(--surface-text);
}

.product-image-viewer-dialog img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

.viewer-close {
    justify-self: end;
    border: 0;
    border-radius: 999px;
    background: #07111f;
    color: #fff;
    padding: 0.55rem 0.85rem;
    cursor: pointer;
}

.breadcrumb-band {
    border-bottom: 1px solid rgba(11, 17, 32, 0.1);
    background: #f8fafc;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    margin: 0;
    padding: 0.95rem 0;
    list-style: none;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1;
}

.breadcrumb-item a {
    color: #334155;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

.breadcrumb-item.is-current span {
    color: #0b1220;
    font-weight: 700;
}

@media (max-width: 980px) {
    .hero-grid,
    .store-hero-grid,
    .product-hero-grid,
    .category-hero-grid,
    .split-grid,
    .footer-grid,
    .card-grid,
    .trust-grid,
    .commerce-path-grid,
    .guidance-grid,
    .decision-grid,
    .cta-panel,
    .detail-grid,
    .form-grid,
    .compact-grid,
    .quick-grid,
    .simple-choice-grid,
    .store-filter-top,
    .category-playbook-grid,
    .decision-grid-product,
    .product-knowledge-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-tabs {
        position: static;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        border-radius: 1.25rem;
    }

    .product-detail-tabs a {
        white-space: nowrap;
    }

    .product-knowledge-card-main {
        grid-row: auto;
    }

    .product-knowledge-card p,
    .faq-stack .rich-copy p {
        text-align: left;
    }

    .store-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-results-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .related-families-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-family-hero-copy {
        width: 100%;
    }

    .store-hybrid-grid {
        grid-template-columns: 1fr;
    }

    .store-mega-menu {
        display: none;
    }

    .store-architecture-grid {
        grid-template-columns: 1fr;
    }

    .store-configurator-grid {
        grid-template-columns: 1fr;
    }

    .store-configurator-chips {
        gap: 0.45rem;
    }

    .choice-chip {
        flex: 1 1 auto;
    }

    .header-shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero h1,
    .page-hero h1 {
        max-width: none;
    }

    .category-hero-visual {
        justify-self: start;
        min-height: 300px;
    }

    .store-filter-grid,
    .product-facts div {
        grid-template-columns: 1fr;
    }

    .store-filter-top .btn {
        width: 100%;
        min-width: 0;
    }

    .cta-simple,
    .product-actions,
    .product-compact-meta {
        align-items: stretch;
        flex-direction: column;
    }

    .store-filter-actions,
    .store-results-bar,
    .pagination-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .product-buy-card {
        position: static;
    }

    .video-hero-shell {
        padding: 1.5rem 3rem 3rem;
    }
}

@media (max-width: 640px) {
    .store-family-grid {
        grid-template-columns: 1fr;
    }

    .store-family-card-premium {
        min-height: auto;
    }

    .product-results-grid {
        grid-template-columns: 1fr;
    }

    .collection-cards-grid {
        grid-template-columns: 1fr;
    }

    .related-families-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 1rem;
        gap: 0.9rem;
    }

    .product-card-summary {
        -webkit-line-clamp: 4;
    }

    .product-commercial-note {
        font-size: 0.82rem;
    }
}

@media (min-width: 1024px) {
    .video-hero-shell {
        padding: 1.5rem 4rem 4rem;
    }

    .video-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: end;
    }

    .video-tag-wrap {
        justify-content: flex-end;
        margin-bottom: clamp(0.45rem, 1.2vh, 0.9rem);
    }

    .video-headline {
        font-size: clamp(3rem, 5.6vw, 5.9rem);
    }

    .video-ipecs-logo {
        width: clamp(16rem, 27vw, 22rem);
    }

    .video-subheading {
        max-width: 44rem;
        font-size: 1.08rem;
    }

    .video-tag {
        font-size: 2rem;
    }

    .video-tag-wrap {
        justify-content: flex-end;
    }
}

@media (min-width: 1280px) {
    .video-headline {
        font-size: clamp(3.4rem, 5.2vw, 6.1rem);
    }
}

@media (min-width: 1500px) {
    .store-mega-menu {
        width: min(1180px, calc(100vw - 3rem));
    }

    .store-mega-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* === Cookie consent banner ============================================== */

.cookie-consent {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 60;
    margin: 0 auto;
    width: min(100%, 64rem);
    padding: 1.25rem;
    background: rgba(8, 13, 26, 0.96);
    color: #f4f6fb;
    border-radius: 18px 18px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent-shell {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 720px) {
    .cookie-consent {
        bottom: 1.25rem;
        border-radius: 18px;
    }

    .cookie-consent-shell {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 1.5rem;
    }
}

.cookie-consent-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.35rem;
    letter-spacing: 0.02em;
}

.cookie-consent-body {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(244, 246, 251, 0.88);
}

.cookie-consent-body a {
    color: #ff8a3d;
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.cookie-consent-actions .btn {
    flex: 1 1 auto;
    min-width: 8rem;
    justify-content: center;
}

.cookie-consent-options {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent-options[hidden] {
    display: none !important;
}

.cookie-consent-option {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin: 0;
}

.cookie-consent-option legend {
    padding: 0 0.4rem;
    font-weight: 600;
    color: #f4f6fb;
}

.cookie-consent-option p {
    margin: 0.4rem 0 0.6rem;
    font-size: 0.85rem;
    color: rgba(244, 246, 251, 0.78);
    line-height: 1.45;
}

.cookie-consent-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-consent-toggle input[disabled] {
    accent-color: #ff8a3d;
}

.cookie-consent-options-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-consent-reopen {
    display: none !important;
}

.cookie-consent-reopen[hidden] {
    display: none !important;
}

.cookie-consent-reopen:hover,
.cookie-consent-reopen:focus-visible {
    background: rgba(255, 138, 61, 0.18);
    border-color: rgba(255, 138, 61, 0.7);
    color: #fff;
}
