/* ============================================
   PRODUCTS PAGE SPECIFIC STYLES
   ============================================ */

/* Products Page Hero */
.products-hero {
  position: relative;
  padding: 6rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3d4a20 0%, #2d2d3a 100%);
}

/* Filter Bar */
.filter-bar {
  background-color: #2d2d3a;
  padding: 1rem 0;
  position: sticky;
  top: 90px;
  z-index: 40;
}

.filter-bar .filter-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-bar a {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  transition: all 0.15s ease;
}

.filter-bar a.active {
  background: linear-gradient(to right, #dab920, #9aa22d);
  color: white;
}

.filter-bar a.inactive {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b0b0b0;
}

.filter-bar a.inactive:hover {
  border-color: #dab920;
  color: #dab920;
}

/* Product Cards */
.product-card {
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card .image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  font-family: Arial, sans-serif;
}

.product-card .content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card .tagline {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-card h3 {
  font-family: Arial, sans-serif;
  color: #1c1c1c;
  font-size: 24px;
  margin-bottom: 0.75rem;
}

.product-card .description {
  font-family: Arial, sans-serif;
  color: #555;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.product-card .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-card .spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #444;
}

.product-card .spec-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.product-card .footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .price {
  font-family: Arial, sans-serif;
  font-size: 20px;
}

.product-card .enquire-btn {
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  transition: opacity 0.15s ease;
}

.product-card .enquire-btn:hover {
  opacity: 0.9;
}

/* Why Buy Section */
.why-buy-section {
  background-color: #2d2d3a;
  padding: 4rem 0;
}

.why-buy-section h2 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.why-buy-item {
  text-align: center;
  padding: 0 1rem;
}

.why-buy-item .divider {
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(to right, #dab920, #9aa22d);
  margin: 0 auto 1.25rem;
}

.why-buy-item h4 {
  font-family: Arial, sans-serif;
  color: white;
  font-size: 20px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.why-buy-item p {
  font-family: Arial, sans-serif;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.625;
}
