/* Carousel */
/*  */

/* right section product side */

*{
    font-family: "Outfit", sans-serif;
 }

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 426px) {}

@media screen and (max-width: 375.5px) {}


select.form-select.form-select {
    color: #6c757d;
    font-weight: 500;
    border: none;
    padding: 7px 10px 7px 10px;
    width: 130px !important;

}



/* General Layout: Ensures the search box and filters are aligned */
.top-short-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-box {
    position: relative;
    display: flex;
}

.search-box .form-control {
    padding-right: 2.5rem;
}

.btn-searchbox {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    color: #6c757d;
}

.filter-slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 0.5rem;
}

.filter-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0 0.5rem;
}


.form-select {
    flex-shrink: 0;
    min-width: 120px;
    width: auto !important;
}

.form-select:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: #86b7fe;
}

.filter-slider-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-slider-wrapper::-webkit-scrollbar {
    display: none;
}


@media (min-width: 768px) {
    .top-short-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .search-box {
        flex-grow: 1;
    }

    .filter-slider-wrapper {
        overflow-x: visible;
        white-space: normal;
        padding-bottom: 0;
    }

    .form-select {
        min-width: auto;
    }
}

.filter-slider-wrapper::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

@media (max-width: 768px) {
    .top-short-nav.g-3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

}



.search-section-fixed {
            position: fixed;
            top: 55px;
            left: 0;
            right: 0;
            background: #f8f9fa;
            z-index: 998;
            padding: 15px 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.08);
        }

        .product-listing {
            margin-top: 120px;
            padding-bottom: 20px;
        }

        /* Search Box Styling */
        .top-search-section {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .search-box {
            position: relative;
            flex: 1;
        }

        .search-box form {
            position: relative;
        }

        .search-box .form-control {
            padding-right: 45px;
            border: 1px solid #ddd;
            border-radius: 6px;
            height: 45px;
        }

        .btn-searchbox {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            background: transparent;
            cursor: pointer;
            color: #666;
            padding: 8px 12px;
        }

        .btn-searchbox:hover {
            color: #2874f0;
        }

        /* Search Dropdown Styles */
        .search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .search-dropdown.show {
            display: block;
        }
        
        .search-dropdown-item {
            padding: 12px 15px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            transition: background-color 0.2s;
            color: #333;
        }
        
        .search-dropdown-item:hover {
            background-color: #f5f5f5;
        }
        
        .search-dropdown-item strong {
            display: block;
            margin-bottom: 4px;
        }
        
        .search-dropdown-item .category-info {
            font-size: 0.85em;
            color: #666;
        }
        
        .no-results {
            padding: 15px;
            text-align: center;
            color: #999;
        }

        /* Filter Button */
        .filter-btn-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-toggle-btn {
            padding: 10px 20px;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            transition: all 0.3s;
            white-space: nowrap;
        }

        .filter-toggle-btn:hover {
            background: #f5f5f5;
        }

        .filter-count-badge {
            background: #ff6161;
            color: white;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 10px;
            margin-left: 5px;
        }

        /* Off-Canvas Filter */
        .filter-offcanvas {
            position: fixed;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100%;
            background: #fff;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            z-index: 10000;
            transition: left 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .filter-offcanvas.show {
            left: 0;
        }

        .filter-offcanvas-header {
            padding: 20px;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .filter-offcanvas-header h5 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
        }

        .filter-close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #666;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .filter-offcanvas-body {
            padding: 20px;
            overflow-y: auto;
            flex: 1;
        }

        .filter-offcanvas-body::-webkit-scrollbar {
            width: 6px;
        }

        .filter-offcanvas-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .filter-offcanvas-body::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .filter-offcanvas-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .filter-offcanvas-footer {
            padding: 8px 20px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .filter-offcanvas-footer button {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .apply-filters-btn {
            background: #2874f0;
            color: white;
        }

        .apply-filters-btn:hover {
            background: #1e5bc6;
        }

        .clear-all-btn {
            background: #fff;
            color: #2874f0;
            border: 1px solid #2874f0 !important;
        }

        .clear-all-btn:hover {
            background: #f0f5ff;
        }

        /* Overlay */
        .filter-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            display: none;
        }

        .filter-overlay.show {
            display: block;
        }

        /* Filter Groups */
        .filter-group {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .filter-group:last-child {
            border-bottom: none;
        }

        .filter-group-title {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #333;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            cursor: pointer;
        }

        .filter-option input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .filter-option label {
            cursor: pointer;
            margin: 0;
            font-size: 14px;
            color: #666;
            flex: 1;
        }

        .filter-option:hover label {
            color: #2874f0;
        }

        @media (max-width: 768px) {
            .search-section-fixed {
                padding: 10px 0;
            }

            .search-box .form-control {
                height: 40px;
                font-size: 14px;
            }

            .filter-toggle-btn {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
        
.sub-heading-new {
    font-size: 25px;
    text-align: justify;
    font-weight: 500;
    font-family: "Play", sans-serif;
    padding-top: 88px;
    letter-spacing: 3px;
    color: #18181a;
}

@media screen and (max-width: 600px) {
    .sub-heading-new {
        padding-top: 70px !important;
        font-size: 20px;
    }
}
@media screen and (max-width: 426px) {
    .sub-heading-new {
        font-size: 20px;
        padding-top: 50px;
    }
}

@media screen and (max-width: 375.5px) {
    .sub-heading-new {
        font-size: 18px;
        padding-top: 25px;
    }
}


