/* Premium custom styles for GoldMart E-Commerce */

/* custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 3px;
}

/* Premium Gold Gradients */
.gold-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.gold-glow-hover:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

/* Animation utilities */
@keyframes slow-pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

.animate-slow-pulse {
    animation: slow-pulse 8s infinite ease-in-out;
}

/* Glassmorphism utility */
.glass-panel {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-logo {
    display: block;
    width: auto;
    max-height: 50px;
}

/* Fix text visibility on gold gradient backgrounds. */
.control-logo,
.grand-total-value,
.price-total {
    background: linear-gradient(135deg, #ffe56b, #b8860b) !important;
    color: #050505 !important;
    -webkit-text-fill-color: #050505 !important;
    text-shadow: none !important;
}

.control-logo *,
.grand-total-value *,
.price-total * {
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
}

.gold-amount-text {
    background: none !important;
    color: #d4af37 !important;
    -webkit-text-fill-color: #d4af37 !important;
    text-shadow: none !important;
}

/* Membership price visibility fix. */
.membership-price {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #ffe56b, #b8860b) !important;
    color: #050505 !important;
    -webkit-text-fill-color: #050505 !important;
    font-weight: 900;
    text-shadow: none !important;
}

.membership-price > span {
    color: #050505 !important;
    -webkit-text-fill-color: #050505 !important;
    text-shadow: none !important;
}

.membership-price .amount {
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.membership-price .duration {
    font-size: 13px;
    color: #1f2937 !important;
    -webkit-text-fill-color: #1f2937 !important;
}

/* Product image visibility fix. */
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-detail-img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
}

.product-card img,
.product-image img,
.product-thumb img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Admin category image visibility fix. */
.admin-category-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #050505;
    border: 1px solid rgba(255, 215, 0, 0.25);
}
