/* Add custom CSS styles below */ 
.banner {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* تحسين شكل الكارت بس */
.s-products-slider-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.s-products-slider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* تحسين صورة المنتج */
.product-card__image {
    border-radius: 8px;
    margin: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-card__image img {
    transition: transform 0.3s ease;
}

.product-card__image:hover img {
    transform: scale(1.05);
}

/* تحسين المحتوى */
.product-card__content {
    padding: 15px 20px 20px;
}

.product-card__title a {
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card__title a:hover {
    color: #007bff;
}

/* السعر يبقى زي ما كان */
.product-card__price {
    margin: 15px 0;
}

/* خط فاصل لطيف */
.product-card__content-wrapper::before {
    content: '';
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    display: block;
    margin: 0 auto 15px;
}
.savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff001e 0%, #ff4757 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 8px 0;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 0, 30, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInScale 0.6s ease-out;
    text-align: center;
    white-space: nowrap;
}

.savings-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.savings-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.savings-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 30, 0.4);
    transition: all 0.3s ease;
}
.footer-list a { font-weight:900!Important;}

.product-card__title a {font-weight:900!Important;}