/* ── Landing Page ──────────────────────────────────────────────────────── */

.lp-wrap {
  font-family: var(--font-primary);
  background: var(--bg-primary);
  color: var(--text-primary);
}

/* ── Shared ─────────────────────────────────────────────────────────────── */
.lp-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.lp-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--color-surface);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.18s ease;
}
.lp-btn:hover,
.lp-btn:focus {
  opacity: 0.88;
  color: var(--color-surface);
  text-decoration: none;
}

.lp-section-title {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.lp-hero {
  background: var(--primary);
  color: var(--color-on-primary);
  padding: 5rem 1.5rem 4.5rem;
  text-align: center;
}

.lp-hero h1 {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-on-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lp-hero p {
  font-size: 1.1rem;
  color: rgba(240, 240, 236, 0.82);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

/* ── Steps ──────────────────────────────────────────────────────────────── */
.lp-steps-section {
  padding: 4.5rem 1.5rem;
  background: var(--bg-primary);
}

.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.lp-step {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Connecting line */
.lp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 21px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: rgba(232, 150, 42, 0.35);
}

.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--color-surface);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232, 150, 42, 0.35);
}

.lp-step-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.lp-cards-section {
  padding: 4.5rem 1.5rem;
  background: var(--bg-secondary);
}

.lp-card {
  background: var(--color-surface);
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.lp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}

.lp-card-header {
  margin-bottom: 1rem;
}

.lp-card-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.lp-card-address {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lp-card-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.lp-pill {
  display: inline-block;
  background: rgba(232, 150, 42, 0.14);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.lp-product {
  margin-bottom: 1.5rem;
}

.lp-product-name {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.lp-product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.lp-product-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.lp-product-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* ── CTA Section ────────────────────────────────────────────────────────── */
.lp-cta-section {
  background: var(--primary);
  color: var(--color-on-primary);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.lp-cta-section .lp-section-title {
  color: var(--color-on-primary);
}

.lp-cta-section p {
  font-size: 1rem;
  color: rgba(240, 240, 236, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Producers Section ───────────────────────────────────────────────────── */
.lp-producers-section {
  padding: 4.5rem 1.5rem;
  background: var(--bg-secondary);
}

.lp-producers-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: -1.25rem;
  margin-bottom: 1.75rem;
}

.lp-producer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.producer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: var(--color-surface);
  color: var(--text-primary);
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.producer-chip:hover {
  border-color: var(--primary);
}

.producer-chip.selected {
  background: var(--primary);
  color: var(--color-on-primary);
  border-color: var(--primary);
}

.chip-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chip-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Leaflet map */
.lp-map {
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

/* Custom round map markers */
.map-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--color-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-primary);
  border: 3px solid var(--color-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.map-marker.selected {
  border-color: var(--accent);
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.map-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-producers-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.lp-btn-ghost:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.lp-btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.lp-btn-outline:hover,
.lp-btn-outline:focus {
  background: var(--accent);
  color: var(--color-surface);
  opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .lp-hero h1 { font-size: 1.85rem; }
  .lp-hero p  { font-size: 1rem; }
  .lp-step:not(:last-child)::after { display: none; }
  .lp-steps { gap: 1.5rem; }
}
