.belleme-countdown-bar {
    color: #fff;
    padding: 10px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    position: relative;
    /* z-index se establece en inline style */
}
.belleme-position-top {
    position: fixed;
    top: 0;
    left: 0;
}
.belleme-position-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
}
.belleme-position-top-right {
    position: fixed;
    top: 20px;
    right: 20px;
    width: auto;
    max-width: 400px;
    border-radius: 12px;
    padding: 15px;
}
.belleme-position-bottom-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    max-width: 400px;
    border-radius: 12px;
    padding: 15px;
}
.belleme-position-coordinates {
    position: fixed;
    width: auto;
    max-width: 400px;
    border-radius: 12px;
    padding: 15px;
}
.belleme-close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    z-index: 2;
}
.belleme-close-btn:hover {
    opacity: 1;
}
.has-close-btn {
    padding-right: 40px !important;
}
.belleme-position-top-right.has-close-btn,
.belleme-position-bottom-right.has-close-btn,
.belleme-position-coordinates.has-close-btn {
    padding-right: 45px !important;
}
.belleme-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.belleme-offer-text {
    font-size: 1.1em;
    font-weight: 600;
}
.belleme-timer {
    font-size: 1.5em;
    font-weight: bold;
    background: #000;
    padding: 4px 15px;
    border-radius: 6px;
    font-family: monospace;
}
.belleme-coupon-section {
    display: flex;
    align-items: center;
    gap: 8px;
}
.belleme-prompt {
    font-size: 0.95em;
}
.belleme-copy-btn {
    background: #fff;
    color: #222;
    border: none;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9em;
}
.belleme-copy-btn:hover {
    background: #e0e0e0;
}
.belleme-inline {
    position: static;
    margin: 20px 0;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .belleme-countdown-inner {
        flex-direction: column;
        text-align: center;
    }
}