/* ─── RENTALS (layered on venues.css card grid) ─── */
.rentals-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 100px;
  background: var(--dark-teal);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.rentals-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.venue-card .rentals-cta {
  margin-top: 1rem;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

.rental-quantity {
  color: var(--dark-teal);
  font-weight: 500;
}

.rental-highlights {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rental-highlights li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  color: rgba(26, 65, 70, 0.7);
  line-height: 1.45;
  font-weight: 300;
}

.rental-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.rental-price {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-teal);
}

.rental-price small {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26, 65, 70, 0.55);
  margin-left: 0.25rem;
}

.badge.category {
  background: rgba(41, 114, 114, 0.08);
  color: var(--teal);
}

/* ─── HOW IT WORKS ─── */
.rentals-how {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 3rem 5rem;
  text-align: center;
}

.rentals-how h2 {
  font-family: 'Cutive', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.rentals-steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rentals-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(26, 65, 70, 0.7);
  font-weight: 300;
}

.rentals-steps li strong {
  color: var(--dark-teal);
  font-weight: 500;
}

.rentals-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--cream);
  color: var(--dark-teal);
  font-family: 'Cutive', serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .rentals-how { padding: 0.5rem 1.5rem 4rem; }
  .rentals-how h2 { font-size: 1.5rem; }
}
