/* Custom styles for SUNSET & SHADE - Reposeras E-Commerce */

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #193a3c;
}

/* Thumbnail Active Border */
.thumb-btn.active {
    border-color: #193a3c !important;
    transform: scale(0.98);
}

/* Color Variant Active Ring */
.color-btn.active {
    ring-color: #193a3c;
    border-color: #193a3c;
    transform: scale(1.1);
}

/* Category Filter Active Pill */
.cat-filter-btn.active {
    background-color: #193a3c !important;
    color: #ffffff !important;
    border-color: #193a3c !important;
}

/* Toast Animation */
.toast-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* Smooth Image Transition */
#mainProductImg {
    transition: opacity 0.2s ease-in-out, transform 0.3s ease;
}
#mainProductImg.fade-out {
    opacity: 0.3;
}

/* Card Hover Zoom Effect */
.product-card {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(25, 58, 60, 0.15);
}

/* Pulsing Badge Animation */
@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pulse-badge {
    animation: pulse-glow 2s infinite ease-in-out;
}
