.ps-discount-countdown {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #0f0f0f;
    color: #fff;
    font-family: "Montserrat", "Roboto", sans-serif;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.ps-discount-countdown .psdc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    box-sizing: border-box;
}

.psdc-text {
    flex: 1 1 220px;
    text-align: left;
}

.psdc-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.psdc-subtitle {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.psdc-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.psdc-timer .psdc-value {
    font-size: 21px;
    display: block;
    text-align: center;
    min-width: 30px;
}

.psdc-label {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    text-align: center;
    opacity: 0.7;
}

.psdc-separator {
    font-size: 19px;
    opacity: 0.5;
}

.psdc-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.psdc-button {
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s ease;
}

.psdc-button:hover {
    background: #2c2c2c;
}

.psdc-feedback {
    font-size: 12px;
    color: #80ffb0;
    min-height: 16px;
}

@media (max-width: 768px) {
    .ps-discount-countdown {
        max-height: 100px;
        height: auto;
        min-height: 0;
        /* barra baja sticky */
    }
    .ps-discount-countdown .psdc-inner {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 8px 3px 8px 3px;
        gap: 0;
        min-height: 0;
    }
    .psdc-text {
        width: 100%;
        padding: 0;
        margin-bottom: 3px;
        margin-top: 0;
        text-align: center;
        line-height: 1.15;
    }
    .psdc-title {
        font-size: 14px;
        line-height: 1.1;
        margin: 0 0 2px 0;
    }
    .psdc-subtitle {
        font-size: 10.5px;
        margin: 0 auto 2px auto;
        max-width: 100vw;
        line-height: 1.1;
        padding: 0;
        display: block;
    }
    .psdc-timer {
        gap: 2px;
        margin-top: 1px;
        padding: 0;
    }
    .psdc-timer .psdc-value {
        font-size: 12.5px;
        min-width: 16px;
        padding: 0;
    }
    .psdc-label {
        font-size: 7.2px;
    }
}

