﻿/* أزرار الكمية */
.btn-cart {
    background-color: #210645;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .qty-btn:hover {
        background: #e0e0e0;
    }

.qty-input {
    width: 60px;
    height: 40px;
    text-align: center;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
/* منتجات */
.product-scroll-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex-wrap: nowrap; /* مهم عشان المنتجات تبقى صف واحد */
}

.product-scroll-section {
    margin-top: 50px !important;
}
.product-scroll {
    scroll-behavior: smooth;
}

.product-card {
    /* background: #fff; */
    border-radius: 16px;
    /* padding: 12px; */
    position: relative;
    transition: 0.3s ease;
    border: 1px solid #eee;
    min-width: 200px;
    flex-shrink: 0;
    padding: 0px !important;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .product-card .img-box {
        background: #f9f9f9;
        border-radius: 15px;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        .product-card .img-box img {
            max-height: 140px;
            max-width: 100%;
            object-fit: contain;
            transition: 0.3s;
        }

    .product-card:hover .img-box img {
        transform: scale(1.05);
    }

    .product-card .detail p {
        font-weight: 600;
        font-size: 14px;
        margin: 10px 0 6px;
        height: 40px;
        overflow: hidden;
    }

    .product-card .price-row {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .product-card .text-card {
        padding: 12px;
    }

.nameOfSection {
    font-size: 24px;
    font-weight: bold;
    color: #553e97;
    margin-bottom: 20px;
    border-bottom: 2px solid #553e97;
    display: inline-block;
    direction: rtl !important;
}