/* Custom Improvements for BD Electronics xyz*/
 .aiz-card-box .img-box {
    min-height: 250px; /* Set a fixed height for your product images */
    aspect-ratio: 1 / 1; /* Modern browsers will reserve this space immediately */
}
/* Hide carousel contents until initialized to prevent layout thrashing */
.aiz-carousel:not(.slick-initialized) {
    opacity: 0;
    visibility: hidden;
    height: 300px; /* Reserve space so page doesn't jump */
    overflow: hidden;}

/* Trust Badges */
.trust-section i {
    color: #007bff;
}

.trust-section h6 {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* Sticky Cart Mobile */
.sticky-cart-mobile {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* WhatsApp Button Pulse Animation */
.whatsapp-float {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Low Stock Warning */
.alert-warning {
    border-left: 4px solid #ff9800;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border-radius: 4px 0 0 4px;
}

.newsletter-form .btn {
    border-radius: 0 4px 4px 0;
}

/* SEO Content */
.seo-content h1 {
    font-size: 28px;
    color: #333;
}

.seo-content h2 {
    font-size: 22px;
    color: #444;
    margin-top: 20px;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
}

.seo-content ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .seo-content h1 {
        font-size: 22px;
    }
    
    .seo-content h2 {
        font-size: 18px;
    }
  
}