* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }

:root {
    --deep-space: #0a0a0f;
    --neon-blue: #00f3ff;
    --neon-purple: #b967ff;
    --matrix-green: #00ff9d;
    --accent-shop: #ff9f43;
    --accent-shop2: #ff6b6b;
    --stardust: rgba(255, 255, 255, 0.9);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
}

body {
    background: var(--deep-space);
    color: var(--stardust);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    padding-top: 6rem;
}

#particles-js { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

.top-content-wrapper { width: 100%; position: relative; z-index: 2; }

.container {
    display: block;
    max-width: var(--cw-shell-wide, 1540px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container--hero { padding: 0 1.5rem; }

.hero-section {
    padding: 0 0 2rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
}

@media (min-width: 969px) {
    .container--hero {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-areas:
            "intro visual"
            "features visual"
            "cta visual";
        column-gap: clamp(1.5rem, 3vw, 2.5rem);
        row-gap: 0;
        align-items: start;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    .hero-intro {
        grid-area: intro;
        width: 100%;
        max-width: none;
        margin-inline: 0;
        margin-bottom: 0;
        padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0.5rem 0.5rem 0;
        text-align: left;
        box-sizing: border-box;
    }

    .visual-section {
        grid-area: visual;
        align-self: start;
        justify-self: stretch;
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0 1.5rem;
        margin: 0;
        box-sizing: border-box;
    }

    .features {
        grid-area: features;
        width: 100%;
        max-width: none;
        padding: 0;
        box-sizing: border-box;
    }

    .cta-container {
        grid-area: cta;
        width: 100%;
        max-width: none;
        margin: 0.35rem 0 0;
        padding: 0.75rem 0 1.5rem;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .hero-intro .badge { margin: 0 0 1.5rem; }
    .hero-title,
    .hero-subtitle { text-align: left; }
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    body:not(.page-home) .hero-section .hero-intro {
        max-width: none;
        margin-inline: 0;
    }

    .shop-banner,
    .shop-banner__diagram {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .shop-banner__row {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        width: 100%;
        align-items: stretch;
    }

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

.hero-intro {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
    padding-top: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%));
}

.visual-section--shop-banner {
    width: 100%;
    min-width: 0;
}

.full-width-section {
    width: 100%;
    padding: 2rem 1.5rem 3rem;
    position: relative;
    z-index: 2;
}

.hero-intro .badge { margin: 0 0 1.5rem; }

.badge {
    background: rgba(255, 159, 67, 0.12);
    border: 1px solid rgba(255, 159, 67, 0.45);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-shop);
    box-shadow: 0 0 15px rgba(255, 159, 67, 0.25);
    width: fit-content;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.35;
    padding-block: 0.05em 0.15em;
    overflow: visible;
    background: linear-gradient(135deg, var(--accent-shop), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 820px;
    margin: 0;
    font-weight: 300;
    text-align: left;
}

.hero-subtitle strong { color: rgba(255, 255, 255, 0.92); font-weight: 600; }

/* Preview / demo inline bajo el hero */
.shop-demo-section {
    position: relative;
    width: 100%;
    margin: 0 0 2.5rem;
    box-sizing: border-box;
}

.shop-demo-section::before {
    content: '';
    position: absolute;
    inset: -15% -5%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 159, 67, 0.1) 0%, rgba(0, 243, 255, 0.05) 40%, transparent 72%);
    pointer-events: none;
}

.shop-demo-section__hint {
    position: relative;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.shop-demo-section__hint i { color: var(--accent-shop); margin-right: 0.35rem; }
.shop-demo-section__hint strong { color: rgba(255, 255, 255, 0.88); }

.shop-demo-section__head {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

.shop-demo-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.shop-demo-section__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.shop-demo-expand-btn,
.shop-demo-standalone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.shop-demo-expand-btn {
    border: none;
    padding: 0.5rem 0.95rem;
    background: linear-gradient(135deg, var(--accent-shop), var(--accent-shop2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.25);
}

.shop-demo-expand-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 107, 107, 0.32);
}

.shop-demo-standalone-link {
    padding: 0.48rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
}

.shop-demo-standalone-link:hover {
    border-color: rgba(255, 159, 67, 0.45);
    color: #fff;
    background: rgba(255, 159, 67, 0.12);
}

.shop-demo-frame-slot { width: 100%; }

.shop-demo-section--standalone {
    margin: 0 0 2rem;
}

.shop-demo-section--standalone::before { display: none; }

.shop-demo-section__standalone-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.shop-demo-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shop-demo-back-link:hover { color: var(--accent-shop); }

.shop-demo-section__hint--standalone {
    margin: 0;
    text-align: right;
}

.shop-demo-standalone-wrap .container--hero {
    max-width: var(--cw-shell-wide, 1540px);
}

body.shop-demo-standalone-page {
    padding-top: 6rem;
}

.shop-demo-frame--standalone,
.shop-demo-frame--expanded {
    max-width: 100% !important;
    width: 100%;
    border-radius: 16px;
}

.shop-demo-frame--standalone .shop-demo-frame__viewport,
.shop-demo-frame--expanded .shop-demo-frame__viewport {
    min-height: min(78vh, 820px);
    max-height: none;
}

.shop-demo-frame--standalone {
    min-height: min(82vh, 860px);
}

.shop-demo-frame--expanded {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 0 0 16px 16px;
    border: none;
    box-shadow: none;
}

.shop-demo-frame--expanded .shop-demo-frame__viewport {
    flex: 1;
    min-height: 0;
}

/* Modal pantalla completa */
body.shop-demo-fullscreen-open { overflow: hidden; }

.shop-demo-fullscreen {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.shop-demo-fullscreen[hidden] { display: none; }

.shop-demo-fullscreen__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 18, 0.88);
    backdrop-filter: blur(6px);
}

.shop-demo-fullscreen__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(var(--cw-shell-wide, 1540px), 100%);
    max-height: 100vh;
    margin: 0 auto;
    background: #0a0a10;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.shop-demo-fullscreen__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #12121a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-demo-fullscreen__head-info {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
}

.shop-demo-fullscreen__icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: #111827;
    border: 2px solid rgba(255, 159, 67, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    flex-shrink: 0;
    line-height: 1;
}

.shop-demo-fullscreen__head h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.01em;
}

.shop-demo-fullscreen__head p {
    margin: 0.15rem 0 0;
    font-size: 0.68rem;
    color: #94a3b8;
}

.shop-demo-fullscreen__head-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.shop-demo-fullscreen__tab-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.shop-demo-fullscreen__tab-link:hover {
    border-color: rgba(255, 159, 67, 0.45);
    color: #fff;
}

.shop-demo-fullscreen__close {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    cursor: pointer;
    transition: background 0.2s ease;
}

.shop-demo-fullscreen__close:hover { background: rgba(255, 107, 107, 0.25); }

.shop-demo-fullscreen__body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0 0.75rem 0.75rem;
}

@media (max-width: 768px) {
    .shop-demo-frame-slot,
    .shop-demo-frame {
        width: 100%;
        max-width: 100%;
        margin-inline: auto;
        box-sizing: border-box;
    }
}

@media (max-width: 639px) {
    .shop-demo-section__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-demo-section__cta {
        width: 100%;
    }

    .shop-demo-expand-btn,
    .shop-demo-standalone-link {
        flex: 1;
        justify-content: center;
    }

    .shop-demo-fullscreen__tab-link span { display: none; }

    .shop-demo-section__hint--standalone {
        text-align: left;
        width: 100%;
    }

    .shop-demo-fullscreen__panel {
        width: 100%;
        max-height: 100dvh;
    }

    .shop-demo-frame[data-device="mobile"] {
        max-width: 100%;
        padding: 0;
    }

    .shop-demo-frame[data-device="mobile"].shop-demo-frame--expanded {
        border-radius: 0;
    }

    .shop-demo-frame[data-device="mobile"] .shop-demo-frame__viewport {
        border-radius: 0;
        min-height: 0;
    }

    .shop-demo-fullscreen__body {
        padding: 0;
    }
}

.shop-demo-section__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.shop-demo-section__pills span {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 159, 67, 0.1);
    border: 1px solid rgba(255, 159, 67, 0.25);
    color: rgba(255, 255, 255, 0.75);
}

.shop-demo-section__pills span:first-child i { color: #25d366; }
.shop-demo-section__pills i { margin-right: 0.25rem; color: var(--accent-shop); }

.shop-demo-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 159, 67, 0.2);
    background: #0a0a10;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 159, 67, 0.08) inset;
    pointer-events: auto;
}

.shop-demo-frame[data-device="desktop"] { max-width: 100%; }
.shop-demo-frame[data-device="tablet"] { max-width: 680px; margin-left: auto; margin-right: auto; width: 100%; border-radius: 16px; }
.shop-demo-frame[data-device="mobile"] { max-width: 380px; margin-left: auto; margin-right: auto; width: 100%; border-radius: 24px; padding: 0.45rem; }

.shop-demo-frame__chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: #1e1e28;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-demo-frame__dot { width: 8px; height: 8px; border-radius: 50%; }
.shop-demo-frame__dot--r { background: #ff5f57; }
.shop-demo-frame__dot--y { background: #febc2e; }
.shop-demo-frame__dot--g { background: #28c840; }

.shop-demo-frame__url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: ui-monospace, monospace;
    margin-right: 2rem;
}

.shop-demo-frame__bezel { height: 14px; background: #0a0a10; position: relative; }

.shop-demo-frame__bezel::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 28%;
    height: 6px;
    background: #0a0a10;
    border-radius: 0 0 8px 8px;
}

.shop-demo-frame__viewport {
    overflow-y: auto;
    overflow-x: hidden;
    background: #fafafa;
    min-height: 480px;
    max-height: min(78vh, 720px);
    position: relative;
    isolation: isolate;
}

.shop-demo-section > .eshop-toast { display: none; }

.eshop-toast {
    position: absolute;
    bottom: 4.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0.85rem;
    width: calc(100% - 1.5rem);
    max-width: 20rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 255, 157, 0.35);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 600;
    pointer-events: auto;
}

.eshop-toast.is-hidden { display: none; }

.eshop-toast__go {
    border: none;
    background: #047857;
    color: #fff;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    cursor: pointer;
    pointer-events: auto;
}

.eshop-overlay {
    position: absolute;
    inset: 0;
    z-index: 180;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
}

.eshop-overlay.is-hidden { display: none; }

.eshop-overlay .eshop-processing { background: transparent; padding: 2rem; }

.shop-demo-frame[data-device="mobile"] .shop-demo-frame__viewport {
    border-radius: 16px;
    min-height: 460px;
    max-height: min(68vh, 580px);
}

/* Banner inicio */
.eshop-banner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    padding: 1.35rem 1.25rem 1.15rem;
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255, 159, 67, 0.12) 0%, transparent 55%),
        linear-gradient(135deg, #fafafa 0%, #fff 45%, #fff8f2 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.eshop-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230f172a' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

.eshop-banner__content,
.eshop-banner__visual { position: relative; z-index: 1; }

.eshop-banner__content { min-width: 0; }

.eshop-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--eshop-accent2);
    margin-bottom: 0.55rem;
}

.eshop-banner__eyebrow i { color: var(--eshop-accent); }

.eshop-banner h1 {
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    font-weight: 900;
    line-height: 1.12;
    color: #0f172a;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.eshop-banner__content > p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 0.85rem;
    max-width: 26rem;
}

.eshop-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.eshop-banner__perks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.eshop-banner__perks li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #475569;
}

.eshop-banner__perks i { color: var(--eshop-accent); font-size: 0.72rem; }
.eshop-banner__perks li:first-child i { color: #25d366; }

.eshop-banner__visual { display: flex; justify-content: center; }

.eshop-banner__card {
    width: 100%;
    max-width: 14.5rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    transform: perspective(800px) rotateY(-4deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.shop-demo-frame[data-device="desktop"] .eshop-banner__card:hover {
    transform: perspective(800px) rotateY(0deg) translateY(-2px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.eshop-banner__card-holo .eshop-holo--hero {
    min-height: 6.5rem;
    border-radius: 0;
}

.eshop-banner__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-banner__stats div {
    padding: 0.65rem 0.35rem;
    text-align: center;
    border-right: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-banner__stats div:last-child { border-right: none; }

.eshop-banner__stats strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.28;
    padding-block: 0.05em 0.15em;
    overflow: visible;
}

.eshop-banner__stats span {
    font-size: 0.58rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-demo-frame[data-device="tablet"] .eshop-banner,
.shop-demo-frame[data-device="mobile"] .eshop-banner {
    grid-template-columns: 1fr;
}

.shop-demo-frame[data-device="mobile"] .eshop-banner__visual { order: -1; }
.shop-demo-frame[data-device="mobile"] .eshop-banner__card { max-width: 100%; }

.eshop-hero--home {
    position: relative;
    padding: 1.25rem 1rem 1rem;
    text-align: center;
    background: linear-gradient(160deg, #fff 0%, #fff8f0 45%, rgba(255, 159, 67, 0.12) 100%);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 159, 67, 0.15);
}

.eshop-hero__glow {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 159, 67, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.eshop-hero--home .eshop-hero__badge {
    position: relative;
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--eshop-accent2);
    border: 1px solid rgba(255, 159, 67, 0.25);
    margin-bottom: 0.55rem;
}

.eshop-hero--home h1 {
    position: relative;
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    font-weight: 900;
    margin: 0 0 0.4rem;
    color: #0f172a;
    line-height: 1.15;
}

.eshop-hero--home > p {
    position: relative;
    font-size: 0.78rem;
    color: #64748b;
    margin: 0 auto 0.65rem;
    max-width: 22rem;
    line-height: 1.5;
}

.eshop-hero__pills {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.eshop-hero__pills span {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: #475569;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.eshop-hero__pills i { color: var(--eshop-accent); margin-right: 0.2rem; font-size: 0.6rem; }

.eshop-hero--home .eshop-hero__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
}

.eshop-hero--compact {
    padding: 1rem;
    text-align: center;
    background: linear-gradient(165deg, #fff 0%, #fff5eb 100%);
}

.eshop-hero--compact h1 {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 900;
    margin: 0.35rem 0;
    color: #0f172a;
}

.eshop-hero--compact p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.eshop-home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding: 0.85rem 1rem 1rem;
    align-items: start;
    background: #fafafa;
}

.eshop-home-split__col {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.65rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.eshop-home-split__col--cats {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.eshop-carousel-wrap__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.eshop-carousel-wrap__head h2 {
    font-size: 0.82rem;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
}

.eshop-carousel-wrap__nav { display: flex; gap: 0.25rem; }

.eshop-carousel__btn {
    width: 1.65rem;
    height: 1.65rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshop-carousel__btn:hover {
    border-color: var(--eshop-accent);
    color: var(--eshop-accent2);
}

.eshop-carousel {
    overflow: hidden;
    border-radius: 12px;
}

.eshop-carousel__track {
    display: flex;
    gap: 0.65rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.eshop-carousel__slide {
    flex: 0 0 calc(50% - 0.35rem);
    min-width: calc(50% - 0.35rem);
}

.shop-demo-frame[data-device="mobile"] .eshop-carousel__slide,
.shop-demo-frame[data-device="tablet"] .eshop-carousel__slide {
    flex: unset;
    min-width: 0;
    width: auto;
}

.shop-demo-frame[data-device="mobile"] .eshop-carousel,
.shop-demo-frame[data-device="tablet"] .eshop-carousel {
    overflow: visible;
}

.shop-demo-frame[data-device="mobile"] .eshop-carousel__track,
.shop-demo-frame[data-device="tablet"] .eshop-carousel__track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    transform: none !important;
}

.shop-demo-frame[data-device="mobile"] .eshop-carousel-wrap__nav,
.shop-demo-frame[data-device="tablet"] .eshop-carousel-wrap__nav {
    display: none;
}

@media (max-width: 639px) {
    .eshop-carousel {
        overflow: visible;
    }

    .eshop-carousel__track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
        transform: none !important;
    }

    .eshop-carousel__slide {
        flex: unset;
        min-width: 0;
        width: auto;
    }

    .eshop-carousel-wrap__nav {
        display: none;
    }
}

.eshop-carousel__slide .eshop-card { height: 100%; }

.eshop-subcat-tile {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    background: #fff;
    padding: 0.55rem;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eshop-subcat-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 159, 67, 0.12);
}

.eshop-subcat-tile .eshop-holo--card { aspect-ratio: 16/10; margin-bottom: 0.45rem; }

.eshop-subcat-tile__label {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
}

.eshop-subcat-tile__count {
    font-size: 0.68rem;
    color: #94a3b8;
}

.shop-demo-frame[data-device="tablet"] .eshop-home-split { grid-template-columns: 1fr; }
.shop-demo-frame[data-device="mobile"] .eshop-home-split { grid-template-columns: 1fr; }

.eshop-pay-panel { pointer-events: auto; }

.eshop-cart__remove,
.eshop-qty-btn {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.eshop-cart__remove {
    min-width: 1.75rem;
    min-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 1rem 0 0.35rem;
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding-left: 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 159, 67, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-shop);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-icon.green { background: rgba(0, 255, 157, 0.1); color: var(--matrix-green); }

.feature-text h3 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.55;
}

.cta-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    gap: 0.7rem;
    width: 100%;
    max-width: min(820px, 100%);
    margin: 2.5rem auto 1rem;
}

.hero-section .cta-container .cta-button {
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 159, 67, 0.1);
    color: var(--accent-shop);
    padding: 1rem 2.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 159, 67, 0.25);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-shop), var(--accent-shop2));
    color: white;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 159, 67, 0.25);
}

.shop-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.42rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 159, 67, 0.32);
    color: var(--stardust);
    background: rgba(255, 159, 67, 0.07);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.shop-card-btn i { font-size: 0.62rem; transition: transform 0.25s ease; }

.shop-card-btn:hover {
    background: rgba(255, 159, 67, 0.14);
    border-color: rgba(255, 159, 67, 0.55);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 159, 67, 0.15);
}

.shop-card-btn:hover i { transform: translateX(2px); }

.shop-card-btn--whatsapp {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.1);
}

.shop-card-btn--whatsapp i {
    font-size: 0.85rem;
}

.shop-card-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.18);
}

.shop-card-btn--whatsapp:hover i {
    transform: none;
}

.sw-section { max-width: var(--cw-shell-wide, 1540px); margin: 0 auto 3.5rem; padding: 0 0.5rem; }

.sw-section-title {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-shop), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.38;
    padding-block: 0.05em 0.15em;
    overflow: visible;
}
.sw-section-lead {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 1.05rem;
}

.sw-section-lead strong { color: rgba(255, 255, 255, 0.9); }

.sw-signals {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(8px);
}

.sw-signals-title {
    font-size: 1rem;
    color: var(--accent-shop);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sw-signals-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
}

.sw-signals-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.sw-signals-list i { color: var(--matrix-green); margin-top: 0.2rem; flex-shrink: 0; }

.sw-use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.sw-use-card {
    padding: 1.35rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.sw-use-card:hover { border-color: rgba(255, 159, 67, 0.45); transform: translateY(-2px); }
.sw-use-card > i { font-size: 1.35rem; color: var(--accent-shop); margin: 0; }
.sw-use-card h3 { font-size: 1rem; color: #fff; margin: 0; }
.sw-use-card p { font-size: 0.86rem; line-height: 1.55; color: rgba(255, 255, 255, 0.62); flex: 1; }

.sw-compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.sw-compare-col {
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
}

.sw-compare-col h3 { font-size: 1.05rem; margin-bottom: 1rem; color: #fff; }
.sw-compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.sw-compare-col li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    padding-left: 1.1rem;
    position: relative;
}

.sw-compare-col li::before { content: '•'; position: absolute; left: 0; color: var(--matrix-green); }

.sw-compare-col--custom {
    border-color: rgba(255, 159, 67, 0.35);
    box-shadow: 0 0 30px rgba(255, 159, 67, 0.08);
}

.sw-compare-col--custom h3 { color: var(--accent-shop); }

.sw-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.sw-process-step {
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
}

.sw-process-num {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 159, 67, 0.15);
    color: var(--accent-shop);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.sw-process-step h3 { font-size: 0.95rem; color: #fff; margin-bottom: 0.4rem; }
.sw-process-step p { font-size: 0.84rem; line-height: 1.55; color: rgba(255, 255, 255, 0.62); }

.faq-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    font-family: 'Poiret One', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--accent-shop), var(--neon-purple), var(--matrix-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.section-label {
    text-align: center;
    font-weight: 600;
    color: var(--accent-shop);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s;
}

.accordion-item:hover { border-color: var(--accent-shop); }

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--stardust);
    transition: color 0.3s;
}

.accordion-header:hover { color: var(--accent-shop); }
.accordion-header i { font-size: 1rem; color: var(--matrix-green); transition: transform 0.3s; flex-shrink: 0; }
.accordion-header[aria-expanded="true"] i { transform: rotate(180deg); }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 2rem; }
.accordion-content.active { max-height: 400px; padding: 0.5rem 2rem 1.5rem; }
.accordion-content p { font-size: 0.93rem; line-height: 1.65; color: rgba(255, 255, 255, 0.72); }

.personal-consult-module {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 159, 67, 0.25);
    border-radius: 25px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(255, 159, 67, 0.1);
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.personal-consult-module h3 {
    font-family: 'Poiret One', sans-serif;
    color: var(--accent-shop);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.personal-consult-module p { color: rgba(255, 255, 255, 0.8); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.6; }

.personal-consult-module .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(45deg, var(--matrix-green), #00e08c);
    color: var(--deep-space);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.5);
    min-height: 58px;
    border: none;
}

.personal-consult-module .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 255, 157, 0.75);
}

/* Device rules demo inline */
.shop-demo-frame[data-device="desktop"] .eshop-nav__links { display: flex; }
.shop-demo-frame[data-device="desktop"] .eshop-nav__burger { display: none; }
.shop-demo-frame[data-device="desktop"] .eshop-mmenu { display: none !important; }
.shop-demo-frame[data-device="desktop"] .eshop-grid { grid-template-columns: repeat(3, 1fr); }
.shop-demo-frame[data-device="desktop"] .eshop-checkout { grid-template-columns: 1.2fr 0.8fr; }

.shop-demo-frame[data-device="tablet"] .eshop-nav__links,
.shop-demo-frame[data-device="mobile"] .eshop-nav__links { display: none; }

.shop-demo-frame[data-device="tablet"] .eshop-nav__burger,
.shop-demo-frame[data-device="mobile"] .eshop-nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-demo-frame[data-device="tablet"] .eshop-grid { grid-template-columns: repeat(2, 1fr); }
.shop-demo-frame[data-device="tablet"] .eshop-checkout { grid-template-columns: 1fr; }
.shop-demo-frame[data-device="tablet"] .eshop-summary { position: static; }
.shop-demo-frame[data-device="tablet"] .eshop-hero { grid-template-columns: 1fr; }
.shop-demo-frame[data-device="tablet"] .eshop-hero__visual { max-height: 6rem; order: -1; }

.shop-demo-frame[data-device="mobile"] .eshop-grid,
.shop-demo-frame[data-device="mobile"] .eshop-grid--home { grid-template-columns: repeat(2, 1fr); }
.shop-demo-frame[data-device="mobile"] .eshop-checkout { grid-template-columns: 1fr; padding: 0.65rem 0.65rem 0.85rem; gap: 0.65rem; }
.shop-demo-frame[data-device="mobile"] .eshop-hero { grid-template-columns: 1fr; }
.shop-demo-frame[data-device="mobile"] .eshop-hero__visual { max-height: 5rem; order: -1; }
.shop-demo-frame[data-device="mobile"] .eshop-summary { position: static; width: 100%; min-width: 0; overflow: hidden; }
.shop-demo-frame[data-device="mobile"] .eshop-cart-panel { min-width: 0; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-tab { font-size: 0.58rem; padding: 0.4rem 0.25rem; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-tabs { gap: 0.28rem; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-panel { min-width: 0; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-info { align-items: flex-start; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-info p { min-width: 0; flex: 1; }
.shop-demo-frame[data-device="mobile"] .eshop-card-visual { width: 100%; overflow: hidden; padding: 0.85rem; }
.shop-demo-frame[data-device="mobile"] .eshop-card-visual__num { font-size: 0.72rem; letter-spacing: 0.04em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-demo-frame[data-device="mobile"] .eshop-field { min-width: 0; }
.shop-demo-frame[data-device="mobile"] .eshop-field-row { min-width: 0; gap: 0.35rem; }
.shop-demo-frame[data-device="mobile"] .eshop-field input { width: 100%; max-width: 100%; min-width: 0; }
.shop-demo-frame[data-device="mobile"] .eshop-pay-info--demo code { word-break: break-all; }
.shop-demo-frame[data-device="mobile"] .eshop-btn--full { max-width: 100%; }
.shop-demo-frame[data-device="mobile"] .eshop-maincats { grid-template-columns: 1fr; }
.eshop {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #0f172a;
    background: #fafafa;
    --eshop-accent: #ff9f43;
    --eshop-accent2: #ff6b6b;
}

.eshop-main { flex: 1; }

.eshop-promo {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #cbd5e1;
    font-size: 0.68rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eshop-promo__track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.45rem 1rem;
}

.eshop-promo__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.eshop-promo__item i { color: var(--eshop-accent); font-size: 0.65rem; }

.eshop-promo__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.eshop-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1.15rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 0;
    z-index: 40;
}

.eshop-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    flex-shrink: 0;
}

.eshop-nav__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.eshop-nav__brand-text strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.eshop-nav__brand-text small {
    font-size: 0.62rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.02em;
}

.eshop-nav__logo {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(255, 159, 67, 0.35);
}

.eshop-nav__links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    background: #f8fafc;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-nav__link {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.eshop-nav__link:hover { color: #0f172a; }

.eshop-nav__link.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}

.eshop-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.eshop-nav__cart {
    position: relative;
    z-index: 41;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    padding: 0.4rem 0.75rem 0.4rem 0.55rem;
    min-height: 2.35rem;
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.eshop-nav__cart:hover {
    border-color: var(--eshop-accent);
    box-shadow: 0 4px 14px rgba(255, 159, 67, 0.15);
}

.eshop-nav__cart i { color: var(--eshop-accent2); font-size: 0.85rem; }

.eshop-nav__cart-label { display: inline; }

.shop-demo-frame[data-device="mobile"] .eshop-nav__cart-label { display: none; }

.eshop-nav__count {
    position: static;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--eshop-accent2);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshop-nav__burger {
    display: none;
    border: 1px solid rgba(15, 23, 42, 0.1);
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: #fff;
    color: #64748b;
    cursor: pointer;
}

.eshop-nav__burger.is-open {
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
    color: #fff;
    border-color: transparent;
}

.eshop-mmenu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.eshop-mmenu.is-open { display: flex; }

.shop-demo-frame[data-device="tablet"] .eshop-mmenu.is-open,
.shop-demo-frame[data-device="mobile"] .eshop-mmenu.is-open {
    position: sticky;
    top: 0;
    z-index: 45;
}

.eshop-mmenu__title {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 0.35rem 0.35rem;
}

.eshop-mmenu__link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
}

.eshop-mmenu__link.is-active {
    background: rgba(255, 159, 67, 0.1);
    color: var(--eshop-accent2);
}

.eshop-mmenu__link--cart {
    margin-top: 0.35rem;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.eshop-mmenu__link i { width: 1rem; color: var(--eshop-accent); text-align: center; }

.eshop-page { display: none; }
.eshop-page.is-active { display: block; animation: eshopPageIn 0.3s ease; }

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

.eshop-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(165deg, #fff 0%, #fff5eb 55%, rgba(255, 159, 67, 0.08) 100%);
    align-items: center;
}

.eshop-hero__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: #fff;
    color: var(--eshop-accent2);
    border: 1px solid rgba(255, 107, 107, 0.2);
    margin-bottom: 0.55rem;
}

.eshop-hero h1 {
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.eshop-hero p { font-size: 0.82rem; color: #64748b; line-height: 1.5; margin-bottom: 0.75rem; }

.eshop-btn {
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    cursor: pointer;
}

.eshop-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
}

.eshop-btn--wa { background: #25d366; color: #fff; }
.eshop-btn--full { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.5rem; }

.eshop-cats,
.eshop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-cat,
.eshop-filter {
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    color: #64748b;
}

.eshop-cat.is-active,
.eshop-filter.is-active,
.eshop-cat:hover,
.eshop-filter:hover {
    border-color: var(--eshop-accent);
    color: var(--eshop-accent2);
    background: rgba(255, 159, 67, 0.08);
}

.eshop-block { padding: 1rem; }
.eshop-block h2 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.75rem; }

.eshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

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

.eshop-card {
    position: relative;
    padding: 0.65rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eshop-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 159, 67, 0.25);
    box-shadow: 0 10px 24px rgba(255, 159, 67, 0.1);
}

.eshop-card__tag {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 1;
    font-size: 0.58rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.18rem 0.4rem;
    border-radius: 999px;
    background: var(--eshop-accent2);
    color: #fff;
}

.eshop-card__img {
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 0.45rem;
    background: linear-gradient(145deg, hsl(var(--ph, 220) 35% 78%), hsl(var(--ph, 220) 45% 52%));
}

/* Hologram covers (estilo blog) */
.eshop-holo {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0a0a12 0%, #12121c 50%, #0d0d16 100%);
    isolation: isolate;
    border-radius: 10px;
}

.eshop-holo--card { aspect-ratio: 4 / 3; margin-bottom: 0.5rem; }
.eshop-holo--hero { min-height: 7rem; border-radius: 12px 12px 0 0; }
.eshop-holo--mini { aspect-ratio: 1; width: 3rem; height: 3rem; border-radius: 8px; flex-shrink: 0; }

.eshop-holo__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
    opacity: 0.7;
}

.eshop-holo__scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 52%);
    animation: eshopHoloScan 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes eshopHoloScan {
    0%, 100% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translateY(100%); opacity: 0.6; }
    60% { opacity: 0; }
}

.eshop-holo__core {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--holo-accent, #ff9f43) 0%, transparent 70%);
    opacity: 0.28;
    filter: blur(16px);
    animation: eshopHoloPulse 4s ease-in-out infinite;
}

.eshop-holo--mini .eshop-holo__core { width: 40px; height: 40px; }

@keyframes eshopHoloPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.12); opacity: 0.38; }
}

.eshop-holo__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--holo-accent, #ff9f43);
    opacity: 0.32;
}

.eshop-holo__ring--1 { width: 90px; height: 90px; animation: eshopHoloSpin 12s linear infinite; }
.eshop-holo__ring--2 { width: 60px; height: 60px; animation: eshopHoloSpin 8s linear infinite reverse; opacity: 0.22; }
.eshop-holo--mini .eshop-holo__ring--1 { width: 50px; height: 50px; }
.eshop-holo--mini .eshop-holo__ring--2 { width: 32px; height: 32px; }

@keyframes eshopHoloSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.eshop-holo__icon {
    position: relative;
    z-index: 2;
    font-size: 1.85rem;
    color: var(--holo-accent, #ff9f43);
    text-shadow: 0 0 24px var(--holo-accent, #ff9f43);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.eshop-holo--hero .eshop-holo__icon { font-size: 2.25rem; }
.eshop-holo--mini .eshop-holo__icon { font-size: 1rem; }

.eshop-card:hover .eshop-holo__icon { transform: scale(1.08); opacity: 1; }

.eshop-holo__label {
    position: absolute;
    bottom: 8px;
    left: 10px;
    z-index: 3;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.eshop-card .eshop-holo { border-radius: 10px; }

/* Categorías principales (inicio) */
.eshop-maincats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem 1rem;
}

.eshop-maincat-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.eshop-maincat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 159, 67, 0.35);
    box-shadow: 0 12px 28px rgba(255, 159, 67, 0.12);
}

.eshop-maincat-card__holo { pointer-events: none; }

.eshop-maincat-card__body { padding: 0.75rem 0.85rem 0.85rem; }

.eshop-maincat-card__body h2 {
    font-size: 0.95rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.eshop-maincat-card__body p {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 0.45rem;
}

.eshop-maincat-card__body span {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--eshop-accent2);
}

.eshop-maincat-card__body span i { margin-left: 0.2rem; font-size: 0.65rem; }

/* Cabecera de categoría */
.eshop-phead--cat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.eshop-phead__icon {
    width: 3.5rem;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.eshop-phead__icon .eshop-holo--mini { width: 3.5rem; height: 3.5rem; border-radius: 12px; }

/* Subcategorías — tabs con línea activa */
.eshop-subcats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 1rem;
    margin: 0;
    background: #fff;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 3.85rem;
    z-index: 8;
    overflow-x: auto;
    scrollbar-width: none;
}

.eshop-subcats::-webkit-scrollbar { display: none; }

.eshop-subcat {
    flex-shrink: 0;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.7rem 0.85rem;
    margin-bottom: -2px;
    border-radius: 0;
    cursor: pointer;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.eshop-subcat:hover {
    color: var(--eshop-accent2);
}

.eshop-subcat.is-active {
    color: var(--eshop-accent2);
    border-bottom-color: var(--eshop-accent);
    background: transparent;
}

.eshop-subcat i { font-size: 0.65rem; color: inherit; opacity: 0.85; }
.eshop-subcat.is-active i { color: var(--eshop-accent); opacity: 1; }

.eshop-catalog { padding: 0.75rem 1rem 1rem; }

.eshop-subcat-section { margin-bottom: 1.25rem; }
.eshop-subcat-section.is-hidden { display: none; }

.eshop-subcat-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.65rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid rgba(255, 159, 67, 0.25);
}

.eshop-subcat-section__head h2 {
    font-size: 0.92rem;
    font-weight: 900;
    color: #0f172a;
}

.eshop-subcat-section__head span {
    font-size: 0.68rem;
    font-weight: 600;
    color: #94a3b8;
}

.eshop-nav__link i { margin-right: 0.25rem; font-size: 0.7rem; }

.eshop-btn--ghost {
    background: rgba(255, 159, 67, 0.08);
    color: var(--eshop-accent2);
    border: 1px dashed rgba(255, 159, 67, 0.35);
    margin-bottom: 0.5rem;
}

.eshop-btn--sm { font-size: 0.72rem; padding: 0.45rem 0.75rem; }

.eshop-cart__empty .eshop-btn + .eshop-btn { margin-left: 0.35rem; }

.eshop-pay-info--demo {
    background: rgba(255, 159, 67, 0.08);
    border: 1px dashed rgba(255, 159, 67, 0.3);
    border-radius: 8px;
    padding: 0.55rem;
    margin-bottom: 0.5rem;
}

.eshop-pay-info--demo code {
    background: #fff;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    font-size: 0.68rem;
}

.eshop-success__pending {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    color: #d97706;
}

.eshop-success__pending i { margin-right: 0.25rem; }

/* Modal transferencia */
.eshop-modal {
    position: absolute;
    inset: 0;
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: auto;
}

.eshop-modal.is-hidden { display: none; }

.eshop-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.eshop-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 22rem;
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem 1rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    animation: eshopModalIn 0.28s ease;
}

@keyframes eshopModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.eshop-modal__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    border: none;
    background: #f1f5f9;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    cursor: pointer;
    color: #64748b;
    font-size: 0.75rem;
}

.eshop-modal__icon {
    width: 2.75rem;
    height: 2.75rem;
    margin: 0 auto 0.65rem;
    border-radius: 50%;
    background: rgba(255, 159, 67, 0.15);
    color: var(--eshop-accent2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.eshop-modal__dialog h3 {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.eshop-modal__lead {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.eshop-modal__amount {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem;
    background: rgba(255, 159, 67, 0.12);
    border-radius: 10px;
    margin-bottom: 0.65rem;
}

.eshop-modal__amount strong { color: var(--eshop-accent2); font-size: 1.05rem; }

.eshop-bank__details--modal {
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.65rem;
}

.eshop-modal__note {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 0.75rem;
    text-align: center;
}

.eshop-modal__note strong { color: var(--eshop-accent2); }

.eshop-card__cat {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94a3b8;
}

.eshop-card h3 { font-size: 0.78rem; font-weight: 700; margin: 0.15rem 0 0.45rem; line-height: 1.3; }

.eshop-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eshop-card__foot strong { font-size: 0.85rem; color: #0f172a; }

.eshop-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.45rem 0.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 159, 67, 0.15);
    color: #c2410c;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.eshop-card__cta:hover { background: rgba(255, 159, 67, 0.28); transform: translateY(-1px); }

.eshop-card__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.4rem 0.5rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
    color: #fff;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
}

.eshop-card__buy:hover { opacity: 0.92; }

.eshop-float-cart {
    position: sticky;
    bottom: 0;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-top: 2px solid var(--eshop-accent);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.eshop-float-cart.is-hidden { display: none; }

.eshop-float-cart__info {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #e2e8f0;
}

.eshop-float-cart__info i { color: var(--eshop-accent); }

.eshop-float-cart__btn {
    border: none;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--eshop-accent), var(--eshop-accent2));
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
}

.eshop-btn--pay { padding: 0.75rem 1rem; font-size: 0.85rem; }

.eshop-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
}

.eshop-payments i { margin-right: 0.25rem; color: var(--eshop-accent); }
.eshop-payments span:first-child i { color: #25d366; }

.eshop-phead { padding: 1rem 1rem 0.5rem; }
.eshop-phead h1 { font-size: 1.1rem; font-weight: 900; margin-bottom: 0.25rem; }
.eshop-phead p { font-size: 0.78rem; color: #64748b; }

.eshop-checkout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.75rem;
    padding: 0.75rem 1rem 1rem;
}

.eshop-checkout > * { min-width: 0; }

.eshop-checkout.is-hidden { display: none; }

.eshop-cart-panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.85rem;
    min-height: 12rem;
}

.eshop-cart__heading {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.eshop-cart__heading i { color: var(--eshop-accent); margin-right: 0.35rem; }
.eshop-cart__heading span { color: var(--eshop-accent2); font-weight: 700; }

.eshop-cart__items {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.eshop-cart__items.is-hidden { display: none; }

.eshop-cart__empty {
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
}

.eshop-cart__empty.is-hidden { display: none; }

.eshop-cart__empty i { display: block; font-size: 1.75rem; margin-bottom: 0.5rem; color: #cbd5e1; }

.eshop-cart__empty p { margin-bottom: 0.65rem; }

.eshop-cart__item {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 0.65rem;
    align-items: start;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-cart__item-holo { grid-row: span 1; }

.eshop-cart__item-info strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
    color: #0f172a;
}

.eshop-cart__item-cat {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: capitalize;
    margin-bottom: 0.15rem;
}

.eshop-cart__item-price {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
}

.eshop-cart__item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}

.eshop-cart__item-total {
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--eshop-accent2);
}

.eshop-cart__item-qty {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.eshop-cart__item-qty button {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
}

.eshop-cart__remove {
    border: none;
    background: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
}

.eshop-summary {
    padding: 0.85rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    align-self: start;
    position: sticky;
    top: 3.5rem;
    min-width: 0;
    overflow: hidden;
}

.eshop-summary__row,
.eshop-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 0.35rem;
    color: #64748b;
}

.eshop-summary__total {
    font-size: 0.92rem;
    font-weight: 800;
    color: #0f172a;
    padding-top: 0.5rem;
    margin: 0.5rem 0 0.75rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.eshop-summary__label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.45rem;
}

.eshop-pay-tabs { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.65rem; }

.eshop-pay-tab {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.45rem 0.35rem;
    border-radius: 8px;
    cursor: pointer;
    color: #64748b;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

.eshop-pay-tab.is-active {
    border-color: var(--eshop-accent);
    background: rgba(255, 159, 67, 0.18);
    color: var(--eshop-accent2);
    box-shadow: 0 0 0 2px rgba(255, 159, 67, 0.2);
}

.eshop-pay-panel { display: none; font-size: 0.75rem; color: #64748b; line-height: 1.45; min-width: 0; }
.eshop-pay-panel.is-active { display: block; }

.eshop-bank {
    padding: 0.65rem;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    margin-bottom: 0.35rem;
}

.eshop-bank code { font-size: 0.72rem; background: #fff; padding: 0.1rem 0.3rem; border-radius: 4px; }

.eshop-bank__title {
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: #0f172a;
    font-size: 0.82rem;
}

.eshop-bank__title i { color: var(--eshop-accent); margin-right: 0.25rem; }

.eshop-bank__note { margin-top: 0.35rem; font-size: 0.72rem; }

.eshop-field { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 0.45rem; min-width: 0; }
.eshop-field span { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; color: #94a3b8; }

.eshop-field input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    padding: 0.45rem 0.55rem;
    font-family: inherit;
    font-size: 0.78rem;
}

.eshop-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; min-width: 0; }

.eshop-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #111827 0%, #0b1220 100%);
    color: #94a3b8;
    font-size: 0.72rem;
    border-top: none;
    position: relative;
}

.eshop-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--eshop-accent), var(--eshop-accent2));
}

.eshop-footer__main {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.95fr 1.15fr;
    gap: 1.1rem 0.9rem;
    padding: 1.25rem 1.1rem 0.95rem;
    text-align: left;
}

.eshop-footer__col--brand {
    padding-right: 0.35rem;
}

.eshop-footer__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.55rem;
}

.eshop-footer__logo {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 12px;
    background: linear-gradient(145deg, #1a2234, #111827);
    border: 2px solid rgba(255, 159, 67, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    flex-shrink: 0;
    line-height: 1;
    font-family: inherit;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.eshop-footer__brand strong {
    display: block;
    color: #f8fafc;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.12rem;
    letter-spacing: -0.01em;
}

.eshop-footer__brand span {
    display: block;
    font-size: 0.66rem;
    color: #64748b;
}

.eshop-footer__about {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.55;
    color: #64748b;
    max-width: 17rem;
}

.eshop-footer__title {
    margin: 0 0 0.55rem;
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #e2e8f0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eshop-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
}

.eshop-footer__nav button {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.eshop-footer__nav button:hover,
.eshop-footer__nav button.is-active { color: var(--eshop-accent); }

.eshop-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.eshop-footer__list li {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    font-size: 0.7rem;
    color: #64748b;
    line-height: 1.35;
}

.eshop-footer__list i {
    width: 0.85rem;
    color: var(--eshop-accent);
    font-size: 0.66rem;
    text-align: center;
    flex-shrink: 0;
}

.eshop-footer__pay-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
}

.eshop-footer__pay-icons span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.66rem;
    font-weight: 600;
    color: #cbd5e1;
    padding: 0.38rem 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.eshop-footer__pay-icons span i {
    font-size: 0.88rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.eshop-footer__pay-icons span:first-child i { color: #25d366; }

.eshop-footer__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.65rem;
    padding: 0.55rem 1rem;
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eshop-footer__trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.64rem;
    font-weight: 700;
    color: #94a3b8;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.eshop-footer__trust i {
    color: var(--eshop-accent);
    font-size: 0.62rem;
}

.eshop-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.62rem 1.1rem;
    background: rgba(0, 0, 0, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.64rem;
    color: #64748b;
}

.eshop-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 700;
    color: #94a3b8;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 159, 67, 0.08);
    border: 1px solid rgba(255, 159, 67, 0.18);
}

.eshop-footer__badge i { color: var(--eshop-accent); }

.shop-demo-frame[data-device="tablet"] .eshop-footer__main {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0.85rem;
}

.shop-demo-frame[data-device="tablet"] .eshop-footer__col--brand {
    grid-column: 1 / -1;
}

.shop-demo-frame[data-device="tablet"] .eshop-footer__pay-icons {
    grid-template-columns: 1fr 1fr;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.5rem;
    padding: 0.95rem 0.8rem 0.75rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__col--brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.1rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__brand {
    justify-content: center;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__brand,
.shop-demo-frame[data-device="mobile"] .eshop-footer__about {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__about {
    font-size: 0.64rem;
    line-height: 1.45;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__title {
    font-size: 0.62rem;
    margin-bottom: 0.42rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__nav button,
.shop-demo-frame[data-device="mobile"] .eshop-footer__list li {
    font-size: 0.64rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__pay-icons {
    grid-template-columns: 1fr;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__trust {
    justify-content: center;
    gap: 0.3rem 0.4rem;
    padding: 0.45rem 0.65rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__trust span {
    font-size: 0.56rem;
    padding: 0.2rem 0.4rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-footer__bar {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem 0.65rem;
    font-size: 0.6rem;
}

/* Banner tienda demo móvil */
.shop-demo-frame[data-device="mobile"] .eshop-hero {
    padding: 0.85rem 0.75rem 0.75rem;
}

.shop-demo-frame[data-device="mobile"] .eshop-hero__visual {
    max-height: 7.5rem;
    margin-inline: auto;
    max-width: 100%;
}

.shop-demo-frame[data-device="desktop"] .eshop-footer__pay-icons {
    grid-template-columns: 1fr;
}

/* Demo mejorada */
.eshop-nav__cart.is-pulse { animation: eshopCartPulse 0.55s ease; }
@keyframes eshopCartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); background: rgba(255, 107, 107, 0.2); }
}

.eshop-nav__count:not(.is-visible) { opacity: 0.5; }

.eshop-hero__actions { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.eshop-btn--outline {
    background: #fff;
    color: var(--eshop-accent2);
    border: 1px solid rgba(255, 107, 107, 0.35);
}

.eshop-btn--sm { padding: 0.45rem 0.85rem; font-size: 0.75rem; }

.eshop-hero__visual {
    position: relative;
    aspect-ratio: 1;
    max-height: 9rem;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffe8d6, #ff9f43 45%, #ff6b6b);
    box-shadow: 0 12px 32px rgba(255, 159, 67, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.35rem;
    padding: 0.65rem;
}

.eshop-hero__stat {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    font-size: 0.65rem;
}

.eshop-hero__stat strong { display: block; font-size: 0.85rem; color: #0f172a; }
.eshop-hero__stat span { color: #64748b; }

.eshop-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 1.25rem;
    padding: 0.55rem 1rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-trust div {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #64748b;
}

.eshop-trust i { font-size: 0.75rem; color: var(--eshop-accent); margin: 0; }
.eshop-trust div:first-child i { color: #25d366; }

.eshop-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.eshop-block__head button {
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--eshop-accent2);
    cursor: pointer;
}

.eshop-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eshop-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

.eshop-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1rem 0;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-step {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: #94a3b8;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
}

.eshop-step span {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eshop-step.is-active { color: var(--eshop-accent2); background: rgba(255, 159, 67, 0.1); }
.eshop-step.is-active span { background: var(--eshop-accent2); color: #fff; }
.eshop-step.is-done { color: #059669; }
.eshop-step.is-done span { background: #059669; color: #fff; }

.eshop-summary__title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
    color: #0f172a;
}

.eshop-summary__row--disc strong { color: #059669; }

.eshop-pay-info {
    display: flex;
    gap: 0.5rem;
    padding: 0.55rem;
    border-radius: 10px;
    background: #f8fafc;
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.45;
    align-items: flex-start;
}

.eshop-pay-info p { min-width: 0; flex: 1; }

.eshop-pay-info i { color: var(--eshop-accent); font-size: 1rem; flex-shrink: 0; }
.eshop-pay-info--wa { background: rgba(37, 211, 102, 0.08); }
.eshop-pay-info--wa i { color: #25d366; }
.eshop-pay-info code { font-size: 0.68rem; background: #fff; padding: 0.1rem 0.3rem; border-radius: 4px; }

.eshop-bank__amount {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.65rem;
    padding: 0.55rem 0.65rem;
    background: rgba(255, 159, 67, 0.12);
    border-radius: 8px;
    text-align: center;
}

.eshop-bank__amount strong { color: var(--eshop-accent2); font-size: 1.05rem; }

.eshop-bank__details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.eshop-bank__row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.72rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.eshop-bank__row span { color: #94a3b8; font-weight: 600; }
.eshop-bank__row strong { color: #0f172a; text-align: right; }
.eshop-bank__row code { font-size: 0.68rem; background: #fff; padding: 0.15rem 0.35rem; border-radius: 4px; }

.eshop-card-visual {
    margin-bottom: 0.65rem;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #e2e8f0;
    min-height: 5.5rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.eshop-card-visual__chip {
    width: 1.75rem;
    height: 1.25rem;
    border-radius: 4px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    margin-bottom: 0.75rem;
}

.eshop-card-visual__num {
    font-family: ui-monospace, monospace;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.65rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.eshop-card-visual__foot {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.eshop-processing {
    padding: 3rem 1.5rem;
    text-align: center;
    background: #fff;
}

.eshop-processing.is-hidden { display: none; }

.eshop-processing__spinner {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255, 159, 67, 0.2);
    border-top-color: var(--eshop-accent);
    border-radius: 50%;
    animation: eshopSpin 0.8s linear infinite;
}

@keyframes eshopSpin { to { transform: rotate(360deg); } }

.eshop-processing p { font-size: 0.88rem; font-weight: 600; color: #64748b; }

.eshop-success__list {
    list-style: none;
    margin: 0.75rem auto 0;
    max-width: 20rem;
    text-align: left;
}

.eshop-success__list li {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    color: #475569;
}

.eshop-success__list li strong { color: #0f172a; white-space: nowrap; }

.eshop-success__bank {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.75rem;
    text-align: left;
    color: #475569;
}

.eshop-success__bank p { margin-bottom: 0.35rem; }
.eshop-success__bank code { background: #fff; padding: 0.1rem 0.3rem; border-radius: 4px; }

.eshop-success__card {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: #64748b;
}

.eshop-success__details.is-hidden { display: none; }

.eshop-card-brands {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.65rem;
    font-size: 1.25rem;
    color: #cbd5e1;
}

.eshop-cart__item-info em {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--eshop-accent2);
    margin-top: 0.15rem;
}

.eshop-cart__empty { line-height: 1.6; }
.eshop-cart__empty .eshop-btn { margin-top: 0.65rem; }

.eshop-success {
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(165deg, #fff 0%, rgba(0, 255, 157, 0.08) 100%);
}

.eshop-success.is-hidden { display: none; }

.eshop-success__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: rgba(0, 255, 157, 0.15);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.eshop-success h2 { font-size: 1.15rem; font-weight: 900; margin-bottom: 0.35rem; color: #0f172a; }
.eshop-success p { font-size: 0.82rem; color: #64748b; line-height: 1.5; max-width: 22rem; margin: 0 auto 0.5rem; }
.eshop-success__folio { font-size: 0.78rem; color: #475569; margin-bottom: 1rem !important; }
.eshop-success__folio strong { color: var(--eshop-accent2); }

/* Landing — nuevas secciones */
.shop-pay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-pay-card {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-pay-card:hover { transform: translateY(-3px); }

.shop-pay-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.shop-pay-card--wa .shop-pay-card__icon { background: rgba(37, 211, 102, 0.15); color: #25d366; }
.shop-pay-card--spei .shop-pay-card__icon { background: rgba(255, 159, 67, 0.15); color: var(--accent-shop); }
.shop-pay-card--card .shop-pay-card__icon { background: rgba(0, 243, 255, 0.12); color: var(--neon-blue); }

.shop-pay-card--wa:hover { border-color: rgba(37, 211, 102, 0.4); }
.shop-pay-card--spei:hover { border-color: rgba(255, 159, 67, 0.4); }
.shop-pay-card--card:hover { border-color: rgba(0, 243, 255, 0.35); }

.shop-pay-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.45rem; }
.shop-pay-card > p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.62); line-height: 1.55; margin-bottom: 0.75rem; }

.shop-pay-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-pay-card li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
    padding-left: 1rem;
    position: relative;
    line-height: 1.45;
}

.shop-pay-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--matrix-green);
    font-weight: 700;
    font-size: 0.72rem;
}

.shop-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shop-flow__step {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 1.25rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    text-align: center;
    position: relative;
}

.shop-flow__num {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(255, 159, 67, 0.2);
    color: var(--accent-shop);
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-flow__step > i {
    font-size: 1.5rem;
    color: var(--accent-shop);
    margin-bottom: 0.55rem;
}

.shop-flow__step h3 { font-size: 0.92rem; color: #fff; margin-bottom: 0.35rem; }
.shop-flow__step p { font-size: 0.78rem; color: rgba(255, 255, 255, 0.58); line-height: 1.45; }

.shop-flow__arrow {
    display: flex;
    align-items: center;
    color: rgba(255, 159, 67, 0.45);
    font-size: 0.85rem;
    padding: 0 0.15rem;
}

.shop-rubros {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
}

.shop-rubros span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 159, 67, 0.08);
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.shop-rubros i { color: var(--accent-shop); font-size: 0.75rem; }

.shop-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.shop-tech-tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(0, 243, 255, 0.07);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.shop-tech-tags i { font-size: 0.72rem; color: var(--neon-blue); }

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .sw-use-grid { grid-template-columns: repeat(2, 1fr); }
    .sw-process-steps { grid-template-columns: repeat(2, 1fr); }
    .sw-signals-list { grid-template-columns: 1fr; }
    .shop-pay-grid { grid-template-columns: 1fr; }
    .shop-flow__arrow { display: none; }
    .shop-flow__step { max-width: none; flex: 1 1 calc(50% - 0.5rem); }
}

@media (max-width: 767px) {
    body { padding-top: 5rem; }
    .hero-title { font-size: 2.4rem; }
    .sw-use-grid { grid-template-columns: 1fr; }
    .sw-compare-grid { grid-template-columns: 1fr; }
    .sw-process-steps { grid-template-columns: 1fr; }
    .cta-container { max-width: 100%; }
    .cta-button { width: 100%; min-height: 44px; white-space: normal; text-align: center; justify-content: center; }
    .faq-section h2 { font-size: 1.9rem; }
    .personal-consult-module { padding: 2rem 1.25rem; }
    .shop-flow__step { flex: 1 1 100%; }
    .eshop-trust { grid-template-columns: repeat(2, 1fr); }
    .eshop-steps { flex-wrap: wrap; }
    .accordion-content { padding: 0 1.25rem; }
    .accordion-content.active { padding: 0.5rem 1.25rem 1.25rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .cta-button { max-width: 100%; }
    .eshop-trust { grid-template-columns: 1fr; }
    .accordion-header { padding: 1.15rem 1.25rem; font-size: 0.92rem; }
    .accordion-content.active { padding: 0.5rem 1rem 1rem; }
    .sw-section-title { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
    .eshop-page.is-active { animation: none; }
}

/* Preview estático (reemplaza demo jugable) */
.shop-preview {
    width: 100%;
    margin: 0 0 2.25rem;
}
.shop-preview__stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 168px;
    gap: 1rem;
    align-items: end;
    max-width: 920px;
    margin: 0 auto;
}
.shop-preview__laptop {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 159, 67, 0.28);
    background: #111118;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.shop-preview__chrome {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    background: #1a1a22;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.shop-preview__chrome span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #febc2e;
}
.shop-preview__chrome span:first-child { background: #ff5f57; }
.shop-preview__chrome span:last-of-type { background: #28c840; }
.shop-preview__chrome em {
    margin-left: 0.65rem;
    font-style: normal;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}
.shop-preview__store { padding: 0.85rem 0.9rem 1rem; background: #f6f1ea; }
.shop-preview__nav {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
    color: #1c1917;
    font-size: 0.72rem;
}
.shop-preview__nav strong { font-size: 0.88rem; letter-spacing: -0.02em; }
.shop-preview__nav span { color: #78716c; }
.shop-preview__nav i { margin-left: auto; color: #ea580c; }
.shop-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.55rem;
}
.shop-preview__grid article {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(28, 25, 23, 0.06);
}
.shop-preview__photo { height: 72px; }
.shop-preview__photo--a { background: linear-gradient(145deg, #fed7aa, #ea580c); }
.shop-preview__photo--b { background: linear-gradient(145deg, #fde68a, #d97706); }
.shop-preview__photo--c { background: linear-gradient(145deg, #e7e5e4, #a8a29e); }
.shop-preview__photo--d { background: linear-gradient(145deg, #fdba74, #9a3412); }
.shop-preview__grid b,
.shop-preview__grid small {
    display: block;
    padding: 0 0.45rem;
    color: #1c1917;
}
.shop-preview__grid b { font-size: 0.68rem; margin-top: 0.4rem; }
.shop-preview__grid small {
    padding-bottom: 0.45rem;
    color: #c2410c;
    font-weight: 700;
    font-size: 0.66rem;
}
.shop-preview__phone {
    position: relative;
    border-radius: 22px;
    padding: 0.55rem 0.45rem 0.65rem;
    background: #0c0c10;
    border: 2px solid rgba(255, 159, 67, 0.4);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
    min-height: 210px;
}
.shop-preview__notch {
    width: 42%;
    height: 8px;
    margin: 0 auto 0.55rem;
    border-radius: 999px;
    background: #1f1f28;
}
.shop-preview__check {
    background: #fff;
    color: #1c1917;
    border-radius: 14px;
    padding: 0.7rem 0.65rem 0.75rem;
}
.shop-preview__check p {
    margin: 0;
    font-size: 0.62rem;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.shop-preview__check strong {
    display: block;
    font-size: 1.15rem;
    margin: 0.15rem 0 0.55rem;
}
.shop-preview__check ul {
    list-style: none;
    margin: 0 0 0.6rem;
    padding: 0;
    display: grid;
    gap: 0.28rem;
}
.shop-preview__check li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.64rem;
    padding: 0.28rem 0.4rem;
    border-radius: 7px;
    border: 1px solid #e7e5e4;
}
.shop-preview__check li.is-on {
    border-color: #ea580c;
    background: #fff7ed;
    font-weight: 700;
}
.shop-preview__check li i { width: 0.85rem; color: #ea580c; }
.shop-preview__check li .fa-whatsapp { color: #16a34a; }
.shop-preview__check > span {
    display: block;
    text-align: center;
    background: #ea580c;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    border-radius: 8px;
    padding: 0.42rem;
}
.shop-preview__steps {
    list-style: none;
    margin: 1.15rem auto 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 920px;
}
.shop-preview__steps li {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.5rem;
    padding: 0.75rem 0.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 159, 67, 0.22);
    background: rgba(255, 255, 255, 0.04);
}
.shop-preview__steps em {
    grid-row: 1 / span 2;
    align-self: center;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(255, 159, 67, 0.18);
    color: #ff9f43;
}
.shop-preview__steps strong {
    font-size: 0.82rem;
    color: #fff;
}
.shop-preview__steps span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.35;
}
.shop-preview__hint {
    max-width: 920px;
    margin: 0.85rem auto 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
}
.shop-preview__hint a {
    color: #ff9f43;
    font-weight: 700;
    text-decoration: none;
    margin-left: 0.25rem;
}
.shop-preview__hint a:hover { text-decoration: underline; }
@media (max-width: 720px) {
    .shop-preview__stage { grid-template-columns: 1fr; }
    .shop-preview__phone { max-width: 220px; margin: 0 auto; }
    .shop-preview__grid { grid-template-columns: repeat(2, 1fr); }
    .shop-preview__steps { grid-template-columns: 1fr; }
}

.shop-banner {
    display: block;
    width: 100%;
    margin: 0;
}

.shop-banner__diagram {
    width: 100%;
    max-width: none;
}

.shop-banner__row {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.shop-banner__panel {
    position: relative;
    overflow: visible;
    padding: 1.15rem 1.1rem 1.1rem;
    border-radius: 20px;
    text-align: left;
    width: 100%;
}

.shop-banner__panel--type {
    position: relative;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 159, 67, 0.18), transparent 55%),
        linear-gradient(165deg, #16161f 0%, #0d0d14 100%);
    border: 1px solid rgba(255, 159, 67, 0.32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    padding-top: 2.15rem;
}

.shop-banner__panel--pay {
    background:
        radial-gradient(120% 80% at 100% 0%, rgba(99, 91, 255, 0.22), transparent 55%),
        linear-gradient(165deg, #14141f 0%, #0c0c14 100%);
    border: 1px solid rgba(99, 91, 255, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.shop-banner__panel--stack {
    background:
        radial-gradient(120% 80% at 50% 0%, rgba(0, 255, 157, 0.12), transparent 55%),
        linear-gradient(165deg, #12141a 0%, #0c0e12 100%);
    border: 1px solid rgba(0, 255, 157, 0.28);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.shop-banner__kicker {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ff9f43;
}

.shop-banner__panel--pay .shop-banner__kicker { color: #a5b4fc; }
.shop-banner__panel--stack .shop-banner__kicker { color: #00ff9d; }

.shop-banner__panel h2 {
    margin: 0 0 0.4rem;
    font-family: 'Poiret One', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
}

.shop-banner__lead {
    margin: 0 0 0.75rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.shop-banner__cards { display: grid; gap: 0.45rem; }
.shop-banner__cards--2 { grid-template-columns: 1fr 1fr; }
.shop-banner__cards--3 { grid-template-columns: 1fr; }
.shop-banner__cards--4 { grid-template-columns: 1fr 1fr; }

.shop-banner__cards article,
.shop-banner__card-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 0.85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.shop-banner__card-link:hover {
    background: rgba(255, 159, 67, 0.08);
    border-color: rgba(255, 159, 67, 0.4);
    transform: translateY(-1px);
}

.shop-banner__card-link:focus-visible {
    outline: 2px solid rgba(255, 159, 67, 0.75);
    outline-offset: 2px;
}

.shop-banner__tagline {
    display: block;
    margin: 0.15rem 0 0.25rem;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 159, 67, 0.9);
}

.shop-banner__pkg-go {
    display: inline !important;
    margin: 0 0 0 0.25rem;
    padding: 0;
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: normal;
    color: rgba(255, 159, 67, 0.95);
    vertical-align: baseline;
}

.shop-banner__pkg-go i {
    display: inline;
    font-size: 0.7em;
    margin-left: 0.12rem;
}

.shop-banner__copy span .shop-banner__pkg-go {
    display: inline !important;
}

.shop-banner__to-pkg {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    left: auto;
    margin: 0;
    z-index: 2;
    text-align: right;
}

.shop-banner__to-pkg a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.22rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border: 1px solid rgba(255, 159, 67, 0.45);
    border-radius: 6px;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-banner__to-pkg a:hover {
    color: #fff;
    border-color: rgba(255, 159, 67, 0.85);
    background: rgba(255, 159, 67, 0.08);
}

.shop-banner__to-pkg a i {
    color: var(--accent-shop, #ff9f43);
    font-size: 0.62rem;
}

.shop-banner__group { margin-top: 0.75rem; }
.shop-banner__group + .shop-banner__group { margin-top: 0.85rem; }

.shop-banner__group-label {
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.shop-banner__group-label--contact { color: rgba(37, 211, 102, 0.85); }
.shop-banner__group-label--card { color: rgba(165, 180, 252, 0.9); }

.shop-banner__route article {
    position: relative;
    align-items: flex-start;
    padding-top: 1.35rem;
}

.shop-banner__route .shop-banner__mark-icon {
    margin-top: 0.05rem;
}

.shop-banner__step {
    position: absolute;
    top: 0.45rem;
    right: 0.55rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.28);
}

.shop-banner__route article.is-wa {
    border-color: rgba(37, 211, 102, 0.35);
    background: rgba(37, 211, 102, 0.06);
}

.shop-banner__route article.is-stripe {
    border-color: rgba(99, 91, 255, 0.45);
    background: rgba(99, 91, 255, 0.1);
}

.shop-banner__mark-icon {
    flex: 0 0 44px;
    align-self: center;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 159, 67, 0.14);
    color: #ff9f43;
    font-size: 1.05rem;
    line-height: 1;
    box-sizing: border-box;
    overflow: hidden;
}

.shop-banner__mark-icon > i {
    display: grid !important;
    place-items: center;
    width: 1em;
    height: 1em;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-style: normal;
    font-size: 1.05em;
    transform: none !important;
}

.shop-banner__mark-icon > i::before {
    display: block;
    line-height: 1;
    width: 1em;
    text-align: center;
}

.shop-banner__mark-icon img {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0;
    object-fit: contain;
}

.shop-banner__mark-icon.is-wa {
    background: rgba(37, 211, 102, 0.14);
    color: #25d366;
}

.shop-banner__panel--pay .shop-banner__mark-icon {
    background: rgba(165, 180, 252, 0.14);
    color: #a5b4fc;
}

.shop-banner__route article.is-stripe .shop-banner__mark-icon {
    background: rgba(99, 91, 255, 0.22);
    color: #a5a0ff;
}

.shop-banner__copy { min-width: 0; }

.shop-banner__copy strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.shop-banner__copy span {
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.6);
}

.shop-banner__stack-opts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
}

.shop-banner__stack-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding: 0.6rem 0.7rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    min-width: 0;
}

.shop-banner__stack-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    width: 100%;
}

.shop-banner__stack-head img {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.shop-banner__stack-head i {
    flex: 0 0 18px;
    width: 18px;
    text-align: center;
    color: #ff9f43;
    font-size: 0.9rem;
}

.shop-banner__stack-head strong {
    min-width: 0;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.25;
    font-weight: 700;
}

.shop-banner__stack-item > span {
    display: block;
    font-size: 0.74rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 968px) {
    .hero-intro {
        padding: var(--cw-shell-pad-y, clamp(0.4rem, 2vw, 2%)) 0 0.25rem;
        text-align: center;
    }
    .hero-intro .badge,
    .badge { margin-left: auto; margin-right: auto; }
    .hero-title,
    .hero-subtitle { text-align: center; }
    .hero-subtitle { max-width: 100%; margin-inline: auto; }
    .visual-section {
        min-height: auto;
        padding: 0.25rem 0 1.25rem;
        margin-top: 0.5rem;
    }
    .features { padding: 0; margin: 0.85rem auto 0.25rem; max-width: 100%; }
    .cta-container {
        max-width: 100%;
        margin: 0.85rem auto 1.25rem;
        justify-content: center;
    }
    .shop-banner__cards--2 { grid-template-columns: 1fr 1fr; }
    .shop-banner__stack-opts { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .shop-banner__cards--2,
    .shop-banner__cards--4 { grid-template-columns: 1fr; }
    .shop-banner__mark-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
