/* Structural Styles for Premium Flash Sale Countdown Widget */
.fs-countdown-container {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

/* Animations */
.fs-hover-lift-yes .fs-countdown-container:hover {
    transform: translateY(-5px);
}

.fs-fade-in-yes .fs-countdown-container {
    animation: fsFadeInUp 0.8s ease-out forwards;
}

@keyframes fsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Decorative Glows */
.fs-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.fs-glow-a {
    top: -50px;
    left: -50px;
}

.fs-glow-b {
    bottom: -50px;
    right: -50px;
}

/* Elements Layering */
.fs-badge,
.fs-heading,
.fs-description,
.fs-countdown-timer,
.fs-cta-button,
.fs-trust-badges {
    position: relative;
    z-index: 2;
}

/* Sale Badge */
.fs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.fs-badge-icon {
    display: inline-flex;
    align-items: center;
}

.fs-badge-icon svg,
.fs-badge-icon i {
    line-height: 1;
}

/* Typography elements */
.fs-heading {
    word-break: break-word;
}

.fs-description {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown block layout */
.fs-countdown-timer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    width: 100%;
}

.fs-timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.fs-timer-box:hover {
    transform: scale(1.05);
}

.fs-timer-num {
    display: block;
    line-height: 1.1;
}

.fs-timer-label {
    display: block;
}

/* Primary CTA Button */
.fs-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fs-cta-button-icon {
    display: inline-flex;
    align-items: center;
}

/* Trust Badges */
.fs-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fs-trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.fs-trust-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
}
