/*
Theme Name: FoodsUse Child
Theme URI: https://foodsuse.com
Description: Custom child theme for FoodsUse.com with Forbes-inspired design, Fazza poetry section, Foods & Nutrition section, and premium media layout. Built on Foxiz parent theme.
Author: FoodsUse Team
Author URI: https://foodsuse.com
Template: foxiz
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: foodsuse-child
*/

/* ════════════════════════════════════════════════════════════════════════
   FOODSUSE EXACT DESIGN - IMPORTED FROM foodsuse-complete.html
   ════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --red: #c8102e;
  --gold: #d4a017;
  --gold2: #f0c040;
  --light: #f5f4f0;
  --mid: #e8e4dc;
  --white: #ffffff;
  --text: #1a1a2e;
  --muted: #6b7280;
  --border: #ddd8ce;
  --green: #1a5c3a;
  --green2: #2e7d54;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif !important;
  background: var(--light) !important;
  color: var(--text) !important;
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: #7a8fa8;
  font-size: 11.5px;
  padding: 7px 0;
}

.top-bar .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #7a8fa8;
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: var(--gold);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: stretch;
}

.ticker-label {
  background: var(--navy);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 18px;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ticker-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-scroll {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-left: 30px;
}

.ticker-scroll span {
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  margin-right: 55px;
}

.ticker-scroll span::before {
  content: '▸ ';
  opacity: 0.7;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── HEADER ── */
header {
  background: #fff !important;
  border-bottom: 3px solid var(--navy) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 200 !important;
  box-shadow: 0 2px 14px rgba(10, 22, 40, 0.08) !important;
}

.hdr {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
}

.logo-name em {
  color: var(--red);
  font-style: normal;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
}

nav a:hover {
  background: var(--navy);
  color: #fff;
}

nav a.hl {
  background: var(--red);
  color: #fff;
  padding: 8px 14px;
}

nav a.hl:hover {
  background: #a00d23;
}

.srch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 7px 13px;
  transition: border-color 0.2s;
  cursor: text;
}

.srch:hover {
  border-color: var(--navy);
}

.srch input {
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 140px;
  outline: none;
}

.srch input::placeholder {
  color: var(--muted);
}

/* ── HERO SLIDER ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 510px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  width: 58%;
  position: relative;
  overflow: hidden;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78);
  transition: transform 7s ease;
}

.slide.active .slide-bg img {
  transform: scale(1.05);
}

.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--navy) 100%);
}

.slide-info {
  width: 42%;
  padding: 50px 44px 50px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 16px;
}

.s-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.24;
  margin-bottom: 13px;
}

.s-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #bac8dd;
  line-height: 1.7;
  margin-bottom: 20px;
}

.s-meta {
  font-size: 11px;
  color: #7a8fa8;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.s-meta .au {
  color: var(--gold);
  font-weight: 600;
}

.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s;
}

.s-btn:hover {
  background: var(--gold2);
  transform: translateX(4px);
}

.s-btn::after {
  content: '→';
  font-size: 15px;
}

.dots {
  position: absolute;
  bottom: 22px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

.thumbs {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 195px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.thumb {
  flex: 1;
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.thumb:hover,
.thumb.on {
  background: rgba(255, 255, 255, 0.07);
}

.t-n {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.14);
  min-width: 26px;
}

.thumb.on .t-n {
  color: var(--gold);
}

.t-txt {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
}

.thumb.on .t-txt {
  color: #fff;
}

/* ── SHARED SECTION LABEL ── */
.sl {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
}

.sl-bar {
  width: 4px;
  height: 22px;
  border-radius: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.sl h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.sl::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--border);
}

/* ── LAYOUT WRAP ── */
.wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 44px 24px;
}

.grid-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
}

.full {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.card-img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 18px 20px 22px;
}

.ctag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.c-jobs {
  background: #e8f4fd;
  color: #1565c0;
}

.c-money {
  background: #fff8e1;
  color: #e65100;
}

.c-travel {
  background: #e8f5e9;
  color: #2e7d32;
}

.c-health {
  background: #fce4ec;
  color: #c62828;
}

.c-ins {
  background: #ede7f6;
  color: #4527a0;
}

.c-edu {
  background: #e0f7fa;
  color: #006064;
}

.c-food {
  background: #f1f8e9;
  color: #33691e;
}

.c-poem {
  background: #fff3e0;
  color: #bf360c;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.card:hover .card-title {
  color: var(--red);
}

.card-title.lg {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card-excerpt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.card-meta {
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  gap: 9px;
  align-items: center;
}

.card-meta .au {
  color: var(--navy);
  font-weight: 600;
}

/* ── FEATURED GRID ── */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 46px;
}

.feat-main {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
}

.feat-main:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}

.feat-main .fi {
  position: relative;
  overflow: hidden;
}

.feat-main .fi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.feat-main:hover .fi img {
  transform: scale(1.04);
}

.feat-main .fb {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-main:hover .card-title {
  color: var(--red);
}

/* ── CAT ROW ── */
.cat-row {
  margin-bottom: 46px;
}

.cat-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── MINI LIST ── */
.mini-list {
  display: flex;
  flex-direction: column;
}

.mini {
  display: flex;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.mini:hover {
  opacity: 0.72;
}

.mini:last-child {
  border-bottom: none;
}

.mi {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.m-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 4px;
}

.m-meta {
  font-size: 11px;
  color: var(--muted);
}

/* ── SIDEBAR ── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.widget {
  background: #fff;
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wt {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.tr-item {
  display: flex;
  gap: 11px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.tr-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tr-n {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  min-width: 26px;
}

.tr-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
}

.tr-cat {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 3px;
}

.nl-w {
  background: var(--navy);
}

.nl-w .wt {
  color: var(--gold);
  border-color: var(--gold);
}

.nl-w p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 15px;
}

.nl-in {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  margin-bottom: 9px;
  transition: border-color 0.2s;
}

.nl-in::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.nl-in:focus {
  border-color: var(--gold);
}

.nl-btn {
  width: 100%;
  padding: 11px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.nl-btn:hover {
  background: #a00d23;
}

.ad-box {
  background: linear-gradient(135deg, var(--mid), #ddd8ce);
  border: 2px dashed var(--border);
  border-radius: 6px;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ── OPPORTUNITY BELT ── */
.opp-belt {
  background: var(--navy);
  padding: 46px 0;
  margin-bottom: 0;
}

.opp-belt .sl h2 {
  color: #fff;
}

.opp-belt .sl::after {
  background: rgba(255, 255, 255, 0.12);
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.opp-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 22px;
  text-decoration: none;
  display: block;
  transition: all 0.25s;
}

.opp-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.opp-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.opp-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.opp-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.opp-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════════════════
   ✨ FAZZA LUXURY SECTION
════════════════════════════════════════════ */
.fazza-section {
  position: relative;
  overflow: hidden;
  background: #070d1a;
  padding: 0;
}

.fazza-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1px 1px at 10% 15%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 45%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 8%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 60%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 75%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 15% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 50% 50%, rgba(212, 160, 23, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 85%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 10%, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.fazza-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 60% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.fazza-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* Section header */
.fazza-header {
  text-align: center;
  margin-bottom: 52px;
}

.fazza-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.fazza-eyebrow::before,
.fazza-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
  display: block;
}

.fazza-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.fazza-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.fazza-title em {
  color: var(--gold);
  font-style: italic;
}

.fazza-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Fazza hero card */
.fazza-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.fazza-portrait {
  position: relative;
  overflow: hidden;
}

.fazza-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 440px;
  filter: brightness(0.88) saturate(1.1);
}

.fazza-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #0d1829 100%),
    linear-gradient(to top, rgba(7, 13, 26, 0.8) 0%, transparent 40%);
}

.fazza-portrait-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.fazza-portrait-badge .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.fazza-portrait-badge .title {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 4px;
}

.fazza-portrait-badge .arabic {
  font-family: 'Amiri', serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  direction: rtl;
}

.fazza-poem-card {
  background: linear-gradient(135deg, #0d1829, #111e35);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fazza-poem-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.06);
  position: absolute;
  top: -30px;
  left: 16px;
  line-height: 1;
  pointer-events: none;
}

.fazza-poem-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fazza-poem-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212, 160, 23, 0.3);
}

.fazza-poem-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.9;
  margin-bottom: 28px;
}

.fazza-poem-text span {
  display: block;
}

.fazza-poem-attr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.06em;
}

.fazza-poem-attr strong {
  color: var(--gold);
  font-weight: 600;
}

.fazza-poem-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  background: transparent;
  border: 1.5px solid rgba(212, 160, 23, 0.4);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s;
}

.fazza-poem-cta:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.fazza-poem-cta::after {
  content: '→';
}

/* Poem cards grid */
.poem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.poem-card {
  background: linear-gradient(135deg, #0d1829, #0f2040);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.poem-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.poem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 160, 23, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.poem-card:hover::before {
  opacity: 1;
}

.poem-card-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
}

.poem-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 12px;
}

.poem-card-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13.5px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 16px;
}

.poem-card-meta {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
}

.poem-view-all {
  text-align: center;
}

.poem-view-all a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}

.poem-view-all a:hover {
  background: var(--gold);
  color: var(--navy);
}

.poem-view-all a::after {
  content: '→';
}

/* ════════════════════════════════════════════
   🥗 FOODS & NUTRITION SECTION
════════════════════════════════════════════ */
.food-section {
  background: #fff;
  padding: 56px 0;
}

.food-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.food-sl .sl-bar {
  background: var(--green);
}

.food-sl .sl h2 {
  color: var(--green);
}

.food-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  margin-bottom: 36px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: box-shadow 0.25s;
}

.food-hero-grid:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15);
}

.food-hero-img {
  position: relative;
  overflow: hidden;
}

.food-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.5s;
}

.food-hero-grid:hover .food-hero-img img {
  transform: scale(1.04);
}

.food-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 92, 58, 0.6) 0%, transparent 50%);
}

.food-hero-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

.food-hero-body {
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f8fdf9, #f1f8e9);
}

.food-hero-body .card-title {
  font-size: 24px;
  margin-bottom: 14px;
}

.food-hero-body:hover .card-title,
.food-hero-grid:hover .food-hero-body .card-title {
  color: var(--green);
}

.food-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.food-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.food-tag.active,
.food-tag:hover {
  background: var(--green);
  color: #fff;
}

.food-tag:not(.active) {
  background: #e8f5e9;
  color: var(--green);
}

.food-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Nutrition facts card */
.nutr-card {
  background: linear-gradient(135deg, var(--green), var(--green2));
  border-radius: 10px;
  padding: 30px;
  color: #fff;
  grid-column: span 1;
}

.nutr-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
}

.nutr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.nutr-row:last-child {
  border-bottom: none;
}

.nutr-val {
  font-weight: 700;
  font-size: 15px;
}

.nutr-bar-wrap {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  height: 5px;
  flex: 1;
  margin: 0 12px;
}

.nutr-bar {
  background: var(--gold);
  height: 5px;
  border-radius: 10px;
}

/* Recipe card */
.recipe-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.25s;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.recipe-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.recipe-card:hover img {
  transform: scale(1.04);
}

.recipe-body {
  padding: 16px 18px;
}

.recipe-time {
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.recipe-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}

.recipe-card:hover .recipe-title {
  color: var(--green);
}

.recipe-desc {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Diet pills */
.diet-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 24px;
  background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
  border-radius: 10px;
  align-items: center;
}

.diet-label {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--green);
  margin-right: 6px;
}

.diet-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1.5px solid #c8e6c9;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.diet-pill:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.diet-pill .di {
  font-size: 16px;
}

/* ── EDU + INS 2-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-bottom: 46px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy) !important;
  color: rgba(255, 255, 255, 0.55) !important;
  padding: 56px 0 0 !important;
}

.ft {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
}

.fb .logo-name {
  color: #fff;
  font-size: 22px;
}

.fb .logo-name em {
  color: var(--red);
}

.fb p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.fc h4 {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.fc a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.fc a:hover {
  color: #fff;
}

.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.fbot a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin-left: 16px;
}

.fbot a:hover {
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-main {
    grid-template-columns: 1fr;
  }
  .feat-main {
    grid-template-columns: 1fr;
  }
  .feat-main .fi {
    height: 220px;
  }
  .slides {
    height: 430px;
  }
  .thumbs {
    display: none;
  }
  .slide-bg {
    width: 100%;
  }
  .slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(7, 13, 26, 0.95) 65%, transparent);
    padding: 28px 22px 22px;
  }
  .opp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fazza-hero {
    grid-template-columns: 1fr;
  }
  .fazza-portrait img {
    min-height: 260px;
  }
  .poem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-hero-grid {
    grid-template-columns: 1fr;
  }
  .food-hero-img img {
    min-height: 220px;
  }
  .food-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .ft {
    grid-template-columns: 1fr 1fr;
  }
  .cat-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   END OF EXACT DESIGN CSS
   ════════════════════════════════════════════════════════════════════════ */
