/* everything below is for the navbar changes*/


body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 22, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.age-gate-overlay.is-visible {
  display: flex;
}

.age-gate-modal {
  background: #0e1424;
  border-radius: 18px;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  color: #fff;
  text-align: center;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.55);
  font-family: "Poppins", sans-serif;
}

.age-gate-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.age-gate-modal p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.age-gate-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.age-gate-actions button {
  flex: 1 1 140px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.age-gate-actions button.primary {
  background: #69cee9;
  color: #0a1222;
}

.age-gate-actions button.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

body.age-gate-locked {
  overflow: hidden;
}

@media (max-width: 520px) {
  .age-gate-modal {
    padding: 1.5rem;
  }
  .age-gate-actions button {
    flex-basis: 100%;
  }
}

.top-info-bar {
  background: rgba(10, 18, 34, 0.92);
  color: #e4efff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 20;
}

.top-info-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0.35rem 1.5rem;
  position: relative;
}

.top-info-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.top-info-link,
.top-info-link-btn {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-info-link-btn {
  background: transparent;
  border: none;
  padding: 0;
}

.top-info-link-btn:focus {
  box-shadow: none;
}

.top-info-link:hover,
.top-info-link-btn:hover {
  opacity: 1;
}

.top-info-links .dropdown-menu {
  background: rgba(10, 18, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 16rem;
  padding: 0.5rem 0;
}

.top-info-links .dropdown-item,
.top-info-links .dropdown-item-text {
  color: #e4efff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.top-info-links .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #69CEE9;
}

.info-rotator {
  flex: 1 1 280px;
  min-height: 1.25rem;
  position: relative;
  overflow: hidden;
}

.info-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(35%);
  animation: infoMessageCycle 12s linear infinite;
}

.info-message:nth-child(2) {
  animation-delay: 4s;
}

.info-message:nth-child(3) {
  animation-delay: 8s;
}

@keyframes infoMessageCycle {
  0% { opacity: 0; transform: translateY(35%); }
  6% { opacity: 1; transform: translateY(0); }
  28% { opacity: 1; transform: translateY(0); }
  33% { opacity: 0; transform: translateY(-35%); }
  100% { opacity: 0; transform: translateY(-35%); }
}

@media (max-width: 768px) {
  .top-info-bar {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    height: 2.2rem;
    min-height: 2.2rem;
  }
  .top-info-inner {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.65rem;
    height: 100%;
    text-align: center;
  }
  .info-rotator {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .info-message {
    font-size: 0.55rem;
    letter-spacing: 0.045em;
    line-height: 1.15;
    animation: infoMessageCycle 12s linear infinite;
    animation-fill-mode: both;
  }
  .top-info-links {
    position: static;
    transform: none;
    margin-left: 0;
    gap: 0.35rem;
  }
  .top-info-link,
  .top-info-link-btn {
    font-size: 0.58rem;
    letter-spacing: 0.045em;
  }
}

@media (max-width: 480px) {
  .top-info-inner {
    padding: 0 0.45rem;
  }
  .info-rotator {
    min-height: 1.2rem;
  }
  .info-message {
    font-size: 0.5rem;
    letter-spacing: 0.035em;
  }
  .top-info-links {
    gap: 0.25rem;
  }
  .top-info-link,
  .top-info-link-btn {
    font-size: 0.5rem;
    letter-spacing: 0.035em;
  }
}

/* Navbar text styling */
.navbar-nav .nav-link {
  font-family: "Poppins", inherit;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #ffffff !important;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  opacity: 1;
  transform: translateY(-1px);
}






.bg-body-tertiary{
    height: 15vh;
    background-color: transparent !important;
    z-index: 2 !important;

    
}


.nav-link, .nav-active{

    color: white !important;
}



.navbar .container-fluid{
    position: relative;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.navbar-expand-lg .navbar-collapse{

    justify-content: flex-end !important;
    align-items: center !important;
    padding-right: 6% !important;
    
    
}

@media (max-width: 991.98px){
    .navbar .container-fluid{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar-top-actions{
        flex-direction: row-reverse;
    }
    .navbar-collapse{
        position: absolute;
        top: calc(100% + 8px);
        left: 1rem;
        right: 1rem;
        width: auto;
        max-width: calc(100vw - 2rem);
        background: rgba(4,9,22,.97);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;
        padding: 18px 20px;
        box-shadow: 0 18px 40px rgba(0,0,0,.55);
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
        transition: opacity .18s ease, transform .2s ease;
        pointer-events: none;
    }
    .navbar-collapse.collapsing,
    .navbar-collapse.show{
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
    .navbar-nav{
        width: 100%;
        gap: 12px !important;
    }
    .navbar-nav.ms-auto{
        margin-left: 0 !important;
    }
    .navbar-nav .nav-link{
        width: 100%;
        text-align: left;
        padding: 10px 0;
        color: #ffffff !important;
        opacity: 1 !important;
        font-size: 0.95rem;
    }
    .navbar-nav .dropdown-menu{
        position: static;
        float: none;
        width: 100%;
        margin-top: 6px;
        background: rgba(2,5,14,.9);
        border: 1px solid rgba(255,255,255,.08);
    }
    .navbar-nav .dropdown-item{
        color: #f8fafc;
    }
}

background: rgba(4, 9, 22, 0.97);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);


/* end of navbar changes */

/* Dropdown menu positioning */
@media (min-width: 992px) {
  .navbar-nav .dropdown-menu {
    min-width: 320px;
  }
}

/* Shopping cart icon styling */
.cart-icon-wrapper {
  position: relative;
  margin-left: 1rem;
}

.cart-icon {
  position: relative !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0 !important;
}

.cart-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #69CEE9;
  color: #0a1222;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-icon:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* default (desktop / wide) */
/* wrapper fills the screen */
.video-wrapper {
  position: fixed;
  inset: 0;          /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  overflow: hidden;  /* hide edges when we shift video around */
  z-index: -1;       /* keep it behind navbar */
}

/* the actual <video> */
#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.logo{
    padding-top:3%;
    width: 150px;
    height: 150px;
}

.header_container{
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.location_section {
  position: relative;
  z-index: 2;        /* stay above video */
  margin-top: 400px; /* this is the spacing you’re asking for */
  text-align: center;
  color: #fff;

}

.locations_header{
    font-size: 4rem;
}

.main_title{
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    padding: 0;
}

h1.main_title {
  margin-bottom: 2.5rem;
}

.sub_title{
    font-size: 2rem;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-top: -1rem;
}

.locations_sub_header{
    line-height: 100%;
    font-size: 1.8rem;
}





@media (max-width: 1000px) {
  .main_title{
    font-size: 2.5rem;
  }

  .sub_title{
    font-size: 1.2rem;
  }
}

@media (max-width: 800px) {
  .main_title{
    font-size: 2.0rem;
  }

  .sub_title{
    font-size: 0.8rem;
  }
}

@media (max-width: 760px) {
  .main_title{
    padding-top: 9%;
    font-size: 1.5rem;
  }

  .sub_title{
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .locations_header {
    font-size: 2.2rem;
  }
  .locations_sub_header {
    font-size: 1rem;
    line-height: 1.35;
    padding: 0 1rem;
  }
}

@media (max-width: 400px) {
  .main_title{
    padding-top: 15%;
    
  }

  
}






.shop_photos {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.slideshow-wrapper {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 500px;
  color: white;
}


.slideshow-container {
  position: relative;
  margin: auto;
  width: 100%;
  aspect-ratio: 16 / 9;      /* choose any ratio you like */
  overflow: hidden;
}


.dots-container {
  text-align: center;
  padding: 15px 0;
}
/* Hide the images by default */
.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.slideshow-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


.slidefade {
  animation: slidefade 1.5s both;
}

@keyframes slidefade {
  from { opacity: .4; }
  to   { opacity: 1; }
}



/* Card-ish container for each location */
.cardish{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* Same shape for both slideshows */
.slideshow-container{
  position:relative; width:100%;
  aspect-ratio:16/9; overflow:hidden; border-radius:12px;
}
.mySlides{ display:none; width:100%; height:100%; }
.slideshow-container img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Fade class that avoids Bootstrap .fade clash */
.slidefade{ animation:slidefade 1.2s both; }
@keyframes slidefade{ from{opacity:.4} to{opacity:1} }

/* Headers + chips */
.location-header{ margin-bottom:.75rem; }
.location-title{ margin:0 0 .25rem 0; color:#fff; }
.location-address{ margin:0 0 .5rem 0; opacity:.9; color:#fff; }
.chips{ display:flex; gap:.5rem; flex-wrap:wrap; }
.chips span{
  font-size:.8rem; padding:.25rem .5rem; border-radius:999px;
  background:rgba(255,255,255,.14); color:#fff; border:1px solid rgba(255,255,255,.18);
}

/* Buttons under each gallery */
.location-actions{ display:flex; gap:.5rem; margin-top:.75rem; }

/* Arrows look cleaner on glass card */
.prev, .next{
  color:#fff; text-shadow:0 2px 8px rgba(0,0,0,.5);
  background:rgba(0,0,0,.25); width:36px; height:36px; border-radius:999px;
  display:grid; place-items:center;
}

.btn-primary{
background-color: #69CEE9 !important;
border-color: #CEE9 !important;
}



.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0 1.5rem;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(105,206,233,0.18), transparent),
    rgba(4, 9, 18, 0.96);
  color: #f5f5f5;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
  color: #69CEE9;
}

.footer-brand {
  min-width: 170px;
}



.footer-logo-top {
  font-weight: 600;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.footer-logo-bottom {
  font-weight: 400;
  font-size: 0.6rem;
}

.footer-tagline {
  font-size: 0.8rem;
  max-width: 190px;
  opacity: 0.9;
  margin: 0;
}

.footer-link {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 0.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #69CEE9;
  transform: translateY(-1px);
}

.footer-note {
  font-size: 0.7rem;
  opacity: 0.75;
  margin-top: 0.6rem;
}

.footer-warning {
  font-size: 0.72rem;
  font-weight: 600;
  color: #f7b267;
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 1.7rem;
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}


/* Center the two option cards perfectly */
#fulfillmentOptions { justify-items: stretch; }
#optPickup, #optDelivery { align-items: center; }

/* Make the summary buttons full-width & centered */
.order-summary .actions .btn { width:100%; text-align:center; }


.footer{
   background-color: white;
   border-radius: 10%;
}


/* Right-side actions: cart + hamburger */
.navbar-top-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Make the top cart icon feel like an icon button */
.cart-icon--top{
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 6px 6px !important;
  line-height: 1;
}

.navbar .cart-icon{
  color: #0a1222 !important; /* makes SVG stroke visible because it uses currentColor */
}


/* Make hamburger visible on white navbar */
.navbar .navbar-toggler{
  border-color: rgba(10, 18, 34, 0.25) !important;
}

.navbar .navbar-toggler-icon{
  filter: invert(1) grayscale(1) brightness(0.15) !important;
}



.navbar-top-actions{
  display: flex;
  align-items: center;
  gap: 20px; /* was ~10px — bump it */
}


/* --- Mobile header icon buttons (cart + hamburger) --- */
.navbar-top-actions{
  display: flex;
  align-items: center;
  gap: 18px; /* space between cart + hamburger */
}

/* hamburger button */
.navbar-top-actions .navbar-toggler{
  width: 46px;
  height: 46px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(10,18,34,0.22) !important;
  border-radius: 12px !important;
  background: rgba(255,255,255,0.92) !important;
}

.navbar-top-actions .navbar-toggler:focus{
  box-shadow: 0 0 0 0.18rem rgba(130, 198, 247, 0.35) !important;
}

/* custom hamburger bars */
.hamburger-bars{
  width: 22px;
  height: 2px;
  background: #0a1222;
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.hamburger-bars::before,
.hamburger-bars::after{
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #0a1222;
  border-radius: 2px;
}

.hamburger-bars::before{ top: -7px; }
.hamburger-bars::after{ top: 7px; }

@media (max-width: 991.98px){
  /* keep navbar + dropdown above hero content */
  .navbar{
    position: sticky;
    top: 0;
    z-index: 5000;
  }

  .navbar-collapse{
    z-index: 6000;
  }

  /* make sure the links pop */
  .navbar-collapse .nav-link{
    color: #ffffff !important;
    opacity: 1 !important;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 991.98px){
  .navbar-collapse{
    background: rgba(4,9,22,0.985) !important;
  }
}












