/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
font-family: 'Cinzel', serif;
  background-color: #fff;
  color: #222;
}

.category-card {
  width: 160px;
  height: 220px; /* consistent height for all cards */
  cursor: pointer;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.category-card img.category-img {
  width: 100px;
  height: 150px;
  object-fit: contain;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* maintain aspect ratio and cover container */
  z-index: 0;
}



.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 60px 20px;
  background-color: #fafafa;
}
/* 
.category-card {
  width: 160px;
  cursor: pointer;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.category-card img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
} */

.category-card:hover {
  transform: translateY(-5px);
}

.category-info {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

.badge {
  background-color: #ccc;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}



.navbar {
   display: flex;
  align-items: center;
  padding: 20px 50px;
 background: rgba(0, 0, 0, 0.9); /* Darker on scroll */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}



.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 100;
  line-height: normal;
}


.store-locator a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid white;
  border-radius: 4px;
}
.store-locator a:hover {
  background: white;
  color: #000;
}

/* Default: Hide the mobile store locator on larger screens */
.store-locator-mobile {
  display: none;
}

@media (max-width: 767px) {
  .store-locator {
    display: none;
  }
}

/* Mobile view: show the store locator inside the menu */
@media (max-width: 767px) {
  .store-locator-mobile {
    display: block;
    margin-top: 10px;
  }

  .store-locator-mobile a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: block;
    padding: 10px;
    border: 2px solid white;
    text-align: center;
    border-radius: 4px;
  }

  .store-locator-mobile a:hover {
    background: white;
    color: black;
  }
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.logo img {
  height: 60px;
}

.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


/* Drawer base styles */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100%;
  background-color: #111;
  color: white;
  z-index: 1000;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

/* Show drawer */
.mobile-drawer.active {
  right: 0;
}

/* Drawer Close Button */
.drawer-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Drawer nav styles */
.drawer-nav {
  list-style: none;
  padding: 0;
  margin-top: 3rem;
}

.drawer-nav li {
  margin-bottom: 1.5rem;
}

.drawer-nav a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}

.drawer-nav a:hover {
  color: #ccc;
}


.mobile-drawer.active ~ .navbar .hamburger {
  display: none;
}/* FOOTER SECTION */

.footer {
  background-color: #101213;
  color: #fff;
  /* font-family: sans-serif; */
  
}

.footer-top {
  display: flex;
  border-bottom: 1px solid #323232;
}

.footer-column {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #323232;
}

.footer-column2 {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
}

.footer-column:last-child {
  border-right: none;
}

.footer-item {
  padding-bottom: 2px;
}

.footer-bottom {
  padding: 15px 20px;
  font-size: 14px;
  background-color: #101213;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left, .footer-right {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-bottom{
    width: 85vw;
    margin: 0 auto;
    padding: 0;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
   display: block;
    position: absolute;
    top: 20px;  /* adjust to vertically center or as needed */
    right: 20px; /* keep it on the right */
    font-size: 28px;
    cursor: pointer;
    z-index: 1100; /* above nav-links */
  }
  .footer-bottom{
    width: 85vw;
    margin: 0 auto;
    padding: 0;
  }
}

@media (max-width: 592px){
  .footer-bottom-container {
    padding-bottom: 25px;
  }
}