
.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.products-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

.products-slider {
    position: relative;
    height: 620px; /* زيادة الارتفاع لاستيعاب الصور الكبيرة */
    overflow: hidden;
}

.products-wrapper {
    display: flex;
    align-items: flex-start; /* تغيير من center إلى flex-start */
    justify-content: center;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-top: 20px;
}

.product-card {
    position: relative;
    width: 350px;
    height: 500px; /* زيادة الارتفاع لاستيعاب الصور الكبيرة */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    overflow: visible;
    flex-shrink: 0;
    margin: 0 -50px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card.active {
    transform: scale(var(--active-scale));
    z-index: 10;
    margin: 0 20px;
}

.product-card:not(.active) {
    opacity: 0.7;
    filter: brightness(0.9);
    z-index: 1;
}

.product-image-container {
    width: 100%;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.add-to-cart {
    background-color: var(--background-color);
    color: white;
    border: none;
    padding: 15px 30px;
    width: 80%;
    margin-top: 20px;
    text-align: center;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    opacity: 0;
    z-index: 20;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card.active .add-to-cart {
    opacity: 1;
}

.add-to-cart:hover {
    background-color: #6a5d88;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 250px; /* تعديل الموضع ليناسب الصور الكبيرة */
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: #6a5d88;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    right: 20px;
}

.next-btn {
    left: 20px;
}

@media (max-width: 1024px) {
    .product-card {
        width: 300px;
        margin: 0 -40px;
    }
    
    .product-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .products-slider {
        height: 500px;
    }
    
    .product-card {
        width: 250px;
        margin: 0 -30px;
    }
    
    .product-image-container {
        height: 350px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 180px;
    }
    
    .add-to-cart {
        width: 90%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}