.hero {
  width: 100%;
  aspect-ratio: 1496 / 317;
  max-height: 317px;
  min-height: 160px;
  background-image: url('image-25.png');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.049);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 16px;
}

.hero-title {
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(12px, 1.4vw, 15px);
  color: #333;
}

.breadcrumb a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb .sep {
  color: #666;
  font-size: 12px;
}

.breadcrumb .current {
  color: #555;
}

/* ===== TOOLBAR (Filter / Show / Sort) ===== */
.toolbar {
  width: 100%;
  background: #fbf1e0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 12px 16px;
  font-size: 14px;
  color: #222;
}

.toolbar .filter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}

.toolbar .view-icons {
  display: flex;
  gap: 10px;
}

.toolbar .view-icons span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  cursor: pointer;
}

.divider {
  width: 1px;
  height: 20px;
  background: #cfc4b0;
}

.results {
  flex: 1 1 100%;
  color: #444;
  order: 4;
}

.toolbar .control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.toolbar input,
.toolbar select {
  height: 32px;
  border: 1px solid #e2d6bd;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
}

.toolbar input {
  width: 56px;
  text-align: center;
}

.toolbar select {
  width: 140px;
  color: #999;
}

/* ===== PRODUCT GRID (Shop page needs this - was missing) ===== */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.products-section h2 {
  text-align: center;
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 40px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.bottom-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.bottom-products .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.btn-container {
  text-align: center;
  margin-top: 40px;
}

/* ===== FEATURE BAR ===== */
.feature-bar {
  display: flex;
  max-width: 1200px;
  margin: 100px auto 60px;
  justify-content: space-between;
  align-items: center;
  background-color: #f7ede1;
  border-radius: 6px;
  padding: 25px 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 200px;
  padding: 10px 15px;
}

.feature-item svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  stroke: #2b2b2b;
}

.feature-text h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #2b2b2b;
}

.feature-text p {
  margin: 0;
  font-size: 13px;
  color: #9a9a9a;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet and up (640px+) */
@media (min-width: 640px) {
  .toolbar {
    padding: 14px 24px;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .results {
    flex: 1;
    order: 0;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .toolbar {
    padding: 16px 32px;
  }
}

/* ===== Large tablet / small desktop (max-width: 992px) ===== */
@media (max-width: 992px) {
  .product-grid,
  .bottom-products .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Tablet (max-width: 768px) ===== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    aspect-ratio: unset;
    min-height: 220px;
    padding: 40px 16px;
  }

  .product-grid,
  .bottom-products .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .products-section,
  .bottom-products {
    padding: 30px 16px;
  }

  .feature-bar {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    margin: 40px auto;
  }

  .feature-item {
    width: 100%;
    min-width: 0;
  }
}

/* ===== Mobile (max-width: 576px) ===== */
@media (max-width: 576px) {
  .product-grid,
  .bottom-products .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .show-more-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

/* ===== Small mobile (max-width: 480px) ===== */
@media (max-width: 480px) {
  .hero {
    min-height: 200px;
    padding: 16px;
  }

  .toolbar {
    padding: 10px 12px;
    gap: 10px 14px;
  }

  .toolbar select {
    width: 100%;
  }

  .toolbar .control {
    width: 100%;
    justify-content: space-between;
  }

  .toolbar input {
    width: 48px;
  }

  .products-section h2 {
    margin-bottom: 24px;
  }
}