/* ── EQUIPMENT CATALOG STYLES ──────────────────────────────────────────────── */

.catalog-section {
  margin-bottom: 4rem;
}

/* ── SECTION HEADER ─────────────────────────────────────────────────────── */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--green-deep);
  margin: 0 0 0.5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 440px;
  margin: 0;
}

.section-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.legend-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: white;
  border: 1px solid var(--cream-mid);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ── DISCLOSURE NOTICE ───────────────────────────────────────────────────── */

.disclosure-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(200,150,62,0.08);
  border: 1px solid rgba(200,150,62,0.3);
  border-radius: 3px;
  margin-top: 0.25rem;
}

.disclosure-notice svg { color: var(--amber); flex-shrink: 0; margin-top: 0.1rem; }

.disclosure-notice p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ── FEE NOTE ─────────────────────────────────────────────────────────────── */

.price-fee-note {
  display: block;
  font-size: 0.65rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
  max-width: 200px;
  text-align: right;
}

/* ── SECTION DIVIDER ─────────────────────────────────────────────────────── */

.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 3rem 0 4rem;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.divider-badge {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: 2px;
  background: rgba(200,150,62,0.06);
}

/* ── MODEL GRID ───────────────────────────────────────────────────────────── */

.model-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.model-grid--plants {
  grid-template-columns: 1fr 1fr;
}

/* ── MODEL CARD ───────────────────────────────────────────────────────────── */

.model-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.model-card:hover {
  box-shadow: 0 8px 28px rgba(25,58,43,0.1);
}

.model-card--plant {
  border-color: rgba(200,150,62,0.25);
}

/* ── MODEL IMAGE ──────────────────────────────────────────────────────────── */

.model-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
}

.model-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-capacity-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green-deep);
  color: var(--amber);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.model-capacity-badge--plant {
  background: var(--amber);
  color: var(--green-deep);
}

/* ── MODEL BODY ──────────────────────────────────────────────────────────── */

.model-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.model-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.model-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green-deep);
  margin: 0 0 0.2rem;
  line-height: 1.1;
}

.model-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.model-price-block {
  text-align: right;
  flex-shrink: 0;
}

.model-price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-deep);
  display: block;
}

.price-financing {
  display: block;
  font-size: 0.7rem;
  color: var(--amber);
  font-weight: 500;
  margin-top: 0.2rem;
}

.model-description {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── COMPONENTS ──────────────────────────────────────────────────────────── */

.model-components {
  background: var(--cream);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.components-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.6rem;
}

.components-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.components-list li {
  font-size: 0.75rem;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--cream-mid);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ── MODEL ACTIONS ───────────────────────────────────────────────────────── */

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: auto;
}

.checkout-form {
  flex-shrink: 0;
}

.btn-buy-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-buy-now:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,150,62,0.35);
}

.btn-buy-now:active { transform: translateY(0); }

.btn-secondary-link {
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--cream-mid);
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn-secondary-link:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-inquire {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(200,150,62,0.5);
  color: var(--amber-dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-inquire:hover {
  background: rgba(200,150,62,0.08);
  border-color: var(--amber);
}

.lead-time-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

.lead-time-note svg { color: var(--amber); flex-shrink: 0; }

/* ── GENERAL INQUIRY CTA ─────────────────────────────────────────────────── */

.general-inquiry-cta {
  background: var(--green-deep);
  border-radius: 4px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
  margin: 0 0 0.6rem;
}

.cta-text p {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  margin: 0;
  max-width: 440px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--green-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(200,150,62,0.3);
}

.btn-cta-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(250,247,242,0.2);
  color: rgba(250,247,242,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 3px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cta-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .model-grid--plants { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: 1rem; }
  .section-legend { justify-content: flex-start; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { max-width: 100%; }
  .cta-actions { width: 100%; }
  .btn-cta-primary { display: block; }
}

@media (max-width: 600px) {
  .model-body { padding: 1.25rem; }
  .model-header-row { flex-direction: column; gap: 0.5rem; }
  .model-price-block { text-align: left; }
  .model-actions { flex-direction: column; align-items: stretch; }
  .btn-buy-now { text-align: center; justify-content: center; }
  .btn-inquire { text-align: center; justify-content: center; }
  .general-inquiry-cta { padding: 1.5rem; }
  .model-image-wrap { height: 180px; }
}