/* ===================== PRODUCT CATEGORY SLIDER ===================== */

.product-category-slider {
    background-color: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    box-sizing: border-box;
}

.product-category-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
}

/* Left/Right arrow buttons (desktop) */
.cat-nav-btn {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    flex-shrink: 0;
}

.cat-nav-btn:hover {
    background: #e0e0e0;
    color: #000;
    transform: translateY(-1px);
}

/* Scrollable list */
.product-category-list {
    display: flex;
    gap: 18px;
    flex: 1;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 10px;
    scrollbar-width: none;              /* Firefox */
}
.product-category-list::-webkit-scrollbar {
    display: none;                      /* Chrome/Safari */
}

/* Each item – default (tablet / generic) */
.product-category-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    min-width: 100px;
    max-width: 130px;
    padding: 8px 4px 10px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.product-category-item:hover {
    background-color: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
    transform: translateY(-1px);
}

.product-category-item.active {
    background-color: rgba(74,159,255,0.06);
    border-color: #00000000;
}

/* Image only – no box */
.product-category-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-thumb img {
    width: 56px;
    height: 56px;
    object-fit: contain;   /* transparent logo perfect */
    display: block;
}

/* Text label */
.product-category-label {
    font-size: 13px;
    color: #444;
    line-height: 1.2;
    font-weight: 500;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
    .product-category-inner {
        padding: 0 6px;
    }

    .cat-nav-btn {
        display: none;   /* mobile pe arrows hide, sirf swipe/scroll */
    }

    /* ✅ 3 category full + 4th ka thoda hissa */
    .product-category-item {
        flex: 0 0 32%;
        max-width: 32%;
        min-width: 0;
        border-radius: 10px;
    }

    .product-category-thumb img {
        width: 48px;
        height: 48px;
    }

    .product-category-label {
        font-size: 12px;
    }
}

/* ---------- Responsive (Desktop / Laptop: 6 categories) ---------- */
@media (min-width: 1024px) {
    .product-category-inner {
        gap: 14px;
    }

    .product-category-list {
        justify-content: flex-start;
    }

    /* ✅ 6 category ek line me */
    .product-category-item {
        flex: 0 0 16%;
        max-width: 16%;
        min-width: 0;
        cursor: pointer;
    }
}
