/* ===== LOCATION CARDS ===== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.loc-card {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.loc-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.loc-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--green-pale);
}
.loc-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s ease;
}
.loc-card:hover .loc-img img { transform:scale(1.05); }
.loc-img-placeholder {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size:52px;
  background: linear-gradient(135deg, var(--green-pale), var(--beige));
}
.loc-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 5px 12px;
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.loc-rating { color:#F5A623; }
.kosher-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: white;
  border-radius: var(--r-full);
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 700;
}
.coming-soon-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), #a8832a);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
}

.loc-body { padding:1.4rem; flex:1; display:flex; flex-direction:column; }
.loc-name { font-size:19px; font-weight:700; color:var(--text-dark); margin-bottom:4px; }
.loc-vibe { font-size:12px; color:var(--green-light); font-weight:700; margin-bottom:6px; text-transform:uppercase; letter-spacing:0.06em; }
.loc-address { font-size:12px; color:var(--text-light); margin-bottom:12px; display:flex; align-items:center; gap:4px; }

.loc-actions { display:flex; gap:8px; margin-top:auto; }
.btn-menu {
  flex: 1;
  padding: 11px;
  background: white;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--t-fast);
}
.btn-menu:hover { background:var(--green); color:white; }

/* ===== LOC IMG LOGO variant ===== */
.loc-img-logo {
  background: var(--green-pale) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
}
