/* ===== PRODUCTS PAGE HERO BAR ===== */
.shop-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.shop-hero-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
}

.shop-hero-title span {
  color: var(--primary);
}

.shop-hero-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.25rem;
  max-width: 60ch;
}

.shop-hero-sub a {
  color: var(--primary);
  font-weight: 600;
}

/* ===== PRODUCT CARD ===== */
.view-details-hint {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* The card's only action. There is no cart — this opens WhatsApp with the
   product name already in the message. */
.enquire-btn {
  display: block;
  width: 100%;
  padding: 0.7rem;
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: all var(--transition);
}

.enquire-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ===== PRODUCT MODAL ===== */
.modal-variants { margin: 0.75rem 0; }

.variants-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.variants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variant-btn {
  padding: 0.45rem 0.85rem;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.variant-btn:hover { border-color: var(--primary); }

.variant-btn.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.product-modal-no-desc {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

/* ===== EMPTY / ERROR STATE ===== */
/* Both states offer a way to reach the shop — that is the page's whole job. */
.no-products .btn-primary,
.no-products .retry-btn {
  display: inline-block;
  margin-top: 1rem;
}

.no-products .btn-primary { margin-left: 0.5rem; }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
}

.contact-strip h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.contact-strip p {
  color: var(--text-muted);
  max-width: 55ch;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
