/* Coming Soon Badge */
.wc-coming-soon-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.3);
    z-index: 10;
}

/* Timer Wrapper */
.wc-coming-soon-timer-wrapper {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eee;
}

.wc-coming-soon-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timer Layout */
.wc-coming-soon-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.timer-unit span {
    font-size: 24px;
    font-weight: 700;
    color: #ff416c;
    background: #fff;
    width: 100%;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.timer-unit label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 600;
}

/* Notify Form */
.wc-coming-soon-notify-form {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
}

.wc-coming-soon-notify-form h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.notify-input-group {
    display: flex;
    gap: 10px;
}

.notify-input-group input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .wc-coming-soon-timer {
        gap: 8px;
    }

    .timer-unit span {
        font-size: 18px;
    }

    .notify-input-group {
        flex-direction: column;
    }
}