/*
Theme Name: Savor
Theme URI: https://keybrains.io/savor
Author: KeyBrains
Author URI: https://wordpress.org/keybrains
Description: Savor is a modern, elegant recipe blog theme featuring a beautiful food-forward design with support for recipe custom post types, nutritional facts (FDA-style), popular recipes ranked by likes, featured collections, and a full demo content importer with 50 recipes. Perfect for food bloggers, chefs, and culinary creators.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: savor
Tags: food, recipe, blog, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready, two-columns, right-sidebar, editor-style, block-styles, wide-blocks, flexible-header, accessibility-ready

Savor WordPress Theme, Copyright 2024 KeyBrains
Savor is distributed under the terms of the GNU GPL
*/

/* ─── CSS VARIABLES ──────────────────────────────────────────── */
:root {
  --savor-orange:      #e07d4f;
  --savor-orange-dark: #c9663a;
  --savor-orange-pale: #fdf0e8;
  --savor-like:        #e04f6e;
  --savor-star:        #f5a623;
  --savor-text:        #1a1a1a;
  --savor-muted:       #888888;
  --savor-border:      #ebebeb;
  --savor-bg:          #ffffff;
  --savor-bg-light:    #fafaf8;
  --savor-max:         1180px;
  --savor-radius:      10px;
  --savor-shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --savor-shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --savor-shadow-lg:   0 8px 40px rgba(0,0,0,.14);
  --savor-transition:  all .22s ease;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--savor-text);
  background: var(--savor-bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--savor-transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: 'Nunito', sans-serif; font-weight: 800; line-height: 1.2; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.savor-wrap { max-width: var(--savor-max); margin: 0 auto; padding: 0 24px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; }

/* ─── HEADER ─────────────────────────────────────────────────── */
#savor-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--savor-border);
  box-shadow: var(--savor-shadow-sm);
}
.savor-nav-inner {
  max-width: var(--savor-max); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center;
}
.savor-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 32px; font-weight: 700;
  color: var(--savor-text);
  margin-right: 36px; flex-shrink: 0;
  letter-spacing: -.5px;
}
.savor-logo:hover { color: var(--savor-orange); }
.savor-logo img { height: 40px; width: auto; }

/* Primary nav */
.savor-primary-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.savor-primary-nav ul { display: flex; align-items: center; gap: 2px; }
.savor-primary-nav ul li a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; font-size: 13.5px; font-weight: 700;
  color: var(--savor-text); border-radius: 6px; white-space: nowrap;
}
.savor-primary-nav ul li a:hover,
.savor-primary-nav ul li.current-menu-item > a,
.savor-primary-nav ul li.current_page_item > a { color: var(--savor-orange); }

.savor-nav-icons { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.savor-nav-icons a { color: var(--savor-text); font-size: 18px; line-height: 1; }
.savor-nav-icons a:hover { color: var(--savor-orange); }

.savor-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; margin-left: 10px;
}
.savor-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--savor-text); border-radius: 2px;
  transition: var(--savor-transition);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.savor-hero-wrap { padding: 20px 24px 0; max-width: var(--savor-max); margin: 0 auto; }
.savor-hero {
  position: relative; border-radius: 18px; overflow: hidden;
  min-height: 320px; display: flex; align-items: center;
  background: #f3e6dc;
}
.savor-hero-img {
  position: absolute; right: 0; top: 0;
  width: 62%; height: 100%; object-fit: cover;
}
.savor-hero-fade {
  position: absolute; right: 0; top: 0; width: 62%; height: 100%;
  background: linear-gradient(to right, #f3e6dc 18%, transparent 60%);
}
.savor-hero-content { position: relative; z-index: 2; padding: 44px 52px; max-width: 480px; }
.savor-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.82); border: 1px solid rgba(224,125,79,.25);
  border-radius: 20px; padding: 5px 13px;
  font-size: 12.5px; font-weight: 700; color: #555; margin-bottom: 18px;
}
.savor-hero-title { font-size: clamp(26px,3.5vw,38px); font-weight: 900; margin-bottom: 12px; }
.savor-hero-desc { font-size: 14px; color: #666; line-height: 1.65; max-width: 340px; margin-bottom: 20px; }
.savor-btn { display: inline-block; padding: 11px 26px; border-radius: 25px; font-size: 13.5px; font-weight: 800; background: var(--savor-orange); color: #fff; transition: var(--savor-transition); }
.savor-btn:hover { background: var(--savor-orange-dark); color: #fff; transform: translateY(-1px); }
.savor-hero-dots { position: absolute; bottom: 18px; right: 20px; display: flex; gap: 5px; }
.savor-hero-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; padding: 0; transition: background .2s; }
.savor-hero-dot.active { background: #fff; }

/* ─── SECTION HEADINGS ───────────────────────────────────────── */
.savor-section-title { font-size: 21px; font-weight: 900; margin-bottom: 20px; }
.savor-section { padding: 36px 0; }

/* ─── RECIPE CARDS ───────────────────────────────────────────── */
.savor-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.savor-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.savor-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.savor-card { cursor: pointer; transition: transform .22s; }
.savor-card:hover { transform: translateY(-3px); }
.savor-card:hover .savor-card-thumb img { transform: scale(1.06); }
.savor-card-thumb { border-radius: var(--savor-radius); overflow: hidden; aspect-ratio: 4/3; background: #f5f0eb; position: relative; }
.savor-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s ease; }
.savor-card-body { padding: 10px 2px 4px; }
.savor-card-title { font-size: 13.5px; font-weight: 700; line-height: 1.4; margin-bottom: 7px; }
.savor-stars { display: flex; gap: 2px; align-items: center; }
.savor-stars .s { font-size: 12px; color: var(--savor-star); }
.savor-stars .s.e { color: #ddd; }
.savor-stars .rc { font-size: 11.5px; color: var(--savor-muted); margin-left: 3px; }

/* Like chip */
.savor-like-chip {
  position: absolute; top: 10px; right: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.92); border-radius: 14px;
  padding: 4px 10px; font-size: 12px; font-weight: 800;
  color: var(--savor-like); opacity: 0; transition: opacity .2s;
}
.savor-card:hover .savor-like-chip { opacity: 1; }
.savor-card-likes { display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--savor-like); margin-top: 4px; }
.savor-heart-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--savor-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--savor-transition); cursor: pointer;
}
.savor-heart-btn:hover { border-color: var(--savor-like); }
.savor-heart-btn.liked { border-color: var(--savor-like); background: #fff0f3; }
.savor-card-footer { display: flex; align-items: center; justify-content: space-between; }

/* ─── CATEGORIES ROW ─────────────────────────────────────────── */
.savor-categories-row { display: flex; gap: 22px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.savor-categories-row::-webkit-scrollbar { display: none; }
.savor-cat-item { display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0; cursor: pointer; }
.savor-cat-circle { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; border: 2.5px solid transparent; transition: border-color .2s; background: #f5f0eb; }
.savor-cat-item:hover .savor-cat-circle { border-color: var(--savor-orange); }
.savor-cat-circle img { width: 100%; height: 100%; object-fit: cover; }
.savor-cat-name { font-size: 13px; font-weight: 700; text-align: center; }

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
.savor-newsletter { background: var(--savor-orange-pale); padding: 56px 24px; text-align: center; }
.savor-newsletter h2 { font-size: clamp(26px,4vw,38px); font-weight: 900; line-height: 1.2; margin-bottom: 10px; }
.savor-newsletter p { font-size: 14px; color: #666; margin-bottom: 24px; }
.savor-nl-form { display: flex; max-width: 400px; margin: 0 auto 12px; border-radius: 30px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.savor-nl-form input { flex: 1; padding: 13px 20px; border: 1px solid var(--savor-border); border-right: none; font-size: 14px; outline: none; }
.savor-nl-form button { padding: 13px 22px; background: var(--savor-orange); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; transition: background .18s; }
.savor-nl-form button:hover { background: var(--savor-orange-dark); }
.savor-nl-terms { font-size: 11.5px; color: var(--savor-muted); }
.savor-nl-terms a { color: var(--savor-orange); }

/* ─── COLLECTIONS ────────────────────────────────────────────── */
.savor-collections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.savor-coll-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; cursor: pointer; background: #e8ddd5; }
.savor-coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s ease; }
.savor-coll-card:hover img { transform: scale(1.04); }
.savor-coll-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.62) 45%,transparent); display: flex; align-items: flex-end; padding: 18px 20px; }
.savor-coll-info h3 { font-size: 17px; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1.25; }
.savor-coll-badge { display: inline-block; padding: 3px 11px; border-radius: 12px; background: rgba(255,255,255,.2); color: #fff; font-size: 12px; font-weight: 700; }

/* ─── POPULAR PODIUM ─────────────────────────────────────────── */
.savor-podium { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 20px; align-items: end; margin-bottom: 40px; }
.savor-podium-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; transition: transform .25s, box-shadow .25s; }
.savor-podium-card:hover { transform: translateY(-4px); box-shadow: var(--savor-shadow-lg); }
.savor-podium-card.rank-1 { aspect-ratio: 3/4; }
.savor-podium-card.rank-2, .savor-podium-card.rank-3 { aspect-ratio: 3/3.8; }
.savor-podium-card img { width: 100%; height: 100%; object-fit: cover; }
.savor-podium-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.75) 45%,rgba(0,0,0,.05)); }
.savor-rank-badge { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 900; }
.rank-1 .savor-rank-badge { background: var(--savor-star); color: #fff; width: 42px; height: 42px; font-size: 18px; }
.rank-2 .savor-rank-badge { background: #b0b8c8; color: #fff; }
.rank-3 .savor-rank-badge { background: #c4906a; color: #fff; }
.savor-podium-likes { position: absolute; top: 14px; right: 14px; display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.18); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3); border-radius: 16px; padding: 5px 11px; font-size: 12.5px; font-weight: 800; color: #fff; }
.savor-podium-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 18px 20px; }
.savor-podium-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.7); margin-bottom: 5px; }
.savor-podium-title { font-size: 17px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 8px; }
.rank-1 .savor-podium-title { font-size: 20px; }
.savor-podium-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.savor-podium-stars { color: var(--savor-star); font-size: 12px; letter-spacing: 1px; }
.savor-podium-author { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 600; }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.savor-filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--savor-border); border-bottom: 1px solid var(--savor-border); margin-bottom: 28px; }
.savor-filter-label { font-size: 13px; font-weight: 800; color: var(--savor-muted); text-transform: uppercase; letter-spacing: .6px; margin-right: 4px; }
.savor-filter-chip { padding: 7px 17px; border-radius: 20px; font-size: 13px; font-weight: 700; border: 1.5px solid var(--savor-border); background: #fff; color: var(--savor-text); cursor: pointer; transition: var(--savor-transition); }
.savor-filter-chip:hover { border-color: var(--savor-orange); color: var(--savor-orange); }
.savor-filter-chip.active { background: var(--savor-orange); border-color: var(--savor-orange); color: #fff; }

/* ─── SINGLE RECIPE PAGE ─────────────────────────────────────── */
.savor-recipe-title { font-size: clamp(26px,4vw,40px); font-weight: 900; margin: 14px 0 16px; }
.savor-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--savor-border); margin-bottom: 18px; }
.savor-meta-author { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; }
.savor-meta-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.savor-meta-dot { color: #ccc; font-size: 18px; }
.savor-meta-stars { display: flex; align-items: center; gap: 3px; }
.savor-meta-stars .s { font-size: 16px; color: var(--savor-star); }
.savor-meta-stars .s.e { color: #ddd; }
.savor-meta-actions { margin-left: auto; display: flex; gap: 12px; }
.savor-icon-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--savor-border); display: flex; align-items: center; justify-content: center; transition: var(--savor-transition); color: var(--savor-muted); cursor: pointer; font-size: 15px; }
.savor-icon-btn:hover { border-color: var(--savor-orange); color: var(--savor-orange); }

.savor-stats-bar { display: flex; align-items: stretch; border: 1px solid var(--savor-border); border-radius: var(--savor-radius); overflow: hidden; margin-bottom: 22px; }
.savor-stat-cell { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-right: 1px solid var(--savor-border); gap: 3px; }
.savor-stat-cell:last-child { border-right: none; }
.savor-stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--savor-muted); }
.savor-stat-value { font-size: 15px; font-weight: 800; }

.savor-featured-img { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.savor-featured-img img { width: 100%; max-height: 520px; object-fit: cover; }
.savor-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,.95); display: flex; align-items: center; justify-content: center; box-shadow: var(--savor-shadow-lg); cursor: pointer; transition: transform .2s; font-size: 24px; color: var(--savor-orange); padding-left: 4px; }
.savor-play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }

.savor-recipe-cols { display: grid; grid-template-columns: 300px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
.savor-sidebar-title { font-size: 20px; font-weight: 900; padding-bottom: 12px; margin-bottom: 16px; border-bottom: 2px solid var(--savor-text); }
.savor-ing-group { margin-bottom: 20px; }
.savor-ing-group-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--savor-muted); margin-bottom: 10px; }
.savor-ing-item { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--savor-border); font-size: 14px; }
.savor-ing-item:last-child { border-bottom: none; }
.savor-ing-cb { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ccc; flex-shrink: 0; appearance: none; cursor: pointer; transition: var(--savor-transition); position: relative; }
.savor-ing-cb:checked { background: var(--savor-orange); border-color: var(--savor-orange); }
.savor-ing-cb:checked::after { content:''; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; border-radius: 50%; background: #fff; }
label.savor-ing-label { cursor: pointer; flex: 1; font-size: 14px; line-height: 1.4; }
.savor-ing-cb:checked + label.savor-ing-label { text-decoration: line-through; color: var(--savor-muted); }

/* FDA Nutrition Facts */
.savor-nf { font-family: Arial, Helvetica, sans-serif; border: 2px solid #000; padding: 6px 7px 4px; margin-top: 28px; background: #fff; width: 100%; }
.savor-nf-title { font-size: 32px; font-weight: 900; line-height: 1.05; font-family: 'Arial Black', Arial, sans-serif; }
.savor-nf-servings { font-size: 12.5px; margin-top: 1px; }
.savor-nf-bar-thick { height: 9px; background: #000; margin: 3px 0; }
.savor-nf-bar-med { height: 4px; background: #000; margin: 2px 0; }
.savor-nf-bar-thin { height: 1px; background: #000; margin: 1px 0; }
.savor-nf-cal-row { display: flex; justify-content: space-between; align-items: flex-end; padding: 0 0 2px; }
.savor-nf-cal-row .label { font-size: 12.5px; font-weight: 700; }
.savor-nf-cal-row .number { font-size: 40px; font-weight: 900; line-height: 1; font-family: 'Arial Black', Arial, sans-serif; }
.savor-nf-cal-row .fat-cal { text-align: right; font-size: 11.5px; line-height: 1.4; }
.savor-nf-dv { text-align: right; font-size: 11.5px; font-weight: 700; padding: 2px 0; }
.savor-nf-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; padding: 2px 0; }
.savor-nf-row.sub1 { padding-left: 14px; }
.savor-nf-row .pct { font-weight: 700; padding-left: 4px; white-space: nowrap; }
.savor-nf-vitamins { display: grid; grid-template-columns: 1fr 1fr; border-top: 5px solid #000; padding-top: 4px; margin-top: 2px; font-size: 11.5px; row-gap: 3px; }
.savor-nf-footnote { border-top: 1px solid #000; margin-top: 4px; padding-top: 3px; font-size: 10.5px; line-height: 1.4; }
.savor-nf-grade { border-top: 6px solid #000; margin-top: 3px; padding-top: 3px; font-size: 13.5px; font-weight: 900; font-family: 'Arial Black', Arial, sans-serif; }

/* Instructions */
.savor-instructions-title { font-size: 20px; font-weight: 900; padding-bottom: 12px; margin-bottom: 22px; border-bottom: 2px solid var(--savor-text); }
.savor-step { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.savor-step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--savor-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.savor-step-text { font-size: 14.5px; color: #333; line-height: 1.72; }

/* Comments */
.savor-comments-section { padding: 36px 0; border-top: 1px solid var(--savor-border); }
.savor-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--savor-border); }
.savor-comment.reply { margin-left: 56px; }
.savor-comment-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.savor-comment-author { font-size: 14px; font-weight: 800; }
.savor-comment-date { font-size: 12.5px; color: var(--savor-muted); margin-left: 10px; }
.savor-comment-text { font-size: 13.5px; color: #444; line-height: 1.65; margin: 6px 0 8px; }
.savor-comment-box { border: 1px solid var(--savor-border); border-radius: var(--savor-radius); overflow: hidden; }
.savor-comment-box textarea { display: block; width: 100%; border: none; outline: none; padding: 14px; font-size: 14px; resize: vertical; min-height: 90px; }
.savor-comment-box-footer { display: flex; justify-content: flex-end; padding: 10px 14px; border-top: 1px solid var(--savor-border); }
.savor-btn-post { padding: 10px 24px; background: var(--savor-orange); color: #fff; border-radius: var(--savor-radius); font-size: 13.5px; font-weight: 800; transition: background .18s; cursor: pointer; border: none; }
.savor-btn-post:hover { background: var(--savor-orange-dark); }

/* ─── PAGE HERO (archive/interior pages) ─────────────────────── */
.savor-page-hero { background: var(--savor-orange-pale); padding: 52px 24px 0; text-align: center; overflow: hidden; }
.savor-page-hero h1 { font-size: clamp(30px,5vw,50px); font-weight: 900; margin-bottom: 12px; line-height: 1.1; }
.savor-page-hero h1 em { font-style: normal; color: var(--savor-orange); }
.savor-page-hero p { font-size: 15px; color: #666; max-width: 520px; margin: 0 auto 32px; line-height: 1.65; }
.savor-page-hero .savor-wave { display: block; width: 100%; height: 40px; margin-top: 32px; }

/* ─── TRENDING SIDEBAR ───────────────────────────────────────── */
.savor-trending { background: var(--savor-orange-pale); border-radius: 16px; padding: 24px 20px; }
.savor-trending-title { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; color: var(--savor-orange); margin-bottom: 18px; }
.savor-trending-row { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid rgba(224,125,79,.15); cursor: pointer; transition: opacity .15s; }
.savor-trending-row:last-child { border-bottom: none; padding-bottom: 0; }
.savor-trending-row:hover { opacity: .75; }
.savor-trending-num { font-size: 22px; font-weight: 900; color: rgba(224,125,79,.25); width: 28px; flex-shrink: 0; }
.savor-trending-img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.savor-trending-info .t-title { font-size: 13.5px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.savor-trending-info .t-likes { font-size: 12px; font-weight: 700; color: var(--savor-like); }

/* ─── SIDEBAR WIDGETS ────────────────────────────────────────── */
.savor-widget { border: 1.5px solid var(--savor-border); border-radius: 16px; padding: 22px 20px; margin-top: 22px; }
.savor-widget h3 { font-size: 15px; font-weight: 900; margin-bottom: 14px; }
.savor-widget-nl input { width: 100%; border: 1.5px solid var(--savor-border); border-radius: 8px; padding: 10px 14px; font-size: 13.5px; outline: none; margin-bottom: 8px; }
.savor-widget-nl input:focus { border-color: var(--savor-orange); }
.savor-widget-nl button { width: 100%; padding: 11px; background: var(--savor-orange); color: #fff; border-radius: 8px; font-size: 13.5px; font-weight: 800; transition: background .18s; border: none; cursor: pointer; }
.savor-widget-nl button:hover { background: var(--savor-orange-dark); }
.savor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.savor-tag { padding: 6px 14px; border-radius: 20px; font-size: 12.5px; font-weight: 700; background: var(--savor-bg-light); border: 1.5px solid var(--savor-border); cursor: pointer; transition: var(--savor-transition); }
.savor-tag:hover { background: var(--savor-orange); border-color: var(--savor-orange); color: #fff; }

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.savor-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--savor-muted); padding: 20px 0 0; }
.savor-breadcrumb a { color: var(--savor-muted); }
.savor-breadcrumb a:hover { color: var(--savor-orange); }
.savor-breadcrumb .sep { color: #ccc; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.savor-about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 60px 0; }
.savor-about-hero img { border-radius: 16px; width: 100%; height: 400px; object-fit: cover; }
.savor-about-hero h1 { font-size: clamp(30px,4vw,46px); font-weight: 900; margin-bottom: 20px; }
.savor-about-hero h1 em { font-style: normal; color: var(--savor-orange); }
.savor-about-hero p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.savor-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 48px 0; }
.savor-team-card { text-align: center; }
.savor-team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
.savor-team-card h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.savor-team-card p { font-size: 13px; color: var(--savor-muted); }
.savor-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 48px 0; }
.savor-value-card { background: var(--savor-orange-pale); border-radius: 16px; padding: 28px 24px; }
.savor-value-card .icon { font-size: 36px; margin-bottom: 14px; }
.savor-value-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 10px; }
.savor-value-card p { font-size: 14px; color: #555; line-height: 1.65; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.savor-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 0; }
.savor-contact-info h2 { font-size: 32px; font-weight: 900; margin-bottom: 16px; }
.savor-contact-info p { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 24px; }
.savor-contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.savor-contact-detail .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--savor-orange-pale); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.savor-contact-detail h4 { font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.savor-contact-detail p { font-size: 14px; color: #666; margin: 0; }
.savor-contact-form { background: var(--savor-bg-light); border-radius: 16px; padding: 36px; }
.savor-contact-form h3 { font-size: 22px; font-weight: 900; margin-bottom: 22px; }
.savor-form-group { margin-bottom: 18px; }
.savor-form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.savor-form-group input, .savor-form-group textarea, .savor-form-group select { width: 100%; border: 1.5px solid var(--savor-border); border-radius: 8px; padding: 11px 14px; font-size: 14px; outline: none; background: #fff; transition: border-color .18s; }
.savor-form-group input:focus, .savor-form-group textarea:focus { border-color: var(--savor-orange); }
.savor-form-group textarea { resize: vertical; min-height: 120px; }
.savor-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── LOAD MORE ──────────────────────────────────────────────── */
.savor-load-more-wrap { padding: 32px 0; text-align: center; }
.savor-btn-load { display: inline-block; padding: 13px 48px; border: 1.5px solid var(--savor-border); border-radius: 8px; font-size: 14px; font-weight: 800; cursor: pointer; background: #fff; transition: var(--savor-transition); }
.savor-btn-load:hover { border-color: var(--savor-orange); color: var(--savor-orange); }

/* ─── PAGINATION ─────────────────────────────────────────────── */
.savor-pagination { display: flex; gap: 8px; justify-content: center; padding: 32px 0; flex-wrap: wrap; }
.savor-pagination a, .savor-pagination span { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; border: 1.5px solid var(--savor-border); transition: var(--savor-transition); }
.savor-pagination a:hover { border-color: var(--savor-orange); color: var(--savor-orange); }
.savor-pagination .current { background: var(--savor-orange); border-color: var(--savor-orange); color: #fff; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#savor-footer { background: #1a1a1a; color: rgba(255,255,255,.65); padding: 48px 0 20px; }
.savor-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.savor-footer-logo { font-family: 'Dancing Script', cursive; font-size: 28px; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.savor-footer-about { font-size: 13.5px; line-height: 1.7; max-width: 220px; }
.savor-footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 14px; }
.savor-footer-col ul li { margin-bottom: 9px; }
.savor-footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); }
.savor-footer-col ul li a:hover { color: var(--savor-orange); }
.savor-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12.5px; }
.savor-social { display: flex; gap: 10px; }
.savor-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: var(--savor-transition); font-size: 13px; }
.savor-social a:hover { background: var(--savor-orange); border-color: var(--savor-orange); color: #fff; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .savor-footer-grid { grid-template-columns: 1fr 1fr; }
  .savor-recipe-cols { grid-template-columns: 260px 1fr; gap: 32px; }
  .savor-grid-4 { grid-template-columns: repeat(3,1fr); }
  .savor-team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .savor-primary-nav { display: none; }
  .savor-primary-nav.open { display: flex; flex-direction: column; position: fixed; inset: 64px 0 0; background: #fff; padding: 20px; overflow-y: auto; z-index: 199; }
  .savor-primary-nav.open ul { flex-direction: column; width: 100%; }
  .savor-primary-nav.open ul li a { padding: 12px 16px; font-size: 16px; border-bottom: 1px solid var(--savor-border); display: block; }
  .savor-menu-toggle { display: flex; }
  .savor-hero-content { padding: 30px 24px; }
  .savor-hero-img { width: 100%; }
  .savor-hero-fade { width: 100%; background: linear-gradient(to right, #f3e6dc 30%, transparent 100%); }
  .savor-grid-3, .savor-grid-4 { grid-template-columns: repeat(2,1fr); }
  .savor-collections-grid { grid-template-columns: 1fr; }
  .savor-recipe-cols { grid-template-columns: 1fr; }
  .savor-about-hero, .savor-contact-grid { grid-template-columns: 1fr; }
  .savor-values { grid-template-columns: 1fr; }
  .savor-podium { grid-template-columns: 1fr; }
  .savor-team-grid { grid-template-columns: repeat(2,1fr); }
  .savor-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .savor-footer-bottom { flex-direction: column; gap: 16px; }
  .savor-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .savor-grid-3, .savor-grid-4 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .savor-footer-grid { grid-template-columns: 1fr; }
  .savor-nl-form { flex-direction: column; border-radius: var(--savor-radius); }
  .savor-nl-form input { border-right: 1px solid var(--savor-border); border-radius: var(--savor-radius) var(--savor-radius) 0 0; }
  .savor-nl-form button { border-radius: 0 0 var(--savor-radius) var(--savor-radius); }
}
@media print {
  #savor-header, #savor-footer, .savor-comments-section, .savor-related { display: none; }
  .savor-recipe-cols { display: block; }
}

/* ─── BLOG CONTENT STYLES ────────────────────────────────────── */
.savor-blog-content h2 { font-size: 24px; font-weight: 900; margin: 36px 0 14px; color: #1a1a1a; }
.savor-blog-content h3 { font-size: 20px; font-weight: 800; margin: 28px 0 10px; color: #1a1a1a; }
.savor-blog-content p  { margin-bottom: 20px; }
.savor-blog-content ul, .savor-blog-content ol { margin: 0 0 20px 24px; }
.savor-blog-content li { margin-bottom: 8px; line-height: 1.7; }
.savor-blog-content blockquote { border-left: 4px solid var(--savor-orange); padding: 16px 20px; margin: 28px 0; background: var(--savor-orange-pale); border-radius: 0 8px 8px 0; font-size: 17px; font-style: italic; color: #444; }
.savor-blog-content img { border-radius: 12px; margin: 28px 0; max-width: 100%; }
.savor-blog-content a { color: var(--savor-orange); text-decoration: underline; }
.savor-blog-content a:hover { color: var(--savor-orange-dark); }
.savor-blog-content hr { border: none; border-top: 1px solid var(--savor-border); margin: 36px 0; }
.savor-blog-content pre { background: #1a1a1a; color: #f8f8f2; padding: 20px; border-radius: 10px; overflow-x: auto; font-size: 14px; margin-bottom: 20px; }
.savor-blog-content code { background: #f5f0eb; padding: 2px 6px; border-radius: 4px; font-size: 14px; }
/* Comments */
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--savor-border); }
.comment-list .comment-author img { border-radius: 50%; width: 44px; height: 44px; object-fit: cover; }
.comment-list .comment-body { padding-left: 58px; margin-top: -36px; }
.comment-list .comment-meta { font-size: 13px; color: var(--savor-muted); margin-bottom: 8px; }
.comment-list .comment-content p { font-size: 14px; color: #444; line-height: 1.65; }
#respond h3 { font-size: 20px; font-weight: 900; margin-bottom: 20px; }
#respond input[type=text],#respond input[type=email],#respond input[type=url],#respond textarea { width: 100%; border: 1.5px solid var(--savor-border); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit; outline: none; margin-bottom: 12px; }
#respond input:focus,#respond textarea:focus { border-color: var(--savor-orange); }
#respond textarea { min-height: 120px; resize: vertical; }
#respond #submit { padding: 12px 28px; background: var(--savor-orange); color: #fff; border: none; border-radius: 8px; font-size: 14px; font-weight: 800; cursor: pointer; font-family: inherit; }
#respond #submit:hover { background: var(--savor-orange-dark); }

/* ─── BLOG POST LAYOUT ───────────────────────────────────────── */
.savor-blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}
.savor-blog-article { min-width: 0; }

/* Post header elements */
.savor-post-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 12px;
  background: var(--savor-orange-pale);
  color: var(--savor-orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 16px 0 14px;
  text-decoration: none;
  transition: var(--savor-transition);
}
.savor-post-cat-badge:hover { background: var(--savor-orange); color: #fff; }
.savor-post-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.savor-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--savor-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.savor-post-avatar { border-radius: 50%; width: 42px; height: 42px; object-fit: cover; flex-shrink: 0; }
.savor-post-author { font-size: 14px; font-weight: 800; }
.savor-post-date   { font-size: 12.5px; color: var(--savor-muted); }
.savor-post-actions { margin-left: auto; display: flex; gap: 10px; }
.savor-post-hero-img { border-radius: 16px; overflow: hidden; margin-bottom: 36px; }
.savor-post-hero-img img { width: 100%; max-height: 480px; object-fit: cover; display: block; }

/* Tags */
.savor-post-tags { padding: 28px 0; border-top: 1px solid var(--savor-border); margin-top: 32px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.savor-tags-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--savor-muted); }

/* Author bio */
.savor-author-bio { display: flex; gap: 20px; padding: 28px; background: var(--savor-bg-light); border-radius: 16px; margin-top: 32px; align-items: flex-start; }
.savor-author-bio-avatar { border-radius: 12px; width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.savor-author-bio-name { font-size: 16px; font-weight: 900; margin-bottom: 6px; }
.savor-author-bio-text { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0; }

/* Prev/next nav */
.savor-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.savor-post-nav-item {
  display: block;
  padding: 20px;
  border: 1.5px solid var(--savor-border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.savor-post-nav-item:hover { border-color: var(--savor-orange); background: var(--savor-orange-pale); }
.savor-post-nav-right { text-align: right; }
.savor-post-nav-dir   { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--savor-muted); margin-bottom: 6px; }
.savor-post-nav-title { font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.35; }

/* Comments */
.savor-post-comments { margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--savor-border); }

/* Page links */
.savor-page-links { margin: 32px 0; padding: 16px; background: var(--savor-bg-light); border-radius: 8px; font-size: 14px; }

/* Related posts in sidebar */
.savor-related-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--savor-border); text-decoration: none; transition: opacity .18s; }
.savor-related-row:last-child { border-bottom: none; }
.savor-related-row:hover { opacity: .75; }
.savor-related-img   { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.savor-related-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; line-height: 1.3; margin-bottom: 3px; }
.savor-related-date  { font-size: 12px; color: var(--savor-muted); }

/* ─── STICKY SIDEBAR ─────────────────────────────────────────── */
.savor-blog-sidebar {
  position: sticky;
  top: 80px;               /* below fixed header */
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--savor-border) transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.savor-blog-sidebar::-webkit-scrollbar { width: 4px; }
.savor-blog-sidebar::-webkit-scrollbar-thumb { background: var(--savor-border); border-radius: 2px; }

/* ─── TABLE OF CONTENTS ──────────────────────────────────────── */
.savor-toc-wrap {
  background: #fff;
  border: 1.5px solid var(--savor-border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .22s;
}
.savor-toc-wrap:hover { box-shadow: var(--savor-shadow-md); }

/* Header row */
.savor-toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid var(--savor-border);
  transition: background .18s;
}
.savor-toc-header:hover { background: var(--savor-bg-light); }
.savor-toc-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--savor-text);
}
.savor-toc-header-left svg { color: var(--savor-orange); flex-shrink: 0; }
.savor-toc-chevron {
  color: var(--savor-muted);
  transition: transform .28s ease;
  flex-shrink: 0;
}
.savor-toc-wrap.collapsed .savor-toc-chevron { transform: rotate(180deg); }

/* Progress bar */
.savor-toc-progress-wrap {
  height: 3px;
  background: var(--savor-border);
}
.savor-toc-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--savor-orange), #f5a623);
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* TOC list */
.savor-toc-list {
  padding: 10px 0 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
  transition: max-height .3s ease, padding .3s ease, opacity .25s ease;
  opacity: 1;
}
.savor-toc-wrap.collapsed .savor-toc-list {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

/* TOC links */
.savor-toc-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  line-height: 1.4;
  border-left: 3px solid transparent;
  transition: color .18s, border-color .18s, background .18s;
  position: relative;
}
.savor-toc-link:hover {
  color: var(--savor-orange);
  background: var(--savor-orange-pale);
  border-left-color: var(--savor-orange);
}
.savor-toc-link.savor-toc-active {
  color: var(--savor-orange);
  font-weight: 800;
  border-left-color: var(--savor-orange);
  background: var(--savor-orange-pale);
}

/* h3 sub-items */
.savor-toc-link.savor-toc-sub {
  padding-left: 32px;
  font-size: 13px;
  font-weight: 500;
  color: #777;
}
.savor-toc-link.savor-toc-sub:hover,
.savor-toc-link.savor-toc-sub.savor-toc-active { color: var(--savor-orange); }
.savor-toc-sub-dot {
  color: var(--savor-muted);
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .savor-blog-layout {
    grid-template-columns: 1fr;
  }
  .savor-blog-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }
  /* On mobile, move TOC above article */
  .savor-blog-sidebar { order: -1; }
  .savor-toc-list { max-height: 300px; overflow-y: auto; }
  .savor-toc-wrap.collapsed .savor-toc-list { max-height: 0; overflow: hidden; }
}

/* ═══════════════════════════════════════════════════════════════
   BEAUTIFUL BLOG LISTING PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Page grid ─────────────────────────────────────────────── */
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  padding: 44px 0 72px;
  align-items: start;
}
.blog-feed-col { min-width: 0; }

/* ── HERO ───────────────────────────────────────────────────── */
.blog-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}
.blog-hero-image-wrap {
  position: absolute;
  inset: 0;
}
.blog-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.blog-hero:hover .blog-hero-bg-img { transform: scale(1); }
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.92) 0%,
    rgba(10,10,10,.55) 45%,
    rgba(10,10,10,.15) 75%,
    rgba(10,10,10,.0) 100%
  );
}
.blog-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 56px;
  width: 100%;
}
.blog-hero-inner {
  max-width: 700px;
}
.blog-hero-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.blog-cat-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--savor-orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .8px;
  text-decoration: none;
  transition: background .18s;
}
.blog-cat-pill:hover { background: var(--savor-orange-dark); }
.blog-hero-badge-pill {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}
.blog-hero-heading {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.blog-hero-heading a {
  color: #fff;
  text-decoration: none;
}
.blog-hero-heading a:hover { color: rgba(255,255,255,.85); }
.blog-hero-excerpt {
  font-size: 16px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}
.blog-hero-author-row {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.blog-hero-avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.4);
  flex-shrink: 0;
}
.blog-hero-author-name { font-size: 14px; font-weight: 700; color: #fff; }
.blog-hero-author-date { font-size: 12.5px; color: rgba(255,255,255,.65); }
.blog-hero-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: #fff;
  color: var(--savor-text);
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  margin-left: auto;
  transition: background .18s, transform .18s;
  white-space: nowrap;
}
.blog-hero-read-btn:hover { background: var(--savor-orange-pale); transform: translateY(-1px); }
.blog-hero-read-btn svg { transition: transform .18s; }
.blog-hero-read-btn:hover svg { transform: translateX(3px); }

/* ── Section labels ─────────────────────────────────────────── */
.blog-section-head {
  margin-bottom: 20px;
  margin-top: 44px;
}
.blog-section-head-divided {
  display: flex;
  align-items: center;
  gap: 16px;
}
.blog-section-eyebrow {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--savor-orange);
  white-space: nowrap;
}
.blog-section-line {
  flex: 1;
  height: 1px;
  background: var(--savor-border);
}

/* ── Category filter bar ────────────────────────────────────── */
.blog-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid var(--savor-border);
  margin-bottom: 0;
}
.blog-filter-chip {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--savor-border);
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: var(--savor-transition);
  font-family: inherit;
}
.blog-filter-chip:hover { border-color: var(--savor-orange); color: var(--savor-orange); }
.blog-filter-chip.active {
  background: var(--savor-orange);
  border-color: var(--savor-orange);
  color: #fff;
}

/* ── SPOTLIGHT — 2 large horizontal cards ───────────────────── */
.blog-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 8px;
}
.blog-spot-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--savor-border);
  transition: box-shadow .22s, transform .22s;
}
.blog-spot-card:hover {
  box-shadow: var(--savor-shadow-lg);
  transform: translateY(-3px);
}
.blog-spot-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0ebe5;
}
.blog-spot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-spot-card:hover .blog-spot-thumb img { transform: scale(1.05); }
.blog-spot-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  background: var(--savor-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-decoration: none;
}
.blog-spot-body { padding: 20px 22px 22px; }
.blog-spot-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-spot-title a { color: var(--savor-text); text-decoration: none; }
.blog-spot-title a:hover { color: var(--savor-orange); }
.blog-spot-exc {
  font-size: 13.5px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.blog-spot-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--savor-muted);
  flex-wrap: wrap;
}
.blog-spot-avatar {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-spot-author { font-weight: 700; color: #444; }

/* ── 3-COLUMN CARD GRID ─────────────────────────────────────── */
.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 8px;
}
.blog-g-card {
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid var(--savor-border);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
  opacity: 1;
  transition: opacity .25s ease, box-shadow .22s, transform .22s;
}
.blog-g-card:hover { box-shadow: var(--savor-shadow-md); transform: translateY(-2px); }
.blog-g-thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ebe5;
}
.blog-g-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s; }
.blog-g-card:hover .blog-g-thumb img { transform: scale(1.06); }
.blog-g-body { padding: 16px 18px 18px; }
.blog-g-cat {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--savor-orange);
  text-decoration: none;
  margin-bottom: 7px;
}
.blog-g-title {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-g-title a { color: var(--savor-text); text-decoration: none; }
.blog-g-title a:hover { color: var(--savor-orange); }
.blog-g-exc { font-size: 12.5px; color: #666; line-height: 1.55; margin-bottom: 12px; }
.blog-g-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--savor-muted);
}
.blog-g-avatar {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  flex-shrink: 0;
}

/* ── NEWSLETTER STRIP ───────────────────────────────────────── */
.blog-nl-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--savor-orange-pale) 0%, #fff 100%);
  border: 1.5px solid rgba(224,125,79,.25);
  border-radius: 16px;
  padding: 22px 28px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.blog-nl-strip-icon { font-size: 28px; flex-shrink: 0; }
.blog-nl-strip-copy { flex: 1; min-width: 200px; }
.blog-nl-strip-copy strong { display: block; font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.blog-nl-strip-copy span { font-size: 13px; color: var(--savor-muted); }
.blog-nl-strip-form { display: flex; gap: 8px; flex-shrink: 0; }
.blog-nl-strip-input {
  padding: 10px 16px;
  border: 1.5px solid var(--savor-border);
  border-radius: 25px;
  font-size: 13.5px;
  outline: none;
  font-family: inherit;
  width: 200px;
  transition: border-color .18s;
}
.blog-nl-strip-input:focus { border-color: var(--savor-orange); }
.blog-nl-strip-btn {
  padding: 10px 20px;
  background: var(--savor-orange);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: background .18s;
}
.blog-nl-strip-btn:hover { background: var(--savor-orange-dark); }

/* ── COMPACT LIST ───────────────────────────────────────────── */
.blog-list { display: flex; flex-direction: column; gap: 0; }
.blog-list-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--savor-border);
  text-decoration: none;
  transition: background .18s;
  cursor: pointer;
  opacity: 1;
  transition: opacity .25s ease;
}
.blog-list-row:last-child { border-bottom: none; }
.blog-list-row:hover { background: var(--savor-bg-light); margin: 0 -12px; padding: 18px 12px; border-radius: 10px; }
.blog-list-thumb {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0ebe5;
  display: block;
}
.blog-list-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-list-row:hover .blog-list-thumb img { transform: scale(1.08); }
.blog-list-content { flex: 1; min-width: 0; }
.blog-list-top { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.blog-list-cat {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--savor-orange);
  text-decoration: none;
}
.blog-list-date { font-size: 12px; color: var(--savor-muted); margin-left: auto; }
.blog-list-title {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--savor-text);
}
.blog-list-exc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.blog-list-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--savor-muted); }
.blog-list-avatar { width: 22px !important; height: 22px !important; border-radius: 50% !important; flex-shrink: 0; }
.blog-list-arrow {
  font-size: 18px;
  color: var(--savor-border);
  flex-shrink: 0;
  transition: color .18s, transform .18s;
}
.blog-list-row:hover .blog-list-arrow { color: var(--savor-orange); transform: translateX(3px); }

/* ── Empty state ────────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: 80px 0;
}
.blog-empty-icon { font-size: 48px; margin-bottom: 16px; }
.blog-empty h2 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.blog-empty p { font-size: 15px; color: var(--savor-muted); margin-bottom: 24px; }

/* ── Shared meta elements ────────────────────────────────────── */
.blog-meta-sep { color: var(--savor-border); font-size: 14px; }
.blog-read-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--savor-bg-light);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--savor-muted);
}

/* ═══════════════════════════════════════════════════════════════
   BLOG SIDEBAR
═══════════════════════════════════════════════════════════════ */
.blog-sidebar {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--savor-border) transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}
.blog-sidebar::-webkit-scrollbar { width: 4px; }
.blog-sidebar::-webkit-scrollbar-thumb { background: var(--savor-border); border-radius: 2px; }

/* Search box */
.blog-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--savor-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .18s;
}
.blog-search-box:focus-within { border-color: var(--savor-orange); }
.blog-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
}
.blog-search-btn {
  padding: 11px 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--savor-muted);
  display: flex;
  align-items: center;
  transition: color .18s;
}
.blog-search-box:focus-within .blog-search-btn { color: var(--savor-orange); }

/* About card */
.blog-about-card { text-align: center; }
.blog-about-emoji { font-size: 32px; display: block; margin-bottom: 10px; }
.blog-about-card h3 { margin-bottom: 8px; }
.blog-about-card p { font-size: 13.5px; color: var(--savor-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-about-link { font-size: 13px; font-weight: 800; color: var(--savor-orange); text-decoration: none; }
.blog-about-link:hover { text-decoration: underline; }

/* Topics */
.blog-topics { display: flex; flex-direction: column; gap: 4px; }
.blog-topic-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--savor-text);
  transition: background .18s;
}
.blog-topic-chip:hover { background: var(--savor-bg-light); }
.blog-topic-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.blog-topic-count {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: var(--savor-muted);
  background: var(--savor-bg-light);
  border-radius: 10px;
  padding: 1px 8px;
}

/* Recent posts */
.blog-recent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--savor-border);
  text-decoration: none;
  transition: opacity .18s;
}
.blog-recent-row:last-child { border-bottom: none; }
.blog-recent-row:hover { opacity: .75; }
.blog-recent-num { font-size: 22px; font-weight: 900; color: var(--savor-border); width: 26px; flex-shrink: 0; line-height: 1; }
.blog-recent-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.blog-recent-cat { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--savor-orange); display: block; margin-bottom: 3px; }
.blog-recent-title { font-size: 13px; font-weight: 700; color: var(--savor-text); line-height: 1.35; margin-bottom: 3px; }
.blog-recent-date { font-size: 11.5px; color: var(--savor-muted); }

/* Sidebar newsletter */
.blog-sidebar-nl { text-align: center; }
.blog-sidebar-nl-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.blog-sidebar-nl h3 { margin-bottom: 8px; }
.blog-sidebar-nl p { font-size: 13px; color: var(--savor-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-nl-note { font-size: 11px; color: var(--savor-muted); margin-top: 8px; margin-bottom: 0 !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .blog-page-grid { grid-template-columns: 1fr; gap: 0; padding-top: 28px; }
  .blog-sidebar { position: static; max-height: none; overflow: visible; order: 2; margin-top: 40px; }
  .blog-spotlight { grid-template-columns: 1fr; }
  .blog-hero { min-height: 420px; }
  .blog-hero-read-btn { margin-left: 0; }
  .blog-hero-author-row { gap: 10px; }
  .blog-nl-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
  .blog-nl-strip-form { width: 100%; }
  .blog-nl-strip-input { flex: 1; width: auto; }
}
@media (max-width: 600px) {
  .blog-hero { min-height: 340px; }
  .blog-hero-heading { font-size: 26px; }
  .blog-card-grid { grid-template-columns: 1fr; }
  .blog-list-exc { display: none; }
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.savor-about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 60px 0 48px; }
.savor-about-hero-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.savor-about-hero-title em { font-style: normal; color: var(--savor-orange); }
.savor-about-p1, .savor-about-p2 { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.savor-about-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; box-shadow: var(--savor-shadow-lg); }

.savor-about-section-head { text-align: center; padding: 16px 0 6px; }
.savor-about-section-head h2 { font-size: 32px; font-weight: 900; }

/* Stats strip */
.savor-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--savor-orange-pale);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  margin: 44px 0 60px;
}
.savor-stats-num   { font-size: 38px; font-weight: 900; color: var(--savor-orange); margin-bottom: 4px; }
.savor-stats-label { font-size: 13.5px; font-weight: 700; color: var(--savor-muted); }

@media (max-width: 768px) {
  .savor-about-hero { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .savor-about-hero-img { height: 260px; order: -1; }
  .savor-stats-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CONTACT PAGE ─────────────────────────────────────────────── */
/* Success / error banners */
.savor-form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  color: #15803d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.savor-form-success-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #15803d;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.savor-form-error {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 10px;
  color: #dc2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

/* Required asterisk */
.savor-req { color: var(--savor-like); font-size: 13px; }

/* Submit button full-width */
.savor-cf-submit {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 14px;
  font-size: 15px;
}
.savor-cf-form input:focus,
.savor-cf-form textarea:focus,
.savor-cf-form select:focus { border-color: var(--savor-orange); box-shadow: 0 0 0 3px rgba(224,125,79,.12); }

/* Improve contact form textarea height */
.savor-contact-form textarea { min-height: 140px; }

