/* =========================================================
   HOME CARRUSELES MODERNOS
========================================================== */

.store-home-carousel {
    position: relative;
}

.store-home-carousel-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-bottom: 1rem;
}



.store-home-carousel-btn:hover {
    background: var(--store-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.store-home-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 280px;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.store-home-scroll::-webkit-scrollbar {
    display: none;
}

.store-home-slide {
    scroll-snap-align: start;
    min-width: 0;
}

.store-home-products-row {
    grid-auto-columns: 260px;
}

/* =========================================================
   FLECHAS Y BOTONES HOME - ESTILO GLOBAL LIMPIO
========================================================== */

.store-home-carousel-btn {
    width: 44px;
    height: 44px;

    border: 1px solid var(--store-border);
    border-radius: 50%;

    background: var(--store-white);
    color: var(--store-primary);

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

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

    transition: all 0.2s ease;
}

.store-home-carousel-btn:hover {
    background: var(--store-accent);
    border-color: var(--store-accent);
    color: var(--store-white);

    transform: translateY(-2px);
    box-shadow: var(--store-shadow-md);
}

.store-home-carousel-btn:active {
    transform: scale(0.96);
}

.store-home-carousel-btn i {
    font-size: 1rem;
    line-height: 1;
}

/* Botones: Ver catálogo / Ver todas / Ver marcas */
.btn-store-outline {
    border: 1px solid var(--store-border) !important;
    border-radius: 999px;

    background: var(--store-white) !important;
    color: var(--store-primary) !important;

    font-weight: 800;

    transition: all 0.2s ease;
}

.btn-store-outline:hover {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
    color: var(--store-white) !important;

    transform: translateY(-2px);
    box-shadow: var(--store-shadow-sm);
}

.btn-store-outline:active {
    transform: scale(0.98);
}

/* Productos destacados mantiene el mismo sistema */
.store-featured-products-section .store-home-carousel-btn,
.store-featured-products-section .btn-store-outline {
    color: var(--store-primary) !important;
}

.store-featured-products-section .store-home-carousel-btn:hover,
.store-featured-products-section .btn-store-outline:hover {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
    color: var(--store-white) !important;
}

/* Mobile */
@media (max-width: 575.98px) {
    .store-home-carousel-btn {
        width: 40px;
        height: 40px;
    }
}
/* =========================================================
   PRODUCTOS / CARDS UNIFICADAS DE TIENDA
========================================================== */

.store-products-minimal-section,
.store-products-page {
    background: #ffffff;
}

.store-product-minimal,
.store-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-product-minimal:hover,
.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-md);
}

/* IMAGEN */
.store-product-minimal-image-wrap,
.store-product-image-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--store-soft-2);
    overflow: hidden;
}

.store-product-minimal-image,
.store-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.35s ease;
}

.store-product-minimal-image {
    min-height: 100%;
}

.store-product-minimal:hover .store-product-minimal-image,
.store-product-card:hover .store-product-image {
    transform: scale(1.05);
}

/* BOTÓN FAVORITO */
.store-product-fav-btn,
.store-product-heart {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    z-index: 10;
    transition: all 0.2s ease;
}

.store-product-fav-btn:hover,
.store-product-heart:hover {
    transform: scale(1.08);
    color: var(--store-accent);
}

.store-product-fav-btn.is-active,
.store-product-heart.is-active {
    background: var(--store-primary);
    color: #ffffff;
}

.store-product-fav-btn.is-active:hover,
.store-product-heart.is-active:hover {
    background: var(--store-accent);
    color: #ffffff;
}

.store-product-fav-btn i,
.store-product-heart i {
    line-height: 1;
    pointer-events: none;
}

/* BADGES */
.store-product-discount-badge,
.store-product-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: var(--store-primary);
    color: #fff;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    z-index: 10;
}

.store-product-discount-badge {
    top: auto;
    bottom: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--store-primary);
}

.store-product-badge-muted {
    background: var(--store-muted);
}

/* BODY */
.store-product-minimal-body,
.store-product-body {
    padding: 1rem;
}

.store-product-meta {
    font-size: 0.78rem;
    color: var(--store-muted);
    margin-bottom: 0.4rem;
}

.store-product-minimal-title,
.store-product-name {
    display: block;
    color: var(--store-primary);
    text-decoration: none;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.45rem;
    min-height: 44px;
    letter-spacing: -0.01em;
}

.store-product-minimal-title {
    font-size: 0.9rem;
    text-transform: none;
}

.store-product-name {
    font-size: 0.95rem;
}

.store-product-minimal-title:hover,
.store-product-name:hover {
    color: var(--store-primary);
}

.store-product-category,
.store-product-minimal-meta,
.store-product-minimal-submeta {
    color: var(--store-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.store-product-category {
    margin-bottom: 1rem;
}

.store-product-minimal-submeta {
    color: #9ca3af;
}

/* PRECIOS */
.store-product-minimal-price-wrap,
.store-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.store-product-minimal-price-wrap {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.store-product-price,
.store-product-minimal-price {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--store-primary);
    line-height: 1.2;
}

.store-product-minimal-old-price {
    font-size: 0.82rem;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1.2;
}

.store-product-stock {
    color: var(--store-muted);
    font-size: 0.78rem;
}

/* ACCIÓN */
.store-product-action {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: var(--store-soft-2);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.store-product-action:hover {
    background: var(--store-primary);
    color: #fff;
}

/* PLACEHOLDER */
.store-product-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: var(--store-soft-2);
    color: var(--store-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* =========================================================
   RESPONSIVE HOME / PRODUCTOS
========================================================== */

@media (max-width: 991.98px) {
    .store-product-card {
        border-radius: 18px;
    }

    .store-product-body {
        padding: 0.75rem;
    }

    .store-product-meta {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .store-product-name {
        font-size: 0.86rem;
        min-height: 38px;
        margin-bottom: 0.3rem;
    }

    .store-product-category {
        font-size: 0.72rem;
        margin-bottom: 0.65rem;
    }

    .store-product-price {
        font-size: 0.9rem;
    }

    .store-product-stock {
        font-size: 0.68rem;
    }

    .store-product-action {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 12px;
    }

    .store-product-heart,
    .store-product-fav-btn {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
        font-size: 0.95rem;
    }

    .store-product-badge {
        font-size: 0.62rem;
        padding: 0.32rem 0.6rem;
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 575.98px) {
    .store-home-scroll {
        grid-auto-columns: 78%;
    }

    .store-home-products-row {
        grid-auto-columns: 72%;
    }

    .store-home-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .store-product-body {
        padding: 0.68rem;
    }

    .store-product-name {
        font-size: 0.8rem;
        min-height: 36px;
    }

    .store-product-price {
        font-size: 0.84rem;
    }

    .store-product-stock {
        display: none;
    }

    .store-product-action {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}




/* =========================================================
   PRODUCTOS DESTACADOS - ESTILO SUAVE PREMIUM
========================================================== */

.store-featured-products-section {
    background: #f7f7f7;

    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.store-featured-products-section .store-mini-label {
    color: #b7791f;
}

.store-featured-products-section .store-section-title::after {
    content: "";

    display: inline-block;

    width: 70px;
    height: 4px;

    margin-left: 1rem;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #facc15,
            #dca116
        );

    vertical-align: middle;
}

.store-featured-products-row {
    grid-auto-columns: 300px;

    padding-top: 0.6rem;
    padding-bottom: 1.2rem;
}

.store-featured-products-section .store-product-card,
.store-featured-products-section .store-product-minimal {
    background: #ffffff;

    border: 2px solid rgba(220, 161, 22, 0.18);

    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.06);
}

.store-featured-products-section .store-product-card:hover,
.store-featured-products-section .store-product-minimal:hover {
    transform: translateY(-7px);

    border-color: rgba(220, 161, 22, 0.42);

    box-shadow:
        0 24px 60px rgba(15, 23, 42, 0.12);
}

.store-featured-products-section .store-product-price,
.store-featured-products-section .store-product-minimal-price {
    color: #b7791f;
}

.store-featured-products-section .store-home-carousel-btn {
    border-color: rgba(15, 23, 42, 0.10);

    background: #ffffff;

    color: #475569;
}

.store-featured-products-section .store-home-carousel-btn:hover {
    background: #111827;

    border-color: #111827;

    color: #ffffff;
}

@media (max-width: 575.98px) {

    .store-featured-products-row {
        grid-auto-columns: 78%;
    }

}




/* =========================================================
   PRODUCTOS INDEX / CATÁLOGO
========================================================== */

.store-products-hero {
    padding-top: 1rem;
}

.store-products-hero-card {
    background: linear-gradient(135deg, var(--store-primary) 0%, var(--store-primary-soft) 100%);
    border-radius: 32px;
    padding: 2rem;
    color: #fff;
    overflow: hidden;
}

.store-section-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.store-products-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.store-products-subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 680px;
}

.store-products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.store-toolbar-title {
    font-weight: 800;
    color: var(--store-primary);
}

.store-toolbar-subtitle {
    color: var(--store-muted);
}

/* FILTROS */
.store-filter-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    padding: 1.2rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.store-filter-title {
    font-weight: 800;
    color: var(--store-primary);
}

.store-filter-subtitle {
    color: var(--store-muted);
    font-size: 0.9rem;
}

.store-filter-group {
    margin-bottom: 1rem;
}

.store-filter-label {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--store-primary);
}

.store-filter-control {
    border: 1px solid var(--store-border);
    border-radius: 14px;
    min-height: 48px;
    box-shadow: none !important;
}

.store-filter-control:focus {
    border-color: rgba(220, 161, 22, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(220, 161, 22, 0.12) !important;
}

/* =========================================================
   RESPONSIVE PRODUCTOS
========================================================== */

@media (max-width: 991.98px) {

    .store-products-page {
        overflow-x: hidden;
    }

    .store-products-hero {
        padding-top: 0.75rem;
    }

    .store-products-hero-card {
        border-radius: 22px;
        padding: 1.25rem;
    }

    .store-section-eyebrow {
        font-size: 0.72rem;
        padding: 0.35rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    .store-products-title {
        font-size: 1.65rem;
        line-height: 1.15;
        margin-bottom: 0.65rem;
    }

    .store-products-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .store-products-toolbar {
        align-items: flex-start;
        margin-bottom: 1rem;
    }

    .store-toolbar-title {
        font-size: 1rem;
    }

    .store-toolbar-subtitle {
        font-size: 0.85rem;
    }

    .store-filter-card {
        border-radius: 20px;
        padding: 1rem;
        margin-bottom: 0.25rem;
        position: static !important;
    }

    .store-filter-header {
        margin-bottom: 1rem;
    }

    .store-filter-title {
        font-size: 1rem;
    }

    .store-filter-subtitle {
        font-size: 0.82rem;
    }

    .store-filter-group {
        margin-bottom: 0.8rem;
    }

    .store-filter-label {
        font-size: 0.8rem;
    }

    .store-filter-control {
        min-height: 44px;
        border-radius: 12px;
        font-size: 0.88rem;
    }

    .store-filter-card .d-grid {
        grid-template-columns: 1fr 1fr;
        display: grid !important;
        gap: 0.65rem !important;
    }

    .store-filter-card .btn {
        min-height: 44px;
        font-size: 0.85rem;
    }

    .store-product-minimal,
    .store-product-card {
        border-radius: 18px;
    }

    .store-product-minimal-body,
    .store-product-body {
        padding: 0.75rem;
    }

    .store-product-meta {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .store-product-minimal-title,
    .store-product-name {
        font-size: 0.86rem;
        min-height: 38px;
        margin-bottom: 0.3rem;
    }

    .store-product-category,
    .store-product-minimal-meta,
    .store-product-minimal-submeta {
        font-size: 0.72rem;
    }

    .store-product-category {
        margin-bottom: 0.65rem;
    }

    .store-product-price,
    .store-product-minimal-price {
        font-size: 0.9rem;
    }

    .store-product-stock {
        font-size: 0.68rem;
    }

    .store-product-action {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 12px;
    }

    .store-product-fav-btn,
    .store-product-heart {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }

    .store-product-discount-badge,
    .store-product-badge {
        font-size: 0.62rem;
        padding: 0.32rem 0.6rem;
    }

    .store-product-badge {
        top: 10px;
        left: 10px;
    }

    .store-product-discount-badge {
        left: 10px;
        bottom: 10px;
    }
}

@media (max-width: 575.98px) {

    .store-products-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-products-title {
        font-size: 1.45rem;
    }

    .store-products-subtitle {
        font-size: 0.84rem;
    }

    .store-products-hero-card {
        padding: 1rem;
    }

    .store-filter-card {
        padding: 0.85rem;
    }

    .store-filter-card .d-grid {
        grid-template-columns: 1fr;
    }

    .store-product-minimal-body,
    .store-product-body {
        padding: 0.68rem;
    }

    .store-product-minimal-title,
    .store-product-name {
        font-size: 0.8rem;
        min-height: 36px;
    }

    .store-product-price,
    .store-product-minimal-price {
        font-size: 0.84rem;
    }

    .store-product-stock {
        display: none;
    }

    .store-product-action {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
}



/* =========================================================
   CATEGORÍAS INDEX
========================================================== */

.store-categories-page {
    background: #ffffff;
}

.store-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    color: var(--store-primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    text-decoration: none;
}

.store-category-card:hover {
    color: var(--store-primary);
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-md);
}

.store-category-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--store-soft-2);
    overflow: hidden;
}

.store-category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-category-card:hover .store-category-image {
    transform: scale(1.05);
}

.store-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 24, 39, 0.58),
        rgba(17, 24, 39, 0.08)
    );
    z-index: 1;
}

.store-category-icon {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.store-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--store-primary);
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.store-category-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-category-title {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
    color: var(--store-primary);
}

.store-category-text {
    color: var(--store-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.store-category-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--store-primary);
    font-size: 0.88rem;
    font-weight: 800;
}

.store-category-footer i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--store-soft-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.store-category-card:hover .store-category-footer i {
    background: var(--store-primary);
    color: #fff;
}

/* =========================================================
   RESPONSIVE CATEGORÍAS
========================================================== */

@media (max-width: 991.98px) {

    .store-category-card {
        border-radius: 20px;
    }

    .store-category-body {
        padding: 1rem;
    }

    .store-category-title {
        font-size: 1rem;
    }

    .store-category-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {

    .store-category-image-wrap {
        aspect-ratio: 16 / 9;
    }

    .store-category-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 1rem;
        left: 12px;
        bottom: 12px;
    }

    .store-category-badge {
        top: 12px;
        right: 12px;
        min-height: 30px;
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
    }

    .store-category-body {
        padding: 0.9rem;
    }

    .store-category-title {
        font-size: 0.95rem;
    }

    .store-category-text {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .store-category-footer {
        font-size: 0.8rem;
    }

    .store-category-footer i {
        width: 32px;
        height: 32px;
        border-radius: 11px;
    }
}


/* =========================================================
   MARCAS INDEX
========================================================== */

.store-brands-page {
    background: #ffffff;
}

.store-brand-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    color: var(--store-primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.25s ease;
    text-decoration: none;
}

.store-brand-card:hover {
    color: var(--store-primary);
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-md);
}

.store-brand-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--store-soft-2);
    overflow: hidden;
}

.store-brand-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.store-brand-card:hover .store-brand-image {
    transform: scale(1.05);
}

.store-brand-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 24, 39, 0.6),
        rgba(17, 24, 39, 0.08)
    );
    z-index: 1;
}

.store-brand-logo {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    z-index: 2;
    backdrop-filter: blur(8px);
    letter-spacing: -0.03em;
}

.store-brand-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--store-primary);
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.store-brand-body {
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-brand-title {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
    color: var(--store-primary);
}

.store-brand-text {
    color: var(--store-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.store-brand-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--store-primary);
    font-size: 0.88rem;
    font-weight: 800;
}

.store-brand-footer i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: var(--store-soft-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
}

.store-brand-card:hover .store-brand-footer i {
    background: var(--store-primary);
    color: #fff;
}

/* =========================================================
   RESPONSIVE MARCAS
========================================================== */

@media (max-width: 991.98px) {

    .store-brand-card {
        border-radius: 20px;
    }

    .store-brand-body {
        padding: 1rem;
    }

    .store-brand-title {
        font-size: 1rem;
    }

    .store-brand-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {

    .store-brand-image-wrap {
        aspect-ratio: 16 / 9;
    }

    .store-brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 0.86rem;
        left: 12px;
        bottom: 12px;
    }

    .store-brand-badge {
        top: 12px;
        right: 12px;
        min-height: 30px;
        font-size: 0.68rem;
        padding: 0.35rem 0.65rem;
    }

    .store-brand-body {
        padding: 0.9rem;
    }

    .store-brand-title {
        font-size: 0.95rem;
    }

    .store-brand-text {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .store-brand-footer {
        font-size: 0.8rem;
    }

    .store-brand-footer i {
        width: 32px;
        height: 32px;
        border-radius: 11px;
    }
}

/* =========================================================
   PRODUCTO SHOW / DETALLE
========================================================== */

.store-product-detail-page {
    background: #ffffff;
    overflow-x: hidden;
}

.store-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--store-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.store-detail-breadcrumb a {
    color: var(--store-muted);
    text-decoration: none;
}

.store-detail-breadcrumb a:hover {
    color: var(--store-primary);
}

.store-detail-breadcrumb i {
    font-size: 0.72rem;
}

/* CARDS */

.store-product-gallery-card,
.store-product-info-card,
.store-detail-section-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.store-product-gallery-card {
    padding: 0.85rem;
}

.store-product-info-card {
    padding: 1.6rem;
}

/* GALERÍA */

.store-product-main-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: var(--store-soft-2);
}

.store-product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-product-detail-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    background: var(--store-primary);
    color: #fff;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 3;
}

.store-product-detail-heart {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: none;
}

.store-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.store-product-thumb {
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: var(--store-soft-2);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

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

/* INFO */

.store-product-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--store-muted);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.store-product-detail-title {
    font-size: clamp(1.7rem, 3.5vw, 2.65rem);
    font-weight: 900;
    color: var(--store-primary);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.store-product-detail-description {
    color: var(--store-muted);
    line-height: 1.65;
    margin-bottom: 1.15rem;
    font-size: 0.95rem;
}

/* PRECIO */

.store-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.store-product-detail-price {
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    font-weight: 900;
    color: var(--store-primary);
    line-height: 1.05;
    margin-bottom: 0.35rem;
}

.store-discount-badge {
    background: #ffc107;
    color: #111827;
    font-weight: 900;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    line-height: 1;
    white-space: nowrap;
}

/* STOCK */

.store-product-detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.store-product-detail-stock.is-available {
    background: #eefbf3;
    color: #16a34a;
}

.store-product-detail-stock.is-empty {
    background: #fff1f2;
    color: #dc3545;
}

/* PANEL DE COMPRA */

.store-product-buy-panel {
    padding: 1rem 0;
    margin: 0.5rem 0 1.25rem;
    border-top: 1px solid var(--store-border);
    border-bottom: 1px solid var(--store-border);
}

.store-product-detail-actions {
    margin: 0;
}

.store-product-actions-premium {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.8rem;
    align-items: stretch;
}

/* CANTIDAD */

.store-qty-control {
    display: grid;
    grid-template-columns: 38px 1fr 38px;
    min-height: 54px;
    border: 1px solid var(--store-border);
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.store-qty-control button {
    border: 0;
    background: #f8fafc;
    color: var(--store-primary);
    font-weight: 900;
}

.store-qty-control input {
    width: 100%;
    min-width: 0;
    border: 0;
    text-align: center;
    font-weight: 900;
    color: var(--store-primary);
    outline: none;
}

/* BOTONES */

.store-cart-form {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 0;
}

.store-add-cart-btn,
.store-whatsapp-product-btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 14px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    text-decoration: none;
    box-shadow: none !important;
    outline: none !important;
    line-height: 1.2;
}

/* Botón carrito usando colores globales */
.store-add-cart-btn {
    background: var(--store-accent) !important;
    border: 1px solid var(--store-accent) !important;
    color: #ffffff !important;
}

.store-add-cart-btn:hover {
    background: var(--store-accent-hover) !important;
    border-color: var(--store-accent-hover) !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: none !important;
}

.store-add-cart-btn:focus,
.store-add-cart-btn:active,
.store-add-cart-btn:focus-visible {
    background: var(--store-accent) !important;
    border-color: var(--store-accent) !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Botón WhatsApp */
.store-whatsapp-product-btn {
    border: 2px solid #25D366;
    background: #ffffff;
    color: #25D366;
}

.store-whatsapp-product-btn:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: none !important;
}

.store-whatsapp-product-btn:focus,
.store-whatsapp-product-btn:active,
.store-whatsapp-product-btn:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}

/* BENEFICIOS */

.store-product-detail-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.store-product-benefit {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #f8fafc;
    border: 1px solid var(--store-border);
    border-radius: 16px;
    padding: 0.8rem 0.9rem;
    color: var(--store-primary);
    font-weight: 700;
    font-size: 0.86rem;
}

.store-product-benefit i {
    color: var(--store-accent);
    font-size: 1rem;
}

/* SECCIONES EXTRA */

.store-detail-section-card {
    padding: 1.3rem;
    height: 100%;
}

.store-detail-section-title {
    color: var(--store-primary);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.store-detail-section-text {
    color: var(--store-muted);
    line-height: 1.75;
}

.store-product-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-product-info-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--store-border);
}

.store-product-info-list li:last-child {
    border-bottom: 0;
}

.store-product-info-list span {
    color: var(--store-muted);
}

.store-product-info-list strong {
    color: var(--store-primary);
}

/* =========================================================
   RESPONSIVE PRODUCTO SHOW
========================================================== */

@media (max-width: 1199.98px) {
    .store-product-actions-premium {
        grid-template-columns: 1fr 1fr;
    }

    .store-qty-control {
        grid-column: 1 / -1;
    }

    .store-cart-form,
    .store-add-cart-btn,
    .store-whatsapp-product-btn {
        width: 100%;
        min-width: 0;
    }

    .store-whatsapp-product-btn {
        grid-column: auto;
    }
}

@media (max-width: 991.98px) {
    .store-product-info-card {
        padding: 1.25rem;
    }

    .store-product-detail-title {
        font-size: 1.85rem;
    }

    .store-product-detail-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .store-product-detail-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-detail-breadcrumb {
        font-size: 0.74rem;
        gap: 0.35rem;
    }

    .store-product-gallery-card {
        padding: 0.65rem;
        border-radius: 20px;
    }

    .store-product-main-image-wrap {
        border-radius: 18px;
    }

    .store-product-detail-badge {
        left: 12px;
        top: 12px;
        font-size: 0.68rem;
        padding: 0.38rem 0.65rem;
    }

    .store-product-detail-heart {
        width: 38px;
        height: 38px;
        top: 12px;
        right: 12px;
    }

    .store-product-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.45rem;
    }

    .store-product-thumb {
        border-radius: 11px;
    }

    .store-product-info-card {
        padding: 1rem;
        border-radius: 20px;
    }

    .store-product-detail-meta {
        font-size: 0.76rem;
    }

    .store-product-detail-title {
        font-size: 1.45rem;
        letter-spacing: -0.03em;
    }

    .store-product-detail-description {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .store-price-row {
        align-items: center;
    }

    .store-product-detail-price {
        font-size: 1.6rem;
    }

    .store-discount-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .store-product-actions-premium {
        grid-template-columns: 1fr;
    }

    .store-qty-control,
    .store-cart-form,
    .store-add-cart-btn,
    .store-whatsapp-product-btn {
        width: 100%;
        min-width: 0;
    }

    .store-qty-control,
    .store-add-cart-btn,
    .store-whatsapp-product-btn {
        min-height: 50px;
    }

    .store-add-cart-btn,
    .store-whatsapp-product-btn {
        font-size: 0.88rem;
        white-space: normal;
        text-align: center;
    }

    .store-detail-section-card {
        padding: 1rem;
        border-radius: 20px;
    }
}


/* =========================================================
   CATEGORÍA SHOW
========================================================== */

.store-category-show-page {
    background: #ffffff;
}

.store-category-show-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.store-category-show-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-category-show-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(17, 24, 39, 0.92) 0%,
            rgba(17, 24, 39, 0.68) 45%,
            rgba(17, 24, 39, 0.28) 100%
        );
}

.store-category-show-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
    color: #fff;
    max-width: 760px;
}

.store-category-show-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-category-show-description {
    color: rgba(255,255,255,0.82);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 1.5rem;
}

.store-category-show-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.store-category-show-stat {
    min-width: 120px;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.store-category-show-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.store-category-show-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
}

/* =========================================================
   RESPONSIVE CATEGORÍA SHOW
========================================================== */

@media (max-width: 991.98px) {

    .store-category-show-hero {
        min-height: 360px;
    }

    .store-category-show-content {
        padding: 3rem 0 2.5rem;
    }

    .store-category-show-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {

    .store-category-show-hero {
        min-height: 320px;
    }

    .store-category-show-content {
        padding: 2.4rem 0 2rem;
    }

    .store-category-show-title {
        font-size: 2rem;
    }

    .store-category-show-description {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .store-category-show-stats {
        gap: 0.65rem;
    }

    .store-category-show-stat {
        min-width: calc(50% - 0.35rem);
        padding: 0.8rem;
        border-radius: 16px;
    }

    .store-category-show-stat strong {
        font-size: 0.92rem;
    }

    .store-category-show-stat span {
        font-size: 0.72rem;
    }
}

/* =========================================================
   MARCA SHOW
========================================================== */

.store-brand-show-page {
    background: #ffffff;
}

.store-brand-show-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.store-brand-show-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-brand-show-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(17, 24, 39, 0.92) 0%,
            rgba(17, 24, 39, 0.68) 45%,
            rgba(17, 24, 39, 0.28) 100%
        );
}

.store-brand-show-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 3rem;
    color: #fff;
    max-width: 760px;
}

.store-brand-show-logo {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: rgba(255,255,255,0.96);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    letter-spacing: -0.04em;
}

.store-brand-show-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-brand-show-description {
    color: rgba(255,255,255,0.82);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 1.5rem;
}

.store-brand-show-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.store-brand-show-stat {
    min-width: 120px;
    padding: 0.9rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.store-brand-show-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.store-brand-show-stat span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.72);
}

/* =========================================================
   RESPONSIVE MARCA SHOW
========================================================== */

@media (max-width: 991.98px) {

    .store-brand-show-hero {
        min-height: 360px;
    }

    .store-brand-show-content {
        padding: 3rem 0 2.5rem;
    }

    .store-brand-show-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {

    .store-brand-show-hero {
        min-height: 320px;
    }

    .store-brand-show-content {
        padding: 2.4rem 0 2rem;
    }

    .store-brand-show-logo {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }

    .store-brand-show-title {
        font-size: 2rem;
    }

    .store-brand-show-description {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .store-brand-show-stats {
        gap: 0.65rem;
    }

    .store-brand-show-stat {
        min-width: calc(50% - 0.35rem);
        padding: 0.8rem;
        border-radius: 16px;
    }

    .store-brand-show-stat strong {
        font-size: 0.92rem;
    }

    .store-brand-show-stat span {
        font-size: 0.72rem;
    }
}

/* =========================================================
   CHECKOUT
========================================================== */

.store-checkout-page {
    background: #ffffff;
}

.store-checkout-hero {
    padding: 2rem;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            var(--store-primary) 0%,
            var(--store-primary-soft) 100%
        );
    color: #fff;
}

.store-checkout-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-checkout-subtitle {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.store-checkout-card,
.store-checkout-summary-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-checkout-card-header {
    padding: 1.25rem 1.25rem 0;
}

.store-checkout-card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--store-primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.store-checkout-card-body {
    padding: 1.25rem;
}

.store-form-label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--store-primary);
    font-weight: 700;
    font-size: 0.88rem;
}

.store-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--store-border);
    border-radius: 18px;
    transition: all 0.22s ease;
}

.store-payment-option + .store-payment-option {
    margin-top: 0.8rem;
}

.store-payment-option.active {
    border-color: rgba(220, 161, 22, 0.4);
    background: rgba(220, 161, 22, 0.05);
}

.store-payment-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid var(--store-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: #fff;
    margin-top: 0.15rem;
}

.store-payment-option.active .store-payment-radio {
    background: var(--store-primary);
    border-color: var(--store-primary);
}

.store-payment-option h5 {
    color: var(--store-primary);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.store-payment-option p {
    color: var(--store-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.store-checkout-summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.store-checkout-summary-header h2 {
    color: var(--store-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.store-checkout-products {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.store-checkout-product {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    gap: 0.85rem;
    align-items: center;
}

.store-checkout-product-image {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--store-soft-2);
}

.store-checkout-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-checkout-product-info h5 {
    color: var(--store-primary);
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.store-checkout-product-info span {
    color: var(--store-muted);
    font-size: 0.8rem;
}

.store-checkout-product-price {
    color: var(--store-primary);
    font-size: 0.9rem;
    font-weight: 900;
}

.store-checkout-cupon {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
    margin-bottom: 1.25rem;
}

.store-checkout-totals {
    border-top: 1px solid var(--store-border);
    padding-top: 1rem;
    margin-bottom: 1.25rem;
}

.store-checkout-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    color: var(--store-muted);
}

.store-checkout-total-row strong {
    color: var(--store-primary);
}

.store-checkout-total-row.total {
    margin-top: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--store-border);
    color: var(--store-primary);
    font-size: 1.05rem;
    font-weight: 900;
}

.store-checkout-total-row.total strong {
    font-size: 1.15rem;
}

.store-checkout-submit {
    width: 100%;
    min-height: 56px;
    margin-bottom: 1rem;
}

.store-checkout-security {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--store-muted);
    font-size: 0.82rem;
}

.store-checkout-security div {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

/* =========================================================
   RESPONSIVE CHECKOUT
========================================================== */

@media (max-width: 991.98px) {

    .store-checkout-summary-card {
        position: static;
    }

    .store-checkout-hero {
        padding: 1.5rem;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {

    .store-checkout-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-checkout-hero {
        padding: 1.2rem;
        border-radius: 22px;
    }

    .store-checkout-title {
        font-size: 1.8rem;
    }

    .store-checkout-subtitle {
        font-size: 0.88rem;
    }

    .store-checkout-card,
    .store-checkout-summary-card {
        border-radius: 22px;
    }

    .store-checkout-card-header {
        padding: 1rem 1rem 0;
    }

    .store-checkout-card-body,
    .store-checkout-summary-card {
        padding: 1rem;
    }

    .store-checkout-product {
        grid-template-columns: 62px 1fr;
    }

    .store-checkout-product-price {
        grid-column: 2;
    }

    .store-checkout-product-image {
        width: 62px;
        height: 62px;
        border-radius: 16px;
    }

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

/* =========================================================
   CHECKOUT CONFIRMACIÓN
========================================================== */

.store-confirmation-page {
    background: #ffffff;
}

.store-confirmation-hero {
    text-align: center;
    border-radius: 34px;
    padding: 3rem 1.5rem;
    background:
        linear-gradient(
            135deg,
            var(--store-primary) 0%,
            var(--store-primary-soft) 100%
        );
    color: #fff;
}

.store-confirmation-icon {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.store-confirmation-title {
    font-size: clamp(2rem, 5vw, 3.7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    max-width: 860px;
    margin: 0 auto 1rem;
}

.store-confirmation-subtitle {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin: 0 auto 1.5rem;
}

.store-confirmation-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.store-confirmation-card,
.store-confirmation-summary-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-confirmation-card-header {
    padding: 1.25rem 1.25rem 0;
}

.store-confirmation-card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--store-primary);
    font-size: 1.1rem;
    font-weight: 900;
}

.store-confirmation-card-body {
    padding: 1.25rem;
}

.store-confirmation-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.store-confirmation-info-item {
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 18px;
    padding: 1rem;
}

.store-confirmation-info-item span {
    display: block;
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.store-confirmation-info-item strong {
    color: var(--store-primary);
    font-weight: 900;
}

.store-confirmation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-confirmation-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--store-border);
}

.store-confirmation-list li:last-child {
    border-bottom: 0;
}

.store-confirmation-list span {
    color: var(--store-muted);
}

.store-confirmation-list strong {
    color: var(--store-primary);
    text-align: right;
}

.store-confirmation-summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.store-confirmation-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.store-confirmation-summary-header h2 {
    color: var(--store-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-confirmation-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #fff7e0;
    color: #9a6b00;
    font-size: 0.72rem;
    font-weight: 900;
}

.store-confirmation-total-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--store-border);
    border-bottom: 1px solid var(--store-border);
    padding: 1rem 0;
    margin: 1rem 0;
}

.store-confirmation-total-box span {
    color: var(--store-muted);
    font-weight: 700;
}

.store-confirmation-total-box strong {
    color: var(--store-primary);
    font-size: 1.4rem;
    font-weight: 900;
}

.store-confirmation-payment-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.store-confirmation-payment-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 15px;
    background: #fff;
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.store-confirmation-payment-box h5 {
    color: var(--store-primary);
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.store-confirmation-payment-box p {
    color: var(--store-muted);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE CONFIRMACIÓN
========================================================== */

@media (max-width: 991.98px) {

    .store-confirmation-summary-card {
        position: static;
    }

    .store-confirmation-hero {
        border-radius: 26px;
        padding: 2.3rem 1.25rem;
    }
}

@media (max-width: 575.98px) {

    .store-confirmation-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-confirmation-hero {
        border-radius: 22px;
        padding: 2rem 1rem;
    }

    .store-confirmation-icon {
        width: 66px;
        height: 66px;
        border-radius: 22px;
        font-size: 1.7rem;
    }

    .store-confirmation-title {
        font-size: 1.8rem;
    }

    .store-confirmation-subtitle {
        font-size: 0.88rem;
    }

    .store-confirmation-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .store-confirmation-card,
    .store-confirmation-summary-card {
        border-radius: 22px;
    }

    .store-confirmation-card-header {
        padding: 1rem 1rem 0;
    }

    .store-confirmation-card-body,
    .store-confirmation-summary-card {
        padding: 1rem;
    }

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

    .store-confirmation-list li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .store-confirmation-list strong {
        text-align: left;
    }

    .store-confirmation-total-box strong {
        font-size: 1.18rem;
    }

    .store-confirmation-payment-box {
        border-radius: 18px;
    }
}

/* =========================================================
   CARRITO
========================================================== */

.store-cart-page {
    background: #ffffff;
}

.store-cart-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--store-primary) 0%, var(--store-primary-soft) 100%);
    color: #fff;
}

.store-cart-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-cart-subtitle {
    max-width: 640px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.store-cart-hero-counter {
    width: 112px;
    height: 112px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-cart-hero-counter strong {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.store-cart-hero-counter span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.store-cart-list-card,
.store-cart-summary-card,
.store-cart-help-card,
.store-cart-empty-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-cart-list-card {
    overflow: hidden;
}

.store-cart-list-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--store-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.store-cart-list-header h2 {
    color: var(--store-primary);
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.store-cart-list-header p {
    color: var(--store-muted);
    margin-bottom: 0;
    font-size: 0.88rem;
}

.store-cart-items {
    display: grid;
}

.store-cart-item {
    display: grid;
    grid-template-columns: 112px 1fr 260px;
    gap: 1rem;
    padding: 1.25rem;
    align-items: center;
}

.store-cart-item + .store-cart-item {
    border-top: 1px solid var(--store-border);
}

.store-cart-item-image {
    width: 112px;
    height: 112px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--store-soft-2);
}

.store-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-cart-item-meta {
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.store-cart-item-title {
    color: var(--store-primary);
    font-size: 1.02rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.store-cart-item-title a {
    color: inherit;
    text-decoration: none;
}

.store-cart-item-title a:hover {
    color: var(--store-primary);
}

.store-cart-item-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 800;
}

.store-cart-mobile-price {
    display: none;
    color: var(--store-primary);
    font-weight: 900;
    margin-top: 0.55rem;
}

.store-cart-item-controls {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 0.65rem;
}

.store-cart-price {
    color: var(--store-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.store-cart-qty-form {
    margin: 0;
    padding: 0;
    display: contents;
}

.store-cart-remove-form {
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.store-cart-qty-control {
    display: grid;
    grid-template-columns: 38px 52px 38px;
    min-height: 42px;
    border: 1px solid var(--store-border);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.store-cart-qty-control button {
    border: 0;
    background: var(--store-soft);
    color: var(--store-primary);
    font-weight: 900;
}

.store-cart-qty-control input {
    border: 0;
    text-align: center;
    font-weight: 900;
    color: var(--store-primary);
    outline: none;
}

.store-cart-update-btn {
    border: 0;
    background: transparent;
    color: var(--store-primary);
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0;
}

.store-cart-line-total {
    color: var(--store-primary);
    font-size: 1rem;
    font-weight: 900;
}

.store-cart-remove-btn {
    border: 0;
    background: transparent;
    color: var(--store-danger);
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-cart-help-card {
    padding: 1.15rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-cart-help-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: #fff7e0;
    color: var(--store-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.store-cart-help-card h3 {
    color: var(--store-primary);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.store-cart-help-card p {
    color: var(--store-muted);
    margin-bottom: 0;
    line-height: 1.65;
    font-size: 0.9rem;
}

.store-cart-summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.store-cart-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.store-cart-summary-header h2 {
    color: var(--store-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-cart-summary-header span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: var(--store-soft);
    color: var(--store-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.store-cart-coupon-box {
    margin-bottom: 1.2rem;
}

.store-cart-coupon-control {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
}

.store-cart-total-list {
    border-top: 1px solid var(--store-border);
    padding-top: 1rem;
    margin-bottom: 1.25rem;
}

.store-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    color: var(--store-muted);
}

.store-cart-total-row strong {
    color: var(--store-primary);
}

.store-cart-total-row.total {
    margin-top: 0.4rem;
    padding-top: 1rem;
    border-top: 1px solid var(--store-border);
    color: var(--store-primary);
    font-size: 1.05rem;
    font-weight: 900;
}

.store-cart-total-row.total strong {
    font-size: 1.18rem;
}

.store-cart-checkout-btn,
.store-cart-continue-btn {
    width: 100%;
    min-height: 54px;
    margin-bottom: 0.75rem;
}

.store-cart-summary-benefits {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.store-cart-summary-benefits div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--store-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.store-cart-summary-benefits i {
    color: var(--store-accent);
}

.store-cart-empty-card {
    text-align: center;
    padding: 3rem 1.5rem;
}

.store-cart-empty-icon {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    background: var(--store-soft);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.store-cart-empty-card h2 {
    color: var(--store-primary);
    font-weight: 900;
    margin-bottom: 0.7rem;
}

.store-cart-empty-card p {
    color: var(--store-muted);
    max-width: 480px;
    margin: 0 auto 1.25rem;
}

/* =========================================================
   BOTÓN ACTUALIZAR
========================================================== */

.store-cart-update-btn {
    appearance: none;
    border: none !important;

    background: linear-gradient(
        135deg,
        #111827 0%,
        #1f2937 100%
    ) !important;

    color: #ffffff !important;

    min-height: 38px;
    padding: 0 1rem;

    border-radius: 12px;

    font-size: 0.78rem;
    font-weight: 800;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    transition: all 0.2s ease;

    box-shadow:
        0 8px 18px rgba(0,0,0,0.10),
        0 2px 4px rgba(0,0,0,0.06);

    white-space: nowrap;

    text-decoration: none !important;
}

.store-cart-update-btn:hover {
    transform: translateY(-2px);

    background: linear-gradient(
        135deg,
        #000000 0%,
        #111827 100%
    ) !important;

    color: #ffffff !important;

    box-shadow:
        0 12px 24px rgba(0,0,0,0.14),
        0 4px 8px rgba(0,0,0,0.08);
}

.store-cart-update-btn:active {
    transform: scale(0.97);
}

.store-cart-update-btn i {
    font-size: 0.82rem;
    color: #ffffff !important;
}

@media (max-width: 575.98px) {

    .store-cart-update-btn {
        min-height: 34px;
        padding: 0 0.85rem;
        border-radius: 10px;
        font-size: 0.72rem;
    }

}

/* =========================================================
   RESPONSIVE CARRITO
========================================================== */

@media (max-width: 1199.98px) {
    .store-cart-item {
        grid-template-columns: 100px 1fr 220px;
    }

    .store-cart-item-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 991.98px) {
    .store-cart-hero {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .store-cart-summary-card {
        position: static;
    }

    .store-cart-item {
        grid-template-columns: 96px 1fr;
    }

    .store-cart-item-controls {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        justify-items: initial;
    }

    .store-cart-mobile-price {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .store-cart-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-cart-hero {
        align-items: flex-start;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .store-cart-title {
        font-size: 1.8rem;
    }

    .store-cart-subtitle {
        font-size: 0.88rem;
    }

    .store-cart-hero-counter {
        width: 78px;
        height: 78px;
        border-radius: 22px;
    }

    .store-cart-hero-counter strong {
        font-size: 1.45rem;
    }

    .store-cart-hero-counter span {
        font-size: 0.68rem;
    }

    .store-cart-list-card,
    .store-cart-summary-card,
    .store-cart-help-card,
    .store-cart-empty-card {
        border-radius: 22px;
    }

    .store-cart-list-header {
        padding: 1rem;
    }

    .store-cart-item {
        padding: 1rem;
        grid-template-columns: 82px 1fr;
        gap: 0.85rem;
    }

    .store-cart-item-image {
        width: 82px;
        height: 82px;
        border-radius: 18px;
    }

    .store-cart-item-title {
        font-size: 0.9rem;
    }

    .store-cart-item-stock {
        font-size: 0.72rem;
    }

    .store-cart-item-controls {
        gap: 0.75rem;
    }

    .store-cart-qty-control {
        grid-template-columns: 36px 46px 36px;
    }

    .store-cart-line-total {
        font-size: 0.92rem;
    }

    .store-cart-remove-btn span {
        display: none;
    }

    .store-cart-summary-card {
        padding: 1rem;
    }

    .store-cart-coupon-control {
        grid-template-columns: 1fr;
    }

    .store-cart-help-card {
        padding: 1rem;
    }
}
/* =========================================================
   MIS PEDIDOS
========================================================== */

.store-orders-page {
    background: #ffffff;
}

.store-orders-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            var(--store-primary) 0%,
            var(--store-primary-soft) 100%
        );
    color: #fff;
}

.store-orders-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-orders-subtitle {
    max-width: 640px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.store-orders-hero-counter {
    width: 112px;
    height: 112px;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.store-orders-hero-counter strong {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.store-orders-hero-counter span {
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.store-orders-filter-card,
.store-order-card,
.store-orders-empty-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-orders-filter-card {
    padding: 1.25rem;
}

.store-orders-list {
    display: grid;
    gap: 1rem;
}

.store-order-card {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1.25rem;
    align-items: center;
    transition: all 0.25s ease;
}

.store-order-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--store-shadow-md);
}

.store-order-main {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-order-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: var(--store-soft);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.store-order-info {
    min-width: 0;
    width: 100%;
}

.store-order-topline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
}

.store-order-topline h2 {
    color: var(--store-primary);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-order-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
}

.store-order-status.is-warning {
    background: #fff7e0;
    color: #9a6b00;
}

.store-order-status.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-order-status.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-order-status.is-primary {
    background: #f3f4f6;
    color: var(--store-primary);
}

.store-order-status.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-order-status.is-muted {
    background: #f3f4f6;
    color: var(--store-muted);
}

.store-order-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.store-order-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.store-order-products {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.store-order-products span {
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    color: var(--store-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.store-order-side {
    display: grid;
    gap: 0.9rem;
    justify-items: end;
}

.store-order-total {
    text-align: right;
}

.store-order-total span {
    display: block;
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.store-order-total strong {
    color: var(--store-primary);
    font-size: 1.15rem;
    font-weight: 900;
}

.store-order-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    width: 100%;
}

.store-order-actions .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.store-orders-empty-card {
    text-align: center;
    padding: 3rem 1.5rem;
}

.store-orders-empty-icon {
    width: 84px;
    height: 84px;
    border-radius: 28px;
    background: var(--store-soft);
    color: var(--store-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.store-orders-empty-card h2 {
    color: var(--store-primary);
    font-weight: 900;
    margin-bottom: 0.7rem;
}

.store-orders-empty-card p {
    color: var(--store-muted);
    max-width: 480px;
    margin: 0 auto 1.25rem;
}

/* =========================================================
   RESPONSIVE MIS PEDIDOS
========================================================== */

@media (max-width: 991.98px) {

    .store-orders-hero {
        padding: 1.5rem;
        border-radius: 26px;
    }

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

    .store-order-side {
        justify-items: stretch;
        border-top: 1px solid var(--store-border);
        padding-top: 1rem;
    }

    .store-order-total {
        text-align: left;
    }
}

@media (max-width: 575.98px) {

    .store-orders-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-orders-hero {
        align-items: flex-start;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .store-orders-title {
        font-size: 1.8rem;
    }

    .store-orders-subtitle {
        font-size: 0.88rem;
    }

    .store-orders-hero-counter {
        width: 78px;
        height: 78px;
        border-radius: 22px;
    }

    .store-orders-hero-counter strong {
        font-size: 1.45rem;
    }

    .store-orders-hero-counter span {
        font-size: 0.68rem;
    }

    .store-orders-filter-card,
    .store-order-card,
    .store-orders-empty-card {
        border-radius: 22px;
    }

    .store-orders-filter-card {
        padding: 1rem;
    }

    .store-order-card {
        padding: 1rem;
    }

    .store-order-main {
        gap: 0.8rem;
    }

    .store-order-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 16px;
        font-size: 1.05rem;
    }

    .store-order-topline h2 {
        font-size: 0.95rem;
    }

    .store-order-meta {
        gap: 0.55rem;
        font-size: 0.74rem;
    }

    .store-order-products span {
        font-size: 0.68rem;
    }

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

/* =========================================================
   SEGUIMIENTO DE PEDIDO
========================================================== */

.store-tracking-page {
    background: #ffffff;
}

.store-tracking-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            var(--store-primary) 0%,
            var(--store-primary-soft) 100%
        );
    color: #fff;
}

.store-tracking-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-tracking-subtitle {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.store-tracking-hero-code {
    min-width: 160px;
    min-height: 112px;
    border-radius: 30px;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.store-tracking-hero-code span {
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.store-tracking-hero-code strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
}

.store-tracking-status-card,
.store-tracking-card,
.store-tracking-summary-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-tracking-status-card {
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-tracking-status-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.store-tracking-status-icon.is-warning {
    background: #fff7e0;
    color: #9a6b00;
}

.store-tracking-status-icon.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-tracking-status-icon.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-tracking-status-icon.is-primary {
    background: var(--store-soft);
    color: var(--store-primary);
}

.store-tracking-status-icon.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-tracking-status-content h2 {
    color: var(--store-primary);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0.75rem 0 0.4rem;
}

.store-tracking-status-content p {
    color: var(--store-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.store-tracking-card {
    overflow: hidden;
}

.store-tracking-card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--store-border);
}

.store-tracking-card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--store-primary);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-tracking-timeline {
    padding: 1.25rem;
}

.store-tracking-step {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

.store-tracking-step:last-child {
    padding-bottom: 0;
}

.store-tracking-step::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 54px;
    bottom: 0;
    width: 2px;
    background: var(--store-border);
}

.store-tracking-step:last-child::before {
    display: none;
}

.store-tracking-step-marker {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--store-soft);
    color: var(--store-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
}

.store-tracking-step.is-completed .store-tracking-step-marker,
.store-tracking-step.is-current .store-tracking-step-marker {
    background: var(--store-primary);
    color: #fff;
}

.store-tracking-step.is-completed::before {
    background: var(--store-primary);
}

.store-tracking-step-content {
    padding-top: 0.25rem;
}

.store-tracking-step-content h3 {
    color: var(--store-primary);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.store-tracking-step-content p {
    color: var(--store-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.store-tracking-current-label,
.store-tracking-completed-label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 900;
}

.store-tracking-current-label {
    background: #fff7e0;
    color: #9a6b00;
}

.store-tracking-completed-label {
    background: #eefbf3;
    color: #16a34a;
}

.store-tracking-payment-box {
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-tracking-payment-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.store-tracking-payment-icon.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-tracking-payment-icon.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-tracking-payment-icon.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-tracking-payment-content h3 {
    color: var(--store-primary);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0.7rem 0 0.35rem;
}

.store-tracking-payment-content p {
    color: var(--store-muted);
    margin-bottom: 0.35rem;
}

.store-tracking-payment-note {
    margin-top: 0.8rem;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-weight: 800;
    font-size: 0.86rem;
}

.store-tracking-payment-note.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-tracking-payment-note.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-tracking-payment-note.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-tracking-summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.store-tracking-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-tracking-summary-header h2 {
    color: var(--store-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-tracking-total-box {
    border-top: 1px solid var(--store-border);
    border-bottom: 1px solid var(--store-border);
    padding: 1rem 0;
    margin: 1rem 0;
}

.store-tracking-total-box div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
}

.store-tracking-total-box span {
    color: var(--store-muted);
}

.store-tracking-total-box strong {
    color: var(--store-primary);
}

.store-tracking-total-box .total {
    margin-top: 0.4rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--store-border);
}

.store-tracking-total-box .total span,
.store-tracking-total-box .total strong {
    color: var(--store-primary);
    font-size: 1.08rem;
    font-weight: 900;
}

/* =========================================================
   RESPONSIVE SEGUIMIENTO
========================================================== */

@media (max-width: 991.98px) {

    .store-tracking-hero {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .store-tracking-summary-card {
        position: static;
    }
}

@media (max-width: 575.98px) {

    .store-tracking-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-tracking-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .store-tracking-title {
        font-size: 1.8rem;
    }

    .store-tracking-subtitle {
        font-size: 0.88rem;
    }

    .store-tracking-hero-code {
        min-height: auto;
        width: 100%;
        border-radius: 20px;
    }

    .store-tracking-status-card,
    .store-tracking-card,
    .store-tracking-summary-card {
        border-radius: 22px;
    }

    .store-tracking-status-card {
        padding: 1rem;
    }

    .store-tracking-status-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 1.15rem;
    }

    .store-tracking-status-content h2 {
        font-size: 1rem;
    }

    .store-tracking-card-header,
    .store-tracking-timeline,
    .store-tracking-payment-box,
    .store-tracking-summary-card {
        padding: 1rem;
    }

    .store-tracking-step {
        grid-template-columns: 44px 1fr;
        gap: 0.85rem;
    }

    .store-tracking-step::before {
        left: 21px;
        top: 46px;
    }

    .store-tracking-step-marker {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        font-size: 1rem;
    }

    .store-tracking-step-content h3 {
        font-size: 0.92rem;
    }

    .store-tracking-step-content p {
        font-size: 0.82rem;
    }

    .store-tracking-payment-box {
        flex-direction: column;
    }
}

/* =========================================================
   PEDIDO SHOW / DETALLE
========================================================== */

.store-order-show-page {
    background: #ffffff;
}

.store-order-show-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            var(--store-primary) 0%,
            var(--store-primary-soft) 100%
        );
    color: #fff;
}

.store-order-show-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
}

.store-order-show-subtitle {
    max-width: 680px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
}

.store-order-show-hero-status {
    min-width: 150px;
    min-height: 110px;
    border-radius: 30px;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.store-order-show-hero-status span {
    color: rgba(255,255,255,0.72);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.store-order-show-hero-status strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
}

.store-order-show-status-card,
.store-order-show-card,
.store-order-show-summary-card {
    background: #ffffff;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.store-order-show-status-card {
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-order-show-status-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
}

.store-order-show-status-icon.is-warning {
    background: #fff7e0;
    color: #9a6b00;
}

.store-order-show-status-icon.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-order-show-status-icon.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-order-show-status-icon.is-primary {
    background: var(--store-soft);
    color: var(--store-primary);
}

.store-order-show-status-icon.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-order-show-status-card h2 {
    color: var(--store-primary);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0.75rem 0 0.4rem;
}

.store-order-show-status-card p {
    color: var(--store-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.store-order-show-card {
    overflow: hidden;
}

.store-order-show-card-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--store-border);
}

.store-order-show-card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--store-primary);
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-order-show-card-body {
    padding: 1.25rem;
}

.store-order-show-products {
    display: grid;
}

.store-order-show-product {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
}

.store-order-show-product + .store-order-show-product {
    border-top: 1px solid var(--store-border);
}

.store-order-show-product-image {
    width: 82px;
    height: 82px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--store-soft-2);
}

.store-order-show-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-order-show-product-info span {
    color: var(--store-muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.store-order-show-product-info h3 {
    color: var(--store-primary);
    font-size: 1rem;
    font-weight: 900;
    margin: 0.25rem 0;
}

.store-order-show-product-info p {
    color: var(--store-muted);
    font-size: 0.84rem;
    margin-bottom: 0;
}

.store-order-show-product-total {
    text-align: right;
}

.store-order-show-product-total span {
    display: block;
    color: var(--store-muted);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.store-order-show-product-total strong {
    color: var(--store-primary);
    font-weight: 900;
}

.store-order-show-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.store-order-show-info-item,
.store-order-show-address-box {
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 18px;
    padding: 1rem;
}

.store-order-show-info-item span,
.store-order-show-address-box span {
    display: block;
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.store-order-show-info-item strong,
.store-order-show-address-box strong {
    color: var(--store-primary);
    font-weight: 900;
}

.store-order-show-address-box p {
    color: var(--store-muted);
    margin: 0.5rem 0 0;
    font-size: 0.88rem;
}

.store-order-payment-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.store-order-payment-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.store-order-payment-icon.is-info {
    background: #eef6ff;
    color: #2563eb;
}

.store-order-payment-icon.is-success {
    background: #eefbf3;
    color: #16a34a;
}

.store-order-payment-icon.is-danger {
    background: #fff1f2;
    color: var(--store-danger);
}

.store-order-payment-content {
    width: 100%;
}

.store-order-payment-content h3 {
    color: var(--store-primary);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0.75rem 0 0.8rem;
}

.store-order-payment-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.store-order-payment-data div {
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 16px;
    padding: 0.85rem;
}

.store-order-payment-data span {
    display: block;
    color: var(--store-muted);
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.store-order-payment-data strong {
    color: var(--store-primary);
    font-weight: 900;
}

.store-order-show-summary-card {
    padding: 1.25rem;
    position: sticky;
    top: 110px;
}

.store-order-show-summary-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-order-show-summary-header h2 {
    color: var(--store-primary);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 0;
}

.store-order-show-total-box {
    border-top: 1px solid var(--store-border);
    border-bottom: 1px solid var(--store-border);
    padding: 1rem 0;
    margin: 1rem 0;
}

.store-order-show-total-box div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
}

.store-order-show-total-box span {
    color: var(--store-muted);
}

.store-order-show-total-box strong {
    color: var(--store-primary);
}

.store-order-show-total-box .total {
    margin-top: 0.4rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--store-border);
}

.store-order-show-total-box .total span,
.store-order-show-total-box .total strong {
    color: var(--store-primary);
    font-size: 1.08rem;
    font-weight: 900;
}

.store-order-show-note {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background: var(--store-soft);
    border: 1px solid var(--store-border);
    border-radius: 18px;
    padding: 1rem;
    color: var(--store-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.store-order-show-note i {
    color: var(--store-accent);
}

/* =========================================================
   RESPONSIVE PEDIDO SHOW
========================================================== */

@media (max-width: 991.98px) {

    .store-order-show-hero {
        padding: 1.5rem;
        border-radius: 26px;
    }

    .store-order-show-summary-card {
        position: static;
    }

    .store-order-payment-data {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {

    .store-order-show-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .store-order-show-hero {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .store-order-show-title {
        font-size: 1.8rem;
    }

    .store-order-show-subtitle {
        font-size: 0.88rem;
    }

    .store-order-show-hero-status {
        min-height: auto;
        width: 100%;
        border-radius: 20px;
    }

    .store-order-show-status-card,
    .store-order-show-card,
    .store-order-show-summary-card {
        border-radius: 22px;
    }

    .store-order-show-status-card {
        padding: 1rem;
    }

    .store-order-show-status-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 18px;
        font-size: 1.15rem;
    }

    .store-order-show-status-card h2 {
        font-size: 1rem;
    }

    .store-order-show-card-header,
    .store-order-show-card-body,
    .store-order-show-summary-card {
        padding: 1rem;
    }

    .store-order-show-product {
        grid-template-columns: 72px 1fr;
        padding: 1rem;
    }

    .store-order-show-product-image {
        width: 72px;
        height: 72px;
        border-radius: 16px;
    }

    .store-order-show-product-total {
        grid-column: 2;
        text-align: left;
    }

    .store-order-show-info-grid {
        grid-template-columns: 1fr;
    }

    .store-order-payment-detail {
        flex-direction: column;
    }
}


/* =========================================
    EMPTY PRODUCTS 
========================================= */

.store-empty-products {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #eef2f7;

    border-radius: 32px;

    padding: 4rem 2rem;

    text-align: center;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.05),
        0 2px 8px rgba(15, 23, 42, 0.03);
}

.store-empty-products::before {
    content: '';

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top right,
        rgba(59,130,246,0.05),
        transparent 30%);

    pointer-events: none;
}

.store-empty-products-visual {
    position: relative;

    width: fit-content;

    margin: 0 auto 1.5rem auto;
}

.store-empty-products-icon {
    position: relative;
    z-index: 2;

    width: 96px;
    height: 96px;

    margin: 0 auto;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1f2937
        );

    color: #ffffff;

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

    font-size: 2.4rem;

    box-shadow:
        0 18px 40px rgba(17,24,39,0.18);
}

.store-empty-products-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(59,130,246,0.14),
            transparent 70%
        );

    z-index: 1;
}

.store-empty-products-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.45rem 1rem;

    border-radius: 999px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 0.8rem;
    font-weight: 700;

    margin-bottom: 1rem;
}

.store-empty-products-title {
    font-size: clamp(1.5rem, 3vw, 2rem);

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 1rem;
}

.store-empty-products-text {
    max-width: 620px;

    margin: 0 auto;

    color: #64748b;

    font-size: 1rem;
    line-height: 1.7;
}

.store-empty-products-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 1rem;

    margin-top: 2rem;
}

@media (max-width: 768px) {

    .store-empty-products {
        border-radius: 24px;

        padding: 3rem 1.25rem;
    }

    .store-empty-products-actions {
        flex-direction: column;
    }

    .store-empty-products-actions .btn {
        width: 100%;
    }

}





/* Filtro colapsable para móvil */
.store-filter-collapsible {
    margin-bottom: 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.store-filter-toggle {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    text-align: left;
}

.store-filter-toggle:hover {
    background: #f8f9fa;
    border-color: #ff6b35;
}

.store-filter-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.7; transform: scale(0.95); }
}

.store-filter-collapsible-content {
    margin-top: 0.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.store-filter-card-mobile {
    padding: 1.25rem;
}

/* Mejoras responsive */
@media (max-width: 991.98px) {
    .store-products-toolbar {
        margin-top: 1rem;
    }
}

.store-filter-card-mobile .store-filter-group {
    margin-bottom: 1.25rem;
}

.store-filter-card-mobile .store-filter-group:last-child {
    margin-bottom: 0;
}

.store-filter-card-mobile .store-filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
}




/* Buscador */
.store-header-search-wrap {
    position: relative;
}

.store-search-suggestions {
    position: absolute;

    top: calc(100% + 10px);
    left: 0;

    width: 100%;

    background: white;

    border-radius: 22px;

    box-shadow: 0 24px 60px rgba(15,23,42,.12);

    border: 1px solid rgba(15,23,42,.06);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition: .25s ease;

    z-index: 50;
}

.store-search-suggestions.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.store-search-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 14px 18px;

    text-decoration: none;

    color: inherit;

    transition: .2s ease;
}

.store-search-item:hover {
    background: #f8fafc;
}

.store-search-item img {
    width: 56px;
    height: 56px;

    object-fit: cover;

    border-radius: 14px;
}

.store-search-item-title {
    font-weight: 700;
}

.store-search-item-meta {
    font-size: .85rem;
    color: #64748b;
}

.store-search-item-price {
    margin-left: auto;

    font-weight: 800;

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



.store-search-item.active {
    background: #f1f5f9;
}

.store-search-empty {
    padding: 18px;

    text-align: center;

    color: #64748b;

    font-size: .92rem;
}

.store-search-suggestions {
    max-height: 420px;

    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: rgba(220, 161, 23, .55) transparent;
}

.store-search-suggestions::-webkit-scrollbar {
    width: 6px;
}

.store-search-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.store-search-suggestions::-webkit-scrollbar-thumb {
    background: rgba(220, 161, 23, .55);

    border-radius: 999px;
}

.store-search-suggestions::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 161, 23, .8);
}


/* ==========================================================
   FAVORITOS / CORAZONES
========================================================== */

.store-product-heart {
    transition: all .25s ease;
}

.store-product-heart:hover {
    transform: scale(1.08);
}

.store-product-heart.is-active {
    background: #fff;
    color: #dc3545;
}

.store-product-heart.is-active i {
    color: #dc3545;
}

.store-product-heart.is-loading {
    opacity: .65;
    pointer-events: none;
}

.store-product-heart.is-active:hover {
    background: #fff5f6;
}




/* ==========================================
   WHATSAPP FLOTANTE PREMIUM
========================================== */

.whatsapp-premium-container {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 99999;
}

.store-whatsapp-float {
    position: relative;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .35), transparent 28%),
        linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    text-decoration: none;
    font-size: 34px;
    box-shadow:
        0 14px 32px rgba(18, 140, 126, .28),
        0 8px 18px rgba(37, 211, 102, .30);
    border: 1px solid rgba(255, 255, 255, .35);
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.store-whatsapp-float:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.06);
    box-shadow:
        0 20px 42px rgba(18, 140, 126, .38),
        0 10px 24px rgba(37, 211, 102, .40);
    filter: brightness(1.05);
}

.store-whatsapp-float i {
    position: relative;
    z-index: 3;
}

.whatsapp-pulse-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, .45);
    animation: whatsappSoftPulse 2.4s ease-out infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #111827;
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #111827;
    transform: translateY(-50%) rotate(45deg);
}

.store-whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* EFECTO TEXTO PIXEL / TERMINAL */
.whatsapp-pixel-tooltip {
    font-family: "Courier New", monospace;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 11px;
    color: #25D366;
    background: rgba(17, 24, 39, .96);
    border: 1px solid rgba(37, 211, 102, .45);
    box-shadow:
        0 14px 30px rgba(15, 23, 42, .22),
        0 0 18px rgba(37, 211, 102, .20);
}

.whatsapp-pixel-tooltip::after {
    background: rgba(17, 24, 39, .96);
    border-right: 1px solid rgba(37, 211, 102, .35);
    border-bottom: 1px solid rgba(37, 211, 102, .35);
}

.whatsapp-pixel-cursor {
    display: inline-block;
    width: 6px;
    height: 12px;
    margin-left: 5px;
    background: #25D366;
    vertical-align: -2px;
    animation: whatsappPixelBlink .9s steps(1) infinite;
}

@keyframes whatsappSoftPulse {
    0% {
        opacity: .75;
        transform: scale(.96);
    }

    70% {
        opacity: 0;
        transform: scale(1.28);
    }

    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes whatsappPixelBlink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

/* MOBILE: sube WhatsApp para que no tape la barra inferior */
@media (max-width: 991.98px) {
    .whatsapp-premium-container {
        right: 16px;
        bottom: calc(96px + env(safe-area-inset-bottom));
    }

    .store-whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .whatsapp-pulse-ring {
        inset: -5px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* PANTALLAS MUY PEQUEÑAS */
@media (max-width: 575.98px) {
    .whatsapp-premium-container {
        right: 14px;
        bottom: calc(104px + env(safe-area-inset-bottom));
    }
}



/* ==========================================
   Tienda Productos Show 
========================================== */

.store-variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.store-variant-btn {
    min-width: 46px;
    padding: .45rem .9rem;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    background: #fff;
    color: #222;
    font-weight: 600;
    font-size: .9rem;
    transition: .2s ease;
}

.store-variant-btn:hover {
    border-color: #111;
}

.store-variant-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.store-variant-btn.is-disabled {
    opacity: .45;
    cursor: not-allowed;
}




