:root {
  --background: #fbfdf9;
  --foreground: #183020;
  --card: #ffffff;
  --primary: #37b34a;
  --primary-dark: #258a35;
  --muted: #647067;
  --soft: #edf8ef;
  --border: #cce8d0;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(24, 48, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "DM Sans", Arial, sans-serif;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}
/* Replicates React: text-4xl sm:text-5xl lg:text-6xl xl:text-7xl leading-tight */
h1 { font-size: 2.25rem; line-height: 1.25; }
/* Replicates React: text-3xl sm:text-4xl lg:text-5xl */
h2 { font-size: 1.875rem; margin-bottom: 20px; }
/* Replicates React: text-2xl */
h3 { font-size: 1.5rem; }
p { color: var(--muted); line-height: 1.75; }

@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 3rem; }
}
@media (min-width: 1280px) {
  h1 { font-size: 4.5rem; }
}

.container { width: min(1120px, calc(100% - 32px)) !important; max-width: 1120px !important; margin-left: auto !important; margin-right: auto !important; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.text-primary { color: var(--primary); }
.section > .container.narrow.center {
  margin-bottom: 48px;
}
.section > .container.narrow.center h2 {
  margin-bottom: 18px;
}
.section { padding: 96px 0; scroll-margin-top: 90px; }
.tint { background: rgba(55, 179, 74, 0.06); }
.card-bg { background: var(--card); }
.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.lead { font-size: 1.1rem; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button-large { min-height: 54px; padding: 0 32px; font-size: 1rem; }
.button-full { width: 100%; min-height: 48px; justify-content: center; }
.button-light { color: var(--primary); background: #fff; }
.button-light:hover { background: #f5f5f5; }

/* ── Header ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  background: rgba(251, 253, 249, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 142px; height: auto; }
.brand-text-logo {
  color: var(--foreground);
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}
.desktop-nav, .header-actions { display: flex; align-items: center; gap: 26px; }
.desktop-nav a { color: var(--muted); font-size: .95rem; font-weight: 600; }
.desktop-nav a:hover { color: var(--foreground); }
.phone-link { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .95rem; font-weight: 600; }
.phone-link:hover { color: var(--foreground); }
.menu-button { display: none; border: 0; background: transparent; color: var(--foreground); font-size: 1.8rem; cursor: pointer; }
.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 12px 16px 18px; background: var(--background); }
.mobile-nav a { display: block; padding: 12px 0; font-weight: 700; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background), var(--background) 60%, rgba(55, 179, 74, 0.05));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; position: relative; }
.hero-copy { display: grid; gap: 34px; justify-items: start; }
.hero-image { width: 100%; height: auto; border-radius: 1.25rem; box-shadow: 0 20px 60px rgba(24, 48, 32, 0.18); }
.hero-image-wrap { display: flex; justify-content: center; }
.hero-glow { position: absolute; border-radius: 999px; background: rgba(55, 179, 74, .12); filter: blur(60px); }
.hero-glow-one { width: 560px; height: 560px; right: -180px; top: 18%; }
.hero-glow-two { width: 360px; height: 360px; left: -140px; bottom: 10%; opacity: .7; }

/* ── Shared icon container ───────────────────────────────────────── */
.icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(55, 179, 74, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

/* ── Credit Types ────────────────────────────────────────────────── */
.credit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 860px; }
.credit-card {
  background: var(--background);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1.5rem;
  padding: 42px;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.credit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: rgba(55, 179, 74, 0.4); }
.credit-card:hover .icon-badge { background: var(--primary); color: #fff; }
.credit-card h3 { font-size: 1.875rem; margin-top: 0; margin-bottom: 12px; }
.credit-card p { margin: 0; }
.icon-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--soft);
  color: var(--primary);
  transition: background .25s, color .25s;
}
.icon-badge svg { display: block; width: 42px; height: 42px; }

/* ── About / Stats ───────────────────────────────────────────────── */
.about-title-header { margin-bottom: 32px !important; }
#nosotros { padding-top: 64px; padding-bottom: 64px; }
#nosotros .about-title-header { margin-bottom: 24px; }
.about-section-header { margin-bottom: 16px; }
.about-landscape-wrap { margin-bottom: 40px; }
.about-landscape-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  filter: grayscale(1);
}
.stats-grid { display: grid; grid-template-columns: repeat(2, minmax(220px, 1fr)); gap: 22px; max-width: 620px !important; margin-top: 56px; }
.stat-card {
  background: var(--card);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1rem;
  padding: 28px;
  text-align: center;
}
.stat-card strong { display: block; color: var(--primary); font: 400 3rem/1 "DM Serif Display", Georgia, serif; }
.stat-card span { color: var(--muted); font-size: 0.9rem; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 520px); gap: 32px; align-items: start; }
.about-photo-col {
  display: flex;
  justify-content: flex-end;
  border-radius: 2rem;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  width: fit-content;
  max-width: 100%;
  justify-self: end;
}
.about-photo-col > img.about-company-photo {
  width: 520px;
  max-width: 100%;
  height: auto;
  object-fit: initial;
  border-radius: inherit !important;
  display: block;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.about-text .eyebrow { font-size: 1rem; margin-bottom: 18px; }
.about-text h3 { font-size: clamp(2rem, 3.2vw, 3.25rem); margin-bottom: 22px; }
.about-text .about-stats {
  width: 100% !important;
  max-width: none !important;
  margin-top: 18px;
}
.about-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
}
.about-cards-row .feature-pair { display: none; }

.info-card {
  background: var(--card);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1.5rem;
  padding: 28px;
}
.info-card .card-inner { display: flex; gap: 16px; align-items: flex-start; }
.info-card h3 {
  color: var(--primary);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.info-card p { margin: 0; font-size: 0.95rem; }

.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-box {
  padding: 24px;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  background: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
}
.feature-box:nth-child(2) { background: rgba(55, 179, 74, .8); }
.feature-box svg { display: block; margin: 0 auto 10px; }

/* ── Affiliated Stores ───────────────────────────────────────────── */
.accordion { max-width: 760px; display: grid; gap: 14px; }
.store-city {
  background: var(--card);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1rem;
  overflow: hidden;
}
.store-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s;
}
.store-toggle:hover { background: rgba(55, 179, 74, 0.05); }
.store-toggle-left { display: flex; align-items: center; gap: 12px; }
.store-city-name { font-size: 1.1rem; font-weight: 600; color: var(--primary); }
.store-city-count { font-size: .85rem; color: var(--muted); }
.chevron-icon { color: var(--primary); display: flex; transition: transform .3s; }
.store-city.open .chevron-icon { transform: rotate(180deg); }
.store-body { display: none; padding: 0 24px 24px; gap: 18px; }
.store-city.open .store-body { display: grid; }
.store-item {
  background: var(--background);
  border: 1px solid rgba(55, 179, 74, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .9rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s;
}
.store-item:hover { border-color: rgba(55, 179, 74, 0.35); }
.store-item svg { color: var(--primary); flex-shrink: 0; }
.stores-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.stores-stats { margin-top: 56px; }
.stores-stats .stat-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stores-stats .stat-card strong {
  font-size: 2.6rem;
}
.store-category {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(55, 179, 74, 0.14);
  border-radius: 1rem;
  overflow: hidden;
}
.store-category-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  padding: 16px 18px;
  text-align: left;
}
.store-category-toggle span:first-child {
  color: var(--primary);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}
.store-category-toggle small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.store-category-toggle .chevron-icon {
  color: var(--primary);
  transition: transform .25s ease;
}
.store-category.open .store-category-toggle .chevron-icon {
  transform: rotate(180deg);
}
.store-business-list {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 18px;
}
.store-category.open .store-business-list {
  display: grid;
}
.store-business {
  background: var(--background);
  border: 1px solid rgba(55, 179, 74, 0.12);
  border-radius: 12px;
  padding: 11px 12px;
}
.store-business strong {
  display: block;
  color: var(--foreground);
  font-size: .92rem;
  line-height: 1.35;
}
.store-business span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
  margin-top: 3px;
}

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(55, 179, 74, 0.2);
  cursor: pointer;
  width: 100%;
  padding: 0;
  background: transparent;
  display: block;
  transition: border-color .3s;
}
.gallery-item:hover { border-color: rgba(55, 179, 74, 0.4); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(12, 23, 16, .92); display: grid; place-items: center; padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox button { position: absolute; right: 20px; top: 16px; border: 0; background: transparent; color: #fff; font-size: 2.4rem; cursor: pointer; }
.lightbox img { max-height: 90vh; border-radius: var(--radius); }

/* ── Branches ────────────────────────────────────────────────────── */
.branches-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
.branches-static-layout { display: grid; gap: 24px; }
.branches-two-column {
  grid-template-columns: 380px 1fr;
  align-items: stretch;
}
.branches-right { display: flex; flex-direction: column; gap: 16px; }
.branch-detail-panel {
  background: var(--background);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1rem;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 72px;
}
.branch-detail-panel .branch-detail-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.branch-detail-panel .branch-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}
.branch-detail-panel .branch-address svg { color: var(--primary); flex-shrink: 0; }
.branch-detail-panel .branch-phones { display: flex; flex-wrap: wrap; gap: 8px; }
.branch-list { display: grid; gap: 8px; align-content: start; max-height: 580px; overflow-y: auto; }
.branch-list-static {
  grid-template-columns: 1fr;
  gap: 12px;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 4px;
}
.branch-button {
  padding: 14px 16px;
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 12px;
  background: var(--background);
  text-align: left;
  cursor: pointer;
  color: var(--foreground);
  width: 100%;
  transition: border-color .2s, background .2s;
}
.branch-static-card {
  cursor: default;
  background: var(--card);
}
.branch-static-card:hover { border-color: rgba(55, 179, 74, 0.2); }
.branch-static-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.branch-static-phones a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
}
.branch-button:hover { border-color: rgba(55, 179, 74, 0.5); }
.branch-button.active { color: #fff; background: var(--primary); border-color: var(--primary); }
.branch-btn-name { font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.branch-btn-address { display: block; font-size: 0.875rem; color: var(--muted); margin-top: 4px; }
.branch-button.active .branch-btn-address { color: rgba(255,255,255,.8); }
.branch-main-badge {
  font-size: 0.65rem;
  background: rgba(55, 179, 74, 0.15);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 9999px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}
.branch-button.active .branch-main-badge { background: rgba(255,255,255,.2); color: #fff; }

.branches-map-container {
  height: 620px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(55, 179, 74, 0.2);
  background: var(--soft);
  position: relative;
  z-index: 0;
}
.branches-map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.popup-badge {
  font-size: 0.62rem;
  background: rgba(55,179,74,0.15);
  color: #37b34a;
  padding: 2px 7px;
  border-radius: 9999px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 5px;
}
.popup-address { font-size: 0.82rem; color: #647067; margin: 5px 0 10px; }
.popup-phones { display: flex; flex-direction: column; gap: 6px; }
.popup-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.popup-wa-btn:hover { background: #20b858; color: #fff; }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.contact-section h2 { margin-bottom: 18px; }
.contact-copy .lead { margin-bottom: 26px; }
.contact-whatsapp-cta {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--primary);
  color: #fff;
  border-radius: 1rem;
  padding: 18px 22px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(55, 179, 74, .22);
}
.contact-whatsapp-cta span {
  font-size: .86rem;
  font-weight: 600;
  opacity: .9;
}
.contact-panel {
  background: rgba(55, 179, 74, 0.06);
  border: 1px solid rgba(55, 179, 74, 0.16);
  border-radius: 1.5rem;
  padding: 24px;
}
.contact-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 12px;
  transition: border-color .2s;
}
.contact-item:hover { border-color: rgba(55, 179, 74, 0.5); }
.contact-item:hover .icon-wrap { background: var(--primary); color: #fff; }
.contact-item-text strong { display: block; font-size: .8rem; color: var(--muted); font-weight: 500; }
.contact-item-text span { font-weight: 600; color: var(--foreground); font-size: 0.95rem; }
.contact-item.whatsapp { background: var(--primary); border-color: var(--primary); }
.contact-item.whatsapp:hover { border-color: var(--primary-dark); }
.contact-item.whatsapp .contact-item-text strong,
.contact-item.whatsapp .contact-item-text span { color: #fff; }
.contact-item.whatsapp .icon-wrap { background: rgba(255,255,255,.2); color: #fff; }
.contact-item.whatsapp:hover .icon-wrap { background: rgba(255,255,255,.35); }

.contact-form {
  background: var(--card);
  border: 1px solid rgba(55, 179, 74, 0.2);
  border-radius: 1.5rem;
  padding: 32px;
  display: grid;
  gap: 20px;
}
.contact-form h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.5rem; margin-bottom: 4px; color: var(--foreground); }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  height: 48px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(55,179,74,.15); }
textarea { resize: vertical; height: auto; padding: 12px 14px; }
.tiny { font-size: .78rem; text-align: center; margin: 0; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--primary); color: #fff; }
.footer p, .footer a { color: rgba(255,255,255,.75); }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-cta-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 44px 0; }
.footer-cta-inner h3 { color: #fff; font-size: 1.5rem; }
@media (min-width: 1024px) { .footer-cta-inner h3 { font-size: 1.875rem; } }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; padding: 58px 0; }
.footer-logo { width: 160px; filter: none; margin-bottom: 22px; }
.footer-text-logo {
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 22px;
}
.footer-brand-title {
  color: #fff;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 520px;
}
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background .2s;
}
.socials a:hover { background: rgba(255,255,255,.22); }
.footer h4 { color: #fff; font-family: "DM Sans", sans-serif; font-size: 1.1rem; font-weight: 600; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul li { display: flex; align-items: flex-start; gap: 10px; }
.footer ul a, .footer ul span { display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer ul svg { flex-shrink: 0; opacity: .75; margin-top: 2px; }
.copyright { border-top: 1px solid rgba(255,255,255,.15); }
.copyright-inner { display: flex; justify-content: space-between; gap: 18px; padding: 20px 0; }
.copyright p { margin: 0; font-size: .9rem; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .mobile-nav.open { display: block; }
  .hero-grid, .about-grid, .branches-layout, .branches-two-column, .contact-section, .footer-grid { grid-template-columns: 1fr; }
  .about-landscape-photo { height: 240px; }
  .about-cards-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero-image-wrap { display: none; }
  .credit-grid, .stores-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .branch-list { max-height: none; grid-template-columns: repeat(2, 1fr); }
  .branches-map-container { height: 320px; }
  .contact-links { grid-template-columns: 1fr; }
  .footer-cta-inner, .copyright-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .branch-list { grid-template-columns: 1fr; }
  .credit-grid, .stores-stats, .feature-pair { grid-template-columns: 1fr; }
  .store-body { grid-template-columns: repeat(2, 1fr); }
  .credit-card { padding: 30px; }
  .contact-form { padding: 24px; }
}
