body {
    font-family: 'Urbanist', sans-serif;
    background-color: #090a0f;
    color: #f1f5f9;
}
.fire-gradient {
    background: linear-gradient(135deg, #ff4500 0%, #d946ef 100%);
}
@keyframes firePulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 69, 0, 0.25); }
    50% { box-shadow: 0 0 30px rgba(255, 140, 0, 0.4); }
}
.fire-glow { animation: firePulseGlow 3s infinite; }
.fire-glow-hover:hover {
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-4px);
}
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
@keyframes fireMovement {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}
.fire-animated-bg {
    background: linear-gradient(-45deg, #090a0f, #2a0f02, #5a1a00, #b83600, #5a1a00, #1a0b02);
    background-size: 500% 500%;
    animation: fireMovement 5s ease infinite;
}
@keyframes floatEmber {
    0% { transform: translateY(110%) translateX(0) scale(0.8); opacity: 0; }
    10% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translateY(-10%) translateX(var(--tx)) scale(0.2); opacity: 0; }
}
@keyframes floatSpark {
    0% { transform: translateY(110%) translateX(0) scale(0.6); opacity: 0; }
    15% { opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-15%) translateX(var(--tx)) scale(0); opacity: 0; }
}
.ember {
    position: absolute; bottom: 0;
    background: radial-gradient(circle, rgba(255,200,50,1) 0%, rgba(255,100,0,0.9) 40%, rgba(255,50,0,0) 100%);
    border-radius: 50%; pointer-events: none; opacity: 0;
    animation: floatEmber var(--duration) linear infinite;
    animation-delay: var(--delay); left: var(--left);
    width: var(--size); height: var(--size); --tx: 30px;
    box-shadow: 0 0 15px rgba(255, 100, 0, 0.9), 0 0 30px rgba(255, 69, 0, 0.4);
    z-index: 2;
}
.spark {
    position: absolute; bottom: 0;
    background: radial-gradient(circle, rgba(255,215,0,1) 0%, rgba(255,180,0,0.8) 40%, rgba(255,100,0,0) 100%);
    border-radius: 50%; pointer-events: none; opacity: 0;
    animation: floatSpark var(--duration) linear infinite;
    animation-delay: var(--delay); left: var(--left);
    width: var(--size); height: var(--size); --tx: 30px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    z-index: 3;
}
@keyframes comingSoonPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(52, 211, 153, 0.2); }
    50% { box-shadow: 0 0 20px rgba(52, 211, 153, 0.5), 0 0 40px rgba(52, 211, 153, 0.15); }
}
.coming-soon-btn { animation: comingSoonPulse 2s ease-in-out infinite; }
.coming-soon-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.1), transparent);
    transform: translateX(-100%); animation: shimmerSweep 3s ease-in-out infinite;
}
@keyframes shimmerSweep {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
@keyframes fireAddPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 69, 0, 0.35), 0 0 20px rgba(249, 115, 22, 0.15); }
    50% { box-shadow: 0 0 25px rgba(255, 69, 0, 0.6), 0 0 50px rgba(249, 115, 22, 0.3), 0 0 80px rgba(255, 69, 0, 0.1); }
}
.fire-add-btn { animation: fireAddPulse 2s ease-in-out infinite; }
.fire-add-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.12), transparent);
    transform: translateX(-100%); animation: shimmerSweep 3s ease-in-out infinite;
}
@keyframes fireTextFlicker {
    0%, 100% { text-shadow: 0 0 5px #ff4500, 0 0 10px #ff8c00; }
    50% { text-shadow: 0 0 8px #ff4500, 0 0 15px #ff8c00, 0 0 20px #ff0000; }
}
.fire-text-animate { animation: fireTextFlicker 1.5s infinite; }
@keyframes priceShine {
    0%, 100% { text-shadow: 0 0 4px rgba(255, 140, 0, 0.35); }
    50% { text-shadow: 0 0 12px rgba(255, 69, 0, 0.85), 0 0 24px rgba(255, 140, 0, 0.3); }
}
.price-glow { animation: priceShine 2.2s ease-in-out infinite; }
@keyframes badgePop {
    0% { transform: scale(0.6); }
    50% { transform: scale(1.45); }
    100% { transform: scale(1); }
}
.cart-badge-pop { animation: badgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes btnAddedPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    100% { box-shadow: 0 0 0 18px rgba(255, 69, 0, 0); }
}
.btn-added { animation: btnAddedPulse 0.4s ease-out; background: rgba(255, 69, 0, 0.15) !important; border-color: #ff4500 !important; }
.card-actions { min-height: 44px; }
@keyframes cardActionSwap {
    0% { opacity: 0; transform: translateY(6px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.card-actions-swap { animation: cardActionSwap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn-swap { animation: cardActionSwap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }
#detail-main-img { will-change: transform, opacity; }
.product-image { cursor: zoom-in; transition: transform 0.3s ease; }
.product-image:hover { transform: scale(1.05); }
.product-image.zoomed { cursor: zoom-out; }
.zoom-modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); animation: fadeIn 0.3s ease; }
.zoom-modal.active { display: flex; align-items: center; justify-content: center; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.zoom-modal-content { max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.zoom-modal-content img { max-width: 100%; max-height: 100%; object-fit: contain; }
#detail-modal { transition: opacity 0.3s ease; }
#detail-modal.hide-panel { opacity: 0 !important; pointer-events: none !important; }
#detail-modal > div { transition: transform 0.3s ease; }
#detail-modal.hide-panel > div { transform: translateX(100%) !important; }
#detail-main-image { touch-action: pan-y; user-select: none; -webkit-user-select: none; position: relative; overflow: hidden; }
#detail-main-image.zoomed { touch-action: none; cursor: grab; }
#detail-main-image.zoomed:active { cursor: grabbing; }
#detail-main-img.switching { opacity: 0; transform: scale(0.9) !important; }
.zoom-indicator {
    position: absolute; top: 10px; right: 10px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: white;
    border: none; cursor: pointer; z-index: 5; font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.zoom-indicator:hover { background: rgba(0,0,0,0.75); }
.close-zoom { position: absolute; top: 20px; right: 40px; color: white; font-size: 40px; font-weight: bold; cursor: pointer; transition: color 0.3s; }
.close-zoom:hover { color: #ff4500; }
@keyframes slideInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.tagline-animated { animation: slideInDown 0.6s ease; }
.payment-methods-container { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.payment-logo { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255, 69, 0, 0.1); border: 1px solid rgba(255, 69, 0, 0.3); transition: all 0.3s ease; }
.payment-logo:hover { background: rgba(255, 69, 0, 0.2); border-color: rgba(255, 69, 0, 0.6); transform: translateY(-2px); }
.payment-logo img { width: 30px; height: 30px; object-fit: contain; }
#cart-drawer.hide-panel, #admin-modal.hide-panel, #detail-modal.hide-panel { opacity: 0 !important; pointer-events: none !important; }
#cart-drawer.hide-panel > div, #admin-modal.hide-panel > div, #detail-modal.hide-panel > div { transform: translateX(100%) !important; }
#password-modal.hide-panel, #confirm-modal.hide-panel { display: none !important; opacity: 0 !important; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #090a0f; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #ff4500, #d946ef); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #ff4500; }
.product-card { opacity: 0; transform: translateY(30px) scale(0.95); }
.product-card.revealed { animation: cardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
@keyframes cardReveal { 0% { opacity: 0; transform: translateY(30px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
#products-grid { perspective: 1000px; }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 0 15px rgba(255,69,0,0.4), 0 0 30px rgba(255,69,0,0.1); } 50% { box-shadow: 0 0 25px rgba(255,140,0,0.7), 0 0 50px rgba(255,69,0,0.3); } }
.cta-glow { animation: ctaPulse 2s ease-in-out infinite; }
@keyframes flameFlicker { 0%, 100% { opacity: 0.15; } 25% { opacity: 0.25; } 50% { opacity: 0.1; } 75% { opacity: 0.2; } }
section.overflow-hidden.fire-animated-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(255,69,0,0.3) 0%, transparent 70%);
    animation: flameFlicker 2s ease-in-out infinite; pointer-events: none; z-index: 1;
}
.snap-wrapper { scroll-snap-type: x mandatory; }
.snap-wrapper > * { scroll-snap-align: start; }
@keyframes floatSlow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.float-card { animation: floatSlow 5s ease-in-out infinite; }
.float-card:nth-child(2) { animation-delay: -1.7s; }
.float-card:nth-child(3) { animation-delay: -3.3s; }
.cat-visual { cursor: pointer; transition: all 0.3s ease; }
.cat-visual:hover { transform: scale(1.02); }
.step-card { transition: all 0.3s ease; }
.step-card:hover { border-color: rgba(249, 115, 22, 0.3); transform: translateY(-6px); }
.step-number { transition: all 0.3s ease; }
.step-card:hover .step-number { transform: scale(1.1); box-shadow: 0 0 30px rgba(255, 69, 0, 0.3); }

.loader-spinner {
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #ff4500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

body.modal-open { overflow: hidden; }
#detail-modal > div, #cart-drawer > div, #admin-modal > div {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

#empty-state {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
}

.slider-slide img {
    filter: drop-shadow(0 10px 30px rgba(255, 140, 0, 0.35));
}
#hero-slider { background: transparent; }
#hero-slider .slider-slide { background: transparent; }

/* === MODO 30 ANIVERSARIO POKEMON === */
.anniversary-banner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 10px 16px;
    background: linear-gradient(90deg, #1a0b2e, #3b0764, #b45309, #3b0764, #1a0b2e);
    background-size: 300% 100%;
    animation: annivBannerMove 8s linear infinite;
    color: #fde68a;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(251, 191, 36, 0.4);
    position: relative;
    z-index: 30;
    line-height: 1.4;
}
@keyframes annivBannerMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}
.anniv-star {
    color: #fbbf24;
    flex-shrink: 0;
    animation: annivStarSpin 3s linear infinite;
    display: inline-block;
}
@keyframes annivStarSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.4); }
    100% { transform: rotate(360deg) scale(1); }
}
.anniv-promo-bg {
    background: linear-gradient(120deg, rgba(168, 85, 247, 0.25), rgba(217, 119, 6, 0.3), rgba(168, 85, 247, 0.25));
    background-size: 300% 300%;
    animation: annivPromoMove 6s ease infinite;
}
@keyframes annivPromoMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.anniv-cat-active {
    background: linear-gradient(135deg, #d97706, #a855f7) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 215, 0, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}
.anniv-cat-idle {
    background: rgba(217, 119, 6, 0.15) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(251, 191, 36, 0.4) !important;
}

body.anniversary-mode .text-orange-500 { color: #fbbf24 !important; }
body.anniversary-mode .text-orange-400 { color: #fcd34d !important; }
body.anniversary-mode .bg-orange-500\/15 { background-color: rgba(251, 191, 36, 0.15) !important; }
body.anniversary-mode .bg-orange-600\/20 { background-color: rgba(217, 119, 6, 0.2) !important; }
body.anniversary-mode .bg-orange-600\/10 { background-color: rgba(217, 119, 6, 0.15) !important; }
body.anniversary-mode .bg-orange-600 { background-color: #d97706 !important; }
body.anniversary-mode .bg-orange-500 { background-color: #f59e0b !important; }
body.anniversary-mode .border-orange-500\/30 { border-color: rgba(251, 191, 36, 0.35) !important; }
body.anniversary-mode .border-orange-500\/50 { border-color: rgba(251, 191, 36, 0.5) !important; }
body.anniversary-mode .border-orange-500 { border-color: #fbbf24 !important; }
body.anniversary-mode .hover\:border-orange-500:hover { border-color: #fbbf24 !important; }
body.anniversary-mode .hover\:text-orange-500:hover { color: #fbbf24 !important; }
body.anniversary-mode .hover\:bg-orange-500:hover { background-color: #f59e0b !important; }
body.anniversary-mode .focus\:border-orange-500:focus { border-color: #fbbf24 !important; }
body.anniversary-mode .from-orange-600\/30 {
    --tw-gradient-from: rgba(168, 85, 247, 0.5) !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 255 255 / 0)) !important;
}
body.anniversary-mode .hover\:border-orange-400:hover { border-color: #fbbf24 !important; }
body.anniversary-mode .fire-text-animate {
    animation: annivTextGlow 1.8s ease-in-out infinite;
}
@keyframes annivTextGlow {
    0%, 100% { text-shadow: 0 0 5px #fbbf24, 0 0 12px #d97706; }
    50% { text-shadow: 0 0 8px #fbbf24, 0 0 18px #a855f7, 0 0 26px #d97706; }
}
body.anniversary-mode .fire-animated-bg {
    background: linear-gradient(-45deg, #090a0f, #1e1b4b, #4c1d95, #b45309, #4c1d95, #0a0f1f);
    background-size: 500% 500%;
}
body.anniversary-mode .fire-gradient {
    background: linear-gradient(135deg, #fbbf24 0%, #a855f7 100%);
}
body.anniversary-mode .fire-glow-hover:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.55), 0 0 20px rgba(168, 85, 247, 0.4);
}
body.anniversary-mode .fire-add-btn { animation: annivAddPulse 2s ease-in-out infinite; }
body.anniversary-mode .fire-add-btn::before {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
}
@keyframes annivAddPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(251, 191, 36, 0.35), 0 0 20px rgba(168, 85, 247, 0.2); }
    50% { box-shadow: 0 0 25px rgba(253, 224, 71, 0.6), 0 0 50px rgba(168, 85, 247, 0.3); }
}
body.anniversary-mode .price-glow { animation: annivPriceShine 2.2s ease-in-out infinite; }
@keyframes annivPriceShine {
    0%, 100% { text-shadow: 0 0 4px rgba(251, 191, 36, 0.35); }
    50% { text-shadow: 0 0 12px rgba(251, 191, 36, 0.85), 0 0 24px rgba(168, 85, 247, 0.35); }
}
body.anniversary-mode .loader-spinner { border-top-color: #fbbf24 !important; }
body.anniversary-mode ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #fbbf24, #a855f7); }
body.anniversary-mode .close-zoom:hover { color: #fbbf24; }
body.anniversary-mode .step-number { border-color: rgba(251, 191, 36, 0.4); }
body.anniversary-mode .step-card:hover { border-color: rgba(251, 191, 36, 0.4); }
body.anniversary-mode .step-card:hover .step-number { box-shadow: 0 0 30px rgba(251, 191, 36, 0.35); }
body.anniversary-mode .slider-slide img { filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4)); }