.product-categories-section {
    padding: 60px 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.category-text {
    flex-shrink: 0;
    max-width: 600px;
}

.category-header h2 {
    font-size: 32px;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .category-header h2 {
        font-size: 2rem!important;
    }
    .category-header {
        gap: unset!important;
        overflow: hidden!important;
    }
}

.category-header p {
    display: none;
}

.header-line {
    flex: 1;
    height: 1px;
    background: #ddd;
    margin: 0 30px;
}

.slider-navigation {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.prev-slide, .next-slide {
    background: #191919;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background: #000;
}

.product-card {
    padding: 1.2rem;
    transition: all 0.3s ease;
    background: #fff;
    border: solid 1px #CCCCCC;
    border-radius: 10px;
    position: relative;
}

.product-image {
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info h3 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.rating {
    color: #ffd700;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: bold;
}

.no-products {
    padding: 30px;
    text-align: center;
    background: #f8f8f8;
    border-radius: 8px;
    margin: 20px 0;
}

.no-products p {
    color: #666;
    margin: 0;
}

.product-category-section {
    padding: 60px 0;
}

.product-category-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.category-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.category-slider .splide__pagination {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    justify-content: center;
}

.category-slider .splide__pagination__page {
    width: 30px;
    height: 6px;
    background: rgb(0 0 0 / 23%);
    border-radius: 50px;
    margin: 0;
    transition: none;
    transform: none;
    position: relative;
    overflow: hidden;
}

.category-slider .splide__pagination__page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #212121;
    transform: translateX(-100%);
}

.category-slider .splide__pagination__page.is-active::before {
    animation: progressBarFill 4s linear forwards;
}

@keyframes progressBarFill {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.splide__pagination {
    bottom: -1.5em;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
}

.product-card .star-rating {
    display: flex;
    gap: 2px;
    margin: 5px 0;
}

.product-card .star {
    color: #ddd;
    font-size: 20px;
}

.product-card .star.filled {
    color: #F59300;
}

.product-card .price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #000;
    font-size: 16px;
    margin-top: 10px;
}

.product-card .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.product-card .discounted-price {
    color: #ff4444;
    font-weight: bold;
}


@media (min-width: 769px) {
    .category-description {
        max-width: 87%;
    }
}

.splide__track  {
    padding:10px!important;
}