/* Tienda online — capa comercial y pulida */
:root {
    --store-primary: #4f46e5;
    --store-primary-dark: #4338ca;
    --store-accent: #f59e0b;
}

body.store-page {
    font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, sans-serif !important;
    background: #fafbfc !important;
}

/* Barra de confianza bajo el nav */
.store-trust-bar {
    background: linear-gradient(90deg, var(--store-primary-soft, #eef2ff) 0%, #fff 50%, #fef3c7 100%);
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
}
.store-trust-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 32px;
}
.store-trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.store-trust-bar i { color: var(--store-primary); }

/* Hero comercial cálido */
.store-page .hero-section {
    background: linear-gradient(145deg, var(--store-primary) 0%, #6366f1 45%, #7c3aed 100%) !important;
    padding: 3.5rem 0 4rem !important;
}
.store-page .hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
    line-height: 1.15 !important;
}
.store-page .hero-content .hero-sub {
    font-size: 1.125rem !important;
    color: rgba(255,255,255,0.92) !important;
    max-width: 560px;
    margin: 0 auto 1.75rem !important;
    line-height: 1.65;
}
.store-page .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 2rem;
}
.store-page .btn-hero-shop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #fff;
    color: var(--store-primary-dark) !important;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: transform 0.15s;
}
.store-page .btn-hero-shop:hover {
    transform: translateY(-2px);
    color: var(--store-primary-dark);
}
.store-page .btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff !important;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
}
.store-page .btn-hero-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.store-page .stat-item .number { color: #fde68a !important; }
.store-page .stat-item .label { color: rgba(255,255,255,0.85) !important; font-weight: 500; }

/* Categorías */
.store-page .categories-section {
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.store-page .category-chip.active {
    background: var(--store-primary) !important;
    border-color: var(--store-primary) !important;
}

/* Productos */
.store-page .product-card {
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.store-page .product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 32px rgba(79, 70, 229, 0.12) !important;
}
.store-page .add-cart-btn {
    background: linear-gradient(135deg, var(--store-primary), var(--store-primary-dark)) !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
}
.store-page .product-price {
    color: var(--store-primary) !important;
}

/* Sección “por qué comprar” */
.store-why-section {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.store-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.store-why-item {
    text-align: center;
    padding: 24px 16px;
}
.store-why-item i {
    font-size: 2rem;
    color: var(--store-primary);
    margin-bottom: 12px;
    display: block;
}
.store-why-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}
.store-why-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.store-page .footer {
    background: #0f172a !important;
}
.store-page .cart-btn {
    background: linear-gradient(135deg, var(--store-primary), var(--store-primary-dark)) !important;
}

@media (max-width: 768px) {
    .store-why-grid { grid-template-columns: 1fr; }
    .store-page .search-box-nav { width: 100%; max-width: 280px; }
}
