.store-hero .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  z-index: 1;
}

.countdown {
  font-size: 1.8rem;
  color: #fff;
  margin: 25px 0;
  font-weight: 700;
}

.search-filter-bar {
  background: #111;
  padding: 25px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.search-bar {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.search-bar input {
  width: 100%;
  padding: 14px 50px 14px 16px;
  background: #222;
  border: none;
  border-radius: 8px;
  color: #fff;
}
.search-bar i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}
.filters select {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
}

.featured-products, .all-products {
  padding: 60px 20px;
  text-align: center;
}
.featured-products h2, .all-products h2 {
  font-size: 2.6rem;
  color: #FF0000;
  margin-bottom: 35px;
  text-shadow: 0 0 15px #FF0000;
}
.featured-grid, .merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.merch-product {
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.merch-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255,0,0,.7);
}
.merch-img {
  height: 260px;
  overflow: hidden;
}
.merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}
.merch-product:hover .merch-img img { transform: scale(1.1); }
.merch-info {
  padding: 18px;
  text-align: center;
}
.merch-info h3 { font-size: 1.2rem; color: #fff; margin-bottom: 8px; }
.merch-info .price { font-size: 1.5rem; color: #FF0000; font-weight: 700; }
.merch-info button {
  background: #FF0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}
.merch-info button:hover {
  background: #fff;
  color: #FF0000;
}

.cart-summary {
  position: fixed;
  right: 20px;
  top: 120px;
  width: 340px;
  background: #111;
  border: 2px solid #FF0000;
  border-radius: 14px;
  padding: 20px;
  z-index: 998;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #333;
}
.cart-total {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 15px 0;
  color: #FF0000;
}
.checkout-btn {
  width: 100%;
  background: #FF0000;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.floating-cart {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #FF0000;
  color: #fff;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
}
#floatingCartCount {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #000;
  color: #fff;
  font-size: 13px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
}