/* ========================================
   EXPLORE SECTION - PRODUCT CATEGORIES CAROUSEL
======================================== */

.product-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-categories-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Categories Carousel Container */
.categories-carousel-container {
    position: relative;
    margin-bottom: 60px;
}

.product-categories-section .container {
    position: relative;
}

/* Categories Navigation */
.categories-navigation {
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0px 60px 0px 20px;
}

.categories-btn {
    position: absolute;
    top: calc(50% + 25px);
    z-index: 999999;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #5ADBFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(90, 219, 255, 0.2);
}

.categories-btn:hover {
    background: #5ADBFF;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(90, 219, 255, 0.4);
}

.categories-btn:hover svg {
    color: #ffffff;
}

.categories-btn svg {
    color: #5ADBFF;
    transition: color 0.3s ease;
}

.categories-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.categories-prev {
    left: 0;
}

.categories-next {
    right: 0;
}

/* Categories Carousel */
.categories-carousel {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.categories-carousel .splide__track {
    overflow: visible;
}

.categories-carousel .splide__list {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.categories-carousel .splide__slide {
    display: flex;
    align-items: stretch;
    padding: 20px;
}

/* Hide default Splide arrows */
.categories-carousel .splide__arrows {
    display: none;
}

/* Categories Dots */
.categories-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    display: none;
}

.categories-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(90, 219, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.categories-dot.active {
    background: #5ADBFF;
    transform: scale(1.2);
}

/* Category Card */
.category-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(90, 219, 255, 0.3);
}

/* Category Image Styling */
.category-image {
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

/* Fallback icon styling for categories without images */
.category-icon-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(90, 219, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-icon-placeholder svg {
    color: #5ADBFF;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon-placeholder svg {
    transform: rotate(5deg);
}

/* Category Content */
.category-content {
    position: relative;
    z-index: 2;
}

.category-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.category-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    background: #5ADBFF;
    color: #000;
    text-decoration: none;
    border: 1px solid #5ADBFF;
    border-radius: 40px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-cta:hover {
    background: #EBB211;
    border: 1px solid #EBB211;
    box-shadow: 0 8px 20px rgba(235, 178, 17, 0.4);
}

.category-cta svg {
    transition: transform 0.3s ease;
}

.category-cta:hover svg {
    transform: translateX(3px);
}

/* Section Footer */
.section-footer {
    margin-top: 40px;
}

.section-subtext {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
}

/* Responsive Design for Categories Carousel */
@media (max-width: 1024px) {
    .categories-carousel .splide__slide {
        padding: 0 12px;
    }
    
    .categories-prev {
        left: 5px;
    }
    
    .categories-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .categories-carousel-container {
        margin-bottom: 50px;
    }
    
    .categories-carousel .splide__slide {
        padding: 0 10px;
    }
    
    .category-card {
        padding: 30px 25px;
    }
    
    .category-image,
    .category-icon-placeholder {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .section-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-categories-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .categories-carousel .splide__slide {
        padding: 0 5px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .category-image,
    .category-icon-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .category-cta {
        padding: 14px 20px;
        font-size: 13px;
    }
}
