﻿/* کانتینر اصلی دسته‌بندی غذاها */
#category-products-container {
    aspect-ratio: 3.5 / 1;
    background-color: #20905a;
    width: 100%;
    margin-top: 0.5vw;
    /*opacity: 0.5;*/ /*DEBUG*/
    position: relative;
    direction: rtl;
}

/* عنوان دسته‌بندی */
#category-title {
    border-right: 5px solid #6dfd4e;
    padding-right: 5px;
    font-size: 1vw;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 4.6vw;
    right: 5.7vw;
}

/* کانتینر اسکرول‌پذیر غذاها */
#category-products-wrapper {
    overflow: hidden;
    width: 80%;
    position: absolute;
    right: 10%;
    top: 8.8vw;
    height: 20.4vw;
}

/* لیست غذاها با قابلیت جابه‌جایی */
#category-products {
    white-space: nowrap;
    transition: transform 0.4s ease-in-out;
    height: 100%;
    font-size: 0;
}

/* هر آیتم غذا */
.product {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    color: white;
    height: 100%;
    width: 18.7%;
    margin-left: 1.6%;
    font-size: 12pt;
    position: relative;
}

/* تصویر غذا */
.product-img-container {
    height: 50%;
    overflow: hidden;
    border-top-right-radius: 2vw;
    border-top-left-radius: 2vw;
}

    .product-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

/* توضیحات غذا */
.product-desc-container {
    background-color: #292929;
    height: 39.2%;
    font-weight: 400;
    font-size: 1vw;
    padding-right: 7%;
    padding-left: 7%;
    padding-top: 1%;
    position: relative;
    border-bottom-right-radius: 2vw;
    border-bottom-left-radius: 2vw;
}

    /* قیمت بدون تخفیف */
    .product-desc-container > div:nth-child(2) {
        text-decoration: line-through;
        color: #ed1c24;
        position: absolute;
        top: 38%;
        left: 10%;
    }

    /* قیمت با تخفیف */
    .product-desc-container > div:nth-child(3) > div:nth-child(1) {
        position: absolute;
        top: 54%;
        left: 10%;
    }

    /* درصد تخفیف */
    .product-desc-container > div:nth-child(3) > div:nth-child(2) {
        position: absolute;
        top: 54%;
        right: 7%;
        background-color: #EB1C22;
        border-radius: 36%;
        padding: 0.9% 2.5%;
        text-align: center;
        font-weight: bold;
        font-size: 1.1vw;
    }

/* دکمه افزودن به سبد */
.add-product-to-basket-container {
    position: absolute;
    bottom: 7%;
    right: 25%;
    background-color: white;
    border-radius: 1vw;
    color: black;
    width: 48%;
    height: 10%;
    text-align: center;
    font-weight: bold;
    font-size: 1.1vw;
    cursor: pointer;
}

/* دسته‌های پیمایش */
#right-handle,
#left-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(8.8vw - 5%);
    height: 20.4vw;
    width: 10%;
    z-index: 2;
}

#left-handle {
    left: 2%;
}

#right-handle {
    right: 2%;
}

    #right-handle img,
    #left-handle img {
        width: 25%;
        height: auto;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }