/* ==========================================================================
   HogarFlex Colombia
   /assets/css/hogarflex-home.css
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES
   ========================================================================== */

:root {
    --hf-primary: #2563eb;
    --hf-primary-dark: #1d4ed8;
    --hf-primary-soft: #eff6ff;

    --hf-secondary: #06b6d4;
    --hf-secondary-dark: #0891b2;
    --hf-secondary-soft: #ecfeff;

    --hf-accent: #f59e0b;
    --hf-accent-soft: #fffbeb;

    --hf-success: #16a34a;
    --hf-success-soft: #f0fdf4;

    --hf-danger: #dc2626;
    --hf-danger-soft: #fef2f2;

    --hf-warning: #d97706;
    --hf-warning-soft: #fff7ed;

    --hf-text: #172033;
    --hf-text-soft: #475569;
    --hf-text-muted: #64748b;

    --hf-bg: #f8fafc;
    --hf-bg-soft: #f1f5f9;
    --hf-white: #ffffff;

    --hf-border: #e2e8f0;
    --hf-border-strong: #cbd5e1;

    --hf-container: 1180px;

    --hf-radius-sm: 10px;
    --hf-radius: 16px;
    --hf-radius-lg: 24px;
    --hf-radius-xl: 32px;

    --hf-shadow-sm:
        0 2px 10px rgba(15, 23, 42, 0.05);

    --hf-shadow:
        0 12px 40px rgba(15, 23, 42, 0.08);

    --hf-shadow-lg:
        0 28px 80px rgba(15, 23, 42, 0.15);

    --hf-transition:
        180ms ease;
}


/* ==========================================================================
   2. RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;

    background: var(--hf-white);
    color: var(--hf-text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.drawer-open,
body.checkout-open,
body.modal-open {
    overflow: hidden;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

ul {
    padding-left: 0;
}

[hidden] {
    display: none !important;
}


/* ==========================================================================
   3. CONTENEDOR
   ========================================================================== */

.site-container {
    width: min(
        calc(100% - 32px),
        var(--hf-container)
    );

    margin-inline: auto;
}


/* ==========================================================================
   4. BARRA SUPERIOR
   ========================================================================== */

.top-bar {
    background:
        linear-gradient(
            90deg,
            #f59e0b,
            #fbbf24
        );

    color: #111827;

    font-size: 12px;
    font-weight: 800;
}

.top-bar-inner {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;
}

.top-bar-inner a {
    text-decoration: none;
}

.top-bar-inner a:hover {
    text-decoration: underline;
}

.top-bar-divider {
    width: 1px;
    height: 16px;

    background: rgba(17, 24, 39, 0.28);
}


/* ==========================================================================
   5. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;

    background: rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid var(--hf-border);

    box-shadow:
        0 4px 20px rgba(15, 23, 42, 0.04);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* ==========================================================================
   6. BRAND
   ========================================================================== */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;

    color: var(--hf-text);
    text-decoration: none;
}

.brand-mark {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--hf-primary),
            var(--hf-secondary)
        );

    color: var(--hf-white);

    font-size: 14px;
    font-weight: 950;

    box-shadow:
        0 8px 24px rgba(37, 99, 235, 0.24);
}

.brand-content {
    display: flex;
    flex-direction: column;

    line-height: 1.05;
}

.brand-content strong {
    font-size: 18px;
    font-weight: 950;

    letter-spacing: -0.03em;
}

.brand-content small {
    margin-top: 4px;

    color: var(--hf-text-muted);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ==========================================================================
   7. NAVEGACIÓN
   ========================================================================== */

.desktop-nav {
    display: none;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    position: relative;

    color: var(--hf-text-soft);

    text-decoration: none;

    font-size: 14px;
    font-weight: 750;

    transition:
        color var(--hf-transition);
}

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--hf-primary);

    transition:
        width var(--hf-transition);
}

.desktop-nav a:hover {
    color: var(--hf-primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* ==========================================================================
   8. HEADER ACTIONS
   ========================================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 0 13px;

    border: 1px solid var(--hf-border);

    border-radius: 12px;

    background: var(--hf-white);

    color: var(--hf-text);

    font-size: 13px;
    font-weight: 850;

    cursor: pointer;

    transition:
        border-color var(--hf-transition),
        background-color var(--hf-transition),
        transform var(--hf-transition);
}

.cart-header-button:hover {
    border-color: var(--hf-primary);

    background: var(--hf-primary-soft);

    transform: translateY(-1px);
}

.cart-header-button strong {
    min-width: 22px;
    height: 22px;

    display: grid;
    place-items: center;

    padding: 0 5px;

    border-radius: 999px;

    background: var(--hf-primary);

    color: var(--hf-white);

    font-size: 10px;
}

.mobile-menu-button {
    width: 44px;
    height: 44px;

    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    border:
        1px solid var(--hf-border);

    border-radius:
        12px;

    background:
        var(--hf-white);

    cursor:
        pointer;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;

    border-radius: 99px;

    background:
        var(--hf-text);
}


/* ==========================================================================
   9. MENÚ MÓVIL
   ========================================================================== */

.mobile-menu {
    padding: 10px 16px 18px;

    border-top:
        1px solid var(--hf-border);

    background:
        var(--hf-white);
}

.mobile-menu a {
    min-height: 49px;

    display: flex;
    align-items: center;

    padding: 0 14px;

    border-bottom:
        1px solid var(--hf-border);

    color:
        var(--hf-text);

    text-decoration:
        none;

    font-size:
        14px;

    font-weight:
        750;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}


/* ==========================================================================
   10. BOTONES GENERALES
   ========================================================================== */

.button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 20px;

    border:
        1px solid transparent;

    border-radius:
        13px;

    text-decoration:
        none;

    text-align:
        center;

    font-size:
        14px;

    font-weight:
        850;

    cursor:
        pointer;

    transition:
        transform var(--hf-transition),
        box-shadow var(--hf-transition),
        background-color var(--hf-transition),
        border-color var(--hf-transition);
}

.button:hover {
    transform:
        translateY(-2px);
}

.button-primary {
    background:
        var(--hf-primary);

    color:
        var(--hf-white);

    box-shadow:
        0 10px 28px rgba(37, 99, 235, 0.2);
}

.button-primary:hover {
    background:
        var(--hf-primary-dark);
}

.button-secondary {
    background:
        var(--hf-white);

    border-color:
        var(--hf-border-strong);

    color:
        var(--hf-text);
}

.button-secondary:hover {
    border-color:
        var(--hf-primary);

    color:
        var(--hf-primary);
}

.button-large {
    min-height:
        54px;

    padding-inline:
        24px;
}

.button:disabled {
    opacity: 0.55;

    cursor: not-allowed;

    transform: none !important;

    box-shadow: none;
}


/* ==========================================================================
   11. HERO
   ========================================================================== */

.hero {
    position: relative;

    overflow: hidden;

    padding: 56px 0 64px;

    background:
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 45%,
            #ecfeff 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    right: -180px;
    top: -170px;

    border-radius: 50%;

    background:
        rgba(6, 182, 212, 0.09);
}

.hero::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    background:
        rgba(37, 99, 235, 0.07);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr;

    gap: 42px;
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    width: fit-content;

    display: inline-flex;

    margin-bottom: 18px;

    padding: 7px 12px;

    border:
        1px solid #bfdbfe;

    border-radius:
        999px;

    background:
        var(--hf-primary-soft);

    color:
        var(--hf-primary-dark);

    font-size:
        12px;

    font-weight:
        900;
}

.hero h1 {
    margin-bottom:
        20px;

    font-size:
        clamp(38px, 10vw, 64px);

    line-height:
        1.03;

    font-weight:
        950;

    letter-spacing:
        -0.055em;
}

.hero h1 span {
    display:
        block;

    background:
        linear-gradient(
            90deg,
            var(--hf-primary),
            var(--hf-secondary)
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;
}

.hero-description {
    max-width: 660px;

    margin-bottom: 26px;

    color:
        var(--hf-text-soft);

    font-size:
        16px;

    line-height:
        1.75;
}

.hero-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.hero-actions .button {
    width: 100%;
}

.hero-trust {
    margin-top:
        30px;

    display: grid;

    grid-template-columns:
        1fr;

    gap:
        10px;
}

.hero-trust-item {
    display: flex;
    align-items: center;

    gap:
        10px;

    color:
        var(--hf-text-soft);

    font-size:
        12px;
}

.hero-trust-item > strong {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex: 0 0 auto;

    border:
        1px solid var(--hf-border);

    border-radius:
        10px;

    background:
        var(--hf-white);

    color:
        var(--hf-success);
}

.hero-trust-item span {
    display: flex;
    flex-direction: column;

    line-height:
        1.25;
}

.hero-trust-item b {
    color:
        var(--hf-text);

    font-size:
        13px;
}


/* ==========================================================================
   12. HERO COMMERCE CARD
   ========================================================================== */

.hero-commerce-card {
    padding:
        30px;

    border:
        1px solid rgba(255, 255, 255, 0.55);

    border-radius:
        var(--hf-radius-xl);

    background:
        linear-gradient(
            145deg,
            var(--hf-primary),
            var(--hf-secondary-dark)
        );

    color:
        var(--hf-white);

    box-shadow:
        0 30px 80px rgba(37, 99, 235, 0.22);
}

.hero-commerce-label {
    display: inline-block;

    margin-bottom:
        8px;

    font-size:
        11px;

    font-weight:
        850;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

    opacity:
        0.8;
}

.hero-commerce-card h2 {
    margin-bottom:
        24px;

    font-size:
        28px;

    line-height:
        1.15;

    font-weight:
        950;

    letter-spacing:
        -0.03em;
}

.hero-commerce-flow {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        12px;

    margin-bottom:
        24px;
}

.hero-commerce-flow div {
    padding:
        15px;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    border-radius:
        14px;

    background:
        rgba(255, 255, 255, 0.1);
}

.hero-commerce-flow span {
    width:
        28px;

    height:
        28px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        8px;

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.2);

    font-size:
        11px;

    font-weight:
        900;
}

.hero-commerce-flow strong {
    font-size:
        13px;
}

.hero-commerce-card p {
    margin:
        0;

    font-size:
        13px;

    line-height:
        1.7;

    opacity:
        0.88;
}


/* ==========================================================================
   13. TRUST STRIP
   ========================================================================== */

.trust-strip {
    border-top:
        1px solid var(--hf-border);

    border-bottom:
        1px solid var(--hf-border);

    background:
        var(--hf-white);
}

.trust-strip-grid {
    display:
        grid;

    grid-template-columns:
        1fr;
}

.trust-strip-item {
    min-height:
        90px;

    display:
        flex;
    align-items:
        center;

    gap:
        13px;

    padding:
        16px 0;

    border-bottom:
        1px solid var(--hf-border);
}

.trust-strip-item:last-child {
    border-bottom:
        0;
}

.trust-icon {
    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    flex:
        0 0 auto;

    border-radius:
        14px;

    background:
        var(--hf-primary-soft);

    font-size:
        20px;
}

.trust-strip-item div {
    display:
        flex;

    flex-direction:
        column;

    line-height:
        1.3;
}

.trust-strip-item strong {
    font-size:
        13px;
}

.trust-strip-item small {
    margin-top:
        4px;

    color:
        var(--hf-text-muted);

    font-size:
        11px;
}


/* ==========================================================================
   14. SECCIONES
   ========================================================================== */

.section {
    padding:
        64px 0;
}

.section-heading {
    margin-bottom:
        30px;

    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        14px;
}

.section-kicker {
    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--hf-primary);

    font-size:
        11px;

    font-weight:
        950;

    letter-spacing:
        0.09em;

    text-transform:
        uppercase;
}

.section-heading h2,
.presentation-card h2,
.smart-purchase-layout h2 {
    margin-bottom:
        0;

    color:
        var(--hf-text);

    font-size:
        clamp(28px, 7vw, 42px);

    line-height:
        1.1;

    font-weight:
        950;

    letter-spacing:
        -0.045em;
}

.section-heading > p {
    max-width:
        560px;

    margin:
        0;

    color:
        var(--hf-text-muted);

    font-size:
        14px;
}


/* ==========================================================================
   15. CATEGORÍAS
   ========================================================================== */

.categories-section {
    background:
        var(--hf-white);
}

.category-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        12px;
}

.category-card {
    min-height:
        88px;

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    padding:
        17px;

    border:
        1px solid var(--hf-border);

    border-radius:
        var(--hf-radius);

    background:
        var(--hf-white);

    color:
        var(--hf-text);

    text-decoration:
        none;

    box-shadow:
        var(--hf-shadow-sm);

    transition:
        transform var(--hf-transition),
        border-color var(--hf-transition),
        box-shadow var(--hf-transition);
}

.category-card:hover {
    transform:
        translateY(-3px);

    border-color:
        #bfdbfe;

    box-shadow:
        var(--hf-shadow);
}

.category-icon {
    width:
        50px;

    height:
        50px;

    display:
        grid;

    place-items:
        center;

    flex:
        0 0 auto;

    border-radius:
        14px;

    background:
        var(--hf-bg-soft);

    color:
        var(--hf-primary);

    font-size:
        24px;

    font-weight:
        900;
}

.category-card strong {
    flex: 1;

    font-size:
        14px;
}

.category-arrow {
    color:
        var(--hf-primary);

    font-size:
        18px;

    font-weight:
        900;
}


/* ==========================================================================
   16. PRODUCTOS
   ========================================================================== */

.products-section {
    background:
        var(--hf-bg);
}

.products-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        22px;
}

.product-card {
    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    overflow:
        hidden;

    border:
        1px solid var(--hf-border);

    border-radius:
        var(--hf-radius-lg);

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-sm);

    transition:
        transform var(--hf-transition),
        box-shadow var(--hf-transition),
        border-color var(--hf-transition);
}

.product-card:hover {
    transform:
        translateY(-5px);

    border-color:
        #bfdbfe;

    box-shadow:
        var(--hf-shadow-lg);
}

.category-anchor {
    position:
        absolute;

    top:
        -110px;

    pointer-events:
        none;
}

.product-media {
    position:
        relative;

    min-height:
        260px;

    overflow:
        hidden;

    background:
        linear-gradient(
            145deg,
            #eff6ff,
            #ecfeff
        );
}

.product-category {
    position:
        absolute;

    top:
        14px;

    left:
        14px;

    z-index:
        4;

    padding:
        6px 10px;

    border:
        1px solid rgba(37, 99, 235, 0.14);

    border-radius:
        999px;

    background:
        rgba(255, 255, 255, 0.94);

    color:
        var(--hf-primary-dark);

    font-size:
        10px;

    font-weight:
        950;

    text-transform:
        uppercase;

    letter-spacing:
        0.05em;
}

.product-image {
    width:
        100%;

    aspect-ratio:
        9 / 7;

    object-fit:
        contain;

    padding:
        20px;

    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #f0fdff
        );
}

.product-body {
    display:
        flex;

    flex:
        1;

    flex-direction:
        column;

    padding:
        22px;
}

.product-eyebrow {
    margin-bottom:
        7px;

    color:
        var(--hf-primary);

    font-size:
        10px;

    font-weight:
        950;

    letter-spacing:
        0.06em;

    text-transform:
        uppercase;
}

.product-body h3 {
    margin-bottom:
        11px;

    color:
        var(--hf-text);

    font-size:
        20px;

    line-height:
        1.25;

    font-weight:
        950;

    letter-spacing:
        -0.025em;
}

.product-description {
    margin-bottom:
        16px;

    color:
        var(--hf-text-muted);

    font-size:
        13px;

    line-height:
        1.7;
}

.product-features {
    margin:
        0 0 17px;

    list-style:
        none;

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;
}

.product-features li {
    position:
        relative;

    padding-left:
        24px;

    color:
        var(--hf-text-soft);

    font-size:
        12px;

    line-height:
        1.5;
}

.product-features li::before {
    content:
        "✓";

    position:
        absolute;

    left:
        0;

    top:
        1px;

    width:
        17px;

    height:
        17px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        var(--hf-success-soft);

    color:
        var(--hf-success);

    font-size:
        10px;

    font-weight:
        950;
}

.product-availability {
    width:
        fit-content;

    margin-bottom:
        16px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        6px 9px;

    border-radius:
        999px;

    background:
        var(--hf-success-soft);

    color:
        #166534;

    font-size:
        10px;

    font-weight:
        850;
}

.availability-dot {
    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--hf-success);
}

.product-price-block {
    margin-bottom:
        17px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        15px;

    border:
        1px solid var(--hf-border);

    border-radius:
        14px;

    background:
        var(--hf-bg);
}

.product-price-block > span {
    color:
        var(--hf-text-muted);

    font-size:
        10px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        0.05em;
}

.product-price-block strong {
    margin:
        2px 0;

    color:
        var(--hf-text);

    font-size:
        25px;

    line-height:
        1.15;

    font-weight:
        950;

    letter-spacing:
        -0.04em;
}

.product-price-block small {
    color:
        var(--hf-text-muted);

    font-size:
        10px;
}

.product-quantity {
    margin-bottom:
        16px;
}

.product-quantity > label {
    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--hf-text-soft);

    font-size:
        11px;

    font-weight:
        850;
}

.quantity-control {
    width:
        fit-content;

    display:
        grid;

    grid-template-columns:
        42px 58px 42px;

    align-items:
        center;

    border:
        1px solid var(--hf-border);

    border-radius:
        12px;

    overflow:
        hidden;

    background:
        var(--hf-white);
}

.quantity-control button {
    height:
        42px;

    display:
        grid;

    place-items:
        center;

    background:
        var(--hf-bg-soft);

    color:
        var(--hf-text);

    font-size:
        19px;

    font-weight:
        900;

    cursor:
        pointer;
}

.quantity-control button:hover {
    background:
        var(--hf-primary-soft);

    color:
        var(--hf-primary);
}

.quantity-control input {
    width:
        100%;

    height:
        42px;

    padding:
        0;

    border:
        0;

    border-left:
        1px solid var(--hf-border);

    border-right:
        1px solid var(--hf-border);

    background:
        var(--hf-white);

    color:
        var(--hf-text);

    text-align:
        center;

    font-size:
        14px;

    font-weight:
        850;

    appearance:
        textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    margin:
        0;

    appearance:
        none;
}

.product-actions {
    margin-top:
        auto;

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;
}

.product-actions .button {
    width:
        100%;
}

.product-question-link {
    display:
        block;

    padding:
        6px;

    color:
        var(--hf-primary);

    text-align:
        center;

    text-decoration:
        none;

    font-size:
        11px;

    font-weight:
        800;
}

.product-question-link:hover {
    text-decoration:
        underline;
}

.product-legal-note {
    margin:
        15px 0 0;

    padding-top:
        14px;

    border-top:
        1px solid var(--hf-border);

    color:
        var(--hf-text-muted);

    font-size:
        9px;

    line-height:
        1.55;
}


/* ==========================================================================
   17. PROCESO
   ========================================================================== */

.process-section {
    background:
        var(--hf-white);
}

.process-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        14px;
}

.process-card {
    padding:
        22px;

    border:
        1px solid var(--hf-border);

    border-radius:
        var(--hf-radius);

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-sm);
}

.process-card > span {
    width:
        38px;

    height:
        38px;

    margin-bottom:
        14px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        12px;

    background:
        var(--hf-primary-soft);

    color:
        var(--hf-primary);

    font-size:
        11px;

    font-weight:
        950;
}

.process-card h3 {
    margin-bottom:
        8px;

    font-size:
        16px;

    font-weight:
        950;
}

.process-card p {
    margin:
        0;

    color:
        var(--hf-text-muted);

    font-size:
        12px;

    line-height:
        1.65;
}


/* ==========================================================================
   18. PRESENTACIÓN
   ========================================================================== */

.presentation-section {
    padding:
        0 0 72px;

    background:
        var(--hf-white);
}

.presentation-card {
    padding:
        30px 24px;

    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        24px;

    border-radius:
        var(--hf-radius-lg);

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ecfeff
        );

    border:
        1px solid #dbeafe;
}

.presentation-card p {
    max-width:
        700px;

    margin:
        14px 0 0;

    color:
        var(--hf-text-muted);

    font-size:
        14px;

    line-height:
        1.7;
}

.presentation-options {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        12px;
}

.presentation-option {
    padding:
        18px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        5px;

    border:
        1px solid var(--hf-border);

    border-radius:
        14px;

    background:
        var(--hf-white);

    color:
        var(--hf-text);

    text-align:
        left;

    cursor:
        pointer;

    box-shadow:
        var(--hf-shadow-sm);

    transition:
        border-color var(--hf-transition),
        transform var(--hf-transition);
}

.presentation-option:hover {
    border-color:
        var(--hf-primary);

    transform:
        translateY(-2px);
}

.presentation-option strong {
    font-size:
        14px;
}

.presentation-option span {
    color:
        var(--hf-text-muted);

    font-size:
        11px;
}


/* ==========================================================================
   19. SMART PURCHASE
   ========================================================================== */

.smart-purchase-section {
    background:
        var(--hf-bg);
}

.smart-purchase-layout {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        34px;
}

.smart-purchase-layout > div:first-child > p {
    max-width:
        560px;

    margin:
        15px 0 0;

    color:
        var(--hf-text-muted);

    font-size:
        14px;

    line-height:
        1.7;
}

.smart-purchase-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        12px;
}

.smart-purchase-grid article {
    padding:
        20px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        6px;

    border:
        1px solid var(--hf-border);

    border-radius:
        14px;

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-sm);
}

.smart-purchase-grid strong {
    font-size:
        14px;

    font-weight:
        950;
}

.smart-purchase-grid span {
    color:
        var(--hf-text-muted);

    font-size:
        11px;

    line-height:
        1.6;
}


/* ==========================================================================
   20. INFORMACIÓN LEGAL
   ========================================================================== */

.legal-information-section {
    background:
        var(--hf-white);
}

.legal-information-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        14px;
}

.legal-information-grid article {
    padding:
        22px;

    border:
        1px solid var(--hf-border);

    border-radius:
        var(--hf-radius);

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-sm);
}

.legal-information-grid h3 {
    margin-bottom:
        10px;

    font-size:
        15px;

    font-weight:
        950;
}

.legal-information-grid p {
    margin-bottom:
        8px;

    color:
        var(--hf-text-muted);

    font-size:
        11px;

    line-height:
        1.65;
}

.legal-information-grid p:last-child {
    margin-bottom:
        0;
}

.legal-information-grid a {
    color:
        var(--hf-primary);

    font-size:
        11px;

    font-weight:
        800;

    text-decoration:
        none;
}

.legal-information-grid a:hover {
    text-decoration:
        underline;
}

.consumer-authority {
    margin-top:
        22px;

    padding:
        22px;

    border:
        1px solid #fde68a;

    border-radius:
        var(--hf-radius);

    background:
        var(--hf-accent-soft);
}

.consumer-authority strong {
    display:
        block;

    margin-bottom:
        7px;

    font-size:
        14px;

    font-weight:
        950;
}

.consumer-authority p {
    margin-bottom:
        9px;

    color:
        var(--hf-text-soft);

    font-size:
        11px;
}

.consumer-authority a {
    color:
        #92400e;

    font-size:
        11px;

    font-weight:
        850;
}


/* ==========================================================================
   21. FOOTER
   ========================================================================== */

.site-footer {
    padding:
        52px 0 22px;

    border-top:
        1px solid var(--hf-border);

    background:
        #f8fafc;
}

.footer-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        30px;
}

.footer-brand p {
    max-width:
        330px;

    margin:
        15px 0 0;

    color:
        var(--hf-text-muted);

    font-size:
        11px;

    line-height:
        1.7;
}

.footer-column {
    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;

    align-items:
        flex-start;
}

.footer-column > strong {
    margin-bottom:
        3px;

    font-size:
        11px;

    font-weight:
        950;

    text-transform:
        uppercase;

    letter-spacing:
        0.06em;
}

.footer-column a {
    color:
        var(--hf-text-muted);

    text-decoration:
        none;

    font-size:
        11px;
}

.footer-column a:hover {
    color:
        var(--hf-primary);
}

.seller-footer {
    margin-top:
        32px;

    padding:
        18px;

    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        4px;

    border:
        1px solid var(--hf-border);

    border-radius:
        14px;

    background:
        var(--hf-white);
}

.seller-footer p {
    margin:
        0;

    color:
        var(--hf-text-muted);

    font-size:
        10px;
}

.footer-bottom {
    margin-top:
        20px;

    padding-top:
        18px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    border-top:
        1px solid var(--hf-border);

    color:
        var(--hf-text-muted);

    font-size:
        9px;
}

.footer-bottom p {
    margin:
        0;
}


/* ==========================================================================
   22. DRAWER BACKDROP
   ========================================================================== */

.drawer-backdrop {
    position:
        fixed;

    inset:
        0;

    z-index:
        999;

    background:
        rgba(15, 23, 42, 0.5);

    backdrop-filter:
        blur(3px);

    -webkit-backdrop-filter:
        blur(3px);
}


/* ==========================================================================
   23. CARRITO
   ========================================================================== */

.cart-drawer {
    position:
        fixed;

    top:
        0;

    right:
        0;

    z-index:
        1000;

    width:
        min(100%, 440px);

    height:
        100dvh;

    display:
        flex;

    flex-direction:
        column;

    background:
        var(--hf-white);

    box-shadow:
        -25px 0 70px rgba(15, 23, 42, 0.2);
}

.cart-drawer-header {
    padding:
        19px;

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        18px;

    border-bottom:
        1px solid var(--hf-border);
}

.cart-drawer-header > div {
    display:
        flex;

    flex-direction:
        column;
}

.cart-drawer-header span {
    color:
        var(--hf-primary);

    font-size:
        10px;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        0.07em;
}

.cart-drawer-header h2 {
    margin:
        2px 0 0;

    font-size:
        23px;

    line-height:
        1.2;

    font-weight:
        950;
}

.drawer-close,
.checkout-close,
.modal-close {
    width:
        39px;

    height:
        39px;

    display:
        grid;

    place-items:
        center;

    flex:
        0 0 auto;

    border-radius:
        50%;

    background:
        var(--hf-bg-soft);

    color:
        var(--hf-text);

    font-size:
        23px;

    line-height:
        1;

    cursor:
        pointer;
}

.cart-items {
    flex:
        1;

    overflow-y:
        auto;

    padding:
        18px;
}

.cart-empty {
    min-height:
        260px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;
}

.cart-empty strong {
    font-size:
        16px;
}

.cart-empty p {
    margin:
        6px 0 0;

    color:
        var(--hf-text-muted);

    font-size:
        12px;
}

.cart-item {
    display:
        grid;

    grid-template-columns:
        74px minmax(0, 1fr);

    gap:
        12px;

    padding:
        13px 0;

    border-bottom:
        1px solid var(--hf-border);
}

.cart-item-image {
    width:
        74px;

    height:
        74px;

    overflow:
        hidden;

    border:
        1px solid var(--hf-border);

    border-radius:
        12px;

    background:
        var(--hf-bg);
}

.cart-item-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        contain;
}

.cart-item-content {
    min-width:
        0;
}

.cart-item-content strong {
    display:
        block;

    margin-bottom:
        4px;

    font-size:
        12px;

    line-height:
        1.35;
}

.cart-item-content small {
    display:
        block;

    color:
        var(--hf-text-muted);

    font-size:
        10px;
}

.cart-item-controls {
    margin-top:
        9px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;
}

.cart-item-quantity {
    display:
        inline-flex;

    align-items:
        center;

    border:
        1px solid var(--hf-border);

    border-radius:
        9px;

    overflow:
        hidden;
}

.cart-item-quantity button {
    width:
        30px;

    height:
        30px;

    background:
        var(--hf-bg-soft);

    cursor:
        pointer;
}

.cart-item-quantity span {
    min-width:
        32px;

    text-align:
        center;

    font-size:
        11px;

    font-weight:
        850;
}

.cart-item-remove {
    background:
        transparent;

    color:
        var(--hf-danger);

    font-size:
        10px;

    font-weight:
        800;

    cursor:
        pointer;
}

.cart-summary {
    padding:
        18px;

    border-top:
        1px solid var(--hf-border);

    background:
        var(--hf-white);
}

.cart-summary > div {
    min-height:
        29px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        var(--hf-text-soft);

    font-size:
        11px;
}

.cart-summary > div strong {
    color:
        var(--hf-text);

    text-align:
        right;
}

.cart-total {
    margin:
        8px 0 14px;

    padding-top:
        11px;

    border-top:
        1px solid var(--hf-border);

    font-size:
        14px !important;
}

.cart-total strong {
    font-size:
        18px;
}

.cart-summary .button {
    width:
        100%;
}

.cart-summary > small {
    display:
        block;

    margin-top:
        10px;

    color:
        var(--hf-text-muted);

    font-size:
        9px;

    line-height:
        1.55;
}


/* ==========================================================================
   24. CHECKOUT OVERLAY
   ========================================================================== */

.checkout-overlay,
.presentation-modal,
.order-modal,
.payment-report-modal {
    position:
        fixed;

    inset:
        0;

    z-index:
        1200;

    overflow-y:
        auto;

    padding:
        20px;

    background:
        rgba(15, 23, 42, 0.58);

    backdrop-filter:
        blur(4px);

    -webkit-backdrop-filter:
        blur(4px);
}


/* ==========================================================================
   25. CHECKOUT
   ========================================================================== */

.checkout-dialog {
    width:
        min(100%, 980px);

    margin:
        20px auto;

    overflow:
        hidden;

    border-radius:
        var(--hf-radius-lg);

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-lg);
}

.checkout-header {
    position:
        sticky;

    top:
        0;

    z-index:
        10;

    padding:
        18px 20px;

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        20px;

    border-bottom:
        1px solid var(--hf-border);

    background:
        rgba(255, 255, 255, 0.97);

    backdrop-filter:
        blur(10px);
}

.checkout-header span {
    color:
        var(--hf-primary);

    font-size:
        10px;

    font-weight:
        900;

    text-transform:
        uppercase;

    letter-spacing:
        0.06em;
}

.checkout-header h2 {
    margin:
        2px 0 0;

    font-size:
        25px;

    line-height:
        1.2;

    font-weight:
        950;
}

#checkoutForm {
    padding:
        18px;
}

.checkout-section {
    margin:
        0 0 18px;

    padding:
        18px;

    border:
        1px solid var(--hf-border);

    border-radius:
        var(--hf-radius);

    background:
        var(--hf-white);
}

.checkout-section > legend {
    padding:
        0 8px;

    color:
        var(--hf-text);

    font-size:
        13px;

    font-weight:
        950;
}

.form-grid {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        14px;
}

.form-field {
    display:
        flex;

    flex-direction:
        column;

    gap:
        6px;
}

.form-field label {
    color:
        var(--hf-text-soft);

    font-size:
        11px;

    font-weight:
        800;
}

.form-field input,
.form-field select,
.form-field textarea {
    width:
        100%;

    min-height:
        46px;

    padding:
        10px 12px;

    border:
        1px solid var(--hf-border-strong);

    border-radius:
        11px;

    background:
        var(--hf-white);

    color:
        var(--hf-text);

    font-size:
        13px;

    outline:
        none;

    transition:
        border-color var(--hf-transition),
        box-shadow var(--hf-transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color:
        var(--hf-primary);

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field small {
    color:
        var(--hf-text-muted);

    font-size:
        9px;
}

.shipping-result {
    margin-top:
        15px;

    padding:
        14px;

    border:
        1px solid #bfdbfe;

    border-radius:
        12px;

    background:
        var(--hf-primary-soft);
}

.shipping-result strong {
    display:
        block;

    margin-bottom:
        4px;

    font-size:
        12px;
}

.shipping-result p {
    margin:
        0;

    color:
        var(--hf-text-soft);

    font-size:
        10px;
}


/* ==========================================================================
   26. RADIO CARDS
   ========================================================================== */

.radio-card-group {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        10px;
}

.radio-card {
    position:
        relative;

    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    padding:
        14px;

    border:
        1px solid var(--hf-border);

    border-radius:
        12px;

    cursor:
        pointer;

    transition:
        border-color var(--hf-transition),
        background-color var(--hf-transition);
}

.radio-card:hover {
    border-color:
        var(--hf-primary);
}

.radio-card:has(input:checked) {
    border-color:
        var(--hf-primary);

    background:
        var(--hf-primary-soft);
}

.radio-card input {
    margin-top:
        3px;

    accent-color:
        var(--hf-primary);
}

.radio-card > span {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}

.radio-card strong {
    font-size:
        12px;
}

.radio-card small {
    color:
        var(--hf-text-muted);

    font-size:
        9px;
}


/* ==========================================================================
   27. PAYMENT
   ========================================================================== */

.payment-method-card {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        15px;

    border:
        1px solid var(--hf-primary);

    border-radius:
        12px;

    background:
        var(--hf-primary-soft);

    cursor:
        pointer;
}

.payment-method-card input {
    accent-color:
        var(--hf-primary);
}

.payment-method-content {
    display:
        flex;

    flex-direction:
        column;

    gap:
        2px;
}

.payment-method-content strong {
    font-size:
        13px;
}

.payment-method-content small {
    color:
        var(--hf-text-muted);

    font-size:
        9px;
}

.payment-security-note {
    margin-top:
        12px;

    padding:
        12px;

    border-radius:
        10px;

    background:
        var(--hf-bg);

    color:
        var(--hf-text-muted);

    font-size:
        9px;

    line-height:
        1.5;
}


/* ==========================================================================
   28. CHECKOUT ITEMS
   ========================================================================== */

.checkout-items {
    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;
}

.checkout-item {
    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        14px;

    padding:
        11px 0;

    border-bottom:
        1px solid var(--hf-border);
}

.checkout-item:last-child {
    border-bottom:
        0;
}

.checkout-item div {
    min-width:
        0;
}

.checkout-item strong {
    display:
        block;

    margin-bottom:
        3px;

    font-size:
        11px;
}

.checkout-item small {
    color:
        var(--hf-text-muted);

    font-size:
        9px;
}

.checkout-item-price {
    flex:
        0 0 auto;

    text-align:
        right;

    font-size:
        11px;

    font-weight:
        900;
}

.checkout-totals {
    margin-top:
        14px;

    padding-top:
        13px;

    border-top:
        1px solid var(--hf-border);
}

.checkout-totals > div {
    min-height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        16px;

    color:
        var(--hf-text-soft);

    font-size:
        10px;
}

.checkout-grand-total {
    margin-top:
        7px;

    padding-top:
        11px;

    border-top:
        1px solid var(--hf-border);

    color:
        var(--hf-text) !important;

    font-size:
        14px !important;

    font-weight:
        900;
}

.checkout-grand-total strong {
    font-size:
        19px;
}


/* ==========================================================================
   29. CONSENTIMIENTOS
   ========================================================================== */

.checkout-consents {
    background:
        var(--hf-bg);
}

.consent-row {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        10px;

    padding:
        12px 0;

    border-bottom:
        1px solid var(--hf-border);

    cursor:
        pointer;
}

.consent-row:last-child {
    border-bottom:
        0;
}

.consent-row input {
    margin-top:
        3px;

    accent-color:
        var(--hf-primary);
}

.consent-row span {
    color:
        var(--hf-text-soft);

    font-size:
        10px;

    line-height:
        1.6;
}

.consent-row a {
    color:
        var(--hf-primary);

    font-weight:
        800;
}

.checkout-submit-area {
    padding:
        4px 0 5px;
}

.checkout-submit-area p {
    margin-bottom:
        13px;

    color:
        var(--hf-text-muted);

    font-size:
        9px;

    line-height:
        1.55;
}

.checkout-submit-area .button {
    width:
        100%;
}


/* ==========================================================================
   30. MODAL PRESENTACIÓN
   ========================================================================== */

.presentation-modal {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}

.presentation-modal-dialog,
.order-modal-dialog,
.payment-report-dialog {
    position:
        relative;

    width:
        min(100%, 520px);

    margin:
        auto;

    padding:
        28px 22px;

    border-radius:
        var(--hf-radius-lg);

    background:
        var(--hf-white);

    box-shadow:
        var(--hf-shadow-lg);
}

.presentation-modal-dialog h2,
.order-modal-dialog h2,
.payment-report-dialog h2 {
    margin-bottom:
        10px;

    font-size:
        24px;

    line-height:
        1.2;

    font-weight:
        950;
}

.presentation-modal-dialog > p,
.payment-report-dialog > p {
    margin-bottom:
        20px;

    color:
        var(--hf-text-muted);

    font-size:
        11px;

    line-height:
        1.65;
}

.presentation-modal-options {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        10px;
}

.presentation-modal-options button {
    min-height:
        48px;

    padding:
        12px 15px;

    border:
        1px solid var(--hf-border);

    border-radius:
        12px;

    background:
        var(--hf-white);

    color:
        var(--hf-text);

    font-weight:
        850;

    cursor:
        pointer;
}

.presentation-modal-options button:hover {
    border-color:
        var(--hf-primary);

    background:
        var(--hf-primary-soft);

    color:
        var(--hf-primary);
}


/* ==========================================================================
   31. MODAL ORDEN
   ========================================================================== */

.order-modal {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}

.order-modal-dialog > p {
    color:
        var(--hf-text-soft);

    font-size:
        12px;
}

.payment-instructions {
    margin:
        18px 0;

    padding:
        15px;

    border:
        1px solid #bfdbfe;

    border-radius:
        12px;

    background:
        var(--hf-primary-soft);

    color:
        var(--hf-text-soft);

    font-size:
        11px;

    line-height:
        1.65;
}

.order-actions {
    display:
        grid;

    grid-template-columns:
        1fr;

    gap:
        9px;
}

.order-actions .button {
    width:
        100%;
}


/* ==========================================================================
   32. REPORTE DE PAGO
   ========================================================================== */

.payment-report-modal {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}

#paymentReportForm {
    display:
        flex;

    flex-direction:
        column;

    gap:
        14px;
}

#paymentReportForm .button {
    width:
        100%;
}


/* ==========================================================================
   33. ESTADOS Y MENSAJES
   ========================================================================== */

.form-error {
    margin-top:
        5px;

    color:
        var(--hf-danger);

    font-size:
        9px;
}

.is-invalid {
    border-color:
        var(--hf-danger) !important;

    box-shadow:
        0 0 0 3px rgba(220, 38, 38, 0.08) !important;
}

.notice-success,
.notice-warning,
.notice-error {
    padding:
        12px;

    border-radius:
        10px;

    font-size:
        10px;

    line-height:
        1.55;
}

.notice-success {
    background:
        var(--hf-success-soft);

    color:
        #166534;
}

.notice-warning {
    background:
        var(--hf-warning-soft);

    color:
        #92400e;
}

.notice-error {
    background:
        var(--hf-danger-soft);

    color:
        #991b1b;
}


/* ==========================================================================
   34. ACCESIBILIDAD
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline:
        3px solid rgba(37, 99, 235, 0.3);

    outline-offset:
        3px;
}


/* ==========================================================================
   35. TABLET
   ========================================================================== */

@media (min-width: 600px) {

    .site-container {
        width:
            min(
                calc(100% - 48px),
                var(--hf-container)
            );
    }

    .hero-actions {
        flex-direction:
            row;

        flex-wrap:
            wrap;
    }

    .hero-actions .button {
        width:
            auto;
    }

    .hero-trust {
        grid-template-columns:
            repeat(3, 1fr);
    }

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

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

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

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

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

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

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

    .form-field-full {
        grid-column:
            1 / -1;
    }

    .radio-card-group {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

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

    .order-actions {
        grid-template-columns:
            1fr 1fr;
    }

}


/* ==========================================================================
   36. TABLET GRANDE
   ========================================================================== */

@media (min-width: 820px) {

    .hero {
        padding:
            78px 0 82px;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(330px, 0.92fr);

        align-items:
            center;

        gap:
            58px;
    }

    .trust-strip-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-strip-item {
        padding:
            18px;

        border-bottom:
            1px solid var(--hf-border);
    }

    .trust-strip-item:nth-child(odd) {
        border-right:
            1px solid var(--hf-border);
    }

    .trust-strip-item:nth-last-child(-n+2) {
        border-bottom:
            0;
    }

    .section {
        padding:
            82px 0;
    }

    .section-heading {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.55fr);

        align-items:
            end;

        gap:
            40px;

        margin-bottom:
            38px;
    }

    .section-heading > p {
        justify-self:
            end;
    }

    .presentation-section {
        padding-bottom:
            82px;
    }

    .presentation-card {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.8fr);

        align-items:
            center;

        padding:
            34px;
    }

    .smart-purchase-layout {
        grid-template-columns:
            minmax(0, 0.75fr)
            minmax(0, 1.25fr);

        gap:
            60px;

        align-items:
            start;
    }

    .footer-grid {
        grid-template-columns:
            1.6fr
            1fr
            1fr
            1fr;

        gap:
            35px;
    }

    .seller-footer {
        grid-template-columns:
            repeat(4, auto);

        justify-content:
            space-between;

        align-items:
            center;
    }

    .footer-bottom {
        flex-direction:
            row;

        justify-content:
            space-between;

        align-items:
            center;
    }

}


/* ==========================================================================
   37. DESKTOP
   ========================================================================== */

@media (min-width: 1024px) {

    .desktop-nav {
        display:
            flex;
    }

    .mobile-menu-button {
        display:
            none;
    }

    .mobile-menu {
        display:
            none !important;
    }

    .header-inner {
        min-height:
            78px;
    }

    .hero h1 {
        font-size:
            62px;
    }

    .hero-commerce-flow {
        grid-template-columns:
            repeat(4, 1fr);
    }

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

    .trust-strip-item {
        border-right:
            1px solid var(--hf-border);

        border-bottom:
            0;
    }

    .trust-strip-item:nth-child(odd) {
        border-right:
            1px solid var(--hf-border);
    }

    .trust-strip-item:last-child {
        border-right:
            0;
    }

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

    .category-card {
        min-height:
            120px;

        flex-direction:
            column;

        align-items:
            flex-start;

        justify-content:
            center;

        position:
            relative;
    }

    .category-arrow {
        position:
            absolute;

        right:
            16px;

        bottom:
            14px;
    }

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

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

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

}


/* ==========================================================================
   38. DESKTOP GRANDE
   ========================================================================== */

@media (min-width: 1200px) {

    .site-container {
        width:
            min(
                calc(100% - 64px),
                var(--hf-container)
            );
    }

    .hero {
        padding:
            90px 0 96px;
    }

    .hero-grid {
        gap:
            80px;
    }

    .hero h1 {
        font-size:
            67px;
    }

    .hero-description {
        font-size:
            18px;
    }

    .section {
        padding:
            96px 0;
    }

    .presentation-section {
        padding-bottom:
            96px;
    }

}


/* ==========================================================================
   39. MÓVIL PEQUEÑO
   ========================================================================== */

@media (max-width: 420px) {

    .site-container {
        width:
            min(
                calc(100% - 24px),
                var(--hf-container)
            );
    }

    .top-bar-inner {
        min-height:
            34px;

        font-size:
            10px;
    }

    .top-bar-divider,
    .top-bar-inner > span:nth-child(3) {
        display:
            none;
    }

    .header-inner {
        min-height:
            66px;
    }

    .brand-mark {
        width:
            38px;

        height:
            38px;
    }

    .brand-content strong {
        font-size:
            16px;
    }

    .cart-header-button {
        padding:
            0 10px;
    }

    .cart-header-button > span:nth-child(2) {
        display:
            none;
    }

    .hero {
        padding:
            40px 0 48px;
    }

    .hero h1 {
        font-size:
            38px;
    }

    .hero-description {
        font-size:
            15px;
    }

    .hero-commerce-card {
        padding:
            24px 20px;
    }

    .hero-commerce-card h2 {
        font-size:
            24px;
    }

    .section {
        padding:
            52px 0;
    }

    .product-body {
        padding:
            19px;
    }

    .product-image {
        padding:
            14px;
    }

    .product-price-block strong {
        font-size:
            23px;
    }

    .presentation-card {
        padding:
            24px 20px;
    }

    .legal-information-grid article {
        padding:
            18px;
    }

    .checkout-overlay,
    .presentation-modal,
    .order-modal,
    .payment-report-modal {
        padding:
            8px;
    }

    .checkout-dialog {
        margin:
            8px auto;

        border-radius:
            18px;
    }

    #checkoutForm {
        padding:
            12px;
    }

    .checkout-section {
        padding:
            15px;
    }

}


/* ==========================================================================
   40. REDUCCIÓN DE MOVIMIENTO
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}


/* ==========================================================================
   41. PRINT
   ========================================================================== */

@media print {

    .top-bar,
    .site-header,
    .hero-actions,
    .product-actions,
    .presentation-options,
    .cart-drawer,
    .drawer-backdrop,
    .checkout-overlay,
    .presentation-modal,
    .order-modal,
    .payment-report-modal {
        display:
            none !important;
    }

    body {
        background:
            #ffffff;

        color:
            #000000;
    }

    .product-card,
    .process-card,
    .legal-information-grid article {
        box-shadow:
            none;

        break-inside:
            avoid;
    }

}