:root {
  --green: #6fa472;
  --green-dark: #4d7e51;
  --green-light: #edf5ee;
  --sand: #c4956a;
  --sand-light: #f7efe4;
  --bg: #faf9f5;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #888;
  --border: #e5ddd3;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; display: inline-block; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
body.no-scroll { overflow: hidden; }

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; line-height: 1.3; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.4; }
p { color: var(--text-muted); line-height: 1.75; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; margin-top: 12px; }

/* ── HEADER ── */
.header { position: sticky; top: 0; z-index: 100; background: rgba(250,249,245,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header.menu-open { backdrop-filter: none; background: transparent; border-bottom: none; }
.header__inner { display: flex; align-items: center; gap: 16px; padding: 16px 32px; max-width: 1200px; margin: 0 auto; }
.header__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--text); white-space: nowrap; flex-shrink: 0; margin-right: 32px; }
.header__nav { flex-shrink: 0; }
.header__nav ul { display: flex; gap: 28px; margin: 0; padding: 0; }
.header__nav a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); white-space: nowrap; }
.header__nav a:hover, .header__nav a.active { color: var(--green); }
.header__cta { display: flex; align-items: center; flex-shrink: 0; white-space: nowrap; }
.header__cta .btn { margin-top: 0; }
.header__menu { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.header__menu span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-close { display: none; }

/* ── HERO ── */
.hero { padding: 88px 0 72px; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero__tag { background: var(--green-light); color: var(--green-dark); padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }
.hero__title { margin-bottom: 20px; color: var(--text); }
.hero__title span { color: var(--green); }
.hero__text { font-size: 1.08rem; margin-bottom: 36px; max-width: 460px; }
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__image { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section--alt { background: var(--sand-light); }
.section--green { background: var(--green-light); }
.section__header { text-align: center; margin-bottom: 52px; }
.section__tag { background: var(--green-light); color: var(--green-dark); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px; }
.section__title { margin-bottom: 12px; color: var(--text); }
.section__subtitle { max-width: 520px; margin: 0 auto; }
.section__footer { text-align: center; margin-top: 44px; }

/* ── FEATURE CARDS ── */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { text-align: center; padding: 40px 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.feature-card__title { margin-bottom: 10px; color: var(--text); }
.feature-card__text { font-size: 0.9rem; }

/* ── CARDS GRID ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── BLOG CARD ── */
.blog-card { position: relative; cursor: pointer; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-card__category { background: var(--green-light); color: var(--green-dark); padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.blog-card__date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card__title { margin-bottom: 10px; color: var(--text); font-size: 1rem; }
.blog-card__excerpt { font-size: 0.875rem; margin-bottom: 16px; }
.blog-card__link { font-size: 0.85rem; font-weight: 600; color: var(--green); }
.blog-card__link:hover { color: var(--green-dark); }
/* ── RECIPE CARD ── */
.recipe-card { position: relative; cursor: pointer; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.recipe-card.hidden { display: none !important; }
.blog-card.hidden { display: none !important; }
.recipe-card__image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.recipe-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.recipe-card:hover .recipe-card__image img { transform: scale(1.05); }
.recipe-card__tag { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--green-dark); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.recipe-card__tags { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.recipe-card__tags .recipe-card__tag { position: static; top: auto; left: auto; }
.recipe-card__body { padding: 20px; }
.recipe-card__title { margin-bottom: 8px; color: var(--text); font-size: 1rem; }
.recipe-card__desc { font-size: 0.875rem; margin-bottom: 16px; }

/* ── RECIPE FILTER ── */
.recipe-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn { padding: 8px 22px; border-radius: 50px; font-size: 0.875rem; font-weight: 600; border: 2px solid var(--border); color: var(--text-muted); background: var(--white); transition: var(--transition); cursor: pointer; }
.filter-btn:hover, .filter-btn.active { border-color: var(--green); background: var(--green); color: var(--white); }

/* ── PAGE HERO ── */
.page-hero { background: var(--green-light); padding: 72px 0; text-align: center; }
.page-hero__title { margin-bottom: 16px; color: var(--text); }
.page-hero__text { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ── ABOUT ── */
.about-story { padding: 80px 0; }
.about-story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-story__image { border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; }
.about-story__image img { width: 100%; height: 100%; object-fit: cover; }
.about-story__tag { background: var(--green-light); color: var(--green-dark); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-bottom: 16px; }
.about-story__title { margin-bottom: 20px; color: var(--text); }
.about-story__text { margin-bottom: 14px; }

.about-stats { background: var(--sand-light); padding: 64px 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat__number { font-size: 2.8rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat__label { font-size: 0.875rem; color: var(--text-muted); margin-top: 10px; }

.about-tips { padding: 80px 0; }
.tips-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tip-item { display: flex; gap: 16px; padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.tip-item__icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.tip-item__title { font-weight: 600; margin-bottom: 6px; color: var(--text); font-size: 0.95rem; }
.tip-item__text { font-size: 0.85rem; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--green); padding: 80px 0; text-align: center; }
.newsletter__title { color: var(--white); margin-bottom: 12px; }
.newsletter__text { color: #fff; margin-bottom: 36px; }
.newsletter__text p { color: #fff; margin-bottom: 0; }
.newsletter__text p { color: inherit; margin-bottom: 0; }
.newsletter__form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter__input { flex: 1; padding: 14px 20px; border-radius: 50px; border: none; font-size: 0.95rem; font-family: inherit; outline: none; color: var(--text); }
.newsletter__btn { padding: 14px 28px; border-radius: 50px; background: var(--text); color: var(--white); font-weight: 600; font-size: 0.92rem; font-family: inherit; cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; }
.newsletter__btn:hover { background: #111; }

/* ── FOOTER ── */
.footer { background: #1d2020; color: rgba(255,255,255,0.55); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 14px; }
.footer__about { font-size: 0.875rem; line-height: 1.75; }
.footer__heading { color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer__links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: inherit; }
.footer__links ul li { margin: 0; padding: 0; }
.footer__links ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer__links ul li a:hover { color: var(--green); }
.footer__links a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.8rem; }

/* ── ANIMATIONS ── */
.mobile-nav__close { display: none; }
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.anim.in-view { opacity: 1; transform: translateY(0); }
.single .anim, .single .anim.in-view { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ── BLOG SINGLE ── */
.blog-single__hero { height: 460px; overflow: hidden; }
.blog-single__hero img { width: 100%; height: 100%; object-fit: cover; }
.article { padding: 64px 0 80px; }
.article__inner { max-width: 720px; margin: 0 auto; }
.article__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; }
.article__title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text); margin-bottom: 36px; line-height: 1.2; }
.article__content h2 { font-size: 1.45rem; color: var(--text); margin: 40px 0 14px; }
.article__content p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.85; }
.article__content ul, .article__content ol { padding-left: 24px; margin-bottom: 20px; }
.article__content li { margin-bottom: 8px; color: var(--text-muted); line-height: 1.7; font-size: 1rem; }
.article__content blockquote { border-left: 4px solid var(--green); padding: 18px 24px; background: var(--green-light); border-radius: 0 var(--radius) var(--radius) 0; margin: 32px 0; }
.article__content blockquote p { color: var(--green-dark); font-style: italic; font-size: 1.08rem; margin: 0; }
.article__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.article__tag { background: var(--bg); border: 1px solid var(--border); padding: 5px 14px; border-radius: 50px; font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.article__tag:hover { border-color: var(--green); color: var(--green); }
.author-card { display: flex; gap: 20px; padding: 28px; background: var(--sand-light); border-radius: var(--radius); margin-top: 40px; align-items: flex-start; }
.author-card__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-card__name { font-weight: 600; color: var(--text); margin-bottom: 6px; }
.author-card__bio { font-size: 0.875rem; }
.related { padding: 64px 0; background: var(--green-light); }

/* ── RECIPE SINGLE ── */
.recipe-hero { padding: 64px 0; background: var(--green-light); }
.recipe-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.recipe-hero__image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.recipe-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.recipe-hero__tag { background: var(--white); color: var(--green-dark); padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; margin-bottom: 16px; }
.recipe-hero__title { color: var(--text); margin-bottom: 16px; }
.recipe-hero__desc { margin-bottom: 28px; font-size: 1.02rem; }
.recipe-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.recipe-meta__item { text-align: center; padding: 14px 18px; background: var(--white); border-radius: var(--radius); min-width: 80px; }
.recipe-meta__value { font-size: 1.2rem; font-weight: 700; color: var(--green); }
.recipe-meta__label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
.recipe-actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.btn-print { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: transparent; border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text-muted); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.btn-print:hover { background: var(--green); border-color: var(--green); color: #fff; }
.share-wrap { position: relative; }
.btn-share { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; background: transparent; border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text-muted); font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.btn-share:hover, .share-wrap.is-open .btn-share { background: var(--green); border-color: var(--green); color: #fff; }
.share-dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.13); padding: 8px; min-width: 180px; z-index: 200; }
.share-wrap.is-open .share-dropdown { display: flex; flex-direction: column; gap: 2px; }
.share-option { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: background 0.18s, color 0.18s; border: none; width: 100%; background: transparent; color: var(--text); }
.share-option:hover { background: var(--sand-light); }
.share-option--facebook { color: #1877f2; }
.share-option--facebook:hover { background: #e7f0fd; color: #1877f2; }
.share-option--whatsapp { color: #25d366; }
.share-option--whatsapp:hover { background: #e8faf0; color: #25d366; }
.share-option--instagram { color: #c13584; }
.share-option--instagram:hover { background: #fce4f0; color: #c13584; }
.recipe-body { padding: 72px 0; }
.recipe-body__inner { display: grid; grid-template-columns: 5fr 8fr; gap: 56px; }
@media screen and (max-width: 768px) {
  .recipe-hero { padding: 40px 0; }
  .recipe-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .recipe-body { padding: 48px 0; }
  .recipe-body__inner { grid-template-columns: 1fr; gap: 36px; }
}
.ingredients__title, .instructions__title { font-size: 1.25rem; color: var(--text); margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--green); }
.ingredients__list { list-style: none; }
.ingredients__list li { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; gap: 12px; }
.ingredients__list li:last-child { border: none; }
.ingredient-amount { color: var(--green-dark); font-weight: 600; white-space: nowrap; }
.instructions__list { list-style: none; counter-reset: steps; }
.instructions__list li { display: flex; gap: 18px; margin-bottom: 28px; counter-increment: steps; }
.instructions__list li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; background: var(--green); color: white; border-radius: 50%; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.step-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
.nutrition-card { background: var(--sand-light); border-radius: var(--radius); padding: 32px; margin-top: 40px; }
.nutrition-card__title { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 20px; }
.nutrition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nutrition-item { text-align: center; }
.nutrition-item__value { font-size: 1.5rem; font-weight: 700; color: var(--green); }
.nutrition-item__label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── RESPONSIVE ── */
@media screen and (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { order: -1; max-height: 360px; aspect-ratio: 16/9; }
  .hero__text { max-width: 100%; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story__image { aspect-ratio: 16/9; order: -1; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .header__logo { margin-right: 0; }
  .header__menu { display: flex; margin-left: auto; }
  .header__nav.open {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: fixed; top: 0; left: 0; width: 100%; min-height: 100vh; height: 100%;
    background: var(--green-dark); padding: 40px 28px; z-index: 9999;
  }
  .header__nav.open ul { flex-direction: column; gap: 36px; align-items: center; list-style: none; margin: 0; padding: 0; }
  .header__nav.open a { font-size: 1.5rem; font-weight: 600; color: #fff; text-align: center; }
  .header__nav.open a:hover { color: rgba(255,255,255,0.7); }
.header__nav.open .nav-close { display: flex; align-items: center; justify-content: center; position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.15); border: none; border-radius: 50%; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
  .features__grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  /* iOS auto-zoom fix — font-size < 16px triggers zoom on focus */
  input, textarea, select { font-size: 16px !important; }
}

@media screen and (max-width: 576px) {
  .section { padding: 56px 0; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0; }
}



/* ── 404 PAGE ── */
.error-404 {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/posts/keto-pantry-guide/grilled-beef.jpg') center/cover no-repeat;
}
.error-404__overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 110, 55, 0.60);
}
.error-404__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-404__code {
  display: block;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 12px;
}
.error-404__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.error-404__btn {
  display: inline-block;
  background: #fff;
  color: #2d5c30;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.error-404__btn:hover {
  background: #2d5c30;
  color: #fff;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .error-404__code { font-size: 6rem; }
  .error-404__title { font-size: 1.6rem; }
}

/* ── CONTACT PAGE ── */
.contact__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact__info-title { font-size: 1.5rem; font-weight: 700; color: #2d5c30; margin-bottom: 14px; }
.contact__info-desc { color: #666; line-height: 1.75; margin-bottom: 28px; max-width: 340px; }
.contact__info-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.contact__info-item svg { color: #2d5c30; flex-shrink: 0; }
.contact__info-item a { color: #333; text-decoration: none; font-weight: 500; font-size: 1rem; }
.contact__info-item a:hover { color: #2d5c30; }
.contact__info-note { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 0.875rem; color: #999; font-style: italic; }
.contact__info-note svg { color: #aaa; flex-shrink: 0; }
.contact__form { background: #f8f8f5; padding: 44px; border-radius: 20px; }
.contact__form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 6px; }
.contact__form-subtitle { color: #666; margin-bottom: 28px; font-size: 0.95rem; }
.contact__form-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.contact__form-wrap .wpcf7-form p { margin: 0 0 16px; }
.contact__form-wrap input[type="text"],
.contact__form-wrap input[type="email"],
.contact__form-wrap textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #e4e4e4; border-radius: 10px; font-size: 0.95rem; font-family: inherit; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }
.contact__form-wrap input[type="text"]:focus,
.contact__form-wrap input[type="email"]:focus,
.contact__form-wrap textarea:focus { outline: none; border-color: #2d5c30; box-shadow: 0 0 0 3px rgba(45,92,48,0.08); }
.contact__form-wrap textarea { min-height: 130px; resize: vertical; }
.contact__form-wrap input[type="submit"] { background: #2d5c30; color: #fff; border: none; padding: 14px 40px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.25s, transform 0.2s; margin-top: 4px; }
.contact__form-wrap input[type="submit"]:hover { background: #1e3f22; transform: translateY(-2px); }
.wpcf7-not-valid-tip { font-size: 0.8rem; color: #e74c3c; margin-top: 4px; display: block; }
.wpcf7-response-output { padding: 12px 18px; border-radius: 10px; margin-top: 16px; font-size: 0.9rem; border: none !important; }
.wpcf7-mail-sent-ok { background: #eaf5ea; color: #2d5c30; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: #fdecea; color: #c0392b; }

@media screen and (max-width: 992px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media screen and (max-width: 768px) {
  .contact__form { padding: 28px 20px; }
  .contact__info-desc { max-width: 100%; }
}

/* -- HEADER SEARCH -- */
.header__search { position: relative; flex: 1 1 240px; max-width: 340px; margin-left: auto; margin-right: 16px; }
.header__search-form { position: relative; display: flex; align-items: center; }
.header__search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #aaa; pointer-events: none; z-index: 1; }
.header__search-input {
    width: 100%; padding: 10px 40px 10px 38px;
    border: 1.5px solid #ebebeb; border-radius: 50px;
    font-size: 0.875rem; font-family: inherit;
    background: #fff; outline: none; color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.header__search-input:focus { border-color: var(--green); box-shadow: 0 2px 16px rgba(111,164,114,0.18); }
.header__search-input::placeholder { color: #bbb; }
.header__search-filter {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    color: #bbb; background: none; border: none; cursor: pointer; padding: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
}
.header__search-filter:hover { color: var(--green); }

/* Dropdown */
.header__search-dropdown {
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    min-width: 340px; background: #fff;
    border: 1px solid rgba(0,0,0,0.07); border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13); z-index: 999; overflow: hidden;
}
.header__search-dropdown.is-open { display: block; }

.search-drop__section { padding: 4px 0; }
.search-drop__section:first-child { background: var(--green-light); }
.search-drop__section + .search-drop__section { background: #fff; border-top: 1px solid #f0f0eb; }

.search-drop__label {
    padding: 10px 16px 4px; font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em; color: #aaa;
}
.search-drop__item {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 16px; text-decoration: none; color: var(--text);
    transition: background 0.15s;
}
.search-drop__item:hover, .search-drop__item.is-selected { background: rgba(111,164,114,0.12); }
.search-drop__thumb {
    width: 40px; height: 40px; border-radius: 10px;
    object-fit: cover; flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}
.search-drop__thumb-placeholder {
    width: 40px; height: 40px; border-radius: 10px;
    background: #e8e8e0; flex-shrink: 0;
}
.search-drop__info { flex: 1; min-width: 0; }
.search-drop__title {
    font-size: 0.875rem; font-weight: 600; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    display: block;
}
.search-drop__type { font-size: 0.72rem; color: #aaa; margin-top: 2px; display: block; }

.search-drop__all { border-top: 1px solid #f0f0eb; background: #fff; }
.search-drop__all a {
    display: block; padding: 11px 16px; text-align: center;
    font-size: 0.82rem; font-weight: 600; color: var(--green-dark);
    transition: background 0.15s;
}
.search-drop__all a:hover { background: var(--green-light); }
.search-drop__empty, .search-drop__loading {
    padding: 18px 16px; text-align: center; color: #bbb; font-size: 0.875rem;
}

/* Search results page */
.search-results__section { margin-bottom: 60px; }
.search-results__heading {
    font-size: 1.5rem; font-weight: 700; color: var(--text);
    margin-bottom: 32px; padding-bottom: 12px;
    border-bottom: 2px solid var(--green-light);
}
.search-results__empty { text-align: center; padding: 64px 0; color: var(--text-muted); font-size: 1.05rem; }

@media screen and (max-width: 992px) { .header__search { flex: 0 1 200px; margin-left: auto; margin-right: 10px; } }
@media screen and (max-width: 768px) { .header__search { display: none; } }

/* ── LEGAL PAGES (Privacy Policy / Terms of Use) ── */
.page-hero--legal { padding: 64px 0 48px; }
.page-hero__meta { font-size: 0.875rem; color: var(--text-muted); margin-top: 8px; }
.legal__wrap { max-width: 780px; margin: 0 auto; }
.legal__content { color: #444; line-height: 1.85; font-size: 1rem; }
.legal__content h2 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin: 2.4em 0 0.6em; }
.legal__content h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin: 1.8em 0 0.4em; }
.legal__content p { margin-bottom: 1em; }
.legal__content ul, .legal__content ol { padding-left: 1.5em; margin-bottom: 1em; }
.legal__content li { margin-bottom: 0.4em; }
.legal__content a { color: var(--green-dark); text-decoration: underline; }
.legal__content strong { color: var(--text); font-weight: 600; }
.legal__content hr { border: none; border-top: 1px solid #e8e8e0; margin: 2.5em 0; }

/* ── BREADCRUMBS ── */
.breadcrumbs { display: block; margin-bottom: 10px; }
.breadcrumbs__list { display: flex; flex-wrap: wrap; align-items: center; list-style: none; margin: 0; padding: 0; gap: 2px; }
.breadcrumbs__item { display: flex; align-items: center; font-size: 0.72rem; font-weight: 500; color: rgba(0,0,0,0.5); }
.breadcrumbs__item + .breadcrumbs__item::before { content: '›'; margin: 0 5px; color: rgba(0,0,0,0.3); }
.breadcrumbs__item a { color: rgba(0,0,0,0.5); transition: color var(--transition); }
.breadcrumbs__item a:hover { color: #000; }
.breadcrumbs__item--current { color: rgba(0,0,0,0.75); }
.blog-single__hero { position: relative; }
.blog-single__hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 1; }
.blog-single__hero > .container { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1200px; padding: 0 24px; pointer-events: none; z-index: 2; }
.blog-single__hero > .container .breadcrumbs { pointer-events: auto; }
.blog-single__hero .breadcrumbs__item { color: rgba(255,255,255,0.7); }
.blog-single__hero .breadcrumbs__item + .breadcrumbs__item::before { color: rgba(255,255,255,0.4); }
.blog-single__hero .breadcrumbs__item a { color: rgba(255,255,255,0.7); }
.blog-single__hero .breadcrumbs__item a:hover { color: #fff; }
.blog-single__hero .breadcrumbs__item--current { color: rgba(255,255,255,0.9); }

/* ── PRINT ── */
@media print {
  #wpadminbar, .header, .footer, .related, .block-newsletter, .newsletter,
  .recipe-actions, .recipe-hero__image, .header__search, .nav-close { display: none !important; }

  body { background: #fff; color: #000; font-size: 11pt; }
  * { box-shadow: none !important; }
  a { color: #000; text-decoration: none; }
  .container { max-width: 100%; padding: 0 16px; }

  .recipe-hero { padding: 12pt 0 8pt; }
  .recipe-hero__inner { display: block; }
  .recipe-hero__title { font-size: 20pt; margin-bottom: 6pt; }
  .recipe-hero__desc { font-size: 10pt; margin-bottom: 10pt; }

  .recipe-meta { flex-wrap: wrap; gap: 6pt; margin-top: 8pt; }
  .recipe-meta__item { border: 1pt solid #ddd; padding: 6pt 10pt; border-radius: 4pt; }
  .recipe-meta__value { font-size: 12pt; }
  .recipe-meta__label { font-size: 7pt; }

  .recipe-body { padding: 12pt 0; }
  .recipe-body__inner { display: block; }
  .recipe-body__inner > div { margin-bottom: 14pt; break-inside: avoid; }

  .ingredients__title, .instructions__title { font-size: 13pt; border-bottom: 1.5pt solid #000; padding-bottom: 3pt; margin-bottom: 8pt; }
  .ingredients__list li, .instructions__list li { font-size: 10pt; line-height: 1.5; margin-bottom: 3pt; }
  .step-text { font-size: 10pt; }

  .nutrition-card { border: 1pt solid #ddd; background: #f9f9f9; padding: 10pt; margin-top: 12pt; break-inside: avoid; }
  .nutrition-grid { grid-template-columns: repeat(4, 1fr); gap: 6pt; }
  .nutrition-item__value { font-size: 12pt; }
  .nutrition-item__label { font-size: 7pt; }
}
/* ── ARTICLE CONTENT LINKS ── */
.article__content a {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}