/*
Theme Name: Esprit Juridique
Theme URI: https://esprit-juridique.fr
Author: Ernson Thomas
Author URI: https://esprit-juridique.fr
Description: Thème professionnel pour blog juridique. Droit des affaires, fiscal, immobilier, environnement, financier, pénal, patrimonial et droit de la famille. Design épuré blanc et or.
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: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, legal, professional, white, gold, french-law
Text Domain: esprit-juridique
*/

/* ═══════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════ */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #f5edda;
  --cream: #f8f5ef;
  --navy: #1a1a2e;
  --text: #1a1a2e;
  --muted: #5a6478;
  --border: #e2d9c8;
  --white: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul { list-style: none; }

/* ═══════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
p { margin-bottom: 1.2rem; color: var(--muted); font-size: .95rem; }

/* ═══════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════ */
#reading-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999; transition: width .1s;
}

/* ═══════════════════════════════════
   HEADER / NAV
═══════════════════════════════════ */
#masthead {
  position: sticky; top: 3px; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.07);
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.8rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-branding a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  letter-spacing: .18em; color: var(--gold);
  display: flex; align-items: center; gap: .5rem;
}
.site-branding a::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.site-branding a:hover { color: var(--navy); }

/* PRIMARY NAV */
#primary-navigation ul {
  display: flex; gap: 1.5rem; align-items: center;
}
#primary-navigation ul li a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a { color: var(--gold); }
#primary-navigation ul li.menu-item-boutique > a {
  background: var(--gold); color: #fff;
  padding: .3rem .8rem; border-radius: 2px;
  font-weight: 600;
}
#primary-navigation ul li.menu-item-boutique > a:hover { background: var(--gold-light); }

/* SEARCH TOGGLE */
.header-search-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; padding: .3rem;
  transition: color .2s; margin-left: .5rem;
}
.header-search-toggle:hover { color: var(--gold); }

/* HAMBURGER */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--muted); border-radius: 1px; transition: all .3s;
}

/* MOBILE MENU */
.mobile-nav {
  display: none; background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.8rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: .4rem; }
.mobile-nav ul li a {
  display: block; padding: .5rem 0;
  font-size: .85rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase; letter-spacing: .07em;
}
.mobile-nav ul li a:hover { color: var(--gold); }

/* SEARCH OVERLAY */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(26,26,46,.95); z-index: 500;
  flex-direction: column; align-items: center;
  padding: 5rem 2rem; backdrop-filter: blur(8px);
}
.search-overlay.open { display: flex; }
.search-overlay-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 1.5rem; cursor: pointer;
}
.search-overlay form {
  width: 100%; max-width: 700px;
}
.search-overlay input[type="search"] {
  width: 100%; padding: 1.1rem 1.4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.3); border-radius: 4px;
  color: #fff; font-family: 'Jost', sans-serif;
  font-size: 1.1rem; outline: none;
}
.search-overlay input[type="search"]::placeholder { color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */
.ticker-wrap {
  background: var(--gold); overflow: hidden;
  padding: .48rem 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 55s linear infinite;
}
.ticker-item {
  font-size: .63rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy);
  padding: 0 1.8rem;
}
.ticker-item::after { content: '·'; margin-left: 1.8rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════
   HERO (HOMEPAGE)
═══════════════════════════════════ */
.hero-section {
  background: #fff; padding: 4rem 1.8rem 3rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-tag {
  display: inline-block; background: rgba(201,168,76,.1);
  color: var(--gold); font-size: .63rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .25rem .7rem; border: 1px solid rgba(201,168,76,.2);
  border-radius: 2px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--text);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  color: var(--muted); font-size: .95rem;
  line-height: 1.8; margin-bottom: 1.8rem;
}
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: #fff;
  padding: .75rem 1.6rem; font-size: .8rem;
  font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 2px;
  transition: background .2s; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--gold-light); color: #fff; }
.btn-outline {
  background: transparent; border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); padding: .75rem 1.6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 2px;
  transition: all .2s; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-outline:hover { background: rgba(201,168,76,.08); }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: .65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
}
.hero-featured-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 4px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
}
.hero-featured-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.featured-label {
  font-size: .62rem; color: var(--gold); letter-spacing: .15em;
  text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: .5rem; margin-bottom: .9rem;
}
.featured-label::before { content: ''; width: 16px; height: 1px; background: var(--gold); }

/* ═══════════════════════════════════
   STATS BAND
═══════════════════════════════════ */
.stats-band {
  background: var(--cream); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 2rem 1.8rem;
}
.stats-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; text-align: center;
}
.stat-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); display: block;
}
.stat-item-label {
  font-size: .65rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
}

/* ═══════════════════════════════════
   TAGS CLOUD
═══════════════════════════════════ */
.tags-cloud-section {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1.8rem;
}
.tags-cloud-inner { max-width: 1200px; margin: 0 auto; }
.tags-cloud-label {
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  font-weight: 600; margin-bottom: .9rem;
}
.tags-cloud-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-item {
  background: var(--gold-pale); color: var(--navy);
  font-size: .72rem; font-weight: 500; padding: .28rem .75rem;
  border-radius: 20px; border: 1px solid var(--border);
  transition: all .2s; cursor: pointer;
}
.tag-item:hover { background: var(--navy); color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════ */
.section-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem; padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600; color: var(--text);
}
.section-title span { color: var(--gold); }
.section-link {
  color: var(--muted); font-size: .7rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
}
.section-link:hover { color: var(--gold); }

/* ═══════════════════════════════════
   ARTICLE CARDS
═══════════════════════════════════ */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.posts-grid-2 {
  display: grid; grid-template-columns: 2fr 1fr; gap: 1.6rem;
}
.post-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
}
.post-card-body { padding: 1.4rem 1.4rem 0; }
.post-card-meta {
  display: flex; align-items: center;
  gap: .7rem; margin-bottom: .75rem; flex-wrap: wrap;
}
.post-card-category {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .18rem .5rem; border-radius: 2px;
}
.cat-societes { background: rgba(201,168,76,.12); color: var(--gold); }
.cat-fiscal { background: rgba(16,185,129,.12); color: #059669; }
.cat-etrangers { background: rgba(245,158,11,.12); color: #d97706; }
.cat-immobilier { background: rgba(168,85,247,.12); color: #7c3aed; }
.cat-environnement { background: rgba(107,114,128,.12); color: #4b5563; }
.cat-financier { background: rgba(99,102,241,.12); color: #4338ca; }
.cat-penal { background: rgba(220,38,38,.12); color: #dc2626; }
.cat-conseil { background: rgba(20,184,166,.12); color: #0d9488; }
.cat-patrimonial { background: rgba(180,83,9,.12); color: #b45309; }
.cat-famille { background: rgba(236,72,153,.12); color: #db2777; }

.post-card-date { font-size: .68rem; color: var(--muted); }
.post-card-views { font-size: .65rem; color: var(--muted); }
.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 600; color: var(--text);
  line-height: 1.33; margin-bottom: .65rem;
  display: block;
}
.post-card-title:hover { color: var(--gold); }
.post-card-excerpt { color: var(--muted); font-size: .78rem; line-height: 1.63; margin-bottom: 1rem; }
.post-card-footer {
  padding: .85rem 1.4rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.post-card-author {
  display: flex; align-items: center; gap: .5rem;
}
.author-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: .75rem; font-weight: 700; color: #fff;
}
.author-name { font-size: .7rem; color: var(--muted); }
.post-card-stats { display: flex; gap: .7rem; }
.post-stat { font-size: .65rem; color: var(--muted); }

/* REACTION BAR */
.reaction-bar {
  display: flex; gap: .5rem; padding: .65rem 1.4rem;
  border-top: 1px solid var(--border);
}
.reaction-btn {
  background: none; border: 1px solid var(--border);
  border-radius: 20px; padding: .22rem .65rem;
  font-size: .72rem; cursor: pointer;
  transition: all .2s; color: var(--muted);
  display: flex; align-items: center; gap: .25rem;
  font-family: 'Jost', sans-serif;
}
.reaction-btn:hover, .reaction-btn.active {
  border-color: var(--gold); background: rgba(201,168,76,.08);
  color: var(--gold);
}

/* SHARE BAR */
.share-bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .55rem 1.4rem; border-top: 1px solid var(--border);
  background: rgba(201,168,76,.02);
}
.share-label { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; }
.share-btn {
  width: 26px; height: 26px; border-radius: 50%; border: none;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: .7rem;
  transition: transform .2s; text-decoration: none;
}
.share-btn:hover { transform: scale(1.15); }
.share-li { background: #0077b5; color: #fff; }
.share-x { background: #000; color: #fff; }
.share-wa { background: #25d366; color: #fff; }

/* FEATURED LARGE CARD */
.post-card-featured {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 4px; padding: 2.3rem; position: relative; overflow: hidden;
}
.post-card-featured::after {
  content: '§'; position: absolute; right: 1.2rem; bottom: -1.8rem;
  font-family: 'Cormorant Garamond', serif; font-size: 8rem;
  color: rgba(201,168,76,.06); pointer-events: none;
}
.post-card-featured .post-card-title { font-size: 1.4rem; color: var(--text); }

/* MINI STACK */
.mini-stack { display: flex; flex-direction: column; gap: .85rem; }
.mini-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 1rem; transition: box-shadow .2s;
}
.mini-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.mini-card-title {
  font-family: 'Cormorant Garamond', serif; font-size: .96rem;
  font-weight: 600; color: var(--text); line-height: 1.3;
  margin-bottom: .3rem; display: block;
}
.mini-card-title:hover { color: var(--gold); }
.mini-card-meta { font-size: .68rem; color: var(--muted); }

/* ═══════════════════════════════════
   TRENDING STRIP
═══════════════════════════════════ */
.trending-section {
  background: var(--cream); padding: 2rem 1.8rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trending-inner { max-width: 1200px; margin: 0 auto; }
.trending-header { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.5rem; }
.trending-badge {
  background: rgba(220,38,38,.1); border: 1px solid rgba(220,38,38,.2);
  color: #dc2626; font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 2px;
}
.trending-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.trend-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 1rem;
  cursor: pointer; transition: border-color .2s, box-shadow .2s;
}
.trend-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.trend-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: rgba(201,168,76,.25); margin-bottom: .4rem;
}
.trend-title {
  font-family: 'Cormorant Garamond', serif; font-size: .9rem;
  font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .4rem;
}
.trend-views { font-size: .65rem; color: var(--muted); }

/* ═══════════════════════════════════
   LAYOUT (MAIN + SIDEBAR)
═══════════════════════════════════ */
.site-main { max-width: 1200px; margin: 0 auto; padding: 3rem 1.8rem; }
.content-sidebar-wrap {
  display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem;
}
.content-area {}
.widget-area {}

/* PAGINATION */
.pagination {
  display: flex; justify-content: center; gap: .5rem;
  margin: 3rem 0;
}
.pagination a, .pagination span {
  width: 38px; height: 38px; display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 2px;
  font-size: .82rem; color: var(--muted);
  transition: all .2s;
}
.pagination a:hover, .pagination .current {
  background: var(--gold); border-color: var(--gold); color: #fff;
}

/* ═══════════════════════════════════
   SINGLE POST
═══════════════════════════════════ */
.single-post-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.single-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--text);
  line-height: 1.2; margin-bottom: 1rem;
}
.single-post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.single-post-content { font-size: .95rem; line-height: 1.85; color: var(--muted); }
.single-post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--text); margin: 2rem 0 .8rem; }
.single-post-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text); margin: 1.5rem 0 .6rem; }
.single-post-content p { color: var(--muted); margin-bottom: 1.2rem; }
.single-post-content ul, .single-post-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; color: var(--muted); font-size: .95rem; }
.single-post-content li { margin-bottom: .4rem; }
.single-post-content blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.5rem;
  background: var(--gold-pale); margin: 1.5rem 0; border-radius: 0 4px 4px 0;
}
.single-post-content blockquote p { color: var(--text); font-style: italic; margin: 0; }
.single-post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .88rem; }
.single-post-content th { background: var(--navy); color: #fff; padding: .7rem 1rem; text-align: left; font-weight: 600; }
.single-post-content td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.single-post-content tr:nth-child(even) td { background: var(--cream); }

/* DISCLAIMER BOX */
.legal-disclaimer {
  background: rgba(245,158,11,.05); border: 1px solid rgba(245,158,11,.2);
  border-radius: 4px; padding: .9rem 1.2rem; margin-bottom: 2rem;
  display: flex; gap: .7rem; font-size: .76rem; color: #92400e;
}

/* ═══════════════════════════════════
   SIDEBAR WIDGETS
═══════════════════════════════════ */
.widget {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 1.3rem; margin-bottom: 1.5rem;
}
.widget-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 600; color: var(--text); margin-bottom: 1rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--border);
}
.widget-title span { color: var(--gold); }
.widget ul { display: flex; flex-direction: column; gap: .5rem; }
.widget ul li a { font-size: .82rem; color: var(--muted); transition: color .2s; }
.widget ul li a:hover { color: var(--gold); }
.widget ul li { padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }

/* NEWSLETTER WIDGET */
.widget-newsletter { background: var(--cream); border-color: rgba(201,168,76,.2); }
.widget-newsletter input {
  width: 100%; padding: .6rem .9rem; border: 1px solid var(--border);
  border-radius: 2px; font-family: 'Jost', sans-serif; font-size: .82rem;
  outline: none; margin-bottom: .7rem; background: #fff;
}
.widget-newsletter input:focus { border-color: var(--gold); }
.widget-newsletter button {
  width: 100%; background: var(--gold); color: #fff; border: none;
  padding: .65rem; font-family: 'Jost', sans-serif; font-size: .75rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; transition: background .2s;
}
.widget-newsletter button:hover { background: var(--gold-light); }

/* CATEGORY WIDGET */
.widget-categories li { display: flex; justify-content: space-between; align-items: center; }
.cat-count {
  font-size: .65rem; background: var(--gold-pale); color: var(--gold);
  padding: .1rem .4rem; border-radius: 2px; font-weight: 600;
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials-section { background: var(--cream); padding: 3rem 1.8rem; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.testimonial-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 1.5rem; position: relative;
}
.testimonial-card::before {
  content: '❝'; font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--gold); opacity: .15;
  position: absolute; top: .8rem; left: 1.2rem; line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: .9rem; }
.testimonial-text { font-size: .82rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; padding-top: .5rem; }
.testimonial-author { display: flex; align-items: center; gap: .7rem; }
.testimonial-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-weight: 700; color: #fff;
}
.testimonial-name { font-size: .82rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: .7rem; color: var(--muted); }

/* ═══════════════════════════════════
   TRUST BAND
═══════════════════════════════════ */
.trust-band {
  background: #fff; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1.5rem 1.8rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.trust-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.trust-items { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--muted); }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-section { background: var(--cream); padding: 3rem 1.8rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .7rem; margin-top: 2rem; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq-question {
  padding: 1.1rem 1.3rem; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-family: 'Cormorant Garamond', serif; font-size: 1.02rem;
  font-weight: 600; color: var(--text); transition: color .2s; gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.1rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: .9rem 1.3rem 1.2rem; font-size: .83rem;
  color: var(--muted); line-height: 1.72;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════════
   CATEGORIES BAND
═══════════════════════════════════ */
.categories-band { background: var(--cream); padding: 2.8rem 1.8rem; border-top: 1px solid var(--border); }
.categories-inner { max-width: 1200px; margin: 0 auto; }
.categories-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.1rem; margin-top: 1.8rem; }
.category-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; padding: 1.3rem;
  cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none; display: block;
}
.category-card:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
}
.category-icon { font-size: 1.5rem; margin-bottom: .7rem; display: block; }
.category-name { font-family: 'Cormorant Garamond', serif; font-size: .94rem; font-weight: 600; color: var(--text); margin-bottom: .22rem; }
.category-count { font-size: .65rem; color: var(--muted); }
.category-arrow { display: flex; justify-content: space-between; margin-top: .9rem; font-size: .6rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 500; color: var(--gold); }

/* ═══════════════════════════════════
   BOUTIQUE / SHOP
═══════════════════════════════════ */
.shop-section { background: var(--cream); padding: 3rem 1.8rem; }
.shop-inner { max-width: 1200px; margin: 0 auto; }
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; }
.shop-card { background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; }
.shop-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.shop-card-header { background: var(--gold); padding: .55rem .9rem; display: flex; align-items: center; justify-content: space-between; }
.shop-card-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #fff; }
.shop-card-body { padding: 1.1rem; flex: 1; }
.shop-card-rating { color: var(--gold); font-size: .7rem; margin-bottom: .5rem; }
.shop-card-title { font-family: 'Cormorant Garamond', serif; font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .5rem; }
.shop-card-desc { font-size: .74rem; color: var(--muted); line-height: 1.6; margin-bottom: .9rem; }
.shop-card-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .8rem; }
.shop-tag { font-size: .58rem; padding: .14rem .4rem; border-radius: 2px; background: var(--gold-pale); color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.shop-add-btn { width: 100%; background: var(--navy); color: var(--gold); border: none; padding: .65rem; font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.shop-add-btn:hover { background: #2a2a4e; }
.shop-add-btn.added { background: #16a34a; color: #fff; }

/* ═══════════════════════════════════
   COMMENTS
═══════════════════════════════════ */
.comments-section { margin-top: 3rem; }
.comments-list { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 2.5rem; }
.comment-item { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 1.2rem; }
.comment-header { display: flex; align-items: center; gap: .7rem; margin-bottom: .6rem; }
.comment-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center;
  justify-content: center; font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; font-weight: 700; color: #fff;
}
.comment-author-name { font-weight: 600; font-size: .8rem; color: var(--text); }
.comment-date { font-size: .68rem; color: var(--muted); }
.comment-author-badge { font-size: .6rem; background: rgba(201,168,76,.12); color: var(--gold); padding: .1rem .4rem; border-radius: 2px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.comment-text { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.comment-actions { display: flex; gap: .8rem; margin-top: .65rem; }
.comment-reply-btn, .comment-like-btn { font-size: .68rem; color: var(--muted); cursor: pointer; font-weight: 500; border: none; background: none; transition: color .2s; }
.comment-reply-btn:hover { color: var(--gold); }
.comment-like-btn:hover { color: #ec4899; }
.comment-reply { background: #fff; border-left: 2px solid var(--gold); padding: .85rem 1rem; margin-top: .75rem; border-radius: 0 4px 4px 0; }

/* COMMENT FORM */
.comment-respond { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; margin-top: 1.5rem; }
.comment-respond h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .28rem; margin-bottom: .9rem; }
.form-group label { font-size: .68rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: .08em; }
.form-group input, .form-group textarea, .form-group select { padding: .62rem .9rem; border: 1px solid var(--border); border-radius: 2px; font-family: 'Jost', sans-serif; font-size: .82rem; color: var(--text); background: #fff; outline: none; transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 85px; }
.submit-btn { background: var(--navy); color: var(--gold); border: none; padding: .72rem 1.6rem; font-family: 'Jost', sans-serif; font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .2s; }
.submit-btn:hover { background: #2a2a4e; }

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-page { background: var(--cream); padding: 3rem 1.8rem; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--text); margin-bottom: .8rem; }
.contact-info h2 span { color: var(--gold); }
.contact-info p { color: var(--muted); font-size: .85rem; line-height: 1.75; margin-bottom: 1.8rem; }
.contact-item { display: flex; align-items: center; gap: .85rem; padding: .9rem 1.1rem; background: #fff; border: 1px solid var(--border); border-radius: 4px; margin-bottom: .9rem; transition: border-color .2s; }
.contact-item:hover { border-color: var(--gold); }
.contact-item-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(201,168,76,.1); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.contact-item-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-item-value { font-size: .8rem; color: var(--text); font-weight: 500; }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--text); margin-bottom: 1.2rem; }

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 2.3rem; margin: 2.3rem 0; display: grid; grid-template-columns: auto 1fr; gap: 1.8rem; align-items: center; }
.about-avatar { width: 78px; height: 78px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: #fff; flex-shrink: 0; border: 3px solid rgba(201,168,76,.3); }
.about-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text); }
.about-title { font-size: .7rem; color: var(--gold); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .65rem; }
.about-text { font-size: .82rem; color: var(--muted); line-height: 1.7; }
.about-badges { display: flex; gap: .45rem; flex-wrap: wrap; margin-top: .85rem; }
.about-badge { background: var(--gold-pale); color: var(--navy); font-size: .62rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; padding: .18rem .55rem; border-radius: 2px; }
.about-socials { display: flex; gap: .6rem; margin-top: .85rem; }
.about-social { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; text-decoration: none; color: var(--muted); transition: all .2s; }
.about-social:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════ */
.newsletter-section { background: linear-gradient(135deg, var(--cream) 0%, #f0e9db 100%); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; text-align: center; margin: 2.3rem 0; }
.newsletter-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--text); margin-bottom: .55rem; }
.newsletter-section p { color: var(--muted); font-size: .83rem; margin-bottom: .8rem; }
.newsletter-perks { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.newsletter-perk { font-size: .72rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.newsletter-form { display: flex; max-width: 400px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: .65rem .95rem; background: #fff; border: 1px solid var(--border); border-right: none; border-radius: 2px 0 0 2px; font-family: 'Jost', sans-serif; font-size: .8rem; outline: none; color: var(--text); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button { background: var(--gold); color: #fff; border: none; padding: .65rem 1.1rem; font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; border-radius: 0 2px 2px 0; cursor: pointer; transition: background .2s; }
.newsletter-form button:hover { background: var(--gold-light); }
.newsletter-note { font-size: .65rem; color: var(--muted); margin-top: .7rem; }

/* ═══════════════════════════════════
   CART
═══════════════════════════════════ */
.cart-float-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; background: var(--gold); color: #fff; border: none; border-radius: 50px; padding: .72rem 1.2rem; font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: .5rem; box-shadow: 0 4px 20px rgba(201,168,76,.4); transition: background .2s, transform .2s; }
.cart-float-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.cart-badge { background: #fff; color: var(--gold); width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .68rem; font-weight: 700; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 380px; background: #fff; z-index: 301; transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; box-shadow: -4px 0 30px rgba(0,0,0,.15); }
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header { background: var(--gold); padding: 1.3rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: #fff; }
.cart-drawer-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.2rem; cursor: pointer; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.3rem; }
.cart-empty-msg { text-align: center; padding: 3rem 1rem; color: var(--muted); font-size: .84rem; }
.cart-empty-msg div { font-size: 2.5rem; margin-bottom: 1rem; }
.cart-line { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--border); }
.cart-line-info { flex: 1; }
.cart-line-title { font-family: 'Cormorant Garamond', serif; font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: .25rem; }
.cart-line-cat { font-size: .63rem; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; }
.cart-line-price { font-weight: 600; color: var(--gold); font-size: .88rem; white-space: nowrap; }
.cart-line-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .8rem; padding: .2rem; transition: color .2s; }
.cart-line-remove:hover { color: #dc2626; }
.cart-drawer-footer { padding: 1.3rem; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 1.1rem; font-weight: 600; font-size: .9rem; color: var(--text); }
.cart-total-row span:last-child { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }
.cart-checkout-btn { width: 100%; background: var(--navy); color: var(--gold); border: none; padding: .82rem; font-family: 'Jost', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .2s; }
.cart-checkout-btn:hover { background: #2a2a4e; }

/* ═══════════════════════════════════
   BACK TO TOP
═══════════════════════════════════ */
.back-to-top { position: fixed; bottom: 5.5rem; right: 2rem; z-index: 200; background: #fff; color: var(--gold); border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .85rem; transition: all .3s; opacity: 0; transform: translateY(10px); pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: #fff; }

/* ═══════════════════════════════════
   NEWSLETTER POPUP
═══════════════════════════════════ */
.nl-popup { position: fixed; bottom: 2rem; left: 2rem; width: 340px; background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1.6rem; z-index: 250; transform: translateY(20px); opacity: 0; pointer-events: none; transition: all .4s; box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.nl-popup.show { transform: translateY(0); opacity: 1; pointer-events: all; }
.nl-popup-close { position: absolute; top: .7rem; right: .8rem; background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1rem; }
.nl-popup h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text); margin-bottom: .4rem; }
.nl-popup p { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.nl-popup-form { display: flex; }
.nl-popup-form input { flex: 1; padding: .6rem .9rem; border: 1px solid var(--border); border-right: none; border-radius: 2px 0 0 2px; font-family: 'Jost', sans-serif; font-size: .78rem; outline: none; }
.nl-popup-form input:focus { border-color: var(--gold); }
.nl-popup-form button { background: var(--gold); color: #fff; border: none; padding: .6rem .9rem; font-family: 'Jost', sans-serif; font-size: .7rem; font-weight: 700; border-radius: 0 2px 2px 0; cursor: pointer; }

/* ═══════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 500; background: #fff; border-top: 1px solid var(--border); padding: 1rem 1.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s; box-shadow: 0 -4px 20px rgba(0,0,0,.05); }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .76rem; color: var(--muted); line-height: 1.6; max-width: 600px; }
.cookie-banner p a { color: var(--gold); }
.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-accept { background: var(--gold); color: #fff; border: none; padding: .45rem 1rem; border-radius: 2px; font-family: 'Jost', sans-serif; font-size: .72rem; font-weight: 600; cursor: pointer; }
.cookie-decline { background: none; border: 1px solid var(--border); color: var(--muted); padding: .45rem 1rem; border-radius: 2px; font-family: 'Jost', sans-serif; font-size: .72rem; cursor: pointer; }

/* ═══════════════════════════════════
   TOAST
═══════════════════════════════════ */
.toast-msg { position: fixed; bottom: 5.5rem; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--navy); border: 1px solid rgba(201,168,76,.2); color: var(--gold); padding: .65rem 1.3rem; border-radius: 4px; font-size: .78rem; font-weight: 500; z-index: 400; opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; box-shadow: 0 4px 20px rgba(0,0,0,.2); }
.toast-msg.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
#colophon { background: var(--cream); border-top: 1px solid var(--border); padding: 2.5rem 1.8rem 1.2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.2rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--border); }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--gold); letter-spacing: .14em; margin-bottom: .65rem; }
.footer-desc { color: var(--muted); font-size: .76rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-col-title { font-size: .65rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: .45rem; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: .75rem; transition: color .2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-social-link { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; text-decoration: none; color: var(--muted); transition: all .2s; }
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 1.2rem auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { color: var(--muted); font-size: .7rem; }
.footer-legal { display: flex; gap: 1.1rem; }
.footer-legal a { color: var(--muted); text-decoration: none; font-size: .7rem; transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════
   ODIV / DIVIDERS
═══════════════════════════════════ */
.ornamental-divider { display: flex; align-items: center; gap: 1rem; margin: 2.8rem 0; }
.ornamental-divider::before, .ornamental-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ornamental-divider span { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: .3em; }

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-inner { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  #primary-navigation { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-featured-card { display: none; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid-2 { grid-template-columns: 1fr; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .widget-area { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .trending-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 1rem; }
  .nl-popup { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
}
