/* Homepage + footer — restored full sheet (default theme) */

body.is-home .search-wrapper,
body.is-home .menu-category-rail {
  display: none !important;
}

/* —— Hero with full-bleed map —— */
#common-home .pb-home-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 32px;
  text-align: center;
}

#common-home .pb-hero-map-stage {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #0f172a;
  min-height: 420px;
}

#common-home .pb-hero-map-stage #pbHeroMap {
  width: 100%;
  height: min(520px, 62vh);
  min-height: 360px;
}

#common-home .pb-hero-map-stage .pb-hero-map-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(15, 23, 42, 0.25) 40%,
    rgba(15, 23, 42, 0.45) 100%
  );
}

#common-home .pb-hero-map-overlay-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: min(720px, calc(100% - 32px));
  text-align: center;
  pointer-events: none;
}

#common-home .pb-hero-map-overlay-center > * {
  pointer-events: auto;
}

#common-home .pb-hero-map-overlay-center h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

#common-home .pb-hero-map-overlay-center .pb-home-sub {
  margin: 0 0 18px;
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

#common-home .pb-hero-chip-row {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
}

#common-home .pb-hero-chip-row .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* #2486: blur only on fine pointer / hover-capable devices */
@media (hover: hover) and (pointer: fine) {
  #common-home .pb-hero-chip-row .chip {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

#common-home .pb-hero-chip-row .chip i {
  color: #ff385c;
}

/* Search card over map */
#common-home .pb-hero-search-card {
  background: #fff;
  border-radius: 20px;
  padding: 14px 14px 14px 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#common-home .pb-home-search {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  text-align: left;
}

#common-home .pb-home-seg {
  flex: 1 1 140px;
  min-width: 0;
}

#common-home .pb-home-seg label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #717171;
  margin-bottom: 4px;
}

#common-home .pb-home-seg input,
#common-home .pb-home-seg select {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 15px;
  background: #fafafa;
  color: #222;
  box-sizing: border-box;
  min-height: 44px;
}

#common-home .pb-home-search-btn {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #ff385c;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 18px rgba(255, 56, 92, 0.25);
}

#common-home .pb-home-toggle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

#common-home .pb-home-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (hover: hover) and (pointer: fine) {
  #common-home .pb-home-toggle {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

#common-home .pb-home-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 36px;
}

#common-home .pb-home-toggle button.is-active {
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* —— Footer —— */
.pb-site-footer {
  position: relative;
  background: #f7f7f7;
  border-top: 1px solid #ebebeb;
  margin-top: 48px;
  color: #222;
  overflow: hidden;
}

.pb-site-footer-glow {
  display: none;
}

.pb-site-footer-inner {
  position: relative;
  max-width: var(--header-max-width, 1280px);
  margin: 0 auto;
  padding: 40px 24px 24px;
  box-sizing: border-box;
}

.pb-site-footer-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px 28px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e5e5e5;
}

.pb-site-footer-quick h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #222;
}

.pb-site-footer-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pb-site-footer-quick-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.pb-site-footer-quick-links a:hover {
  border-color: #ff385c;
  color: #ff385c;
}

.pb-site-footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(0, 2.2fr);
  gap: 32px 40px;
  align-items: start;
  margin-bottom: 28px;
}

.pb-site-footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: #ff385c;
  text-decoration: none;
}

.pb-site-footer-tagline {
  margin: 10px 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #6a6a6a;
  max-width: 320px;
}

.pb-site-footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.pb-site-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
}

.pb-site-social:hover {
  color: #ff385c;
  border-color: #ff385c;
}

.pb-footer-currency-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #929292;
  margin-bottom: 6px;
}

.pb-footer-currency select,
.pb-footer-currency .form-control {
  min-height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #222;
  font-size: 14px;
  padding: 6px 10px;
}

.pb-site-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.pb-site-footer-col h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: #222;
}

.pb-site-footer-col a {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  color: #6a6a6a;
  text-decoration: none;
  line-height: 1.4;
}

.pb-site-footer-col a:hover {
  color: #ff385c;
}

.pb-site-footer-news p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #6a6a6a;
}

.pb-site-newsletter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pb-site-newsletter input[type="email"] {
  flex: 1 1 140px;
  min-width: 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
  color: #222;
}

.pb-site-news-btn {
  border: 0;
  border-radius: 10px;
  background: #222;
  color: #fff;
  font-weight: 700;
  padding: 10px 16px;
  cursor: pointer;
}

.pb-site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  color: #6a6a6a;
}

.pb-site-footer-legal-links {
  display: flex;
  gap: 16px;
}

.pb-site-footer-legal-links a {
  color: #6a6a6a;
  text-decoration: none;
}

.pb-site-footer-legal-links a:hover {
  color: #222;
}

@media (max-width: 900px) {
  #common-home .pb-hero-map-stage {
    min-height: 360px;
  }

  #common-home .pb-hero-map-stage #pbHeroMap {
    height: min(400px, 52vh);
    min-height: 280px;
  }

  .pb-site-footer-top {
    grid-template-columns: 1fr;
  }

  .pb-site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  /* #2479 / #2486: shorter stage so H1 + search compete less with map for LCP */
  #common-home .pb-hero-map-stage {
    min-height: 320px;
  }

  #common-home .pb-hero-map-stage #pbHeroMap {
    height: min(52vh, 320px);
    min-height: 260px;
  }

  #common-home .pb-home-search {
    flex-direction: column;
  }

  #common-home .pb-home-search-btn {
    width: 100%;
    border-radius: 12px;
  }

  .pb-site-footer-grid {
    grid-template-columns: 1fr;
  }

  .pb-site-footer-inner {
    padding: 28px 16px 20px;
  }
}
