/* body, html {
    overflow-x: clip !important;
}
body, html {
    overflow: unset;
} */

/* --- ------------------------------------------------------ --- */
/* Mobile */
@media (max-width: 480px) {
    .distance-for-mob {
    min-height: 75px;
}

.hydra-collection-gamme {
    overflow-x: auto;        /* enable horizontal scroll if needed */
    overflow-y: hidden;      /* disable vertical scroll */
    white-space: wrap;     
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

.hydra-collection-gamme__wrapper {
    display: inline-flex;     /* keep children in a row */
    gap: 1rem;                /* optional spacing between items */
}

}

/* Tablet Portrait */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : portrait)
and (-webkit-min-device-pixel-ratio: 2) {
    .distance-for-mob {
    min-height: 55px !important;
}
}

/* Tablet Landscape */
@media only screen
and (min-device-width : 834px)
and (max-device-width : 1112px)
and (orientation : landscape)
and (-webkit-min-device-pixel-ratio: 2) {
    .distance-for-mob {
    min-height: 55px !important;
}
}