/* Hero Section - Simple Banner */
.hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 430px;
    width: 100%;
    margin-top: 10px;
}

.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Category Slider Styles */
.categories-section {
    background: #f8f9fa;
}

.categories-container {
    max-width: 1590px;
    height: 490px;
}

@media (max-width: 767px) {
    .categories-container {
        height: auto;
    }
}

.categories-swiper {
    padding: 15px 0 40px;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00e58129;
    z-index: 1;
    border-radius: 10px;
}

.category-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

.category-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.category-no-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #999;
}

.category-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #3dcd58;
    padding: 12px 15px;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 8px;
    z-index: 2;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    display: block;
}

.category-name {
    color: #1e3b01;
    font-weight: bold;
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Images Swiper Styles */
.images-container {
    width: 100%;
    padding: 0 20px;
}

.images-grid {
    display: none;
}

@media (min-width: 768px) {
    .images-grid {
        display: flex;
        gap: 20px;
        height: 345px;
    }
    
    .left-swiper, .right-swiper {
        flex: 1;
        height: 100%;
    }
}

.left-swiper .swiper-slide,
.right-swiper .swiper-slide,
.mobile-swiper .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
}

.left-swiper .swiper-slide a,
.right-swiper .swiper-slide a,
.mobile-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.mobile-swiper {
    height: 200px;
}

/* Mobile Banner Responsive */
@media (max-width: 768px) {
    .hero-banner {
        height: 350px !important;
        margin-top: 10px;
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .category-image {
        min-height: 280px;
    }
    
    .category-no-image {
        min-height: 280px;
    }
    
    .overlay-text {
        font-size: 0.8rem;
    }
    
    .categories-swiper {
        padding: 10px 0 40px;
    }
    
    .category-card {
        padding: 0;
    }
    
    .category-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 8px 10px;
    }
    
    /* Mobile images swiper */
    .images-container {
        padding: 0 10px;
    }
    
    .images-swiper {
        height: 200px;
    }
}

/* Product Cards Styles */
.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-card h5 {
    color: #1e3b01;
    margin-bottom: 10px;
}

.price {
    color: #3dcd58;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Section Banner Styles */
.section-image {
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .section-image {
        margin-top: 20px;
    }
    
    .banner-image {
        height: 200px;
    }
}