/* ===== HEADER (Navbar) ===== */
.site-header {
    background: var(--color-light);
    border-bottom: 1px solid var(--color-light);
    z-index: 9999;
    position: fixed;
    width: 100%;
}

.navbar {
    top: 0;
    width: 100%;
    padding: 13px 0 13px;
    background: #fff;
}

.navbar-brand img {
    height: 55px;
}

/* Nav Links */
.nav-link {
    color: var(--color-black);
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .625rem;
    padding-left: .625rem;
}

.nav-link:hover{
    color: var(--color-black);
    font-weight: 700;
}

/* Live indicator */
.blinking-circle {
    width: 10px;
    height: 10px;
    background: var(--color-dark-red);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: pulsate 1s infinite;
}

.sub-arrow {
    position: relative;
    display: inline-block;
    margin-left: .3rem;
}

.sub-arrow:before {
    content: '';
    position: absolute;
    background: url(../img/navigation-down-arrow.svg) center center/contain no-repeat;
    width: 10px;
    height: 6px;
    display: block;
    position: relative;
    z-index: -1;
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.nav-link.cart-icon{
    padding: 0;
}

/* Cart badge */
.cart-count {
    position: absolute;
    top: -10px;
    right: 28px;
    left: 0;
    margin: auto;
    color: var(--color-red);
    font-size: 14px;
    text-align: center;
    font-weight: 800;
}

/* Login button */
.btn-login {
    background: var(--color-orange);
    color: #fff !important;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-weight: 600;
}

.btn-login:hover {
    background: var(--color-secondary);
}

/* Promo Banner */

.promo-box {
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 800px;
    width: 100%;
}

.promo-box h3 {
    color: var(--color-orange);
    /* teal */
}

.promo-box h3 span {
    color: var(--color-secondary);
    /* gold */
}

@media (max-width: 768px) {
    .promo-box {
        padding: 1.2rem;
    }

    .promo-box h3 {
        font-size: 1.25rem;
    }
}


/* ===== FOOTER ===== */
/* === Footer === */
.footer {
  background: #1a1a1a; /* dark background */
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__logo {
  max-width: 180px;
}

.footer__text {
  font-size: 0.85rem;
  color: #aaa;
}

.footer__link {
  text-decoration: none;
  color: var(--color-black);
}
.footer__link:hover {
    color: var(--color-black);
    text-decoration: underline;
}

.footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.footer__title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #F98233; /* gold underline */
  margin-top: 0.4rem;
}

.footer {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer li {
  margin-top: 18px;
}

/* App Badges */
.footer__social + .d-flex a img {
  transition: transform 0.2s ease;
}
.footer__social + .d-flex a:hover img {
  transform: scale(1.05);
}

/* Bottom Bar */
.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}



.modal-body{
    padding: 2.5rem 2rem;
}

.input-group{
    flex-wrap: nowrap;
}

.input-group-text{
    border: 1px solid var(--color-black);
    border-right: none;
    background: none;
}

.exmpur-login-modal .form-control {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-black);
    background-clip: padding-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: 0 0 1.25rem rgb(30 34 40 / 4%);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--color-black);
    border-left: none;
}

.exmpur-login-modal .modal-body2 .form-control{
    border: 1px solid var(--color-black);
}