
/* top bar */
#header div.top-bar {
    background: #f3c59b;
    color: #aa5920;
    padding: 15px 10px;
    text-align: center;
    display: none;
}

#header div.top-bar.mobile.visible {
    display: none;
}
#header div.top-bar.desktop.visible {
    display: block;
}

/* #header div.top-bar span {
    border: 1px solid white;
    border-radius: 0px;
    padding: 3px 6px;
    font-size: 13px;
} */


@media (max-width: 767px) {
    #header div.top-bar {
        text-align: center;
    }
}

@media (max-width: 567px) {
    #header div.top-bar.mobile.visible {
        display: block;
        line-height: 1.75;
    }
    #header div.top-bar.desktop.visible {
        display: none;
    }
}



/* TOP BAR PROMO 13-06-2025 */
#promo-bar {
    background: #f3c59b;
    color: black;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    z-index: 9999;
  }

  #promo-bar a.promo-btn {
    background: black;
    color: white;
    padding: 6px 12px;
    margin: 0 8px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
  }

  #promo-bar a.promo-btn:hover {
    background: #333;
  }

  @media (max-width: 768px) {
    #promo-bar {
      font-size: 14px;
      padding: 10px;
    }

    #promo-bar a.promo-btn {
      font-size: 13px;
      padding: 5px 10px;
    }

    #promo-bar #countdown {
    display: block;
    margin-top: 5px;
    }
  }