/* Homepage Static Design - No Animations */
/* Remove all animations and improve card designs */

/* Product Categories Section */
.categories-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    /* Remove all animations and transitions */
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.category-card:hover {
    /* Remove hover effects */
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Remove all image animations */
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.category-card:hover .category-image img {
    /* Remove hover scaling */
    transform: none !important;
}

.category-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    /* Remove overlay animations */
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

.category-badge {
    background: rgba(184,134,11,0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-stats {
    margin-bottom: 15px;
}

.product-count {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

/* Featured Products Section */
.featured-products-section {
    padding: 60px 0;
    background: white;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    /* Remove all animations */
    transition: none !important;
    animation: none !important;
    transform: none !important;
    height: 100%;
}

.product-card:hover {
    /* Remove hover effects */
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Remove all image animations */
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.product-card:hover .product-image img {
    /* Remove hover scaling */
    transform: none !important;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Show overlay always for easier access */
    opacity: 0;
    transition: opacity 0.2s ease;
}

.product-card:hover .cart-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    background: #32CD32;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.add-to-cart-btn:hover {
    background: #28a745;
    color: white;
}

.product-content {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 15px;
}

.product-content .btn {
    width: 100%;
    background: #B8860B;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.product-content .btn:hover {
    background: #DAA520;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

/* Remove all keyframe animations */
@keyframes categoryFadeIn {
    from, to { 
        opacity: 1; 
        transform: none; 
    }
}

@keyframes productSlideIn {
    from, to { 
        opacity: 1; 
        transform: none; 
    }
}

@keyframes fadeInUp {
    from, to { 
        opacity: 1; 
        transform: none; 
    }
}

/* Disable all animation delays */
.category-card:nth-child(n) {
    animation-delay: 0s !important;
}

.product-card:nth-child(n) {
    animation-delay: 0s !important;
}

/* Best Sellers Section (same as featured products) */
.best-sellers-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.best-sellers-section .product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .category-image,
    .product-image {
        height: 180px;
    }
    
    .category-content,
    .product-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .categories-section,
    .featured-products-section,
    .best-sellers-section {
        padding: 40px 0;
    }
    
    .category-image,
    .product-image {
        height: 150px;
    }
}