.link-style-02 a {
    padding: 0.5rem 1.6rem;
    display: inline-flex;
    font-weight: 500;
}
.link-style-01 {
    margin-right: 5px;
}
.shop-clear-filter-01 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    max-width: 100%;
    overflow-x: auto;
}
.shop-clear-filter-01 ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.search-form {
    background-color: #e1e1e1;
    border-radius: 0px;
    padding: 5px;
}

.search-input {
    background-color: #fff;
    border-radius: 0px;
    padding: 5px;
    margin-right: 10px;
}

.search-input input {
    border: none;
    outline: none;
    width: 150px;
    font-size: 16px;
    padding: 8px;
}

.search-input button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.product__details__tab .nav-tabs {
    border-bottom: none;
    justify-content: left;
    position: relative;
}

.search-button {
    background-color: #8bccc9;
    border-radius: 0px;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
}

.search-button:hover {
    background-color: #66A6A2FF;
}

/* CSS pour la section des catégories */

/* Style du titre "Categories" */
.h5 {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Style de la flèche vers le bas */
.bi-chevron-down {
    font-size: 1rem;
    vertical-align: middle;
}

/* Style des éléments de la liste des catégories */
.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.form-check-input {
    margin-right: 8px;
}

.form-check-label {
    font-size: 0.875rem;
}

.fs-sm {
    font-size: 0.75rem;
    color: #777;
}

/* Style du titre "Filtre de prix" */
.mt-4 {
    margin-top: 1.5rem;
}

/* Style de la plage de prix */
.custom-range::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.custom-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.custom-range::-ms-thumb {
    width: 16px;
    height: 16px;
    background-color: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

/* Style de l'affichage du prix */
#price-display {
    font-weight: bold;
}


.image-container {
    width: 100%;
    height: 250px; /* Par exemple, ajustez la hauteur selon vos besoins */
    overflow: hidden;
}

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


.category-bar {
    padding: 10px;
    background-color: inherit;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
}

.categories {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.category {
    background-color: inherit;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    margin-right: 8px;
}

.category-card {
    min-width: 110px;
    border-radius: 0px;
    /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);*/
    margin-right: 8px;
    display: flex;
    align-items: center;
    padding: 8px;
    border: 1px solid #cdcccc;
    background-color: #ffffff;
}

.category-card:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background-color: #f0eeee;
}

.category-card img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
}

.scroll-btn {
    background-color: #848383;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 4px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    opacity: 0.8;
}

.scroll-left-btn {
    left: 10px;
}

.scroll-right-btn {
    right: 10px;
}

@media (max-width: 995px) {
    .scroll-left-btn {
        left: 5px;
    }

    .scroll-right-btn {
        right: 5px;
    }
}

.scroll-btn i {
    font-size: 24px;
}

.hidden {
    display: none;
}

