/* SaniSkin Promo Banner */
.spb-25c06f67-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.spb-25c06f67-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spb-25c06f67-heading {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.spb-25c06f67-subtitle {
    font-size: 17px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Countdown */
.spb-25c06f67-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px 0;
}

.spb-25c06f67-cd-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 16px 12px;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.spb-25c06f67-cd-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.spb-25c06f67-cd-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.spb-25c06f67-cd-sep {
    font-size: 28px;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
    padding-bottom: 18px;
}

/* Button */
.spb-25c06f67-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #C9A84C;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.spb-25c06f67-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.spb-25c06f67-btn:hover {
    border-color: #C9A84C;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
}

.spb-25c06f67-btn:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 767px) {
    .spb-25c06f67-heading {
        font-size: 24px;
    }

    .spb-25c06f67-subtitle {
        font-size: 14px;
    }

    .spb-25c06f67-countdown {
        gap: 6px;
    }

    .spb-25c06f67-cd-box {
        min-width: 60px;
        padding: 12px 8px;
    }

    .spb-25c06f67-cd-number {
        font-size: 22px;
    }

    .spb-25c06f67-cd-label {
        font-size: 9px;
    }

    .spb-25c06f67-cd-sep {
        font-size: 20px;
    }

    .spb-25c06f67-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
}
