.orbit {
    width: 100%;
}

/* ===========================
   1) Mobile (default <768px)
   =========================== */
/* CONTAINER: flex‐row, scrollable, with grab cursor and smooth momentum on touch */
.orbit-scroll-container {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* iOS smooth swipe */
    scroll-behavior: smooth;
    /* smooth when auto‐scroll resumes */
    white-space: nowrap;
    cursor: grab;
}

.orbit-scroll-container:active {
    cursor: grabbing;
}



/* EACH ITEM: fixed size so flex won’t shrink it */
.orbit-scroll-item {
    flex: 0 0 auto;
    display: inline-block;
    margin-right: 16px;
    text-align: center;
    max-width: 120px;
    overflow: hidden;
    background-color: #FFF;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.orbit-scroll-item:last-child {
    margin-right: 0;
}

.orbit-image-container {
    width: 100%;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(161, 161, 161);
    border-bottom: 1px solid #f1f1f1;
}

.orbit-scroll-item img {
    width: 120px;
    height: 130px;
    object-fit: cover;
}

.orbit-scroll-item .az {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.orbit-scroll-item .az .links {
    display: flex;
    width: 90%;
    height: 40px;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.orbit-scroll-item .az .links a {
    display: flex;
    justify-content: center;
    width: 50%;
    height: 30px;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.orbit-scroll-item .az .links a:hover {
    background-color: #f0f0f0;
}

.orbit-scroll-item .az .links a img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.orbit-price {
    width: 100%;
    display: block;
    font-weight: initial;
    font-size: 14px;
    padding: 5px 0;
}

.orbit-price.del {
    color: red;
    text-decoration: line-through;
    margin-right: 8px;
}

/* OPTIONAL: Custom scrollbar styling */
.orbit-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.orbit-scroll-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.orbit-title {
    padding: 0 15px;
}
.orbit-description {
    padding: 0 15px;
}
/* Tablet */
@media (min-width: 768px) {
    .orbit-scroll-item {
        flex: 0 0 auto;
        display: inline-block;
        margin-right: 16px;
        text-align: center;
        max-width: 140px;
        overflow: hidden;
        background-color: #FFF;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }

    .orbit-image-container {
        width: 100%;
        height: 150px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(161, 161, 161);
    }

    .orbit-scroll-item img {
        width: 140px;
        height: 150px;
        object-fit: cover;

    }
}

















