/* Flash Sale - Urgency Creator */
.flash-sale-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Background animated effect */
.flash-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.1) 0%, transparent 60%);
    animation: pulse-glow 4s infinite alternate;
    z-index: 1;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.flash-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    gap: 40px;
}

/* Left: Product Info */
.flash-content {
    flex: 1;
}

.flash-badge {
    background: #ef4444;
    /* Red Urgency */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.flash-title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.flash-desc {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 450px;
    line-height: 1.6;
}

/* Center: Countdown Timer */
.flash-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    min-width: 80px;
    border-radius: 12px;
    text-align: center;
}

.timer-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffd700;
    /* Gold */
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.timer-label {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Right: Product Image */
.flash-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 400px;
}

.flash-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.flash-image:hover {
    transform: rotate(0) scale(1.05);
}

.flash-price-tag {
    position: absolute;
    top: -20px;
    right: 0;
    background: #ffd700;
    color: black;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.4);
    transform: rotate(15deg);
}

.old-price {
    font-size: 12px;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 24px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .flash-container {
        flex-direction: column;
        text-align: center;
    }

    .flash-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flash-image-wrapper {
        margin-top: 40px;
    }
}