/* VartoModa editorial public theme v4.6.9
   Public frontend only. The English admin dashboard remains unchanged. */
:root {
  --ed-bg: #fbfaf6;
  --ed-paper: #ffffff;
  --ed-ink: #181914;
  --ed-ink-soft: #575b53;
  --ed-muted: #767b72;
  --ed-line: #e6e1d6;
  --ed-green: #235e4a;
  --ed-green-dark: #184536;
  --ed-gold: #c88919;
  --ed-shadow: 0 18px 44px rgba(33, 44, 36, .08);
  --ed-shadow-hover: 0 24px 58px rgba(33, 44, 36, .13);
  --ed-serif: "Lora", Georgia, "Times New Roman", serif;
}

body {
  color: var(--ed-ink);
  background: var(--ed-bg);
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid var(--ed-line);
  box-shadow: none;
}
.pro-header { box-shadow: none; }
.nav-wrap { min-height: 72px; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--ed-ink);
  box-shadow: none;
}
.brand-name { color: var(--ed-ink); }
.brand-text small { color: var(--ed-muted); font-size: .72rem; }
.site-nav {
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-nav a {
  padding: 9px 13px;
  color: #464a43;
  font-size: .88rem;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--ed-green);
  background: transparent;
}
.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--ed-ink);
  color: #fff;
  box-shadow: none;
}
.site-nav .nav-cta:hover { background: var(--ed-green-dark); }
.nav-toggle { background: var(--ed-ink); }

.editorial-home-hero {
  padding: clamp(58px, 7vw, 108px) 0 clamp(62px, 7vw, 104px);
  border-bottom: 1px solid var(--ed-line);
  background:
    radial-gradient(circle at 90% 4%, rgba(35, 94, 74, .05), transparent 27vw),
    var(--ed-bg);
}
.editorial-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .78fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: center;
}
.editorial-kicker,
.editorial-section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ed-green);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.35;
  text-transform: uppercase;
}
.editorial-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ed-green);
}
.editorial-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ed-ink);
  font-family: var(--ed-serif);
  font-size: clamp(3.15rem, 5.3vw, 5.65rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .99;
  text-wrap: balance;
}
.editorial-hero-copy h1::first-line { color: var(--ed-ink); }
.editorial-hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ed-ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.72;
}
.editorial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.editorial-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--ed-line);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.editorial-btn:hover { transform: translateY(-1px); }
.editorial-btn-primary {
  border-color: var(--ed-ink);
  background: var(--ed-ink);
  color: #fff;
}
.editorial-btn-primary:hover { border-color: var(--ed-green-dark); background: var(--ed-green-dark); }
.editorial-btn-secondary { background: transparent; color: var(--ed-ink); }
.editorial-btn-secondary:hover { border-color: #cfc8bb; background: #fff; }

.editorial-home-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--ed-line);
}
.editorial-home-stats div { padding-right: 22px; }
.editorial-home-stats div + div { padding-left: 22px; border-left: 1px solid var(--ed-line); }
.editorial-home-stats span {
  display: block;
  min-height: 32px;
  color: var(--ed-muted);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.35;
}
.editorial-home-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--ed-ink);
  font-family: var(--ed-serif);
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  font-weight: 500;
  line-height: 1;
}

.editorial-feature-card {
  overflow: hidden;
  border: 1px solid var(--ed-line);
  border-radius: 22px;
  background: var(--ed-paper);
  box-shadow: var(--ed-shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.editorial-feature-card:hover { transform: translateY(-2px); box-shadow: var(--ed-shadow-hover); }
.editorial-feature-media {
  position: relative;
  display: flex;
  height: clamp(330px, 36vw, 480px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--product-image-bg, #f5f5f2);
}
.editorial-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 22px;
}
.editorial-feature-badge,
.editorial-feature-deal {
  position: absolute;
  z-index: 2;
  top: 20px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
}
.editorial-feature-badge { left: 20px; background: var(--ed-ink); color: #fff; }
.editorial-feature-deal { right: 20px; background: #fff4da; color: #8b5b00; }
.editorial-feature-body { padding: 25px 28px 28px; }
.editorial-feature-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ed-gold);
  font-size: .86rem;
}
.editorial-feature-rating strong { color: var(--ed-ink); }
.editorial-feature-rating small { color: var(--ed-muted); }
.editorial-feature-body h2 {
  margin: 12px 0 0;
  font-family: var(--ed-serif);
  font-size: clamp(1.55rem, 2.3vw, 2.05rem);
  font-weight: 500;
  line-height: 1.18;
}
.editorial-feature-body h2 a:hover { color: var(--ed-green); }
.editorial-feature-body p {
  margin: 13px 0 0;
  color: var(--ed-ink-soft);
  font-family: var(--ed-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.55;
}
.editorial-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--ed-green);
  font-size: .86rem;
  font-weight: 850;
}
.editorial-feature-link:hover { color: var(--ed-green-dark); }
.editorial-empty-card {
  display: grid;
  min-height: 520px;
  place-content: center;
  gap: 8px;
  border: 1px solid var(--ed-line);
  border-radius: 22px;
  background: #fff;
  color: var(--ed-muted);
  text-align: center;
}
.editorial-empty-card strong { color: var(--ed-ink); }

.editorial-section { padding: clamp(70px, 8vw, 112px) 0; }
.editorial-categories-section { background: #fff; }
.editorial-reviews-section { border-block: 1px solid var(--ed-line); background: var(--ed-bg); }
.editorial-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}
.editorial-section-heading h2,
.editorial-method-grid h2 {
  margin: 0;
  color: var(--ed-ink);
  font-family: var(--ed-serif);
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
}
.editorial-section-heading > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid var(--ed-line);
  border-radius: 999px;
  background: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.editorial-section-heading > a:hover { border-color: #cfc8bb; color: var(--ed-green); }
.editorial-section-intro { max-width: 620px; margin: 13px 0 0; color: var(--ed-muted); }

.editorial-category-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ed-line);
  border-left: 1px solid var(--ed-line);
}
.editorial-category-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 170px;
  align-items: start;
  gap: 20px;
  padding: 26px;
  border-right: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
  background: #fff;
  transition: background .18s ease, color .18s ease;
}
.editorial-category-card:hover { background: #f1f6f2; }
.editorial-category-number { color: var(--ed-green); font-size: .72rem; font-weight: 850; }
.editorial-category-card h3 {
  margin: 0;
  font-family: var(--ed-serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.2;
}
.editorial-category-card p { margin: 10px 0 0; color: var(--ed-muted); font-size: .86rem; line-height: 1.55; }
.editorial-category-arrow { color: var(--ed-green); font-size: 1.1rem; }
.editorial-empty-row { padding: 28px; border: 1px solid var(--ed-line); background: #fff; color: var(--ed-muted); }

.editorial-review-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.editorial-review-grid .pro-product-card {
  border: 1px solid var(--ed-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.editorial-review-grid .pro-product-card:hover { transform: translateY(-3px); box-shadow: var(--ed-shadow); }
.editorial-review-grid .product-image { height: 245px; border-radius: 17px 17px 0 0; }
.editorial-review-grid .product-image img { padding: 14px; }
.editorial-review-grid .badge,
.editorial-review-grid .rank-badge,
.editorial-review-grid .deal { font-size: .67rem; }
.editorial-review-grid .product-body { padding: 22px; }
.editorial-review-grid .product-body h3 {
  font-family: var(--ed-serif);
  font-size: 1.24rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.editorial-review-grid .product-body > p { font-size: .86rem; line-height: 1.55; }
.editorial-review-grid .product-meta { font-size: .74rem; }
.editorial-review-grid .card-proof {
  border-color: var(--ed-line);
  border-radius: 12px;
  background: #faf8f3;
}
.editorial-review-grid .card-proof span { color: var(--ed-muted); }
.editorial-review-grid .card-proof strong { color: var(--ed-ink); }
.editorial-review-grid .btn.card-btn {
  min-height: 43px;
  border-radius: 999px;
  background: var(--ed-ink);
  color: #fff;
  box-shadow: none;
}
.editorial-review-grid .btn.card-btn:hover { background: var(--ed-green-dark); }

.editorial-method-section { background: var(--ed-green-dark); color: #fff; }
.editorial-method-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.editorial-method-grid .editorial-section-kicker { color: #bcd8cc; }
.editorial-method-grid h2 { color: #fff; }
.editorial-method-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.editorial-method-points div { min-height: 150px; padding: 24px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.editorial-method-points span { color: #bcd8cc; font-size: .72rem; font-weight: 850; }
.editorial-method-points p { margin: 14px 0 0; color: #f2f7f4; line-height: 1.6; }

/* Keep the rest of the public website coherent with the editorial home. */
.kicker,
.eyebrow { color: var(--ed-green); }
.btn.primary,
.btn.dark,
.btn.card-btn { background: var(--ed-ink); box-shadow: none; }
.btn.primary:hover,
.btn.dark:hover,
.btn.card-btn:hover { background: var(--ed-green-dark); }
.text-link { color: var(--ed-green); }
.page-hero h1,
.intro-grid h1,
.detail-title,
.section-head h2,
.split-head h2,
.review-section h2 {
  font-family: var(--ed-serif);
  font-weight: 500;
  letter-spacing: -.035em;
}
.product-body h3,
.review-row h2,
.review-row h3 { font-family: var(--ed-serif); font-weight: 500; }
.article-nav a { color: var(--ed-green); background: #f1f6f2; }
.verdict-block { background: var(--ed-green-dark); }

@media (max-width: 1100px) {
  .editorial-home-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr); gap: 44px; }
  .editorial-review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .editorial-home-grid,
  .editorial-method-grid { grid-template-columns: 1fr; }
  .editorial-feature-wrap { max-width: 620px; }
  .editorial-category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .editorial-home-stats { max-width: none; }
}

@media (max-width: 760px) {
  .nav-wrap { min-height: 66px; }
  .site-nav.open { border: 1px solid var(--ed-line); border-radius: 18px; background: #fff; box-shadow: var(--ed-shadow); }
  .site-nav .nav-cta { margin-left: 0; }
  .editorial-home-hero { padding-top: 44px; }
  .editorial-hero-copy h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); line-height: 1.01; }
  .editorial-home-stats { grid-template-columns: 1fr; }
  .editorial-home-stats div { padding: 16px 0; }
  .editorial-home-stats div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--ed-line); }
  .editorial-home-stats span { min-height: 0; }
  .editorial-feature-media { height: 370px; }
  .editorial-section-heading { align-items: start; flex-direction: column; }
  .editorial-category-list,
  .editorial-review-grid,
  .editorial-method-points { grid-template-columns: 1fr; }
  .editorial-category-card { min-height: 145px; }
}

/* Editorial footer v4.6.10 — warm paper instead of the old dark plum block. */
.editorial-footer {
  margin-top: 0;
  padding: 0;
  color: var(--footer-text, #1c2b25);
  background: var(--footer-bg, #f1ede4);
  border-top: 8px solid var(--ed-green-dark);
  box-shadow: none;
}
.editorial-footer .footer-grid {
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .68fr));
  gap: clamp(34px, 5vw, 72px);
  padding-top: 66px;
  padding-bottom: 52px;
}
.editorial-footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--footer-text, #1c2b25);
  font-family: var(--ed-serif);
  font-size: 1.24rem;
  font-weight: 600;
}
.editorial-footer .footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--ed-green-dark);
  box-shadow: none;
}
.editorial-footer .footer-brand-block p {
  max-width: 420px;
  margin: 20px 0 0;
  color: var(--footer-muted, #68746e);
  font-size: .96rem;
  line-height: 1.75;
}
.editorial-footer .footer-mini {
  gap: 8px;
  margin-top: 22px;
}
.editorial-footer .footer-mini span {
  border: 1px solid #d8d0c3;
  border-radius: 999px;
  padding: 8px 11px;
  color: #385045;
  background: rgba(255,255,255,.46);
  font-size: .75rem;
  font-weight: 750;
}
.editorial-footer .footer-col h3 {
  margin: 4px 0 17px;
  color: var(--ed-green-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.editorial-footer .footer-col a {
  display: block;
  padding: 7px 0;
  color: #33433c;
  font-size: .92rem;
  font-weight: 650;
  transition: color .16s ease, transform .16s ease;
}
.editorial-footer .footer-col a:hover {
  color: var(--ed-green);
  transform: translateX(2px);
}
.editorial-footer .footer-bottom-wrap {
  border-top: 1px solid #d8d0c3;
  background: #e8e1d5;
}
.editorial-footer .footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 34px;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 0;
  color: #5f6b65;
  font-size: .82rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .editorial-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .editorial-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 40px;
  }
  .editorial-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* v4.6.15 — homepage category image support */
.editorial-category-card{isolation:isolate;overflow:hidden}
.editorial-category-bg{position:absolute;z-index:-3;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
.editorial-category-fade{position:absolute;z-index:-2;inset:0;background:var(--ed-bg)}
.editorial-category-number,.editorial-category-copy,.editorial-category-arrow{position:relative;z-index:1}
.editorial-category-card.has-category-image .editorial-category-copy{align-self:end;padding:14px;border:1px solid rgba(255,255,255,.62);border-radius:12px;background:rgba(255,255,255,.84);backdrop-filter:blur(7px)}
.editorial-category-card.has-category-image:hover .editorial-category-bg{transform:scale(1.025)}
.editorial-category-card.has-category-image:hover{background:#fff}
