/* ============================================================
   Index/Homepage Styles — extracted from index.php inline CSS
   ============================================================ */
/* Categories Slider Section */
.categories-slider-section {
    padding: 40px 0;
    background: #fff;
}

.categories-slider-section .section-header {
    margin-bottom: 25px;
    text-align: center;
}

.categories-slider-section .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.categories-carousel {
    position: relative;
    padding-bottom: 50px;
    overflow: hidden;
}

.categories-carousel .swiper-wrapper {
    display: flex;
    align-items: flex-start;
}

.categories-carousel .swiper-slide {
    width: 140px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-card a {
    text-decoration: none;
    display: block;
}

.category-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.category-card:hover .category-image-wrapper {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-placeholder {
    color: #ccc;
}

.category-placeholder svg {
    width: 40px;
    height: 40px;
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1.3;
}

.category-card:hover .category-name {
    color: var(--sheeel-primary, #c91c5e);
}

.categories-carousel .swiper-button-next,
.categories-carousel .swiper-button-prev {
    background: var(--sheeel-primary, #c91c5e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50px;
}

.categories-carousel .swiper-button-next::after,
.categories-carousel .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.categories-carousel .swiper-pagination {
    bottom: 15px;
}

.categories-carousel .swiper-pagination-bullet {
    background: #ccc;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.categories-carousel .swiper-pagination-bullet-active {
    background: var(--sheeel-primary, #c91c5e);
}

@media (max-width: 768px) {
    .categories-carousel .swiper-slide {
        width: 100px;
        min-width: 100px;
    }

    .category-image-wrapper {
        width: 90px;
        height: 90px;
    }

    .category-name {
        font-size: 12px;
    }
}

/* Featured Carousel Section */
.featured-carousel-section {
    padding: 40px 0;
    background: #fff;
    display: block;
    visibility: visible;
}

.featured-carousel {
    position: relative;
    padding-bottom: 40px;
    overflow: visible;
    height: auto;
    display: block;
    visibility: visible;
}

.featured-carousel .swiper-wrapper {
    display: flex;
    visibility: visible;
    opacity: 1;
}

.featured-carousel .swiper-slide {
    width: 280px;
    min-width: 280px;
    margin-left: 10px;
    display: block;
    visibility: visible;
    opacity: 1;
}

.featured-carousel .swiper-button-next,
.featured-carousel .swiper-button-prev {
    background: var(--sheeel-primary, #c91c5e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}

.featured-carousel .swiper-button-next:hover,
.featured-carousel .swiper-button-prev:hover {
    background: #a01850;
}

.featured-carousel .swiper-button-next::after,
.featured-carousel .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.featured-carousel .swiper-pagination {
    bottom: 10px;
    display: flex;
    visibility: visible;
}

.featured-carousel .swiper-pagination-bullet {
    background: #ccc;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.featured-carousel .swiper-pagination-bullet-active {
    background: var(--sheeel-primary, #c91c5e);
}

@media (max-width: 768px) {
    .featured-carousel .swiper-slide {
        width: 240px;
        min-width: 240px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 40px 0;
    background: #f8f8f8;
}

.newsletter-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.newsletter-title-area {
    margin-bottom: 20px;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
}

.newsletter-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--sheeel-primary, #c91c5e);
}

.newsletter-submit-btn {
    padding: 12px 24px;
    background: var(--sheeel-primary, #c91c5e);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-submit-btn:hover {
    background: #a01850;
}

@media (max-width: 480px) {
    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-content {
        padding: 20px;
    }
}
