:root {
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --orange: #f97316;
}

* {
  box-sizing: border-box;
}

.shop-nav {
  background: #fff;
  border: 1px solid #a7f3d0;
  box-shadow: 0 12px 28px rgba(6, 95, 70, 0.1);
}

.search-bar input {
  width: 100%;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  font: inherit;
}

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
  background: #ecfdf5;
}

.hero {
  background: linear-gradient(120deg, var(--emerald-700), var(--emerald-500));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.panel {
  background: #fff;
  border: 1px solid #a7f3d0;
}

.cat-pill {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d1fae5;
  color: #065f46;
  text-decoration: none;
}

.cat-pill:hover {
  background: #ecfdf5;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 1rem;
  padding: 0.9rem;
  box-shadow: 0 12px 25px rgba(6, 95, 70, 0.08);
}

.thumb {
  height: 140px;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(145deg, #d1fae5, #ecfdf5);
}

.product-card h3 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 1.12rem;
}

.meta {
  margin: 0.2rem 0 0.45rem;
  color: #6b7280;
  font-size: 0.9rem;
}

.price {
  margin: 0;
  font-weight: 700;
  color: #065f46;
}

.sale {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
