.card__link {
    display: block;
    /* Makes the entire card a clickable block */
    text-decoration: none;
    /* Removes underline from links */
    color: inherit;
    /* Inherits color from parent elements */
}

.card__link:hover {
    text-decoration: none;
    /* Ensures no underline appears on hover */
}

.wholesale-section {
    padding: 40px 10px !important;
    background-color: #fff;
    /* White background */
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: #000;
    /* Black */
    margin-bottom: 10px;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between cards */
    justify-content: center;
    /* Center cards */
}

.card {
    background: white;
    border-radius: 5px;
    /* Reduced border radius */
    overflow: hidden;
    max-width: 400px;
    /* Set max width for cards */
    transition: transform 0.3s, opacity 0.3s;
    /* Smooth transitions */
    opacity: 0.8;
    /* Slightly transparent by default */
}

.card:hover {
    transform: scale(1.05);
    /* Scale effect on hover */
    opacity: 1;
    /* Fully opaque on hover */
}

.card__image-container {
    position: relative;
    /* Position relative for absolute positioning of icons and discount */
}

.card__discount {
    position: absolute;
    top: 10px;
    /* Adjust vertical position */
    left: 10px;
    /* Adjust horizontal position */
    background-color: red;
    /* Red background */
    color: white;
    /* White text */
    padding: 5px 10px;
    /* Padding around the text */
    border-radius: 3px;
    /* Rounded corners */
    font-weight: bold;
    /* Bold text */
    font-size: 1em;
    /* Font size */
    z-index: 1;
    /* Ensure it appears above other elements */
}


@media (max-width: 768px) {
   
    .card__title {
        font-size: 0.9em !important;
        color: #000;
        /* Black */
        margin: 0;
        white-space: nowrap !important;
    }
}
    

.card__icons {
    position: absolute;
    bottom: 10px !important;
    /* Adjust to position at the top */
    right: 10px;
    /* Adjust to position at the right */
    display: flex;
    gap: 10px;
    /* Space between icons */
}
.card__icon {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    padding: 4px !important;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    /* width: 40px; */
}

.card__icon {
    background-color: rgba(255, 255, 255, 0.7);
    /* Slightly transparent white background */
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    /* Smooth transition */
}

.card__icon:hover {
    background-color: rgba(255, 255, 255, 1);
    /* Fully opaque on hover */
    transform: scale(1.1);
    /* Slightly scale on hover */
}

.card__content {
    padding: 20px;
    padding-bottom: 0 !important;
}

.card__title {
    font-size: 1.3em;
    color: #000;
    /* Black */
    margin: 0;
    white-space: nowrap;
}

.card__description {
    margin: 10px 0 20px;
    color: #444;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    color: inherit !important;
}

.reassurance2 {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
}

.categor-list {
    list-style-type: none;
    padding: 0;
}

.categor-list>li {
    position: relative;
    /* Positionner le parent pour que le sous-menu soit relatif à celui-ci */
}

.sub-menu {
    display: none;
    /* Masquer le sous-menu par défaut */
    position: absolute;
    /* Pour le positionner par rapport au parent */
    left: 0;
    /* Aligner à gauche du parent */
    top: 100%;
    /* Positionner juste en dessous du parent */
    list-style-type: none;
    padding: 0;
}

.categor-list>li:hover .sub-menu {
    display: block !important;
    /* Afficher le sous-menu au survol */
}
.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #dddddd;
    display: block;
    left: -203px !important;
}