/* ── Base ── */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background-color: #F7F3ED;
      color: #1A1A18;
      font-family: 'DM Sans', system-ui, sans-serif;
      margin: 0;
    }
/* Global responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* WordPress specific */
.wp-post-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Gutenberg content images */
.entry-content img,
.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Gutenberg content spacing */
.wp-block-image.alignleft {
  margin: 0.5em 2em 1.5em 0;
}
.wp-block-image.alignright {
  margin: 0.5em 0 1.5em 2em;
}
.wp-block-image.aligncenter {
  margin: 2em auto;
}
.wp-block-image.alignwide {
  margin: 3em auto;
}
.wp-block-image.alignfull {
  margin: 3em calc(50% - 50vw);
}

/* General block spacing inside content */
.wp-block-image,
.wp-block-paragraph,
.wp-block-heading,
.wp-block-list,
.wp-block-quote {
  margin-bottom: 1.8em;
}

/* Paragraph spacing */
.wp-block-paragraph {
  line-height: 1.9;
}

/* Headings inside content */
.wp-block-heading h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.5em;
}
.wp-block-heading h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5em;
}

/* Quote block */
.wp-block-quote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 2em 0;
  font-style: italic;
  color: var(--mid);
}

/* WordPress caption */
.wp-caption {
  max-width: 100%;
}
.wp-caption-text {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-align: center;
}
    /* ── Announcement bar ── */
    .announce-bar {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background-color: #1A1A18;
      color: #EDE8DF;
      text-align: center;
      padding: 9px 16px;
    }
    .announce-bar a {
      color: #C8956A;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ── Header ── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: #F7F3ED;
      border-bottom: 1px solid #D8D2C8;
      transition: box-shadow 0.3s ease, background-color 0.3s ease;
    }
    .site-header.scrolled {
      background-color: rgba(247,243,237,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 1px 20px rgba(26,26,24,0.07);
    }

    /* ── Inner layout ── */
    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
      height: 68px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }

    /* ── Logo ── */
    .logo {
      display: flex;
      flex-direction: column;
      gap: 0px;
      text-decoration: none;
      line-height: 1;
    }
    .logo-main {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-weight: 400;
      font-size: 22px;
      color: #1A1A18;
      letter-spacing: 0.01em;
    }
    .logo-sub {
      font-family: 'DM Mono', monospace;
      font-size: 7.5px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #8B5E3C;
      margin-top: 2px;
    }

    /* ── Primary Nav ── */
    .primary-nav {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .primary-nav a {
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px;
      font-weight: 400;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      text-decoration: none;
      color: #4A4A45;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.2s ease;
    }
    .primary-nav a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background-color: #8B5E3C;
      transition: width 0.25s ease;
    }
    .primary-nav a:hover {
      color: #1A1A18;
    }
    .primary-nav a:hover::after,
    .primary-nav a.active::after {
      width: 100%;
    }
    .primary-nav a.active {
      color: #1A1A18;
    }

    /* ── Dropdown ── */
    .nav-item { position: relative; }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .dropdown {
      position: absolute;
      top: calc(100% + 20px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      min-width: 180px;
      background-color: #F7F3ED;
      border: 1px solid #D8D2C8;
      padding: 12px 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .dropdown a {
      display: block;
      padding: 9px 20px;
      font-size: 11px;
      letter-spacing: 0.12em;
      color: #4A4A45 !important;
      white-space: nowrap;
    }
    .dropdown a:hover { color: #1A1A18 !important; background-color: #EDE8DF; }
    .dropdown a::after { display: none !important; }

    /* ── Right actions ── */
    .header-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 20px;
    }
    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: #4A4A45;
      transition: color 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .icon-btn:hover { color: #1A1A18; }

    .cart-btn {
      position: relative;
    }
    .cart-count {
      position: absolute;
      top: -2px; right: -4px;
      width: 15px; height: 15px;
      background-color: #8B5E3C;
      color: white;
      border-radius: 50%;
      font-family: 'DM Mono', monospace;
      font-size: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* CTA button */
    .btn-wholesale {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: #F7F3ED;
      background-color: #1A1A18;
      padding: 9px 18px;
      border: 1px solid #1A1A18;
      transition: background-color 0.2s ease, color 0.2s ease;
      white-space: nowrap;
    }
    .btn-wholesale:hover {
      background-color: transparent;
      color: #1A1A18;
    }

    /* ── Mobile hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background-color: #1A1A18;
      transition: all 0.3s ease;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile drawer ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: #F7F3ED;
  z-index: 99;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
    .mobile-nav a {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-size: 32px;
      font-weight: 300;
      color: #1A1A18;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid #D8D2C8;
      transition: color 0.2s ease, padding-left 0.2s ease;
    }
    .mobile-nav a:hover { color: #8B5E3C; padding-left: 8px; }
    .mobile-nav-footer {
      margin-top: auto;
      padding-top: 40px;
      display: flex;
      gap: 24px;
    }
    .mobile-nav-footer a {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #8B5E3C;
      text-decoration: none;
      border: none !important;
      padding: 0 !important;
      font-style: normal !important;
      font-size: 9px !important;
    }

    .mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-nav ul li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 300;
  color: #1A1A18;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #D8D2C8;
  display: block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav ul li a:hover { color: #8B5E3C; padding-left: 8px; }

    /* ── Search overlay ── */
    .search-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(247,243,237,0.97);
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .search-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .search-overlay input {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-size: 36px;
      font-weight: 300;
      background: none;
      border: none;
      border-bottom: 1px solid #1A1A18;
      width: min(600px, 90vw);
      padding: 12px 0;
      color: #1A1A18;
      text-align: center;
      outline: none;
    }
    .search-overlay input::placeholder { color: #C8C0B4; }
    .search-hint {
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #8B5E3C;
      margin-top: 16px;
    }
    .search-close {
      position: absolute;
      top: 28px; right: 32px;
      background: none; border: none;
      cursor: pointer;
      color: #4A4A45;
      font-size: 22px;
      transition: color 0.2s;
    }
    .search-close:hover { color: #1A1A18; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .primary-nav, .btn-wholesale { display: none; }
      .hamburger { display: flex; }
      .header-inner { grid-template-columns: auto 1fr auto; }
      .logo { order: 1; }
      .header-actions { order: 3; }
      .hamburger { order: 4; }
    }

    /* ── Demo body content ── */
    .demo-body {
      max-width: 800px;
      margin: 120px auto 60px;
      padding: 0 32px;
      text-align: center;
    }
    .demo-body h1 {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-style: italic;
      font-weight: 300;
      font-size: 52px;
      color: #1A1A18;
      margin-bottom: 16px;
    }
    .demo-body p {
      font-size: 14px;
      color: #4A4A45;
      line-height: 1.8;
    }
    .demo-badge {
      display: inline-block;
      font-family: 'DM Mono', monospace;
      font-size: 9px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #8B5E3C;
      border: 1px solid #8B5E3C;
      padding: 5px 14px;
      margin-bottom: 24px;
    }
/* Card image placeholder */
.card-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 110%;
  overflow: hidden;
}
.card-img-placeholder {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.product-card:hover .card-img-placeholder { transform: scale(1.03); }
.card-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .25s; pointer-events: none;
}
.product-card:hover .card-overlay { opacity: 1; }
.card-overlay button {
  width: 100%; font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--dark);
  color: var(--cream); border: none; padding: 14px; cursor: pointer;
}
.card-overlay button:hover { background: var(--accent); }
.card-origin-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.3); padding: 4px 9px;
}
.card-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream);
  background: var(--accent); padding: 4px 9px;
}
.card-process { font-size: 9.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.card-name { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.card-notes { font-size: 11.5px; font-weight: 300; color: var(--mid); margin-bottom: 14px; line-height: 1.5; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 13px; font-weight: 500; color: var(--dark); }
.card-weight { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); border: 1px solid var(--border); padding: 3px 8px; }
.card-body { padding: 18px 2px 28px; }
/* Replace your inline grid style with this */
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .fp-grid { grid-template-columns: 1fr; }
}
.why-top { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; }
.why-card { padding:36px 28px; border-right:1px solid rgba(245,242,237,.08); transition:background .25s; }
.why-card:last-child { border-right:none; }
.why-card:hover { background:rgba(245,242,237,.03); }
.why-card-title { font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:#F5F2ED; margin-bottom:12px; }
.why-card-text { font-size:13px; font-weight:300; color:rgba(245,242,237,.5); line-height:1.8; }

@media (max-width:900px) {
  .why-top { grid-template-columns:1fr; gap:28px; }
  .why-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px) {
  .why-grid { grid-template-columns:1fr; }
}

/* Logo track */
.logo-track-wrap {
  overflow: hidden;
  position: relative;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.logo-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scroll-logos 22s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }

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

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-placeholder {
  width: 160px;
  height: 100px;
  background: #D8D2C8;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color .2s, filter .2s;
  filter: grayscale(100%);
}
.logo-item.active .logo-placeholder {
  border-color: var(--accent);
  filter: grayscale(0%);
}
.logo-item:hover .logo-placeholder { filter: grayscale(40%); }
.logo-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.logo-item.active .logo-label { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-col-title {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,242,237,.35);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: rgba(245,242,237,.6);
  text-decoration: none;
  transition: color .18s;
}
.footer-links a:hover { color: #F5F2ED; }
.footer-bottom {
  border-top: 1px solid rgba(245,242,237,.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 300;
  color: rgba(245,242,237,.3);
}
.footer-bottom a {
  color: rgba(245,242,237,.3);
  text-decoration: none; transition: color .18s;
}
.footer-bottom a:hover { color: rgba(245,242,237,.7); }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:8px; margin-bottom:24px; }
.form-label { font-size:10px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--mid); }
.form-input {
  font-family:'Jost',sans-serif; font-size:14px; font-weight:300;
  background:none; border:1px solid var(--border);
  padding:14px 16px; color:var(--dark); outline:none;
  transition:border-color .2s; width:100%;
}
.form-input:focus { border-color:var(--dark); }
.form-input::placeholder { color:#C0BBB0; }
textarea.form-input { resize:vertical; }

@media (max-width:600px) {
  .form-row { grid-template-columns:1fr; }
  .offer-grid { grid-template-columns:1fr !important; }
  .specs-grid { grid-template-columns:1fr !important; }
}

/* Product detail layout */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-detail-img { position: relative; }

/* Flavor tags */
.flavor-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 6px 12px; color: var(--mid);
}

/* Weight buttons */
.weight-btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid var(--border);
  padding: 8px 16px; cursor: pointer; color: var(--mid);
  transition: all .18s;
}
.weight-btn.active,
.weight-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

/* Farm table */
.farm-table { width: 100%; border-collapse: collapse; }
.farm-table tr { border-bottom: 1px solid var(--border); }
.farm-table tr:last-child { border-bottom: none; }
.farm-key {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); padding: 14px 0; width: 40%;
}
.farm-val {
  font-size: 13px; font-weight: 300;
  color: var(--dark); padding: 14px 0;
}

/* Responsive */
@media (max-width: 860px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-bottom-grid { grid-template-columns: 1fr !important; gap: 48px; }
  .also-grid { grid-template-columns: 1fr !important; }
}

/* Product row */
.product-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
}
.product-row:first-child { border-top: 1px solid var(--border); }
.product-row:hover { background: var(--light); margin: 0 -32px; padding: 36px 32px; }

/* Image */
.product-row-img {
  width: 120px; height: 120px;
  position: relative; flex-shrink: 0;
  overflow: hidden;
}
.product-row:hover .product-row-img div { transform: scale(1.05); transition: transform .4s ease; }

/* Info */
.product-row-name {
  font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.product-row-meta {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 10px;
}
.product-row-notes {
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.6;
}

/* Right: price + arrow */
.product-row-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
  flex-shrink: 0;
}
.product-row-price {
  font-size: 18px; font-weight: 400;
  color: var(--dark); white-space: nowrap;
}
.product-row-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background .2s, color .2s;
}
.product-row:hover .product-row-arrow {
  background: var(--dark); color: var(--cream);
  border-color: var(--dark);
}

/* Mobile */
@media (max-width: 640px) {
  .product-row {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .product-row:hover { margin: 0 -16px; padding: 28px 16px; }
  .product-row-right {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .product-row-img { width: 80px; height: 80px; grid-row: 1; }
  .product-row-info { grid-row: 1; }
  .product-row-name { font-size: 17px; }
}

/* About story grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Farmers */
.farmers-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.farmer-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.farmer-row:first-child { border-top: 1px solid var(--border); }
.farmer-img {
  width: 100px; height: 100px;
  background: #D8D2C8;
  border-radius: 50%;
  flex-shrink: 0;
}
.farmer-name {
  font-size: 16px; font-weight: 500;
  color: var(--dark); margin-bottom: 4px;
}
.farmer-village {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.farmer-bio {
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .farm-facts-grid { grid-template-columns: 1fr !important; }
  .farmer-row { grid-template-columns: 80px 1fr; gap: 20px; }
  .farmer-img { width: 80px; height: 80px; }
}
/* Post row */
.post-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
}
.post-row:first-child { border-top: 1px solid var(--border); }
.post-row:hover { background: var(--light); margin: 0 -32px; padding: 36px 32px; }
.post-row:hover .product-row-arrow {
  background: var(--dark); color: var(--cream);
  border-color: var(--dark);
}

/* Image */
.post-row-img {
  width: 160px; height: 110px;
  overflow: hidden; flex-shrink: 0;
  position: relative;
}
.post-row:hover .post-row-img img { transform: scale(1.05); transition: transform .4s ease; }

/* Info */
.post-row-meta {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.post-row-name {
  font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 8px;
  letter-spacing: -0.01em; line-height: 1.2;
}
.post-row-excerpt {
  font-size: 13px; font-weight: 300;
  color: var(--mid); line-height: 1.7;
}
.post-row-excerpt p { margin: 0; }

/* Pagination */
.archive-pagination {
  padding: 60px 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-pagination .nav-links {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}
.archive-pagination a,
.archive-pagination span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--dark);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  transition: background .2s, color .2s, border-color .2s;
}
.archive-pagination a:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* Mobile */
@media (max-width: 640px) {
  .post-row {
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .post-row:hover { margin: 0 -16px; padding: 28px 16px; }
  .post-row-img { width: 100px; height: 80px; }
  .post-row-name { font-size: 17px; }
  .post-row-right { display: none; }
}
