/* ============================================================
   SECCIONES RESTANTES DE LA LANDING DEL ZIP 2:
   "Nuestro filtro" (bloque oscuro con los 3 principios),
   "Oferta local de la semana" y el bloque de newsletter.
   Se carga DESPUÉS de category-shelf.css porque reutiliza
   .section / .section-kicker / .section-head de ahí.
   Sólo lo carga index.html.
   ============================================================ */

/* --- Nuestro filtro (fondo oscuro, a todo el ancho) --- */
.find-section {
  background: var(--sk-foreground);
  color: var(--sk-card);
  padding-block: 94px;
}

.find-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.find-section .section-kicker {
  color: var(--sk-accent);
}

.find-section h2 {
  margin: 0;
  max-width: 11ch;
  color: var(--sk-card);
  font: 700 clamp(2.1rem, 4.2vw, 3.7rem)/0.96 var(--sk-font-display);
  letter-spacing: -0.07em;
}

.find-section h2 em {
  color: var(--sk-primary);
  font-style: normal;
}

.find-copy {
  color: hsl(40 15% 76%);
  font-family: var(--sk-font-sans);
  line-height: 1.6;
  font-size: 15px;
  max-width: 39ch;
  margin: 20px 0 0;
}

.principles {
  display: grid;
  gap: 18px;
}

.principle {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid hsl(225 14% 29%);
}

.principle:last-child {
  border-bottom: 1px solid hsl(225 14% 29%);
}

.principle-number {
  color: var(--sk-primary);
  font: 500 12px var(--sk-font-mono);
  padding-top: 4px;
}

.principle h3 {
  margin: 0 0 6px;
  color: var(--sk-card);
  font: 700 20px var(--sk-font-display);
  letter-spacing: -0.04em;
}

.principle p {
  margin: 0;
  color: hsl(40 15% 73%);
  font-family: var(--sk-font-sans);
  font-size: 13px;
  line-height: 1.55;
  max-width: none;
}

/* --- Oferta local de la semana --- */
.promo-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.promo-card {
  min-height: 310px;
  border: 1px solid var(--sk-foreground);
  position: relative;
  overflow: hidden;
}

.promo-main {
  background: var(--sk-primary);
  color: var(--sk-primary-fg);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section .promo-main h2 {
  color: var(--sk-primary-fg);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 8ch;
}

.promo-main h2 em {
  font-style: normal;
}

.promo-main p {
  max-width: 38ch;
  margin: 0;
  font-family: var(--sk-font-sans);
  font-size: 14px;
  line-height: 1.5;
}

.promo-main .button {
  align-self: start;
}

.promo-side {
  background: var(--sk-secondary);
  color: var(--sk-secondary-fg);
  padding: 0;
}

.promo-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.promo-side-label {
  position: absolute;
  left: 22px;
  top: 20px;
  background: var(--sk-accent);
  color: var(--sk-foreground);
  padding: 8px 10px;
  font: 500 10px var(--sk-font-mono);
  text-transform: uppercase;
}

/* --- Newsletter --- */
.newsletter {
  padding-top: 75px;
  padding-bottom: 95px;
  border-top: 1px solid var(--sk-border);
  text-align: center;
}

.newsletter h2 {
  margin: 0 auto 10px;
  color: var(--sk-foreground);
  font: 700 clamp(2.3rem, 4.5vw, 4.2rem)/0.98 var(--sk-font-display);
  letter-spacing: -0.07em;
  max-width: 12ch;
}

.newsletter p {
  margin: 0 auto 24px;
  color: var(--sk-muted-fg);
  font-family: var(--sk-font-sans);
  max-width: 42ch;
  font-size: 14px;
  line-height: 1.5;
}

.signup {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 7px;
}

.signup input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--sk-foreground);
  background: var(--sk-card);
  padding: 0 14px;
  color: var(--sk-foreground);
  font-family: var(--sk-font-sans);
  outline: none;
}

.signup input:focus {
  border-color: var(--sk-primary);
  box-shadow: 3px 3px 0 var(--sk-accent);
}

.signup-message {
  margin-top: 14px;
  color: var(--sk-secondary);
  font-family: var(--sk-font-sans);
  font-size: 12px;
  font-weight: 700;
  min-height: 18px;
}

@media (max-width: 860px) {
  .find-grid { grid-template-columns: 1fr; gap: 45px; }
  .promo-layout { grid-template-columns: 1fr; }
  .promo-side { min-height: 300px; }
}

@media (max-width: 520px) {
  .find-section { padding-block: 70px; }
  .promo-main { padding: 28px 22px; min-height: 330px; }
  .signup { flex-direction: column; }
  .signup input,
  .signup .button { width: 100%; }
}
