:root {
  --pink: #E963A7;
  --soft-pink: #F0A6C5;
  --blush: #EACDDB;
  --mist-blue: #D1DCE0;
  --blue-gray: #9DB8D6;
  --ink: #183244;
  --muted: #566574;
  --cream: #fffafd;
  --line: rgba(233, 99, 167, .22);
  --shadow: 0 18px 45px rgba(35, 59, 79, .09);
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: Inter, "Nunito Sans", system-ui, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(900px 430px at 0% 8%, rgba(240, 166, 197, .55), transparent 68%),
    radial-gradient(760px 380px at 95% 16%, rgba(209, 220, 224, .78), transparent 72%),
    linear-gradient(180deg, #fff 0%, var(--cream) 52%, #fff7fb 100%);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.03; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 5.75rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

.container { width: min(1160px, calc(100% - 44px)); margin: 0 auto; }
.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 min(6vw, 84px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(24, 50, 68, .08);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-family: var(--display);
  font-size: 2rem;
  white-space: nowrap;
}
.paw, .heart-link, .affiliate-strip span, .social-dots span, .btn span {
  font: 0/0 a;
}
.paw::before { content: "\273F"; font: 1.35rem/1 var(--sans); color: var(--pink); }
.heart-link::before, .affiliate-strip span::before { content: "\2661"; font: 1.8rem/1 var(--sans); color: var(--pink); }
.btn span::before { content: "\1F43E"; font: .9rem/1 var(--sans); }
.site-nav { display: flex; justify-content: center; gap: 38px; margin-left: auto; font-size: .96rem; }
.site-nav a { padding: 27px 0 22px; border-bottom: 2px solid transparent; }
.site-nav a.active, .site-nav a:hover { color: var(--pink); border-color: var(--pink); }
.heart-link { width: 32px; text-align: right; }
.nav-toggle { display: none; }

.home-hero {
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  align-items: center;
  gap: 30px;
  padding: 62px min(6vw, 84px) 34px;
  overflow: hidden;
  position: relative;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 45% 0 0;
  background: radial-gradient(620px 430px at 0% 30%, rgba(233, 99, 167, .37), transparent 72%),
              radial-gradient(560px 360px at 8% 72%, rgba(157, 184, 214, .34), transparent 74%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy p { font-size: 1.17rem; max-width: 480px; color: #2e4254; }
.hero-image {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: 40% center;
  border-radius: 0;
  filter: saturate(.98) brightness(1.03);
  mask-image: linear-gradient(90deg, transparent 0%, black 20%);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }
.btn {
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 28px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.btn.primary { background: var(--pink); color: #fff; }
.btn.secondary { background: #dce7f5; color: #24476b; }
.amazon-store-btn { background: #e963a7; color: #fff; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 650px; margin-top: 34px; font-size: .86rem; }
.trust-row span { position: relative; padding-left: 36px; color: var(--muted); }
.trust-row span::before { content: "\2661"; color: var(--pink); position: absolute; left: 0; top: -1px; font-size: 1.7rem; }
.trust-row b { color: var(--ink); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 22px; }
.category-card {
  height: 168px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: end;
  padding: 20px;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(234, 205, 219, .72), rgba(255,255,255,.8) 52%, rgba(209, 220, 224, .65));
  box-shadow: var(--shadow);
}
.category-card:nth-child(2n) { background: linear-gradient(135deg, rgba(240, 166, 197, .35), #fff, rgba(234, 205, 219, .6)); }
.category-card h3 { font-size: 1.45rem; }
.category-card span, .section-heading a, .guide-card span, .product-card span { color: var(--pink); font-weight: 800; }
.category-card img { width: 150%; height: 128px; object-fit: cover; object-position: center; border-radius: 8px; }

.section-heading { display: flex; align-items: end; justify-content: space-between; margin-top: 34px; margin-bottom: 12px; }
.section-heading h2 { position: relative; }
.section-heading h2::after, .content-card h2::after, .summary-card h2::after, .toc-card h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--pink);
  margin-top: 8px;
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.product-card {
  display: block;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(24, 50, 68, .1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 28px rgba(35, 59, 79, .07);
}
.product-card img { width: 100%; aspect-ratio: 1.72 / 1; object-fit: cover; }
.category-product-grid .product-card img { height: 260px; aspect-ratio: auto; object-fit: cover; background: #fff; }
.product-card strong { display: block; padding: 13px 18px 0; line-height: 1.25; }
.product-card span { display: block; padding: 5px 18px 16px; }
.product-card-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 10px 18px 22px;
}
.product-card-actions a {
  font-weight: 800;
  text-decoration: none;
  line-height: 1.25;
}
.product-card-actions .amazon-link { color: #e963a7; }
.product-card-actions .read-link { color: #173044; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-guides-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.helpful-guides-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.guide-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(35, 59, 79, .06);
}
.guide-card img { width: 100%; height: 100%; object-fit: cover; }
.guide-card div { padding: 18px; }
.guide-card p { color: var(--muted); font-size: .92rem; }
.why-panel, .contact-panel {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(100deg, rgba(255,255,255,.8), rgba(234,205,219,.38), rgba(209,220,224,.35));
}
.why-panel img { height: 188px; width: 100%; object-fit: cover; border-radius: 12px; }

.affiliate-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 12px min(6vw, 84px);
  margin-top: 36px;
  background: linear-gradient(90deg, #f7bdd3, #f3d4e4, #f7bdd3);
  color: #435568;
  font-size: .95rem;
  line-height: 1.45;
  text-align: center;
}
.site-footer {
  padding: 30px min(6vw, 84px) 20px;
  background:
    radial-gradient(640px 210px at 10% 100%, rgba(240, 166, 197, .5), transparent 70%),
    radial-gradient(620px 230px at 72% 78%, rgba(209, 220, 224, .75), transparent 72%),
    #fffafd;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.6fr; gap: 38px; align-items: start; }
.footer-brand { font-size: 1.45rem; }
.site-footer p, .site-footer a { color: #46586a; font-size: .88rem; }
.site-footer a { display: block; margin: 7px 0; }
.site-footer h3 { font-family: var(--sans); font-size: .95rem; font-weight: 800; }
.newsletter {
  padding: 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.newsletter div { display: flex; gap: 10px; }
.newsletter input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: 7px; padding: 12px; }
.newsletter button { border: 0; border-radius: 7px; background: var(--pink); color: #fff; font-weight: 800; padding: 0 14px; }
.social-dots { display: flex; gap: 12px; }
.social-dots span::before { content: "\2661"; font: 1rem/1 var(--sans); color: var(--pink); }
.copyright { text-align: center; margin-top: 18px; }

.soft-hero, .about-hero {
  background: linear-gradient(120deg, rgba(234,205,219,.45), rgba(255,255,255,.85), rgba(209,220,224,.45));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.compact-hero { margin-top: 48px; padding: 46px; border-radius: 20px; }
.compact-hero p { max-width: 760px; color: var(--muted); }
.crumb { color: var(--pink); font-size: .86rem; font-weight: 700; margin-bottom: 24px; }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .74fr) 300px;
  gap: 34px;
  margin-top: 50px;
  align-items: start;
}
.gallery-main { width: 100%; aspect-ratio: 1.27 / 1; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); cursor: zoom-in; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 16px; }
.thumbs button { border: 2px solid transparent; border-radius: 10px; padding: 0; overflow: hidden; background: #fff; cursor: pointer; }
.thumbs button:first-child { border-color: var(--pink); }
.thumbs img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 35, 50, .72);
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.lightbox button {
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--pink);
  font-size: 1.55rem;
  font-weight: 900;
}
.lightbox-close { top: 22px; right: 24px; }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev[hidden],
.lightbox-next[hidden] { display: none; }
.product-copy h1 { font-size: clamp(2.25rem, 4.4vw, 3.65rem); margin: 18px 0; }
.badge { display: inline-flex; background: #ffe4f0; color: #263f54; border-radius: 8px; padding: 8px 13px; font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.disclosure-box {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: rgba(234, 205, 219, .35);
  border-radius: 16px;
  color: #46586a;
}
.disclosure-box span {
  color: var(--pink);
  font-size: 1.15rem;
  margin-right: 8px;
}
.product-hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.product-hero-actions .btn,
.product-actions .btn {
  min-width: 190px;
  justify-content: center;
}
.summary-card, .content-card, .toc-card, .faq-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(35, 59, 79, .06);
  min-width: 0;
}
.summary-card { padding: 22px; position: sticky; top: 92px; }
.summary-card img { border-radius: 9px; aspect-ratio: 1.65 / 1; object-fit: cover; margin: 18px 0; }
.summary-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.summary-card li { position: relative; padding-left: 26px; margin: 12px 0; }
.summary-card li::before { content: "\2661"; color: var(--pink); position: absolute; left: 0; }
.summary-card .btn { width: 100%; margin-top: 10px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.facts-grid article {
  min-height: 104px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234,205,219,.42), rgba(255,255,255,.8), rgba(209,220,224,.42));
}
.facts-grid span { display: block; color: var(--pink); font-weight: 800; font-size: .9rem; }
.facts-grid strong { display: block; margin-top: 6px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 26px; }
.content-card, .faq-card { padding: 26px; }
.article-prose { color: #263f54; }
.article-prose h2 { margin: 30px 0 12px; font-size: 2rem; }
.article-prose h3 { margin: 24px 0 8px; font-family: var(--sans); font-weight: 900; }
.article-prose ul { padding-left: 20px; }
.article-prose li { margin: 7px 0; }
.table-wrap { overflow-x: auto; border: 1px solid rgba(24,50,68,.08); border-radius: 10px; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { padding: 13px 14px; border-bottom: 1px solid rgba(24,50,68,.08); text-align: left; vertical-align: top; }
th { background: rgba(234,205,219,.35); color: var(--ink); }
.faq-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 28px; margin-top: 20px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { color: var(--ink); font-weight: 800; cursor: pointer; }
.faq-answer { color: var(--muted); padding-top: 10px; }
.faq-answer p { margin-bottom: 0; }
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.small-card img { aspect-ratio: 1.9 / 1; }

.article-hero {
  background: linear-gradient(90deg, rgba(240,166,197,.38), rgba(255,255,255,.72) 42%, transparent 42%);
}
.article-hero-inner { display: grid; grid-template-columns: .86fr 1.14fr; gap: 44px; align-items: center; min-height: 470px; }
.article-hero img { width: 100%; height: 470px; object-fit: cover; object-position: center; }
.article-hero h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.meta-row { margin-top: 26px; font-weight: 800; color: #42566a; }
.meta-row span { color: var(--pink); margin: 0 10px; }
.article-layout { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 42px; margin-top: 42px; align-items: start; }
.toc-card { padding: 22px; position: sticky; top: 92px; }
.toc-card a { display: block; padding: 10px 0 10px 26px; color: #40566b; position: relative; }
.toc-card a::before { content: "\1F43E"; color: var(--pink); position: absolute; left: 0; font-size: .9rem; }
.tip-box {
  margin: 22px 0;
  padding: 18px 22px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(240,166,197,.28), rgba(255,255,255,.88));
  color: #40566b;
}
.article-cta-card, .related-links-card {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(234,205,219,.42), rgba(255,255,255,.88), rgba(209,220,224,.42));
  box-shadow: 0 12px 34px rgba(35, 59, 79, .06);
}
.article-cta-card p, .related-links-card p { color: var(--muted); max-width: 740px; }
.article-cta-card .btn { width: auto; margin-top: 8px; }
.related-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.related-link {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(233, 99, 167, .25);
  border-radius: 10px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-weight: 800;
}
.related-link::after { content: " ->"; color: var(--pink); }
.listing-grid { margin-top: 26px; }

.about-hero { border-width: 0 0 1px 0; box-shadow: none; }
.about-hero h1 { font-size: clamp(2.75rem, 4vw, 3.65rem); }
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 270px;
  gap: 34px;
  align-items: center;
  min-height: 410px;
  padding: 54px 0;
}
.about-hero img { width: 100%; height: 300px; object-fit: cover; object-position: 36% center; border-radius: 12px; }
.about-list { margin-top: 34px; }
.about-strip {
  display: grid;
  grid-template-columns: 180px 1fr 330px;
  gap: 30px;
  align-items: center;
  min-height: 168px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.75);
}
.about-strip:nth-child(even) { grid-template-columns: 330px 1fr 180px; }
.about-strip:nth-child(even) img { grid-column: 1; grid-row: 1; }
.about-strip:nth-child(even) .about-icon { grid-column: 3; grid-row: 1; }
.about-strip > div:not(.about-icon) { padding: 24px 0; }
.about-strip img { width: 100%; height: 180px; object-fit: cover; }
.about-icon {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--pink);
  font: 3rem/1 var(--display);
  background: rgba(234,205,219,.44);
}
.contact-panel { grid-template-columns: 1fr auto; padding: 28px 38px; }
.contact-panel a { color: var(--pink); font-weight: 900; }
.stack { display: grid; gap: 22px; }
.center { text-align: center; }
.center-actions { justify-content: center; }

@media (max-width: 1020px) {
  .site-header { padding: 0 22px; }
  .site-nav { gap: 18px; }
  .home-hero, .article-hero-inner, .about-hero-inner, .product-layout { grid-template-columns: 1fr; }
  .hero-image { mask-image: none; height: 360px; }
  .category-grid, .product-grid, .category-product-grid, .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-grid, .home-guides-grid, .helpful-guides-grid, .mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-card, .toc-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .about-strip, .about-strip:nth-child(even) { grid-template-columns: 120px 1fr; }
  .about-strip img, .about-strip:nth-child(even) img { grid-column: 1 / -1; grid-row: auto; height: 210px; }
  .about-strip:nth-child(even) .about-icon { grid-column: 1; grid-row: 1; }
}

@media (max-width: 760px) {
  .site-header { height: auto; min-height: 66px; flex-wrap: wrap; gap: 12px; padding: 14px 18px; }
  .brand { font-size: 1.55rem; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--pink);
    font-weight: 900;
  }
  .site-nav { display: none; flex-basis: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 12px 22px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 0; }
  .heart-link { display: none; }
  .container { width: min(calc(100% - 28px), 1160px); }
  .home-hero { padding: 34px 16px 20px; }
  .hero-copy p { font-size: 1rem; }
  .hero-actions { gap: 12px; }
  .btn { width: 100%; }
  .trust-row, .category-grid, .product-grid, .category-product-grid, .guide-grid, .home-guides-grid, .helpful-guides-grid, .two-col, .facts-grid, .faq-list, .mini-grid, .footer-grid { grid-template-columns: 1fr; }
  .category-product-grid .product-card img { height: 250px; }
  .guide-card { grid-template-columns: 1fr; }
  .guide-card img { height: 210px; }
  .product-hero-actions, .product-actions { flex-direction: column; }
  .product-hero-actions .btn, .product-actions .btn { width: 100%; }
  .related-link-grid { grid-template-columns: 1fr; }
  .article-cta-card .btn { width: 100%; }
  .lightbox { padding: 12px; }
  .lightbox img { max-width: 96vw; max-height: 82vh; border-radius: 14px; }
  .lightbox-close, .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.25rem; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .category-card { grid-template-columns: 1fr 1fr; }
  .compact-hero { padding: 30px 22px; margin-top: 24px; }
  .article-hero-inner { min-height: auto; padding-top: 30px; }
  .article-hero img { height: 260px; border-radius: 12px; }
  .article-prose h2 { font-size: 1.55rem; }
  .about-hero-inner { padding: 30px 0; }
  .about-strip, .about-strip:nth-child(even) { grid-template-columns: 1fr; }
  .about-strip .about-icon, .about-strip:nth-child(even) .about-icon { grid-column: 1; grid-row: auto; min-height: 92px; }
  .about-strip > div:not(.about-icon) { padding: 22px; }
  .contact-panel { grid-template-columns: 1fr; }
  .newsletter div { flex-direction: column; }
}

@media (min-width: 901px) {
  .category-product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 32px !important;
    align-items: stretch;
  }

  .category-product-grid .product-card {
    border-radius: 18px;
  }

  .category-product-grid .product-card img {
    width: 100% !important;
    height: 300px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }

  .category-product-grid .product-card strong {
    font-size: 1.05rem;
    padding: 18px 22px 4px;
  }

  .category-product-grid .product-card span {
    font-size: 1rem;
    padding-bottom: 20px;
  }

  .home-guides-grid,
  .helpful-guides-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 28px !important;
  }

  .home-guides-grid .guide-card,
  .helpful-guides-grid .guide-card {
    min-height: 230px;
    grid-template-columns: 44% 56%;
    border-radius: 18px;
  }

  .home-guides-grid .guide-card img,
  .helpful-guides-grid .guide-card img {
    height: 100% !important;
    min-height: 230px;
    object-fit: cover;
  }

  .home-guides-grid .guide-card div,
  .helpful-guides-grid .guide-card div {
    padding: 24px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-guides-grid,
  .helpful-guides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .category-product-grid,
  .home-guides-grid,
  .helpful-guides-grid {
    grid-template-columns: 1fr !important;
  }

  .home-guides-grid .guide-card,
  .helpful-guides-grid .guide-card {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 901px) {
  .home-featured-grid,
  .featured-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 32px !important;
    align-items: stretch;
  }

  .home-featured-grid .product-card img,
  .featured-products-grid .product-card img {
    width: 100% !important;
    height: 300px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
  }

  .home-featured-grid .product-card strong,
  .featured-products-grid .product-card strong {
    font-size: 1.05rem;
    line-height: 1.25;
    padding: 18px 22px 4px;
  }

  .home-featured-grid .product-card span,
  .featured-products-grid .product-card span {
    font-size: 1rem;
    padding-bottom: 20px;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .home-featured-grid,
  .featured-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .home-featured-grid,
  .featured-products-grid {
    grid-template-columns: 1fr !important;
  }
}
