/* =============================================
   Promo Bar — 3-column redesign
   ============================================= */

.wb-header-design-3 .hd3-promo-bar {
    display: flex;
    align-items: stretch;
    min-height: 40px;
    overflow: hidden;
}

/* ── Columns ─────────────────────────────── */

.wb-header-design-3 .pb-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}

.wb-header-design-3 .pb-col--phone {
    background: #2c1f0f;
    min-width: 200px;
    flex-shrink: 0;
}

.wb-header-design-3 .pb-col--order {
    background: #4a3520;
    min-width: 220px;
    flex-shrink: 0;
}

.wb-header-design-3 .pb-col--announce {
    background: #f0e8d8;
    flex: 1;
}

/* ── Phone Slider ────────────────────────── */

.wb-header-design-3 .pb-phone-slider {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.wb-header-design-3 .pb-phone-track {
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
}

.wb-header-design-3 .pb-phone-item {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--semantic-font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}

.wb-header-design-3 .pb-phone-item:hover {
    color: #f5d49a;
}

/* hide all except first — JS controls visibility */
.wb-header-design-3 .pb-phone-item:not(:first-child) {
    opacity: 0;
    transform: translateX(100%);
}

/* ── Order Info ──────────────────────────── */

.wb-header-design-3 .pb-order-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wb-header-design-3 .pb-order-text {
    font-family: var(--semantic-font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
}

/* ── Announcement Slider ─────────────────── */

.wb-header-design-3 .pb-announce-slider {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 0 8px;
}

.wb-header-design-3 .pb-announce-track {
    position: relative;
    overflow: hidden;
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
}

.wb-header-design-3 .pb-announce-item {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--semantic-font-body, 'Inter', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2c1f0f;
    white-space: nowrap;
}

.wb-header-design-3 .pb-announce-item em {
    font-style: italic;
    font-weight: 700;
}

/* hide all except first — JS controls visibility */
.wb-header-design-3 .pb-announce-item:not(:first-child) {
    opacity: 0;
    transform: translateX(100%);
}

/* ── Arrows ──────────────────────────────── */

.wb-header-design-3 .pb-arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
    flex-shrink: 0;
    user-select: none;
    display: flex;
    align-items: center;
    align-self: stretch;
}

.wb-header-design-3 .pb-arrow:hover {
    color: #ffffff;
}

.wb-header-design-3 .pb-arrow--dark {
    color: rgba(44, 31, 15, 0.4);
}

.wb-header-design-3 .pb-arrow--dark:hover {
    color: #2c1f0f;
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 767px) {
    .wb-header-design-3 .pb-col--order {
        display: none;
    }

    .wb-header-design-3 .pb-col--phone {
        min-width: 160px;
    }

    .wb-header-design-3 .pb-phone-item,
    .wb-header-design-3 .pb-announce-item {
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }
}

@media (max-width: 480px) {
    .wb-header-design-3 .pb-col--phone {
        display: none;
    }
}
