* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
 background-color: #fff;  
  color: #fff;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0); /* fully transparent */
  backdrop-filter: blur(0px); /* optional */
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
}
/* Navbar hover */
.navbar:hover {
  background: rgba(255, 255, 255, 0.8);
}

.nav-left, .nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-left a,
.nav-right a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: rgb(189, 189, 189);
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #111;
  letter-spacing: 2px;
  font-weight: 600;
  z-index: 999;  /* Ensure logo is above other elements */
}


.shop-page {
  padding: 120px 40px 60px;
  background-color: #f5f5f5;
  min-height: 100vh;
}

.shop-heading {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.price {
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.add-to-cart {
  padding: 10px 15px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.add-to-cart:hover {
  background-color: #333;
}


/* Off-Season Offer Popup Styles */
.offer-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.offer-popup-content {
  background: #111;
  color: #f5f5f5;
  padding: 40px 30px;
  border-radius: 10px;
  max-width: 400px;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.close-offer {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

.offer-popup-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.offer-popup-content .tagline {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 15px;
  opacity: 0.9;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.offer-list li {
  margin: 8px 0;
  font-size: 16px;
}

.fine-print {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* style bag teller */

.bag-link {
  position: relative;
}

.bag-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bag-count.show {
  opacity: 1;
  transform: scale(1);
}

.bag-count.pulse {
  animation: pulse 0.6s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}