/* ═══════════════════════════════════════════════════════════
   Happy Pet Product Reviews v12
   Fluid responsive — smooth scaling at ALL screen widths
   ═══════════════════════════════════════════════════════════ */
:root {
  --peach:      #FFEEE4; --peach-mid:  #FFD8C2; --apricot: #FFBA94;
  --coral:      #FF6B4A; --coral-dk:   #E04828; --coral-lt: #FFF2EE;
  --teal:       #0D5C63; --teal-mid:   #1A7A82; --teal-lt:  #E4F5F6;
  --sun:        #FFD166; --sun-dk:     #F0B840;
  --mint:       #2EC4B6; --mint-lt:    #E8FAF8;
  --lav:        #C9B1FF; --lav-lt:     #F3EEFF;
  --bg:         #FFFBF7; --bg-card:    #FFFFFF; --bg-sand:  #FDF6EF;
  --dark:       #1C2B2D; --dark-mid:   #2E4547;
  --text:       #2A3638; --text-mid:   #5A7070; --text-lt:  #8FAAAA;
  --border:     #EDE5DC; --border-mid: #E0D4C8;
  --font-d: 'Fredoka', system-ui, sans-serif;
  --font-b: 'Nunito', system-ui, sans-serif;
  --rx-xl: 24px; --rx-lg: 16px; --rx-md: 12px; --rx-sm: 8px; --rx-p: 99px;
  --sh-sm: 0 2px 8px rgba(13,92,99,.07);
  --sh-md: 0 6px 24px rgba(13,92,99,.1);
  --sh-lg: 0 16px 48px rgba(13,92,99,.14);
  --sh-c:  0 6px 24px rgba(255,107,74,.3);
  --sh-t:  0 6px 24px rgba(13,92,99,.25);
  --max-w: 1140px; --ease: .2s cubic-bezier(.4,0,.2,1);
  /* Fluid spacing — scales smoothly between viewport sizes */
  --space-hero-pad: clamp(1.25rem, 3vw, 2rem);
  --space-section:  clamp(2rem, 4vw, 3rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b); background: var(--bg); color: var(--text);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Header ──────────────────────────────────────────────── */
.site-header { background: var(--teal); position: sticky; top: 0; z-index: 200; box-shadow: var(--sh-t); }
.header-inner { max-width: var(--max-w); margin: 0 auto; padding: .9rem clamp(1rem,3vw,1.5rem); display: flex; align-items: center; justify-content: space-between; }
.site-logo { display: flex; align-items: center; gap: .5rem; }
.logo-paw { width: 36px; height: 36px; background: var(--sun); border-radius: var(--rx-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.logo-text { font-family: var(--font-d); font-size: clamp(1.1rem,3vw,1.5rem); font-weight: 700; color: #fff; letter-spacing: .02em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.75); padding: .45rem .9rem; border-radius: var(--rx-p); transition: color var(--ease), background var(--ease); line-height: 1.4; }
.site-nav a:hover { color: #fff; background: rgba(255,255,255,.15); }
.site-nav .nav-cta { background: var(--coral); color: #fff; margin-left: .5rem; box-shadow: var(--sh-c); }
.site-nav .nav-cta:hover { background: var(--coral-dk); color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: var(--peach);
  padding: var(--space-hero-pad) clamp(1rem,3vw,1.5rem) 0;
  overflow: visible; position: relative; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,186,148,.4) 0%, transparent 65%);
  pointer-events: none;
}
/* Fluid two-column grid — right column shrinks fluidly, never disappears until tiny */
.hero-layout {
  max-width: var(--max-w); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(0, 600px);
  gap: clamp(.75rem, 2vw, 2rem);
  align-items: flex-end;
  position: relative; z-index: 2;
}
.hero-content { padding-bottom: clamp(1.5rem, 4vw, 3rem); line-height: 1.7; }

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--peach-mid); color: var(--dark);
  padding: .4rem 1rem .4rem .4rem;
  border-radius: var(--rx-p); border: 2px solid var(--apricot);
  font-size: clamp(.68rem, 1.5vw, .76rem); font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1.25rem; line-height: 1;
}
.badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; background: var(--sun);
  border-radius: 50%; font-size: .85rem; flex-shrink: 0;
}
/* Fluid hero title — scales from 1.8rem (mobile) to 4rem (desktop) */
.hero-title { font-family: var(--font-d); font-size: clamp(1.9rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: .01em; color: var(--dark); margin-bottom: 1rem; }
.hero-title .accent { color: var(--coral); }
.hero-sub { font-size: clamp(.9rem, 2vw, 1rem); font-weight: 600; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.5rem; }
.hero-actions { display: flex; gap: .65rem; flex-wrap: wrap; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: .45rem; background: var(--coral); color: #fff; padding: .72rem 1.4rem; border-radius: var(--rx-p); font-weight: 800; font-size: clamp(.82rem,1.8vw,.9rem); font-family: var(--font-b); box-shadow: var(--sh-c); transition: background var(--ease), transform var(--ease); line-height: 1.4; }
.btn-primary:hover { background: var(--coral-dk); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: .4rem; background: #fff; color: var(--dark); padding: .72rem 1.2rem; border-radius: var(--rx-p); font-weight: 700; font-size: clamp(.82rem,1.8vw,.88rem); border: 2px solid var(--border-mid); transition: border-color var(--ease), color var(--ease), transform var(--ease); line-height: 1.4; }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── Hero visual: image + cards, fluid sizing ────────────── */
.hero-graphic-wrap {
  position: relative; display: flex;
  align-items: flex-end; justify-content: flex-start;
  line-height: 0; margin-bottom: -4px; overflow: visible;
}
.hero-visual { position: relative; flex: 1 1 auto; line-height: 0; min-width: 0; }
.hero-pet-img {
  width: 100%; height: auto; display: block;
  max-width: clamp(230px, 58vw, 621px);
  filter: drop-shadow(0 12px 28px rgba(13,92,99,.18));
  transform: scale(1.15);
  transform-origin: bottom left;
}
/* Cards: right of image, fluid width */
.hero-cards {
  display: flex; flex-direction: column;
  gap: clamp(.4rem, 1vw, .7rem);
  padding: 0 0 1.5rem clamp(.4rem,1vw,.85rem);
  align-self: center; flex-shrink: 0;
}
.hc {
  display: block; background: #fff;
  border-radius: var(--rx-lg);
  box-shadow: 0 6px 20px rgba(13,92,99,.13);
  border: 2px solid var(--border);
  width: clamp(140px, 16vw, 172px);
  overflow: hidden; text-decoration: none; color: var(--text);
  transition: transform var(--ease), box-shadow var(--ease);
  animation: fadeUp .5s ease both;
}
.hc:nth-child(2) { animation-delay: .1s; }
.hc:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,92,99,.2); }
.hc-bar { height: 4px; background: var(--ha, var(--coral)); }
.hc-inner { display: flex; align-items: center; gap: .5rem; padding: .65rem .7rem .45rem; }
.hc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; min-width: 28px;
  background: var(--sun); border-radius: var(--rx-sm);
  font-size: .95rem; flex-shrink: 0; line-height: 1;
}
.hc-text { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.hc-label { display: block; font-family: var(--font-d); font-size: clamp(.78rem,1.5vw,.92rem); font-weight: 600; color: var(--dark); line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hc-sub   { display: block; font-size: clamp(.65rem,1.2vw,.72rem); color: var(--text-lt); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hc-footer { font-size: .72rem; font-weight: 800; color: var(--ha, var(--coral)); padding: .3rem .7rem .55rem; text-align: right; line-height: 1.3; border-top: 1px solid var(--border); }

/* ── Trust Strip — always single row, fluid font ─────────── */
.trust-strip { background: var(--teal); padding: .85rem clamp(1rem,3vw,1.5rem); position: relative; z-index: 5; }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; gap: clamp(.6rem,2vw,1.5rem); align-items: center;
  flex-wrap: nowrap; justify-content: space-between;
  overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: clamp(.65rem, 1.4vw, .82rem); font-weight: 700;
  color: rgba(255,255,255,.85); white-space: nowrap; flex-shrink: 1; min-width: 0;
}
.ti-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; min-width: 26px;
  background: #FFD166; border-radius: var(--rx-sm);
  font-size: .85rem; flex-shrink: 0; line-height: 1;
}
.trust-item strong { color: var(--sun); }

/* ── Category Pills ──────────────────────────────────────── */
.categories-bar { background: #fff; border-bottom: 2px solid var(--border); padding: .85rem clamp(1rem,3vw,1.5rem); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.categories-bar::-webkit-scrollbar { height: 3px; }
.categories-bar::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 2px; }
.categories-inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: .5rem; align-items: center; }
.cat-pill { display: inline-flex; align-items: center; gap: .3rem; padding: .45rem 1rem; border-radius: var(--rx-p); border: 2px solid var(--border); font-size: clamp(.76rem,1.5vw,.82rem); font-weight: 700; color: var(--text-mid); background: #fff; white-space: nowrap; cursor: pointer; transition: all var(--ease); font-family: var(--font-b); line-height: 1.4; }
.cat-pill:hover { border-color: var(--teal); color: var(--teal); }
.cat-pill.active { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: var(--sh-t); }

/* ── Posts Section ───────────────────────────────────────── */
.site-main { min-height: 60vh; }
.posts-section { max-width: var(--max-w); margin: 0 auto; padding: var(--space-section) clamp(1rem,3vw,1.5rem) 5rem; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; }
.section-title { font-family: var(--font-d); font-size: clamp(1.5rem,3vw,2rem); font-weight: 700; color: var(--dark); letter-spacing: .02em; }
.section-count { font-size: .8rem; font-weight: 700; background: var(--sun); color: var(--dark); padding: .3rem .85rem; border-radius: var(--rx-p); line-height: 1.4; }
/* Fluid grid: auto-fill with fluid min column width */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(clamp(260px,30vw,340px), 1fr)); gap: clamp(1rem,2vw,1.5rem); }
.empty-state { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; background: #fff; border-radius: var(--rx-xl); border: 2px dashed var(--border-mid); }
.empty-state p { color: var(--text-mid); font-size: 1.1rem; font-weight: 600; line-height: 1.6; }
.empty-state small { display: block; color: var(--text-lt); margin-top: .5rem; font-size: .88rem; }

/* ── Post Cards ──────────────────────────────────────────── */
.post-card { background: var(--bg-card); border-radius: var(--rx-xl); border: 2px solid var(--border); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); box-shadow: var(--sh-sm); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--coral); }
.card-accent { height: 7px; background: linear-gradient(90deg, var(--coral), var(--sun)); }
.post-card:nth-child(2) .card-accent { background: linear-gradient(90deg, var(--teal), var(--mint)); }
.post-card:nth-child(3) .card-accent { background: linear-gradient(90deg, var(--sun), var(--coral)); }
.post-card:nth-child(4) .card-accent { background: linear-gradient(90deg, var(--mint), var(--teal)); }
.post-card:nth-child(5) .card-accent { background: linear-gradient(90deg, var(--lav), var(--coral)); }
.post-card:nth-child(n+6) .card-accent { background: linear-gradient(90deg, var(--coral), var(--sun)); }
.card-link { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .9rem; }
.card-category { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--teal-lt); color: var(--teal); padding: .32rem .75rem; border-radius: var(--rx-p); line-height: 1.4; }
.card-badges { display: flex; flex-direction: column; gap: .35rem; }
.card-species { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 800; padding: .28rem .65rem; border-radius: var(--rx-p); line-height: 1.4; white-space: nowrap; }
.species-dog { background: #E8F4FD; color: #1565C0; }
.species-cat { background: #FDF3FF; color: #7B1FA2; }
.species-both { background: var(--peach-mid); color: var(--dark); }
.card-emoji { font-size: 1.5rem; line-height: 1; }
.card-title { font-family: var(--font-d); font-size: clamp(1.05rem,2.2vw,1.2rem); font-weight: 600; line-height: 1.3; color: var(--dark); letter-spacing: .01em; margin-bottom: .75rem; flex: 1; transition: color var(--ease); }
.post-card:hover .card-title { color: var(--coral); }
.card-excerpt { font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.25rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: .9rem; border-top: 2px solid var(--border); margin-top: auto; }
.card-date { font-size: .75rem; font-weight: 700; color: var(--text-lt); line-height: 1.4; }
.card-read { font-size: .8rem; font-weight: 800; color: var(--coral); display: inline-flex; align-items: center; gap: .3rem; background: var(--coral-lt); padding: .3rem .75rem; border-radius: var(--rx-p); line-height: 1.4; transition: background var(--ease), color var(--ease); }
.post-card:hover .card-read { background: var(--coral); color: #fff; }

/* ── Post Article ────────────────────────────────────────── */
.post-article { max-width: 760px; margin: 0 auto; padding: 3rem clamp(1rem,3vw,1.5rem) 5rem; }
.post-header-card { background: var(--peach); border: 2px solid var(--peach-mid); border-radius: var(--rx-xl); padding: clamp(1.5rem,4vw,2.5rem); margin-bottom: 2.5rem; }
.post-meta-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.post-category { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: var(--teal); color: #fff; padding: .32rem .8rem; border-radius: var(--rx-p); line-height: 1.4; }
.post-date { font-size: .82rem; font-weight: 700; color: var(--text-mid); line-height: 1.4; }
.post-title { font-family: var(--font-d); font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: .01em; color: var(--dark); margin-bottom: .85rem; }
.post-description { font-size: 1rem; font-weight: 600; color: var(--text-mid); line-height: 1.65; }
.post-body { font-size: 1rem; line-height: 1.85; }
.post-body h2 { font-family: var(--font-d); font-size: clamp(1.25rem,3vw,1.55rem); font-weight: 700; color: var(--dark); margin: 2.5rem 0 .85rem; padding-left: .9rem; border-left: 5px solid var(--coral); line-height: 1.2; }
.post-body h3 { font-family: var(--font-d); font-size: clamp(1.05rem,2.5vw,1.22rem); font-weight: 600; color: var(--dark); margin: 2rem 0 .6rem; line-height: 1.3; }
.post-body p { margin-bottom: 1.1rem; }
.post-body ul, .post-body ol { margin: .75rem 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: .4rem; }
.post-body strong { color: var(--dark); font-weight: 800; }
.post-body a { color: var(--coral); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.post-body a:hover { color: var(--coral-dk); }
.post-body table { width: 100%; border-collapse: separate; border-spacing: 0; margin: 2rem 0; font-size: clamp(.78rem,1.8vw,.9rem); border-radius: var(--rx-lg); overflow: hidden; box-shadow: var(--sh-md); border: 2px solid var(--border); }
.post-body th { background: var(--teal); color: #fff; padding: .85rem 1rem; text-align: left; font-family: var(--font-d); font-weight: 700; font-size: .85rem; letter-spacing: .03em; line-height: 1.4; }
.post-body td { padding: .7rem 1rem; border-bottom: 2px solid var(--border); background: #fff; line-height: 1.5; }
.post-body tr:last-child td { border-bottom: none; }
.post-body tr:nth-child(even) td { background: var(--bg-sand); }
.post-body tr:hover td { background: var(--teal-lt); }
.affiliate-notice { display: flex; gap: .85rem; align-items: flex-start; margin-top: 3rem; padding: 1.25rem 1.5rem; background: var(--teal-lt); border: 2px solid rgba(13,92,99,.2); border-radius: var(--rx-lg); font-size: .85rem; font-weight: 600; color: var(--dark-mid); line-height: 1.6; }
.notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.btn-buy { display: inline-flex; align-items: center; gap: .45rem; background: var(--coral); color: #fff; padding: .62rem 1.35rem; border-radius: var(--rx-p); font-weight: 800; font-size: .9rem; box-shadow: var(--sh-c); transition: background var(--ease), transform var(--ease); margin: .35rem .25rem; line-height: 1.4; }
.btn-buy:hover { background: var(--coral-dk); transform: translateY(-1px); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--teal); color: rgba(255,255,255,.65); padding: 3.5rem clamp(1rem,3vw,1.5rem) 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); margin-bottom: 2rem; }
.footer-brand .logo-text { font-family: var(--font-d); font-size: 1.55rem; font-weight: 700; color: var(--sun); display: block; margin-bottom: .5rem; line-height: 1.3; }
.footer-brand p { font-size: .88rem; max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.5); transition: color var(--ease); line-height: 1.4; }
.footer-links a:hover { color: var(--sun); }
.footer-legal { max-width: var(--max-w); margin: 0 auto; font-size: .78rem; color: rgba(255,255,255,.3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; line-height: 1.5; }


/* ── Mobile pet image strip (hidden on desktop) ─────────── */
.mobile-pet-wrap {
  display: none;                  /* hidden on desktop */
  background: var(--peach);
  text-align: center;
  line-height: 0;
  overflow: hidden;
}
.mobile-pet-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(13,92,99,.15));
}
/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content  { animation: fadeUp .6s ease both; }
.hero-visual   { animation: fadeUp .7s .08s ease both; }
.hc            { animation: fadeUp .5s ease both; }
.post-card     { animation: fadeUp .5s ease both; }
.post-card:nth-child(2) { animation-delay: .08s; }
.post-card:nth-child(3) { animation-delay: .16s; }
.post-card:nth-child(4) { animation-delay: .24s; }
.post-card:nth-child(n+5) { animation-delay: .32s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — only essential structural changes per breakpoint
   Everything else scales fluidly via clamp() above
   ══════════════════════════════════════════════════════════ */

/* ── Hamburger nav: kicks in at 700px ────────────────────── */
@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--teal); flex-direction: column; align-items: stretch;
    padding: .75rem 1.5rem 1.25rem; border-top: 1px solid rgba(255,255,255,.15);
    gap: .25rem; box-shadow: var(--sh-md); z-index: 300;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .65rem .9rem; }
  .site-nav .nav-cta { text-align: center; }
  .site-header { position: relative; }
}

/* ── Tablet (550–960px): stacked hero, pets still visible ── */
@media (max-width: 960px) {
  .mobile-pet-wrap { display: block; }
  .hero-layout {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .hero-graphic-wrap {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero { padding-bottom: 0; overflow: hidden; }
  .hero-content { padding-bottom: 1.25rem; }
  /* Pets scale down but stay visible */
  .hero-pet-img { max-width: min(414px, 65vw); }
  .hc { width: clamp(120px, 20vw, 155px); }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem 1rem;
    justify-items: start;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; }
}

/* ── Small mobile (<520px): hide pets, full-width content ── */
@media (max-width: 520px) {
  .mobile-pet-img { max-width: 280px; }
  .hero-graphic-wrap { display: none; }
  .hero { padding-bottom: 1.5rem; }
  .hero-content { padding-bottom: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: .5rem;
    justify-items: center;
    text-align: center;
  }
  .trust-item { justify-content: center; }
  .post-grid { grid-template-columns: 1fr; }
  .post-body th, .post-body td { padding: .5rem .6rem; }
}

/* ── Post product image + buy button ─────────────────────────── */
.post-product-image { text-align: center; margin: 1.75rem 0 1.25rem; }
.post-product-image img { max-width: 340px; width: 100%; height: auto; border-radius: var(--rx-xl); box-shadow: var(--sh-md); border: 2px solid var(--border); background: #fff; padding: .75rem; object-fit: contain; }
.post-buy-btn { display: inline-flex; align-items: center; gap: .45rem; background: var(--coral); color: #fff; padding: .8rem 1.75rem; border-radius: var(--rx-p); font-weight: 800; font-size: 1rem; font-family: var(--font-b); box-shadow: var(--sh-c); text-decoration: none; transition: background var(--ease), transform var(--ease); margin-bottom: 1.5rem; }
.post-buy-btn:hover { background: var(--coral-dk); transform: translateY(-2px); }
.post-divider { border: none; border-top: 2px solid var(--border); margin: 1.75rem 0; }
@media (max-width: 520px) { .post-product-image img { max-width: 260px; } }
