/* Locations Grid (homepage + locations index) */
.locations-section {
  padding: 3rem 1rem;
  text-align: center;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: left;
  transition: box-shadow 0.2s;
}

.location-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.location-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
}

.location-card h3 a {
  color: inherit;
  text-decoration: none;
}

.location-card h3 a:hover {
  color: var(--primary-color, #c41e3a);
}

.loc-address, .loc-phone {
  margin: 0.25rem 0;
  font-size: 0.95rem;
  color: #555;
}

.loc-phone a {
  color: inherit;
  text-decoration: none;
}

.loc-hours {
  width: 100%;
  font-size: 0.85rem;
  margin: 0.75rem 0;
  border-collapse: collapse;
}

.loc-hours td {
  padding: 2px 8px 2px 0;
  color: #555;
}

.loc-hours td:first-child {
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.loc-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Locations Page Grid */
.locations-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.location-detail-card h2 {
  margin-top: 0;
}

.location-detail-card h2 a {
  color: inherit;
  text-decoration: none;
}

.location-detail-card h2 a:hover {
  color: var(--primary-color, #c41e3a);
}

/* Location Detail Page */
.location-detail {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.location-detail h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.location-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.location-info .info-block {
  margin-bottom: 1.5rem;
}

.location-info .info-block h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #333;
}

.location-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Other locations section */
.other-locations {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.other-locations h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Contact page multi-location */
.contact-location h2 {
  color: var(--primary-color, #c41e3a);
}

/* Button variants */
.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

.btn-outline {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color, #c41e3a);
  color: var(--primary-color, #c41e3a);
  border-radius: 6px;
  text-decoration: none;
  margin-top: 0.5rem;
}

.btn-outline:hover {
  background: var(--primary-color, #c41e3a);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .locations-page-grid {
    grid-template-columns: 1fr;
  }

  .location-detail-content {
    grid-template-columns: 1fr;
  }

  .location-map {
    order: -1;
  }
}
