/* Black Friday Section Styles */
.black-friday-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.black-friday-container {
    max-width: 1200px;
    margin: 0 auto;
}

.black-friday-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 2.5rem;
    position: relative;
}

.slab-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.slab-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    aspect-ratio: 16/9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.slab-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slab-item:hover img {
    transform: scale(1.05);
}

.slab-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    color: white;
}

.slab-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slab-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

.discount-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff3b3b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(255, 59, 59, 0.3);
}

/* Media Queries */
@media (max-width: 768px) {
    .black-friday-section {
        padding: 3rem 1rem;
    }

    .black-friday-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .slab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slab-overlay h3 {
        font-size: 1.3rem;
    }

    .slab-overlay p {
        font-size: 0.9rem;
    }

    .discount-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}