/* Custom CSS for La Tienda de Paco */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0D0807;
}
::-webkit-scrollbar-thumb {
    background: #3D2218;
    border-radius: 5px;
    border: 2px solid #0D0807;
}
::-webkit-scrollbar-thumb:hover {
    background: #E5A823;
}

/* Glassmorphism effects */
.glass-panel {
    background: rgba(20, 13, 11, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(229, 168, 35, 0.15);
}

/* Active tab style */
.active-tab {
    background-color: #E5A823 !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border-color: #E5A823 !important;
}

/* Smooth Image Scale on Hover Framing */
.gallery-card img {
    will-change: transform;
}

/* Scroll Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe animations */
@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.animate-pulse-glow {
    animation: pulseGlow 4s infinite ease-in-out;
}
