/* Promo bar (#promotions) — restyled version of the legacy discount countdown.
   Functionality (jquery.countdown on .offer_countdown, close via cookie "p")
   lives in _js/kutego.js and is unchanged; this file only restyles the bar
   with the redesign tokens as a yellow strip ABOVE the gnav. The bar sits in
   the normal flow, so it scrolls away while the gnav (sticky, top: 0) sticks. */
#promotions {
    position: relative;
    /* same yellow as the homepage CTAs (--g-yellow is too pale here) */
    background: var(--yellow);
    color: var(--g-navy);
    font-family: var(--g-body);
    font-size: .95rem;
    z-index: 78;
}
#promotions .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
}
#promotions .gpromo-label {
    font-family: var(--g-display-bold);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .82rem;
    background: var(--g-navy);
    color: #fff;
    border-radius: 999px;
    padding: 3px 12px;
}
#promotions .gpromo-offer s { opacity: .6; margin-right: 4px; }
#promotions .gpromo-offer b { font-family: var(--g-display-bold); font-weight: 400; }
#promotions .gpromo-timer .offer_countdown { font-family: var(--g-display-bold); }
#promotions .close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: var(--g-navy);
    font-size: 1.2rem;
    line-height: 1;
    opacity: .7;
    cursor: pointer;
}
#promotions .close:hover { opacity: 1; }

/* Google reviews badge below the hero (legacy .seals block, restyled) */
.seals { margin-top: -2em; position: relative; z-index: 3; }
.seals a { display: inline-block; }
