.header-bg {
  width: 100%;
  height: 107px;
}

/* Navbar */
.navbar {
  padding: 30px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.2s;
  z-index: 99;
  border-bottom: 1px solid transparent;
}

.customize-support .navbar {
  top: 32px;
}

/* .customize-support .header-bg {
  padding-top: 32px;
} */

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: white;
}

.logo-link {
  color: unset;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links li {
  display: inline-flex;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  opacity: 0.8;
  transition: opacity 0.3s;
  display: inline-block;
}

.nav-links a:hover {
  opacity: 1;
}

.auth-btn {
  border: 1px solid rgba(255, 255, 255, 0.623);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  background: transparent;
  color: white;
  transition: all 0.3s;
}

.auth-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}


.cart-btn {
  background: transparent;
  border: none;

  padding: 10px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;

  position: relative;
}

.cart-btn .cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: red;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  border-radius: 50px;
}

.cart-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}


/*  */
.sticky {
  top: 0;
  padding: 20px 0;
  position: sticky;

  border-bottom: 1px solid #e5e5e5;
  background: #ffffffb9;
  backdrop-filter: blur(5px);
}

.navbar.sticky a,
.navbar.sticky .logo {
  color: #000;
}

.navbar.sticky .auth-btn {
  border: 1px solid rgba(70, 70, 70, 0.856);
}

.navbar-style-black .auth-btn {
  border: 1px solid rgba(70, 70, 70, 0.856);
}

/*  */
.navbar-style-black {
  background: #ffffff98;
  backdrop-filter: blur(5px);
}

.navbar-style-black .logo {
  color: var(--text-dark);
}

.navbar-style-black .nav-links a {
  color: var(--text-dark);
}

.navbar-style-black .nav-links a:hover {
  color: var(--accent-orange);
}

/* Checkpoint Banner */
.checkpoint-banner {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 2px solid #e11d48;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
}

.customize-support .checkpoint-banner {
  top: 32px;
}

.checkpoint-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.checkpoint-banner-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkpoint-icon {
  animation: checkpoint-pulse 1.8s infinite ease-in-out;
}

@keyframes checkpoint-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.checkpoint-banner-btn {
  background: #e11d48;
  color: #fff !important;
  text-decoration: none;
  padding: 5px 14px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 4px rgba(225, 29, 72, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkpoint-banner-btn:hover {
  background: #be123c;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(225, 29, 72, 0.4);
}

/* Adjust navbar when checkpoint banner is present */
body.checkpoint-banner-active .navbar {
  top: 43px;
}

body.checkpoint-banner-active.customize-support .navbar {
  top: 75px;
}

body.checkpoint-banner-active .header-bg {
  height: 150px;
}


@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  } 
}