* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
	font-family: sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
}



/* Header Design start */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 2.5rem; */
  height: auto;
  line-height: 2.5rem;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-align: center;
  z-index: 100;
   overflow-x: hidden;
  max-width: 100%;
  word-wrap: break-word; /* ensure long words break */
}

.dark-header {
  position: relative; /* creates stacking context */
  z-index: 1;         /* less than announcement-bar */
  padding-top: 2.5rem; /* push content down so it’s not behind announcement-bar */
  height: calc(100vh - 2.5rem); /* full viewport minus announcement */
  overflow: hidden;
}

/* Make swiper fill entire hero section */
.dark-header .swiper {
  width: 100%;
  height: 100%; /* fills .dark-header */
  position: relative;
  z-index: 1;
}

/* Swiper wrapper fills swiper */
.dark-header .swiper-wrapper {
  height: 100%;
}

/* Each slide fills the container */
.dark-header .swiper-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center; /* center content horizontally */
  align-items: center;     /* center content vertically */
  position: relative;
}


.swiper-slide {
  display: flex;            /* Enable flexbox */
  justify-content: center;  /* Horizontally center */
  align-items: center;      /* Vertically center */
  position: relative;       /* Ensure relative positioning for other elements */
}



/* NAVIGATION BAR ON TOP */
.navbar {
 position: absolute;
  top: 2.5rem;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  /* ? Full transparency + glass effect */
  background: transparent; /* FULL transparency */
  /* background-color: rgba(0, 0, 0, 0.4); */
	backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .header-button{
	color: var(--davidoff-primary-white, #fffdfa);
    /* color: #c59949;  */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .84px;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.05); /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}

.navbar .login-header-button{
	color: var(--davidoff-primary-white, #fffdfa);
    /* color: #c59949;  */
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: .84px;
    text-transform: uppercase;
    background-color: #28a745; /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}

/* Shared Hover Effect for All Header Buttons */
.header-button:hover,
.header-button:focus {
    color: #ffffff; /* Gold hover color */
    background-color: #0F0F0FF2; /* Slight light overlay on dark bg */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    border-radius: 4px;
    padding: 6px 12px; /* Add padding to emphasize the hover zone */
    transition: all 0.3s ease-in-out;
}

/* Active / Clicked State */
.header-button:active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #e0c170;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: scale(0.98); /* Slight button press effect */
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;  /* Vertically center all li elements */
    list-style: none;     /* Remove default list styling */
}

.nav-left li
.nav-right li {
    display: flex;
    align-items: center;  /* Ensure content inside <li> is vertically aligned */
}

.nav-left li a,
.nav-right li a {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left li a:hover,
.nav-right li a:hover {
  color: #d4af37;
}

.navbar .logo {
  width: 200px;
  height: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;  /* Center the logo inside the navbar */
}
.navbar .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-left {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start; /* Align the nav-left items to the left */
  position: absolute;
  left: 2rem; /* Add space from the left edge */
}

.nav-right {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end; /* Align the nav-right items to the right */
  position: absolute;
  right: 2rem; /* Add space from the right edge */
}

/* Shop Section*/
.shop-dropdown {
    position: relative;
    display: inline-block;
    text-align: center;
}

.shop-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* directly below the li */
    left: 50%;
    transform: translateX(-20%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 140px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    text-align: left;
}

.shop-dropdown-menu li {
    list-style: none;
  position: relative;
}

.shop-dropdown-menu a,
.accessories-submenu a,
.brand-submenu a {
  display: flex;
  align-items: center; /* vertical alignment */
  padding: 8px 16px;
  text-decoration: none;
  color: #333 !important;
  background: none;
  text-align: left;
}

.shop-dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.accessories-submenu,
.brand-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  position: absolute;
  top: 0; /* align with the top of the parent li */
  left: calc(100% - 4px);
  background-color: #fff;
  border: 1px solid #ccc;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}

.accessories-submenu li,
.brand-submenu li {
  padding: 8px 16px; /* adjust if needed */
  margin: 0;
}

.accessories-submenu li a,
.brand-submenu li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 0;
}

.accessories-submenu li:hover,
.brand-submenu li:hover {
  background-color: #f5f5f5;
}

.has-submenu {
  padding: 0;
  margin: 0;
}

.has-submenu > a {
  padding: 8px 16px; /* adjust as needed */
  margin: 0;
}

.accessories-submenu li,
.brand-submenu li {
  margin: 0;
  padding: 8px 16px;
}

.has-submenu:hover .accessories-submenu {
  display: block;
}
.has-submenu:hover .brand-submenu {
  display: block;
}

.scrollable-brands {
    max-height: 265px; /* Adjust height as needed */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px; /* prevent scrollbar overlapping content */
    width: 220px; /* ⬅️ Increase width here */
}

/* Optional: Better scrollbar style (Webkit) */
.scrollable-brands::-webkit-scrollbar {
    width: 6px;
}

.scrollable-brands::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scrollable-brands::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scrollable-brands::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.menu-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
}
/* Shop Section*/

/* search Section*/
.nav-search {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.search-container {
  position: relative;
}

.search-icon-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;         /* Adjust as needed */
  height: 32px;        /* Keep it proportional */
  pointer-events: none;
  opacity: 0.7;
  object-fit: contain; /* Keeps the image scaled properly */
}

.search-input {
  width: 100%; padding: 8px 40px 8px 35px; border: 1px solid #ccc; border-radius: 20px;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  font-size: 16px;
}

.suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* search Section*/

/* More Section*/
.more-dropdown {
    position: relative;
    display: inline-block;
    text-align: center;
}

.more-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* directly below the li */
    left: 10%;
    transform: translateX(-20%);
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 140px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    text-align: left;
}

.more-dropdown-menu li {
    list-style: none;
}

.more-dropdown-menu a {
    display: block;
    width: 100%;
    padding: 8px 16px;
  white-space: nowrap; /* prevents line break */
    text-decoration: none;
    color: #070606 !important;
    background: none;
    text-align: left;
}

.more-dropdown-menu a:hover {
    background-color: #f0f0f0;
}
/* More Section*/


/* Profile Section*/
.profile-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    left: 50%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 140px;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    text-align: left;
}

.profile-dropdown .dropdown-menu li {
    list-style: none;
}

.profile-dropdown .dropdown-menu a,
.profile-dropdown .dropdown-menu button {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    background: none;
    text-align: left;
}

.profile-dropdown .dropdown-menu a:hover,
.profile-dropdown .dropdown-menu button:hover {
    background-color: #f0f0f0;
}
/* Profile Section*/

/* Hide hamburger by default */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 9999;
}

/* mobile menu by default */
.mobile-menu {
  display: none;
  position: absolute; /* or use fixed for full-screen overlay */
  top: 0px; /* adjust based on header height */
  left: 0;
  width: 50%;
  min-width: 400px;
  background-color: white;
  z-index: 999;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 90vh; /* Ensures it doesn't exceed screen height */
    overflow-y: auto;  /* Enables vertical scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
}

.mobile-menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-search-icon {
    cursor: pointer;
}

.mobile-menu.show {
  display: block; /* Show when .show class is added */
}

.mobile-search-container {
  position: relative; 
  width: 100%; 
  margin-top:20px;
}

.mobile-menu ul {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu.show > ul {
  display: block;
}

.mobile-menu ul.nav-left,
.mobile-menu ul.nav-right {
  display: none; /* ensure ul is block */
}

.mobile-menu ul.nav-left li,
.mobile-menu ul.nav-right li {
  margin: 10px 0; /* spacing between items */
}

.mobile-menu ul li a.header-button {
  display: block; /* make the <a> full width */
  padding: 10px 15px;
  text-decoration: none;
  color: #8d8585; /* example */
  text-align: left;
}

.mobile-menu a img {
  vertical-align: middle;
}

.mobile-menu a[href] {
 color: #333; /* default */
}



/* HERO CONTENT */
.hero-content {
   position: relative;
  z-index: 10;
  color: white;
  max-width: 700px;
  padding: 2rem;
  text-align: center;       /* Center text inside */
  margin: 0 auto;           /* Center block horizontally if needed */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* Center content vertically inside hero-content */
  align-items: center;      /* Center content horizontally inside */
  height: 100%;             /* Ensure it takes up full height of swiper-slide */
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-button {
  background-color: #c59949;
  color: #0f0f0f;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #b78e2c;
}

/* ARROWS */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: #c59949;
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  z-index: 2;
}

.nav-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.nav-button.left {
  left: 20px;
}

.nav-button.right {
  right: 20px;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Header Design END */


/* Product Carousel start */
/* --- Product Carousel Wrapper --- */
.product-carousel-container {
  margin-top: 24px;
  margin-bottom: 24px;
  z-index: 1
}
.product-carousel-container .product-carousel-heading {
  text-align: center;
  margin-bottom: 24px;
}


.product-carousel-container .product-carousel-heading .heading-container{
      display: flex;
    flex-direction: column;
}

.product-carousel-container .product-carousel-heading .heading1{
      font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 0px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.product-carousel-container .product-carousel-heading .underline{
	margin: 0 auto;
	height: 2px;
    background-color: rgb(197, 153, 73);
    width: 50%;
}

.product-carousel-container .product-carousel-heading .heading2{
	margin-top:15px;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-carousel-heading h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.product-carousel-heading h2 span {
  color: #b48b57; /* optional: brand color for Davidoff */
}

.product-carousel-heading p {
  font-size: 16px;
  margin-top: 6px;
}

.product-carousel-swiper {
  padding: 20px 0;
}

.product-carousel-swiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.product-card-bg {
  position: relative;
  width: 100%;
  max-width: 340px; /* increased from 280px */
  height: 420px;     /* increased from 360px */
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card-bg:hover {
  transform: translateY(-5px);
}

.product-card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  color: #fff;
  text-align: center;
}

.product-card-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.product-card-content p {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
}

.product-btn {
  display: inline-block;
  background-color: #c59949;
  color: #0f0f0f;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.product-btn:hover {
  background: #f1f1f1;
}

/* Optional Swiper bullets styling */
.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #333;
}
/* Product Carousel End */



/* Products  carousel swiper coverflow start*/
.product-coverflow-container {
  margin: 0 auto;
  font-size: 14px;
  color: #000;
  padding: 0;
  max-width: 1000px;
  width:70%;
  margin-top: 60px;
}

.product-coverflow-container .product-coverflow-heading {
  text-align: center;
  align-items: center;
    justify-content: center;
    margin: 0px auto;
  margin-bottom: 30px;
}

.product-coverflow-container .product-coverflow-heading .heading-container{
      display: flex;
    flex-direction: column;
}

.product-coverflow-container .product-coverflow-heading .heading1{
      font-weight: 400;
    font-style: normal;
    font-size: 16px;
    /* line-height: 0px; */
    line-height: 1.4;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.product-coverflow-container .product-coverflow-heading .underline{
	margin: 0 auto;
	height: 2px;
    background-color: rgb(197, 153, 73);
    width: 50%;
}

.product-coverflow-container .product-coverflow-heading .heading2{
	margin-top:15px;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 3px;
    text-transform: uppercase;

}

.product-coverflow-container .swiper-coverflow-container {
  display: flex;
  justify-content: center;
  width:100%;
  position:relative;
  max-width:1440;
  
}
.swiper-coverflow-container .swiper-wrapper {
  width: 800;
}

.swiper-coverflow-container .swiper-slide{
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
   align-items: flex-end; /* 👈 Pushes content to the bottom */  
  padding: 20px; /* to give space at the bottom */
}

.swiper-coverflow-container .slide-content {
  text-align: center;
  background: rgba(0, 0, 0, 0.4); /* optional dark overlay */
  padding: 20px;
  border-radius: 10px;
	
}

.swiper-coverflow-container .product-name {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.swiper-coverflow-container .product-description {
  font-size: 16px;
  margin-bottom: 20px;
}

.swiper-coverflow-container .button-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.swiper-coverflow-container .btn {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.swiper-coverflow-container .btn-transparent {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.swiper-coverflow-container .btn-transparent:hover {
  background: white;
  color: black;
}

.swiper-coverflow-container .btn-golden {
  background-color: #c59949;
  color: #0f0f0f;
  font-weight: bold;
}

.swiper-coverflow-container .btn-golden:hover {
  background-color: #b38734; /* slightly darker gold */
  color: #fff; /* optional: white text on hover */
}


/* Products  carousel swiper coverflow end*/


/* About Us Section*/
	  
.about-us {
   display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  margin: 0 6rem; /* Add margin to left and right */
  background-color: #ffffff; 
  color: #000000; 
  gap: 2rem;
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.about-content  .heading1{
      font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 0px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.about-content  .underline{
	height: 2px;
    background-color: rgb(197, 153, 73);
    width: 50%;
}
.about-content  .heading2{
	margin-top:15px;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
    line-height: 45px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.7);
  object-fit: cover;
}

/* About us Section*/


/* Store Locator Section*/
.store-locator {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
  color: #111;
}

.store-locator-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.store-info {
  flex: 1 1 400px;
}

.store-info .heading1 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.store-info .underline {
  width: 165px;
  height: 2px;
  background-color: #c59949;
  margin-bottom: 1rem;
}

.store-info p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.store-info address {
  font-style: normal;
  line-height: 1.6;
  font-size: 0.95rem;
}

.store-info a {
  color: #c59949;
  text-decoration: none;
}

.store-info a:hover {
  text-decoration: underline;
}

.map-container {
  flex: 1 1 400px;
  min-height: 300px;
}



/* Store Locator Section*/


/* 19 years gate start*/
#ageGate {
  display: none; /* hide initially */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  z-index: 9999;
  /* removed display: flex here */
}

.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}


.age-gate-popup {
  text-align: center;
  background: #1c1c1c;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  color: white;
  max-width: 400px;
  width: 90%;
}

.age-gate-question {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.age-gate-subtext {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ccc;
}

.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.age-gate-confirm,
.age-gate-decline {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  min-width: 130px;
  transition: background-color 0.3s ease;
}

.age-gate-confirm {
  background-color: #c59949;
  color: #fff;
}

.age-gate-confirm:hover {
  background-color: #b38734;
}

.age-gate-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.age-gate-decline:hover {
  background: white;
  color: #1c1c1c;
}

#restrictUnderage {
  display: none;
}
/* 19 years gate end*/




/* Mobile styles */

@media screen and (max-width: 768px) {
  .about-us {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 1rem; /* Reduce margin on smaller screens */
    padding: 3rem 1rem;
    text-align: center; /* Center content text */
  }

  .about-content,
  .about-image {
    max-width: 100%;
    flex: none; /* Prevent flex-grow/shrink */
  }

  .about-content .underline {
    height: 2px;
    background-color: rgb(197, 153, 73);
    width: 50%;
    margin: 0 auto; /* This centers it horizontally */
  }

  .about-image {
    text-align: center; /* Center image */
    margin-top: 2rem;
  }

  .about-content .heading2 {
    font-size: 28px;
    line-height: 35px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
}


@media screen and (max-width: 1024px) {
  .navbar {
    padding: 1rem;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 2rem;
    left: 10px;       /* distance from the left */
    font-size: 30px;  /* size of the hamburger icon */
    cursor: pointer;  /* pointer cursor on hover */
    z-index: 1000;    /* makes sure it’s on top of other elements */
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu li {
    position: relative;
  }

  .mobile-menu ul li {
    margin: 0.5rem 0;
  }

  .mobile-menu ul li a {
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    display: block;
  }

.mobile-menu .accessories-mobile-submenu {
  display: none;
  padding-left: 55px;
}

  
  .mobile-menu .accessories-mobile-submenu.open {
    display: block;
  }

.mobile-menu .has-submenu.open > .accessories-mobile-submenu {
  display: block;
}

.accessories-mobile-submenu-toggle {
  float: right;
  transition: transform 0.3s ease;
}

.has-submenu.open .accessories-mobile-submenu-toggle {
  transform: rotate(90deg);
}



  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .product-carousel-container .product-carousel-heading .heading2,
  .product-coverflow-container .product-coverflow-heading .heading2,
  .about-content .heading2 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media screen and (max-width: 768px) {
    .about-us {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .store-locator-container {
    flex-direction: column;
  }

  .store-info,
  .map-container {
    flex: 1 1 100%;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .product-carousel-container,
  .product-coverflow-container {
    width: 95%;
  }

  .product-carousel-container .product-carousel-heading .heading2,
  .product-coverflow-container .product-coverflow-heading .heading2 {
    font-size: 24px;
    line-height: 32px;
  }

  .product-card-bg {
    height: 350px;
  }

  .swiper-coverflow-container .product-name {
    font-size: 20px;
  }

  .swiper-coverflow-container .product-description {
    font-size: 14px;
  }

 

}

@media screen and (max-width: 480px) {
  .navbar .logo {
    width: 150px;
    height: auto;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .cta-button,
  .product-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .product-card-bg {
    height: 300px;
  }

  .product-carousel-container .product-carousel-heading .heading2,
  .product-coverflow-container .product-coverflow-heading .heading2 {
    font-size: 20px;
    line-height: 28px;
  }

  .age-gate-popup {
    padding: 20px 15px;
    max-width: 90%;
  }

  .age-gate-question {
    font-size: 18px;
  }

  .age-gate-subtext {
    font-size: 14px;
  }

  .age-gate-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .age-gate-confirm,
  .age-gate-decline {
    /* width: 100%; */
    margin: 8px 0;
  }
}