/* ── BLOG LISTING PAGE ── */
.blog-hero {
  background: linear-gradient(135deg, #1b3e28 0%, #254d34 55%, #1a3a25 100%);
  padding: 56px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(212,169,74,.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(184,146,42,.06) 0%, transparent 50%);
}
.blog-hero-content { position: relative; z-index: 1; }
.blog-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--gold-lt); font-size: .72rem; letter-spacing: .26em;
  font-weight: 500; text-transform: uppercase; margin-bottom: 18px;
}
.blog-hero-eyebrow::before, .blog-hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .5;
}
.blog-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: #f5efe6; line-height: 1.1; margin-bottom: 16px;
}
.blog-hero-title em { font-style: italic; color: var(--gold-lt); }
.blog-hero-desc {
  color: rgba(245,239,230,.6); font-size: .92rem;
  line-height: 1.8; max-width: 520px; margin: 0 auto; font-weight: 300;
}

/* Category filter pills */
.blog-filters {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dk);
  padding: 16px 80px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.blog-filter-btn {
  padding: 7px 18px;
  border: 1px solid var(--cream-dk);
  background: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: .74rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-lt);
  border-radius: 2px;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--forest); color: #fff; border-color: var(--forest);
}

/* Blog grid */
.blog-section { padding: 60px 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s;
  text-decoration: none;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(27,62,40,.1);
  transform: translateY(-3px);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--forest);
  line-height: 1.3; margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: .82rem; color: var(--text-lt); line-height: 1.65;
  font-weight: 300; flex: 1; margin-bottom: 16px;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; color: var(--sand); letter-spacing: .06em;
  border-top: 1px solid var(--cream-dk); padding-top: 14px;
}
.blog-card-read-more {
  margin-left: auto; color: var(--gold); font-weight: 600;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}

/* Empty state */
.blog-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 60px 20px; color: var(--text-lt);
}
.blog-empty-icon { font-size: 2.5rem; margin-bottom: 14px; opacity: .5; }

/* Pagination */
.blog-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 40px 0 20px;
}
.blog-page-btn {
  min-width: 36px; height: 36px;
  border: 1px solid var(--cream-dk); background: none;
  cursor: pointer; font-family: 'Jost', sans-serif;
  font-size: .82rem; color: var(--text-lt); padding: 0 10px;
  transition: background .2s, color .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.blog-page-btn:hover,
.blog-page-btn.active { background: var(--forest); color: #fff; border-color: var(--forest); }
.blog-page-btn:disabled { opacity: .4; cursor: default; }

/* ── BLOG POST PAGE ── */
.post-hero {
  position: relative;
  background: linear-gradient(135deg, #1b3e28 0%, #254d34 55%, #1a3a25 100%);
  padding: 64px 80px 56px;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212,169,74,.08) 0%, transparent 60%);
}
.post-hero-inner { position: relative; z-index: 1; max-width: 780px; }
.post-category-tag {
  display: inline-block;
  background: rgba(184,146,42,.18); border: 1px solid rgba(184,146,42,.3);
  color: var(--gold-lt); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; padding: 5px 12px; margin-bottom: 18px;
  font-weight: 500;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 300; color: #f5efe6; line-height: 1.1; margin-bottom: 20px;
}
.post-title em { font-style: italic; color: var(--gold-lt); }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  font-size: .78rem; color: rgba(245,239,230,.55); letter-spacing: .06em;
}
.post-meta-dot { opacity: .4; }

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 56px 80px;
  align-items: start;
}

/* Cover image */
.post-cover {
  width: 100%; aspect-ratio: 16/8;
  object-fit: cover; display: block;
  border: 1px solid var(--cream-dk);
  margin-bottom: 36px;
}
.post-cover-placeholder {
  width: 100%; aspect-ratio: 16/8;
  background: var(--cream); border: 1px solid var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; margin-bottom: 36px;
}

/* Post body content */
.post-body {
  font-size: .95rem; line-height: 1.9;
  color: var(--text); font-weight: 300;
}
.post-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600; color: var(--forest);
  margin: 36px 0 14px; line-height: 1.2;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--forest);
  margin: 28px 0 10px;
}
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol {
  padding-left: 22px; margin-bottom: 20px;
}
.post-body li { margin-bottom: 8px; line-height: 1.75; }
.post-body strong { color: var(--forest); font-weight: 600; }
.post-body em { color: var(--gold); font-style: italic; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 14px 20px; margin: 24px 0;
  background: rgba(184,146,42,.05);
  font-style: italic; color: var(--text-lt);
}
.post-body a { color: var(--gold); text-decoration: underline; }
.post-body img {
  max-width: 100%; border: 1px solid var(--cream-dk);
  margin: 20px 0; display: block;
}

/* Post tags */
.post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--cream-dk);
}
.post-tag {
  background: var(--cream-dk); color: var(--text-lt);
  font-size: .7rem; letter-spacing: .1em; padding: 5px 12px;
  border-radius: 2px; text-transform: uppercase; font-weight: 500;
}

/* Sidebar */
.post-sidebar {}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--forest);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dk);
}

/* Sidebar: recent posts */
.sidebar-post-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid rgba(237,228,214,.5);
  text-decoration: none;
}
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-thumb {
  width: 58px; height: 58px;
  border: 1px solid var(--cream-dk);
  background: var(--cream); flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.sidebar-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post-title {
  font-size: .82rem; font-weight: 500; color: var(--forest);
  line-height: 1.35;
}
.sidebar-post-date { font-size: .7rem; color: var(--text-lt); margin-top: 3px; }

/* Sidebar: product recommendation */
.sidebar-product-item {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(237,228,214,.5);
  text-decoration: none;
}
.sidebar-product-item:last-child { border-bottom: none; }
.sidebar-product-img {
  width: 48px; height: 48px; background: var(--cream);
  border: 1px solid var(--cream-dk); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; overflow: hidden;
}
.sidebar-product-img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-product-name {
  font-size: .82rem; font-weight: 500; color: var(--forest);
}
.sidebar-product-price { font-size: .78rem; color: var(--gold); font-weight: 600; }

/* Shop CTA block at bottom of post */
.post-shop-cta {
  background: linear-gradient(135deg, #1b3e28, #254d34);
  padding: 44px;
  margin-top: 40px;
}
.post-shop-cta-label {
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.post-shop-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; color: #f5efe6; margin-bottom: 8px;
}
.post-shop-cta-desc {
  color: rgba(245,239,230,.6); font-size: .88rem;
  line-height: 1.7; margin-bottom: 24px; font-weight: 300;
}
.post-shop-products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 24px;
}
.post-shop-card {
  background: rgba(245,239,230,.07);
  border: 1px solid rgba(212,169,74,.2);
  padding: 14px; text-decoration: none;
  transition: background .2s;
}
.post-shop-card:hover { background: rgba(245,239,230,.12); }
.post-shop-card-img {
  width: 100%; aspect-ratio: 1;
  background: rgba(245,239,230,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin-bottom: 10px; overflow: hidden;
}
.post-shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-shop-card-name { font-size: .82rem; font-weight: 500; color: #f5efe6; }
.post-shop-card-price { font-size: .78rem; color: var(--gold); margin-top: 4px; }
.post-shop-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; text-decoration: none;
  font-size: .78rem; letter-spacing: .16em; font-weight: 600;
  padding: 13px 28px; text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: background .2s;
}
.post-shop-btn:hover { background: var(--gold-lt); }

/* Related posts */
.related-posts { padding: 56px 80px; border-top: 1px solid var(--cream-dk); }
.related-posts-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--forest);
  margin-bottom: 28px;
}
.related-posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
  .post-shop-products { grid-template-columns: repeat(2, 1fr); }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-hero { padding: 42px 24px; }
  .blog-section { padding: 36px 20px; }
  .blog-filters { padding: 14px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 18px; }
  .post-hero { padding: 36px 20px 28px; }
  .post-layout { padding: 28px 20px; }
  .related-posts { padding: 36px 20px; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .post-shop-cta { padding: 24px; }
  .post-shop-products { grid-template-columns: 1fr; }
}