   .promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, red, #ff9999);
    padding: 10px 20px;
    color: white;
    flex-wrap: wrap; /* Supaya di mobile turun ke bawah */
    gap: 10px;
}

/* Kiri: promo info + kode input */
.promo-info {
    flex: 5;
    min-width: 250px;
}

.promo-code {
    display: flex;
    margin-top: 5px;
}

.promo-code input {
    padding: 5px;
    border: none;
    background: white;
    color: black;
    font-weight: bold;
    width: 120px;
    text-align: center;
}

.promo-code button {
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.promo-note {
    font-size: 13px;
    margin-top: 5px;
    color: white;
}

/* Kanan: countdown */
.countdown-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.countdown-box {
    background: #333;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    min-width: 50px;
}

.countdown-box span:first-child {
    display: block;
    font-weight: bold;
    color: red;
}

.jam {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Responsive untuk mobile */
@media (max-width: 720px) {
    .promo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .countdown-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    .promo-code {
         display: flex;
        justify-content: center; 
    }
     .promo-code input {
         padding: 8px;
        font-size: 16px;
     }
}
