.distributors-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.page-header h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
}

/* Grid */
.distributor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.distributor-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  border: 4px solid #052146; /* NEW BORDER */
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.distributor-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #000;
}

.distributor-card p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #444;
}

.distributor-card .phone,
.distributor-card .email {
  margin-top: 10px;
  font-weight: 600;
}

/* Hover effect */
.distributor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

/* Map Placeholder */
.map-placeholder {
  position: relative;
  max-width: 900px;   /* 👈 controls how wide it is */
  margin: 0 auto 60px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.map-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* Optional overlay label */
.map-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}


/* Tablet */
@media (max-width: 1000px) {
  .distributor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 650px) {
  .distributor-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2.1rem;
  }
}
