.flash-sale-banner-8a141915 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 120px;
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f1f1f1; /* Fallback */
}

.flash-sale-banner-8a141915::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.5); /* Default dark overlay, overridden by Elementor controls */
    pointer-events: none;
}

.flash-sale-banner-8a141915:hover {
    text-decoration: none;
}

.fsb-content-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
    z-index: 2;
    position: relative;
}

.fsb-text {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    text-align: center;
    flex: 1 1 auto;
}

.fsb-countdown {
    position: absolute;
    display: inline-flex;
    gap: 10px;
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    background: rgba(255,255,255,0.9);
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 3;
}

.fsb-countdown.pos-top-left {
    top: 10px;
    left: 10px;
}

.fsb-countdown.pos-top-right {
    top: 10px;
    right: 10px;
}

.fsb-countdown.pos-bottom-left {
    bottom: 10px;
    left: 10px;
}

.fsb-countdown.pos-bottom-right {
    bottom: 10px;
    right: 10px;
}

/* Animations */
.flash-sale-banner-8a141915.anim-pulse .fsb-content-wrapper {
    animation: fsb-pulse 2s infinite;
}

@keyframes fsb-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.flash-sale-banner-8a141915.anim-slide .fsb-content-wrapper {
    animation: fsb-slide-in 0.8s ease-out;
}

@keyframes fsb-slide-in {
    0% { transform: translateX(-50px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@media (max-width: 767px) {
    .flash-sale-banner-8a141915 {
        padding: 50px 15px 30px; /* Extra top padding for corner countdown */
    }
    
    .fsb-content-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }
    
    .fsb-text {
        font-size: 20px;
        text-align: center;
    }
    
    .fsb-countdown {
        font-size: 16px;
        padding: 8px 12px;
    }
}