/* Products Overview Page Specific Styles */

.page {
  max-width: 1200px;
  padding: 32px 24px 64px;
}

/* Hero */
.page-hero {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: -120px;
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(26, 32, 28, 0.92) 0%, rgba(26, 32, 28, 0.86) 55%, rgba(41, 49, 43, 0.8) 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(179, 106, 60, 0.25), transparent 60%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 40px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-hero-text h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
}

.page-hero-text p {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  line-height: 1.7;
}

/* Product cards */
.product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  background: rgba(249, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 165, 142, 0.25);
  border-radius: 24px;
  padding: 28px 26px 26px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  border-color: rgba(154, 165, 142, 0.4);
}

.product-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--colour-accent-strong);
  font-weight: 600;
}

.product-card h2 {
  margin: 0;
  font-size: 22px;
}

.status-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(179, 106, 60, 0.15);
  color: var(--colour-accent-strong);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--colour-text-muted);
}

.product-card-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.product-card-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--colour-accent);
  font-weight: 600;
}

.product-card .btn-primary {
  margin-top: auto;
  justify-content: center;
}

/* CTA panel */
.cta-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(44, 53, 47, 0.95), rgba(26, 32, 28, 0.95));
  color: #f4f1e8;
}

.cta-panel p {
  color: rgba(244, 241, 232, 0.8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4f1e8;
  color: #1e241f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.cta-bubble:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
    padding: 60px 0;
    margin-bottom: -80px;
  }

  .page-hero-container {
    padding: 40px 24px;
  }

  .page-hero-text h1 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .cta-panel {
    padding: 28px;
  }
}
