/**
 * oil-hub.css
 *
 * Supplemental styles for the Oil Massage Hub pages.
 * Loaded after service-landing.css (which provides base layout, brand header,
 * breadcrumbs, hero, content-card, contact-btn, sticky-cta-bar, etc.).
 *
 * Only adds styles that are specific to the hub layout —
 * comparison table, oil cards, closing CTA banner.
 */

/* ── Oil cards ─────────────────────────────────────────────────────────────── */

.oil-cards-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.oil-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 20px 20px 16px;
  margin-bottom: 16px;
}

.oil-card:last-child {
  margin-bottom: 0;
}

.oil-card-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b71c1c;
  margin: 0 0 6px 0;
}

.oil-card-hook {
  margin: 0 0 10px 0;
  color: #555;
  font-size: 0.95rem;
}

.oil-card-body {
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.oil-card-price {
  margin: 0 0 14px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.oil-card-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.oil-card-btn {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s, background 0.15s;
}

.oil-card-btn--primary {
  background: #b71c1c;
  color: #fff;
}

.oil-card-btn--primary:hover {
  background: #8b1010;
}

.oil-card-btn--secondary {
  background: #f5f5f5;
  color: #b71c1c;
  border: 1px solid #e0e0e0;
}

.oil-card-btn--secondary:hover {
  background: #ebebeb;
}

/* ── Comparison table ─────────────────────────────────────────────────────── */

.oil-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.oil-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 340px;
}

.oil-compare-table thead tr {
  background: #b71c1c;
  color: #fff;
}

.oil-compare-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.oil-compare-table td {
  padding: 9px 12px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.oil-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.oil-compare-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* ── Closing CTA banner ───────────────────────────────────────────────────── */

.oil-hub-cta-banner {
  text-align: center;
  background: #fff8f8;
  border: 1px solid #f5c6c6;
}

.oil-hub-banner-text {
  font-size: 1rem;
  margin: 0 0 16px 0;
  font-weight: 500;
  color: #333;
}

.oil-hub-banner-btn {
  display: inline-flex;
}

/* ── Hero intro paragraph ─────────────────────────────────────────────────── */

.oil-hub-intro {
  max-width: 660px;
  margin: 0 auto 18px;
  line-height: 1.7;
}

/* ── Contact row inside location card ────────────────────────────────────── */

.oil-hub-contact {
  margin-top: 16px;
}

/* ── Responsive adjustments ──────────────────────────────────────────────── */

@media (min-width: 600px) {
  .oil-card-ctas {
    flex-wrap: nowrap;
  }

  .oil-compare-table {
    font-size: 0.95rem;
  }
}
