/* # Shared styles (header, footer, fonts, layout helpers)


/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f6;

  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Promo Banner */
.promo-banner {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.promo-banner a {
  color: #ffc107;
  font-weight: bold;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #ffffff;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links a {
  margin: 0 15px;
  color: #000;
  font-weight: 500;
}

.logo img {
  height: 45px;
  margin-bottom: -5px;
}

.nav-icons {
  display: flex;
  align-items: center;
}

.nav-icon {
  height: 25px;
  margin-left: 18px;
  cursor: pointer;
  margin-top: inherit;
}

.cart-icon-wrapper {
  position: relative;
  margin-top: 1px;
}

.cart-icon-wrapper .badges {
  position: absolute;
  top: -1px;
  right: -3px;
  background: #f44336;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}



@media screen and (max-width: 767px) {
  .cart-icon-wrapper .badges {
    position: absolute;
    top: -1px;
    right: -3px;
    background: #f44336;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 50%;
  }
}

  



/* Dropdown Wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


.dropdown a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  width: 16px;
  height: 10px;
  transition: transform 0.3s ease;
  padding-top: 6px;
}

/* Optional: Rotate icon on hover */
.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}









/* container to anchor the dropdown */
.user-menu-wrap { position: relative; }

/* button looks like an icon */
.nav-icon-btn {
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* the dropdown */
.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px;
  display: none;
  z-index: 10000;              /* ↑ sit on top of header */
}

/* shown state */
.user-menu.open { display: block; }

/* items */
.user-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}
.user-menu a:hover { background: #f5f5f7; }

/* if your header has overflow hidden or a transform, this helps */
.nav-icons { overflow: visible; position: relative; z-index: 1; }













/* Cart Modal Overlay */
.cart-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* Modal Container */
.cart-modal {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease-in-out;
}

/* Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.close-cart {
  font-size: 20px;
  cursor: pointer;
}

.view-cart-btn {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Scrollable Body */
.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: inherit;
}


.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border-radius: 8px;
}

.item-info {
  flex: 1;
  text-align: right;
  margin-bottom: 10px;
}

.item-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.item-info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}


/* Footer */
.cart-footer {
  padding: 15px;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}





/* Search Bar Container (Hidden by Default) */
.search-bar-container {
  display: none;
  background-color: #3f51b5;
  padding: 12px 5%;
  border-bottom: 1px solid #eee;
  animation: slideDown 0.3s ease-in-out forwards;
}

.search-input {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Optional: Animate height and opacity */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* Hide mobile logo & hamburger by default */
.mobile-logo, .hamburger {
  display: none;
}

.desktop-logo {
  display: block;
  height: 52px;
  margin-bottom: -20px;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 24px;
  height: 20px;
  cursor: pointer;
  margin-left: 20px;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
}



/* Slide-out mobile menu */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

.mobile-nav-content {
  width: 250px;
  height: 100%;
  background-color: #fff;
  padding: 30px 20px;
  animation: slideIn 0.3s ease forwards;
  position: relative;
}

.mobile-nav-content a {
  display: block;
  font-size: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
}




@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* 🔁 Responsive switch */
@media screen and (max-width: 767px) {
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    height: 38px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  
}


.mobile-nav-footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.mobile-nav-footer img {
  height: 40px;
  opacity: 0.8;
  padding-right: 100%;
  margin-top: 10%
}



/* Make the slide-out a flex column to pin the auth button to the bottom */
.mobile-nav-content {
  display: flex;
  flex-direction: column;
}

/* Container that pushes itself to the bottom */
.mobile-auth-wrap {
  margin-top: 60%;                /* pushes it to the bottom */
  padding-top: 16px;
  border-top: 1px solid #eee;
}

/* Full-width, touch-friendly login/logout button */
.mobile-auth-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 14px;
  border-radius: 10px;
  background: #111;               /* dark fill (matches your theme buttons) */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s ease;
}

.mobile-auth-btn:hover { opacity: .92; }

/* Optional: when it’s a logout state, you can give it a warning tone */
.mobile-auth-btn.is-logout {
  background: #dc2626;            /* red-ish for "Logout" */
}

/* Keep your footer image centered and tidy under the button */
.mobile-nav-footer {
  text-align: center;
  padding: 16px 0 12px;
  border-top: none;               /* already have a separator above auth */
}

.mobile-nav-footer img {
  height: 40px;
  opacity: 0.85;
  margin: 12px auto 0;
  display: block;
  padding-right: 0;               /* remove previous push */
}

/* Hide the desktop/topbar auth button whenever hamburger is active */
@media screen and (max-width: 767px) {
  /* Whatever your desktop auth button selector is */
  #authBtn, .nav-auth-btn {
    display: none !important;
  }
}



/* Mobile accordion (Categories) */
.mobile-accordion {
  border-bottom: 1px solid #eee;
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

.mobile-accordion-toggle .chev {
  width: 16px;
  height: 10px;
  transition: transform .2s ease;
}

.mobile-accordion.open .mobile-accordion-toggle .chev {
  transform: rotate(180deg);
}

.mobile-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .25s ease;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 10px 14px; /* indent submenu links */
  font-size: 16px;
  border-bottom: none;        /* avoid double borders inside submenu */
  color: #444;
}









.wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff59;
  border: none;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn i {
  font-size: 18px;
  color: #333;
}

.wishlist-btn.active i {
  color: red;
}









/* Global Alert Modal */
.alert-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.alert-modal {
  background: #fff;
  padding: 30px 25px;
  width:70%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.alert-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.alert-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.alert-message {
  margin: 10px 0 20px;
  font-size: 16px;
  color: #444;
}

.alert-ok-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.close-alert-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #aaa;
}

.close-alert-btn:hover {
  color: #000;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alert modal wrapper */
#globalAlertModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 👈 SUPER HIGH */
}

/* Show when active */
#globalAlertModal.active {
  display: flex;
}

#ratingModal {
  z-index: 999; /* Lower than alert modal */
}






/* INstagram integration */

.instagram-section {
  padding: 60px 5%;
  text-align: center;
  background: #f6f7f9;
}

.instagram-header .subheading {
  font-size: 14px;
  color: #999;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.instagram-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.instagram-header .description {
  font-size: 16px;
  color: #333;
  margin: 10px 0;
}

.instagram-header .handle {
  font-size: 16px;
  font-weight: 600;
  color: #777;
}

.instagram-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.instagram-gallery img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* Tablet: 2 per row */
@media screen and (max-width: 992px) {
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 2 per row */
@media screen and (max-width: 600px) {
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .instagram-header h2 {
    font-size: 28px;
  }

  .instagram-header .description,
  .instagram-header .handle {
    font-size: 14px;
  }
}




/* Newsletter */


.newsletter-section {
  background: url('/olsms-client/assets/images/banner2/newsletter2.png') no-repeat center center/cover;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  position: relative;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.headphone-left,
.headphone-right {
  flex: 1 1 200px;
  max-width: 250px;
  height: auto;
}

.newsletter-center {
  flex: 2 1 400px;
  text-align: center;
  min-width: 280px;
  padding-right: 300px;
}

.newsletter-center h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-center p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  padding: 10px;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .icon {
  font-size: 18px;
  color: #999;
}

.newsletter-form input {
  flex: 1 1 60%;
  min-width: 200px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  padding: 8px 4px;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #888;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.newsletter-form button:hover {
  color: #000;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .headphone-left,
  .headphone-right {
    max-width: 150px;
  }

  .newsletter-center h2 {
    font-size: 24px;
  }

  .newsletter-center p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 8px;
    border: none;
    padding: 0;
  }

  .newsletter-form input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
  }

  .newsletter-form button {
    width: 100%;
    background: #000;
    color: #fff;
    border-radius: 4px;
    padding: 10px;
  }
}









/* Footer */


.footer-section {
  background-color: #111;
  color: #fff;
  padding: 40px 5% 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #222;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
}

.footer-brand span {
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: #bbb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

.footer-links,
.footer-social {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer-links li a,
.footer-social li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer-social li a i {
  font-size: 16px;
  color: #fff;
  padding: 6px;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: all 0.3s;
}

.footer-social li a i:hover {
  background: #fff;
  color: #000;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  display: block;
  margin-bottom: 8px;
}


/* Responsive */
@media screen and (max-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}



/* Section Wrapper */
.promo-video-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  min-height: 73px;
}

/* Background Video */
.promo-video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay for readability */
.promo-video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 43%);
  z-index: 1;
}










/* ── HERO OVERLAY (scoped so it won't touch the header ticker) ───────────── */
.hero .promo-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 10%;
  margin-right: 30px;
}
.hero .promo-text .promo-label {
  color: #4e8ef7;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 24px;
}
.hero .promo-text h2 {
  font-size: 62px;
  margin: 10px 0;
  font-weight: 700;
}
.hero .promo-text p {
  color: #ddd;
  font-size: 28px;
  margin-top: 10px;
}

/* Responsive (hero only) */
@media (max-width: 768px) {
  .hero .promo-text h2 { font-size: 28px; }
  .hero .promo-text p  { font-size: 15px; }
  .hero .promo-text {
    max-width: 700px;
    margin: 10% 30px 0 auto;
  }
}

/* ── HEADER ADS TICKER (always single-line, continuous) ──────────────────── */
.promo-banner { width: 100%; background: #0f172a; color: #fff; padding: 8px 0; overflow: hidden; }
.promo-banner .promo-viewport { position: relative; overflow: hidden; width: 100%; }
.promo-banner .promo-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;               /* space between items */
  white-space: nowrap;     /* prevent wrapping */
  will-change: transform;  /* smoother marquee */
}
.promo-banner .promo-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0px;
}
.promo-banner .promo-icon { opacity: .9; }
.promo-banner .promo-text { 
  font-size: 14px; 
  line-height: 1; 
  white-space: nowrap;     /* belt-and-suspenders */
}
.promo-banner .promo-text a { color: #22d3ee; text-decoration: unset; white-space: nowrap; }
.promo-banner .promo-sep { opacity: .5; }

/* Mobile tightening for the ticker */
@media (max-width: 768px) {
  .promo-banner { padding: 6px 0; }
  .promo-banner .promo-track { gap: 14px; }
  .promo-banner .promo-item { padding: 0 0px; }
  .promo-banner .promo-text { font-size: 12px; }
}










/* shipping and phone */

.features-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #f6f7f9;
  padding: 40px 5%;
  gap: 20px;
}

.feature-box {
  background-color: #dfe4e8cc;
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box .icon {
  margin-bottom: 15px;
}

.feature-box .icon i {
  font-size: 32px;
  color: #111;
}

.feature-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.feature-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media screen and (max-width: 992px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 per row */
  }
}

@media screen and (max-width: 600px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 per row */
    gap: 16px;
    padding: 30px 4%;
  }

  .feature-box {
    padding: 20px 10px;
  }

  .feature-box h4 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }

  .feature-box .icon i {
    font-size: 28px;
  }
}







/* loaders */

.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.global-loader.hidden {
  display: none;
}

.loader-wrapper img {
  width: 80px;
  height: 80px;
}



.global-loader {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.global-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}




/* Auth CTA button */
.auth-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  transition: transform .05s ease, background .2s ease, color .2s ease;
}
.auth-cta:hover { background: #111; color: #fff; }
.auth-cta:active { transform: translateY(1px); }

/* Tuck the mobile CTA nicely */
.auth-cta--mobile { margin-top: 12px; display: block; text-align: center; width: 40%; }









/* ======================================= auth_guird ==================================================== */



/* ===== Auth Guard ===== */
.authguard-overlay{
  position: fixed; inset: 0;
  display: none; /* toggled to flex */
  align-items: center; justify-content: center;
  background: rgba(17, 24, 39, 0.6);
  z-index: 999999; /* over everything else */
}
.authguard-overlay.show{ display: flex; }

.authguard-modal{
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  padding: 22px 20px 18px;
  position: relative;
}
.authguard-close{
  position:absolute; top:8px; right:10px;
  border:0; background:transparent; font-size:28px; line-height:1; cursor:pointer;
}
.authguard-text{ color:#374151; margin:8px 0 16px; text-align: center;}
.authguard-actions{ display:flex; gap:10px; flex-wrap:wrap; justify-content: center;}

.authguard-btn{
  display:inline-block; padding:10px 16px; border-radius:8px;
  border:1px solid #e5e7eb; background:#fff; color:#111827;
  text-decoration:none; cursor:pointer;
}
.authguard-primary{ background:#5e2ca5; color:#fff; border-color:#5e2ca5; }
.authguard-ghost{ background:#f9fafb; }

body.authguard-locked{ overflow:hidden; } /* prevent background scroll */






/* ============================= Mandatory Auth Guaird ============================================ */


/* Reuse .authguard-* styles from the first guard */
.authguard-overlay{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(17,24,39,.6);z-index:1000000}
.authguard-overlay.show{display:flex}
.authguard-modal{width:min(520px,89vw);background:#fff;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.25);padding:22px 15px 18px;position:relative}
.authguard-text{color:#374151;margin:8px 0 16px}
.authguard-actions{display:flex;gap:10px;flex-wrap:wrap}
.authguard-btn{display:inline-block;padding:10px 16px;border-radius:8px;border:1px solid #e5e7eb;background:#fff;color:#111827;text-decoration:none;cursor:pointer}
.authguard-primary{background:#5e2ca5;color:#fff;border-color:#5e2ca5}
body.authguard-locked{overflow:hidden}





#searchBar.open { display: block; } /* if you hide it by default */
.srch-item:hover, .srch-item:focus {
  background: #f8f9fb;
  outline: none;
}





/* =================================================Nav Bar Ad Roll================================================================== */


/* .promo-banner{width:100%;background:#0f172a;color:#fff;font-size:14px;line-height:1.2;padding:8px 0;overflow:hidden}
.promo-viewport{position:relative;overflow:hidden;width:100%}
.promo-track{white-space:nowrap;display:inline-block;will-change:transform}
.promo-item{display:inline-flex;align-items:center;gap:6px;padding:0 18px}
.promo-icon{opacity:.9}
.promo-text a{color:#22d3ee;text-decoration:underline}
.promo-sep{opacity:.5}

 */










/* =================================================terms.js================================================================== */





/* Make the search bar a new stacking context above banners */
.header .search-bar-container {
  position: relative;      /* ensure abs-children anchor here */
  z-index: 2000;           /* higher than your banner */
}

/* The dropdown itself should be way on top */
#searchResults {
  position: absolute;      /* already set in JS but safe to keep */
  z-index: 99999;          /* above everything else */
  /* optional: if a parent had overflow hidden, prevent clipping: */
  overflow: auto;
}



/* Mobile-only search input styles */
@media (max-width: 768px) {
  #searchBar .search-input {
    width: 92%;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
}






