.HomepageSwiper {
    width: 100%;
    height: 500px;
}

.HomepageSwiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider Overlay Content */
.slider-overlay-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    width: 50%;
    max-width: 600px;
    z-index: 10;
}

.slider-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slider-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.slider-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.slider-btn:hover {
    background-color: #D4AF37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .HomepageSwiper {
        height: 400px;
    }

    .slider-overlay-content {
        left: 5%;
        width: 90%;
        max-width: 100%;
    }

    .slider-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .slider-description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .slider-btn {
        padding: 10px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .HomepageSwiper {
        height: 350px;
    }

    .slider-overlay-content {
        left: 3%;
        width: 94%;
    }

    .slider-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .slider-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .slider-btn {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* Ingredients Carousel Styles */
.ingredients-carousel-section {
    background: linear-gradient(90deg, #FFE5E5 0%, #FFFFFF 100%);
    padding: 40px 0;
    position: relative;
    overflow: visible;
}

.ingredients-carousel-wrapper {
    position: relative;
    padding: 0 80px;
    max-width: 100%;
    overflow: visible;
}

.ingredients-swiper {
    overflow: visible;
    width: 100%;
}

.ingredients-swiper .swiper-slide {
    width: calc(100% / 6);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.ingredient-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 5px;
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
}

.ingredient-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-image:hover {
    transform: scale(1.05);
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ingredient-content {
    max-width: 120px;
}

.ingredient-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.2;
    text-align: center;
}

.ingredient-count {
    font-size: 10px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Navigation Buttons */
.ingredients-next,
.ingredients-prev {
    width: 45px;
    height: 45px;
    background: #FFD700;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
    z-index: 999;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ingredients-next:hover,
.ingredients-prev:hover {
    background: #FFC107;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.ingredients-next:active,
.ingredients-prev:active {
    transform: translateY(-50%) scale(0.95);
}

.ingredients-next {
    right: 20px;
}

.ingredients-prev {
    left: 20px;
}

.ingredients-next::after,
.ingredients-prev::after {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ingredients-carousel-section {
        padding: 30px 0;
    }
    
    .ingredients-carousel-wrapper {
        padding: 0 60px;
    }
    
    .ingredient-image {
        width: 70px;
        height: 70px;
    }
    
    .ingredient-name {
        font-size: 11px;
    }
    
    .ingredient-count {
        font-size: 9px;
    }
    
    .ingredients-next,
    .ingredients-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .ingredients-next {
        right: 15px;
    }
    
    .ingredients-prev {
        left: 15px;
    }
}

@media (max-width: 480px) {
    .ingredients-carousel-wrapper {
        padding: 0 50px;
    }
    
    .ingredient-image {
        width: 60px;
        height: 60px;
    }
    
    .ingredient-name {
        font-size: 10px;
    }
    
    .ingredient-count {
        font-size: 8px;
    }
    
    .ingredients-next,
    .ingredients-prev {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .ingredients-next {
        right: 10px;
    }
    
    .ingredients-prev {
        left: 10px;
    }
}

/* Category Card Styles */




.category-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin-top: 10px;
}

.category-image-container {
    margin-bottom: 20px;
    position: relative;
}

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

.category-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-image:hover {
    transform: scale(1.05);
}

.category-info {
    text-align: center;
}

.category-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.category-title-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-title-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.category-count {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* Mobile Responsive for Category Card */
@media (max-width: 768px) {
    .category-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .category-image {
        width: 100px;
        height: 100px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .category-count {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 15px 12px;
        border-radius: 12px;
    }
    
    .category-image {
        width: 80px;
        height: 80px;
    }
    
    .category-title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .category-count {
        font-size: 12px;
    }
}

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

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.btn-see-more {
    background: #D4A938;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.section__image {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
    justify-content: center;
    align-items: center;
}
/* Mobile Responsive for Categories Section */
@media (max-width: 768px) {
    .categories-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .categories-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
}