/* SHOP HERO */
.shop-hero {
  background: #120d09;
  padding: 30px 20px;
  text-align: center;
}

.shop-hero h1 {
  font-size: 3rem;
  color: #ffb347;
}

.shop-hero p {
  max-width: 600px;
  margin: 15px auto 0;
  color: #ccc;
}

/* SEARCH */
.shop-search {
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.shop-search input {
  width: 100%;
  padding: 12px 42px 12px 14px;
  border-radius: 8px;
  border: none;
  background: #1a1410;
  color: #fff;
}

.shop-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #ffb347;
}

/* FILTERS */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #333;
  background: #1a1410;
  color: #fff;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ffb347;
  color: #120d09;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 220px);
  justify-content: center;
  gap: 24px;
}

.product-card {
  background: #1a1410;
  border-radius: 12px;
  overflow: hidden;
}

.product-image {
  aspect-ratio: 3/4;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 16px;
}

.product-info h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.price {
  color: #ffb347;
  font-weight: 600;
}

/* RESULTS VIEW */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
}

.results-header h2 {
  color: #ffb347;
}

#results-count {
  color: #aaa;
  font-size: 0.9rem;
}

#back-btn {
  background: none;
  border: none;
  color: #ffb347;
  cursor: pointer;
  font-size: 0.9rem;
}

/* HIGHLIGHT SECTIONS */
.highlight-section {
  margin: 100px 0;
}

.highlight-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #ffb347;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}

/* BADGES */
.product-card {
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff5c5c;
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
}

.product-card.hot {
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.3);
}


/* UTILITY */
.hidden {
  display: none;
}