/* ============================= */
/*  FULL WIDTH PRODUCTS SECTION */
/* ============================= */

/* كسر الكونتينر */
.custom-products-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(-50vw + 50%);
    padding: 0;
}

/* السكشن */
.products-section {
    padding: 90px 0;
    background: #ffffff;
    direction: rtl;
}

/* الكونتينر الداخلي */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* الجريد */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* الكارت */
.product-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* الصورة */
.product-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* البادج */
.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4a574, #c99456);
    color: #fff;
    font-size: 11px;
    padding: 8px 16px;
}

/* المحتوى */
.product-content {
    position: absolute;
    bottom: 30px;
    right: 30px;
    left: 30px;
    color: #fff;
}

.product-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.shop-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #fff;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

.shop-link:hover {
    color: #d4a574;
    border-color: #d4a574;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* اخفاء من صفحة المنتج */
body[class*="product"] .custom-products-wrapper {
    display: none !important;
}