/* ═══════════════════════════════════════════════
   NEWSLETTER POPUP — Omnibus Store
   Aparece al 50% scroll, no repite en 7 días.
   ═══════════════════════════════════════════════ */

.ob-nl-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}
.ob-nl-overlay.is-visible {
    display: flex;
}

.ob-nl-popup {
    background: #faf6f1;
    border-radius: 12px;
    max-width: 460px;
    width: 90vw;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    text-align: center;
}

.ob-nl-popup__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: .25rem .5rem;
}
.ob-nl-popup__close:hover {
    color: #6b1c23;
}

.ob-nl-popup__icon {
    font-size: 2.5rem;
    margin-bottom: .75rem;
    color: #6b1c23;
}

.ob-nl-popup__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #1a1a1a;
    margin-bottom: .5rem;
}

.ob-nl-popup__text {
    font-size: .9rem;
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.ob-nl-popup__form {
    display: flex;
    gap: .5rem;
}

.ob-nl-popup__input {
    flex: 1;
    padding: .6rem .9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
}
.ob-nl-popup__input:focus {
    border-color: #6b1c23;
}

.ob-nl-popup__btn {
    background: #6b1c23;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .6rem 1.2rem;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}
.ob-nl-popup__btn:hover {
    background: #501519;
}

.ob-nl-popup__msg {
    margin-top: .75rem;
    font-size: .85rem;
    color: #2a7d2a;
    display: none;
}
.ob-nl-popup__msg.is-error {
    color: #c0392b;
}
.ob-nl-popup__msg.is-visible {
    display: block;
}

.ob-nl-popup__legal {
    margin-top: .75rem;
    font-size: .75rem;
    color: #999;
}

@media (max-width: 480px) {
    .ob-nl-popup {
        padding: 2rem 1.25rem 1.5rem;
    }
    .ob-nl-popup__form {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENT BAR — free shipping
   ═══════════════════════════════════════════════ */

.ob-announcement-bar {
    background-color: #7a0e1a;
    padding: .5rem 0;
    text-align: center;
}

.ob-announcement-bar__text {
    margin: 0;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
}

.ob-announcement-bar__text .fa {
    margin-right: .5rem;
}

/* ═══════════════════════════════════════════════
   WELCOME BANNER — pre-footer, solo visitantes
   ═══════════════════════════════════════════════ */

.ob-welcome-banner {
    background-color: transparent;
    padding: 2.5rem 0 1.5rem;
    overflow: visible;
}

.ob-welcome-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: #faf6f1;
    border: 1px solid #e8e0d8;
    border-radius: 16px;
    padding: 2rem 2.5rem;
}

.ob-welcome-banner__title {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a0a0c;
    margin: 0 0 .4rem;
    line-height: 1.3;
}

.ob-welcome-banner__desc {
    font-size: .9rem;
    color: #5a3a3e;
    margin: 0;
    line-height: 1.5;
}

.ob-welcome-banner__btn {
    display: inline-block;
    background-color: #7a0e1a;
    color: #fff !important;
    padding: .85rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .2s;
}
.ob-welcome-banner__btn:hover {
    background-color: #9b1a28;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .ob-welcome-banner__inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}
