:root {
  --ef-bg: #f6f2eb;
  --ef-surface: #ffffff;
  --ef-surface-soft: #fcfaf6;
  --ef-border: #e7ddcf;
  --ef-border-strong: #d8cab7;
  --ef-text: #162116;
  --ef-text-muted: #667061;
  --ef-green: #0f6b45;
  --ef-green-dark: #0b5133;
  --ef-orange: #de8a33;
  --ef-orange-soft: #f7ead7;
  --ef-shadow: 0 14px 34px rgba(21, 33, 22, 0.06);
  --ef-shadow-card: 0 10px 24px rgba(21, 33, 22, 0.08);
  --ef-radius-xl: 28px;
  --ef-radius-lg: 22px;
  --ef-radius-md: 16px;
  --ef-radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 12% 0%, #f5e4cd 0%, rgba(245, 228, 205, 0) 28%),
    radial-gradient(circle at 100% 10%, #e7f4ec 0%, rgba(231, 244, 236, 0) 30%),
    var(--ef-bg);
  color: var(--ef-text);
  font-family: "Sora", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.ef-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.ef-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 235, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 221, 207, 0.8);
}

.ef-header-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.ef-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ef-brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

.ef-brand-name {
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ef-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ef-nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  color: rgba(22, 33, 22, 0.88);
}

.ef-nav a.is-active {
  color: var(--ef-green);
}

.ef-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ef-pill,
.ef-link-button,
.ef-button,
.ef-button-outline,
.ef-button-soft {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font: inherit;
  border: 0;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.ef-pill,
.ef-link-button {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--ef-border);
  color: var(--ef-text);
  font-size: 12px;
  font-weight: 600;
}

.ef-button {
  padding: 11px 18px;
  background: var(--ef-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(15, 107, 69, 0.18);
}

.ef-button:hover,
.ef-button-outline:hover,
.ef-button-soft:hover,
.ef-link-button:hover {
  transform: translateY(-1px);
}

.ef-button-outline {
  padding: 10px 16px;
  background: #fff;
  color: var(--ef-green);
  border: 1px solid var(--ef-green);
  font-size: 12px;
  font-weight: 700;
}

.ef-inline-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.ef-button-soft {
  padding: 11px 16px;
  background: #fff4e8;
  color: #8a5c2c;
  border: 1px solid #efd6bc;
  font-size: 12px;
  font-weight: 700;
}

.ef-page {
  padding: 14px 0 32px;
}

.ef-section {
  padding-top: 22px;
}

.ef-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--ef-shadow);
}

.ef-hero-grid {
  display: grid;
  min-height: 314px;
  grid-template-columns: 0.5fr 0.5fr;
}

.ef-hero-copy {
  position: relative;
  z-index: 1;
  padding: 28px 28px 26px;
}

.ef-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 107, 69, 0.08);
  color: var(--ef-green);
  font-size: 11px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(15, 107, 69, 0.12);
}

.ef-hero-kicker svg {
  width: 15px;
  height: 15px;
}

.ef-hero-title {
  max-width: 8.8ch;
  margin: 0;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: clamp(36px, 4.7vw, 60px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.ef-hero-title .green {
  color: var(--ef-green);
}

.ef-hero-title .orange {
  color: var(--ef-orange);
}

.ef-hero-subtitle {
  max-width: 34ch;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ef-text-muted);
}

.ef-hero-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ef-hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
}

.ef-hero-point svg {
  width: 16px;
  height: 16px;
  color: var(--ef-green);
}

.ef-hero-media {
  position: relative;
  min-height: 230px;
}

.ef-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ef-hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 10%, rgba(255, 255, 255, 0.68) 20%, rgba(255, 255, 255, 0.15) 40%, rgba(14, 53, 35, 0.08) 100%),
    linear-gradient(180deg, rgba(15, 64, 41, 0.02) 0%, rgba(15, 64, 41, 0.18) 100%);
}

.ef-search-panel {
  margin-top: 20px;
  padding: 12px;
  border-radius: 24px;
  background: #fbf8f3;
  box-shadow: inset 0 0 0 1px var(--ef-border);
}

.ef-search-row {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr auto;
  gap: 10px;
}

.ef-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 13px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ef-border);
}

.ef-search-field-location {
  gap: 8px;
}

.ef-search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ef-text);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
}

.ef-search-field input::placeholder {
  color: var(--ef-text-muted);
  font-weight: 500;
}

.ef-search-submit {
  min-width: 118px;
  border-radius: 18px;
}

.ef-location-trigger {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--ef-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ef-green);
}

.ef-search-hint {
  margin: 10px 0 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--ef-text-muted);
}

.ef-tag-row {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ef-tag-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ef-text-muted);
}

.ef-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--ef-border);
  background: #f7f4ef;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.ef-value-strip {
  margin-top: 14px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
}

.ef-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ef-value-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-right: 1px solid var(--ef-border);
}

.ef-value-card:last-child {
  border-right: 0;
}

.ef-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ef-value-icon svg {
  width: 20px;
  height: 20px;
}

.ef-value-copy strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.ef-value-copy span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--ef-text-muted);
}

.ef-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
}

.ef-section-heading {
  margin: 0;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.ef-section-sub {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--ef-text-muted);
}

.ef-link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ef-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.ef-category-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ef-category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 136px;
  padding: 16px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
  text-decoration: none;
}

.ef-category-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ef-category-icon svg {
  width: 22px;
  height: 22px;
}

.ef-category-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.ef-category-card span:last-child {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ef-text-muted);
}

.ef-filter-row {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ef-filter-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ef-border);
  color: var(--ef-text-muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.ef-filter-chip.is-active {
  background: var(--ef-text);
  color: #fff;
  border-color: var(--ef-text);
}

.ef-listing-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ef-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
}

.ef-card-media {
  position: relative;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}

.ef-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ef-card-badge,
.ef-card-favorite {
  position: absolute;
  top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 10px;
  font-weight: 800;
}

.ef-card-badge {
  left: 10px;
  padding: 6px 10px;
  color: var(--ef-green);
}

.ef-card-favorite {
  right: 10px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ef-text);
}

.ef-card-body {
  padding: 11px;
}

.ef-card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
}

.ef-card-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.ef-card-price {
  font-size: 11px;
  font-weight: 800;
  color: var(--ef-orange);
}

.ef-card-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ef-text-muted);
  line-height: 1.4;
}

.ef-card-stats {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ef-text-muted);
}

.ef-card-status {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef8f1;
  color: var(--ef-green);
}

.ef-card-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.ef-card-actions .ef-button-outline,
.ef-card-actions .ef-button-soft {
  flex: 1 1 auto;
  padding: 10px 12px;
}

.ef-why-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ef-why-card {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
}

.ef-why-card strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.ef-why-card span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ef-text-muted);
}

.ef-why-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef8f1;
  color: var(--ef-green);
}

.ef-why-icon svg {
  width: 18px;
  height: 18px;
}

.ef-feature-band {
  display: grid;
  grid-template-columns: 0.54fr 0.46fr;
  gap: 12px;
}

.ef-feature-card,
.ef-location-card,
.ef-app-card,
.ef-seller-banner {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
}

.ef-feature-card {
  position: relative;
  min-height: 264px;
}

.ef-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ef-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 57, 36, 0.9), rgba(12, 57, 36, 0.44), rgba(12, 57, 36, 0.06));
}

.ef-feature-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 72%;
  padding: 20px;
  color: #fff;
}

.ef-feature-kicker {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(126, 207, 153, 0.2);
  font-size: 10px;
  font-weight: 800;
}

.ef-feature-title {
  margin: 12px 0 0;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.ef-feature-text {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.ef-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ef-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.ef-feature-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ef-feature-chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ef-text);
  font-size: 11px;
  font-weight: 700;
}

.ef-location-grid {
  display: grid;
  min-height: 284px;
  grid-template-columns: 0.42fr 0.58fr;
}

.ef-location-list {
  padding: 16px;
  background: #fbf8f3;
  border-right: 1px solid var(--ef-border);
}

.ef-location-title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.ef-location-subtitle {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ef-text-muted);
}

.ef-location-items {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ef-location-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
}

.ef-location-item.is-active {
  background: #fff;
  box-shadow: var(--ef-shadow-card);
}

.ef-location-item::after {
  content: "\2197";
  font-size: 15px;
  font-weight: 800;
  color: rgba(22, 33, 22, 0.4);
}

.ef-location-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.ef-location-item span {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  color: var(--ef-text-muted);
}

.ef-map {
  position: relative;
  background:
    linear-gradient(90deg, rgba(15, 107, 69, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(15, 107, 69, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0) 28%),
    linear-gradient(135deg, #dff0e9 0%, #edf6f2 45%, #f6efe6 100%);
  background-size: 34px 34px, 34px 34px, auto;
}

.ef-map::before {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
}

.ef-map-label,
.ef-map-country,
.ef-map-copy,
.ef-map-current {
  position: absolute;
  z-index: 1;
}

.ef-map-label {
  top: 18px;
  left: 18px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ef-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ef-map-country {
  top: 60px;
  left: 18px;
  max-width: 170px;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ef-map-copy {
  top: 118px;
  left: 18px;
  max-width: 190px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ef-text-muted);
}

.ef-map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 18px 18px 18px 0;
  transform: rotate(-45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ef-green);
  box-shadow: var(--ef-shadow-card);
  border: 1px solid rgba(15, 107, 69, 0.08);
}

.ef-map-pin::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  transform: rotate(45deg);
}

.ef-map-pin.is-primary {
  width: 22px;
  height: 22px;
  background: var(--ef-green);
  color: #fff;
  box-shadow: 0 14px 24px rgba(15, 107, 69, 0.22);
}

.ef-map-pin.is-accent {
  color: var(--ef-orange);
}

.ef-map-current {
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(21, 33, 22, 0.1);
}

.ef-location-button {
  margin-top: 14px;
}

.ef-hero-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(21, 33, 22, 0.12);
}

.ef-hero-note strong {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ef-green);
}

.ef-hero-note span {
  max-width: 220px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.ef-seller-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #fff7ef, #fff2e1);
  border: 1px solid #eedcc8;
}

.ef-seller-emoji {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--ef-orange);
  border: 1px solid #eedcc8;
}

.ef-seller-emoji svg {
  width: 20px;
  height: 20px;
}

.ef-seller-title {
  margin: 0;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.ef-seller-text {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ef-text-muted);
}

.ef-app-card {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.ef-app-phone img {
  display: block;
  width: 100%;
  max-width: 200px;
}

.ef-app-title {
  margin: 0;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.ef-app-text {
  margin: 8px 0 0;
  color: var(--ef-text-muted);
  font-size: 14px;
}

.ef-app-actions {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.ef-qr {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  border: 1px dashed var(--ef-border-strong);
  background: #fbf8f3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--ef-text-muted);
}

.ef-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.ef-store-badge.dark {
  background: #12110f;
  color: #fff;
}

.ef-store-badge.light {
  background: #fff;
  border: 1px solid var(--ef-border);
}

.ef-footer {
  margin-top: 24px;
  padding: 24px 0;
  background: #152016;
  color: rgba(255, 255, 255, 0.78);
}

.ef-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 0.7fr) 1fr;
  gap: 22px;
}

.ef-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.ef-footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.ef-footer-brand strong {
  display: block;
  font-family: "Bricolage Grotesque", "Sora", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.ef-footer-about {
  margin-top: 12px;
  max-width: 28ch;
  font-size: 13px;
  line-height: 1.6;
}

.ef-socials {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.ef-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ef-footer-col h3 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
}

.ef-footer-col a {
  display: block;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
}

.ef-newsletter-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.ef-newsletter-text {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.ef-newsletter-form {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.ef-newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.ef-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.ef-muted-card {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--ef-shadow-card);
  font-size: 14px;
  color: var(--ef-text-muted);
}

@media (max-width: 1180px) {
  .ef-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ef-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .ef-header-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 12px 0;
  }

  .ef-nav {
    justify-content: flex-start;
  }

  .ef-header-actions {
    flex-wrap: wrap;
  }

  .ef-hero-grid,
  .ef-feature-band,
  .ef-app-card {
    grid-template-columns: 1fr;
  }

  .ef-search-row {
    grid-template-columns: 1fr;
  }

  .ef-value-grid,
  .ef-why-grid,
  .ef-seller-banner {
    grid-template-columns: 1fr 1fr;
  }

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

  .ef-location-list {
    border-right: 0;
    border-bottom: 1px solid var(--ef-border);
  }
}

@media (max-width: 720px) {
  .ef-shell {
    width: min(1240px, calc(100% - 18px));
  }

  .ef-page {
    padding-top: 12px;
  }

  .ef-hero-copy {
    padding: 22px 20px 22px;
  }

  .ef-hero-title {
    max-width: 10ch;
    font-size: 44px;
  }

  .ef-hero-subtitle {
    font-size: 15px;
  }

  .ef-value-grid,
  .ef-why-grid,
  .ef-category-grid,
  .ef-listing-grid,
  .ef-footer-grid,
  .ef-seller-banner {
    grid-template-columns: 1fr;
  }

  .ef-value-card {
    border-right: 0;
    border-bottom: 1px solid var(--ef-border);
  }

  .ef-value-card:last-child {
    border-bottom: 0;
  }

  .ef-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ef-feature-copy {
    max-width: 84%;
  }

  .ef-feature-title,
  .ef-section-heading,
  .ef-seller-title,
  .ef-app-title {
    font-size: 28px;
  }

  .ef-newsletter-form {
    flex-direction: column;
  }
}
