/*
 * Animal Wellness design layer
 *
 * Loaded after the parent stylesheet so the redefined custom properties win
 * without rewriting the existing rules. Everything is mobile first. Wider
 * breakpoints add layout, they never repair it.
 */

:root {
  /* Core palette. Pine and warm sand reads calm and clinical without going cold. */
  --awp-ink: #14231d;
  --awp-ink-soft: #40564d;
  --awp-ink-faint: #7b8f86;

  --awp-primary: #1f5d4c;
  --awp-primary-dark: #123a2f;
  --awp-primary-light: #2f8069;
  --awp-primary-wash: #eaf3ef;

  /* Terracotta gives the warmth. Animals, not laboratories. */
  --awp-accent: #d97441;
  --awp-accent-dark: #b85c2e;
  --awp-accent-wash: #fdf1ea;

  --awp-sand: #faf6ef;
  --awp-surface: #ffffff;
  --awp-line: #e3ded3;
  --awp-line-strong: #cfc7b8;

  --awp-sale: #c8452c;
  --awp-new: #2c7a7b;
  --awp-star: #e0a326;

  --awp-radius-sm: 8px;
  --awp-radius: 14px;
  --awp-radius-lg: 22px;

  --awp-shadow-sm: 0 1px 2px rgba(20, 35, 29, .06);
  --awp-shadow: 0 4px 18px rgba(20, 35, 29, .08);
  --awp-shadow-lg: 0 18px 48px rgba(20, 35, 29, .12);

  --awp-gap: 16px;
  --awp-gap-lg: 28px;
  --awp-section: 56px;

  --awp-font-display: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  --awp-font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;

  --awp-ease: cubic-bezier(.22, .68, .36, 1);
}

/* Reskin the parent theme tokens so existing components inherit the new brand */
:root {
  --color-primary: var(--awp-primary);
  --color-primary-light: var(--awp-primary-light);
  --color-primary-dark: var(--awp-primary-dark);
  --color-accent: var(--awp-accent);
  --color-off-white: var(--awp-sand);
  --color-text: var(--awp-ink);
  --color-border: var(--awp-line);
}

.awp-container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: 18px;
}

/* =========================================================
   BUTTONS
========================================================= */
.awp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--awp-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--awp-ease), background-color .18s var(--awp-ease), box-shadow .18s var(--awp-ease);
}

.awp-btn:hover { transform: translateY(-1px); }
.awp-btn:focus-visible { outline: 3px solid var(--awp-accent); outline-offset: 2px; }

.awp-btn--primary { background: var(--awp-primary); color: #fff; }
.awp-btn--primary:hover { background: var(--awp-primary-dark); color: #fff; box-shadow: var(--awp-shadow); }

.awp-btn--ghost { background: transparent; color: var(--awp-primary); border-color: var(--awp-line-strong); }
.awp-btn--ghost:hover { background: var(--awp-primary-wash); }

/* =========================================================
   PRODUCT CARD
========================================================= */
.awp-grid-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--awp-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.awp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  overflow: hidden;
  transition: box-shadow .22s var(--awp-ease), transform .22s var(--awp-ease), border-color .22s var(--awp-ease);
}

.awp-card:hover {
  box-shadow: var(--awp-shadow);
  border-color: var(--awp-line-strong);
  transform: translateY(-2px);
}

.awp-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--awp-sand);
  overflow: hidden;
}

.awp-card__media img,
.awp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--awp-ease);
}

.awp-card:hover .awp-card__img { transform: scale(1.04); }

.awp-card__badges {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-start: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.awp-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

.awp-badge--sale { background: var(--awp-sale); }
.awp-badge--new { background: var(--awp-new); }
.awp-badge--oos { background: var(--awp-ink-faint); }

.awp-card__wish {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--awp-line);
  border-radius: 50%;
  cursor: pointer;
  transition: background .18s var(--awp-ease);
}

.awp-card__wish svg { width: 17px; height: 17px; fill: none; stroke: var(--awp-ink-soft); stroke-width: 1.8; }
.awp-card__wish:hover { background: #fff; }
.awp-card__wish.is-saved svg { fill: var(--awp-accent); stroke: var(--awp-accent); }

.awp-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
  flex: 1;
}

.awp-card__species {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--awp-primary-light);
}

.awp-card__title {
  margin: 0;
  font-family: var(--awp-font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.awp-card__title a { color: var(--awp-ink); text-decoration: none; }
.awp-card__title a:hover { color: var(--awp-primary); }

.awp-card__benefit {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--awp-ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.awp-card__rating { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }

.awp-stars {
  --awp-rating: 0;
  display: inline-block;
  width: 74px;
  height: 13px;
  background: linear-gradient(90deg, var(--awp-star) calc(var(--awp-rating) / 5 * 100%), var(--awp-line-strong) 0);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 12px, transparent 12px 15px);
  mask: repeating-linear-gradient(90deg, #000 0 12px, transparent 12px 15px);
}

.awp-card__reviews { font-size: 12px; color: var(--awp-ink-faint); }

.awp-card__foot {
  margin-block-start: auto;
  padding-block-start: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.awp-card__price { font-size: 17px; font-weight: 800; color: var(--awp-ink); }
.awp-card__price del { font-size: 13px; font-weight: 500; color: var(--awp-ink-faint); margin-inline-end: 5px; }
.awp-card__price ins { text-decoration: none; color: var(--awp-sale); }

.awp-card__atc {
  display: block;
  padding: 11px 16px;
  background: var(--awp-primary);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background .18s var(--awp-ease);
}

.awp-card__atc:hover { background: var(--awp-primary-dark); color: #fff; }
.awp-card__atc.loading { opacity: .6; pointer-events: none; }
.awp-card__atc.added::after { content: ' ✓'; }

/* =========================================================
   SHOP LAYOUT
========================================================= */
.awp-shop { background: var(--awp-sand); padding-block-end: var(--awp-section); }

.awp-shop-hero {
  background: linear-gradient(160deg, var(--awp-primary-dark), var(--awp-primary));
  color: #fff;
  padding-block: 30px 34px;
}

.awp-breadcrumb { font-size: 12px; opacity: .78; margin-block-end: 14px; }
.awp-breadcrumb a { color: #fff; text-decoration: none; }
.awp-breadcrumb a:hover { text-decoration: underline; }

.awp-shop-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--awp-accent);
}

.awp-shop-hero__title {
  margin: 0 0 10px;
  font-family: var(--awp-font-display);
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
}

.awp-shop-hero__desc {
  margin: 0;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
}

.awp-species-nav {
  display: flex;
  gap: 8px;
  margin-block-start: 22px;
  overflow-x: auto;
  padding-block-end: 6px;
  scrollbar-width: none;
}

.awp-species-nav::-webkit-scrollbar { display: none; }

.awp-species-nav__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s var(--awp-ease);
}

.awp-species-nav__item:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.awp-species-nav__count { font-size: 11px; opacity: .7; }

.awp-archive-intro {
  padding-block: 26px 0;
  max-width: 78ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--awp-ink-soft);
}

.awp-shop-layout { padding-block-start: 22px; }

.awp-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-block-end: 18px;
}

.awp-result-count { margin: 0; font-size: 14px; color: var(--awp-ink-soft); }

.awp-sort select {
  padding: 9px 14px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: 999px;
  font-size: 14px;
  font-family: inherit;
  color: var(--awp-ink);
  cursor: pointer;
}

/* =========================================================
   FILTERS
========================================================= */
.awp-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  margin-block-end: 16px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line-strong);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  color: var(--awp-ink);
  cursor: pointer;
}

.awp-filter-toggle__badge {
  display: grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  padding-inline: 6px;
  background: var(--awp-accent);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
}

.awp-filters {
  display: none;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  padding: 18px;
  margin-block-end: 20px;
}

.awp-filters.is-open { display: block; }

.awp-filters__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-block-end: 12px;
}

.awp-filters__title { margin: 0; font-size: 17px; font-weight: 800; }
.awp-filters__clear { font-size: 13px; color: var(--awp-accent); text-decoration: none; }
.awp-filters__clear:hover { text-decoration: underline; }

.awp-filter-group { border-block-start: 1px solid var(--awp-line); padding-block: 12px; }
.awp-filter-group:first-of-type { border-block-start: 0; }

.awp-filter-group__label {
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.awp-filter-group__label::-webkit-details-marker { display: none; }
.awp-filter-group__label::after { content: '+'; font-size: 17px; color: var(--awp-ink-faint); }
.awp-filter-group[open] .awp-filter-group__label::after { content: '−'; }

.awp-filter-group__body {
  padding-block-start: 10px;
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.awp-check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 4px;
  border-radius: var(--awp-radius-sm);
  font-size: 14px;
  color: var(--awp-ink-soft);
  cursor: pointer;
}

.awp-check:hover { background: var(--awp-primary-wash); }
.awp-check input { accent-color: var(--awp-primary); width: 16px; height: 16px; }
.awp-check__name { flex: 1; }
.awp-check__count { font-size: 12px; color: var(--awp-ink-faint); }

.awp-price { flex-direction: row; align-items: center; gap: 8px; }
.awp-price input {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius-sm);
  font-family: inherit;
  font-size: 14px;
}

.awp-filters__apply { width: 100%; margin-block-start: 14px; }

/* =========================================================
   STATES
========================================================= */
.awp-grid-wrap { position: relative; min-height: 200px; }
.awp-grid-wrap[aria-busy='true'] { opacity: .45; pointer-events: none; }

.awp-empty {
  padding: 48px 20px;
  text-align: center;
  background: var(--awp-surface);
  border: 1px dashed var(--awp-line-strong);
  border-radius: var(--awp-radius);
}

.awp-empty h2 { margin: 0 0 8px; font-size: 20px; }
.awp-empty p { margin: 0; color: var(--awp-ink-soft); }

.awp-pagination { margin-block-start: 30px; display: flex; justify-content: center; }
.awp-pagination ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.awp-pagination a,
.awp-pagination span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: 999px;
  color: var(--awp-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.awp-pagination .current { background: var(--awp-primary); border-color: var(--awp-primary); color: #fff; }

/* =========================================================
   ARCHIVE FAQ
========================================================= */
.awp-archive-faq { margin-block-start: 48px; }
.awp-archive-faq h2 { font-size: clamp(21px, 4vw, 28px); margin-block-end: 14px; }

.awp-faq-item {
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  margin-block-end: 8px;
  padding: 14px 16px;
}

.awp-faq-item summary { font-weight: 700; cursor: pointer; list-style: none; }
.awp-faq-item summary::-webkit-details-marker { display: none; }
.awp-faq-item__body { padding-block-start: 8px; color: var(--awp-ink-soft); line-height: 1.65; }

/* =========================================================
   SINGLE PRODUCT ANIMAL PANEL
========================================================= */
.awp-animal-panel {
  margin-block: 40px;
  padding: 26px;
  background: var(--awp-primary-wash);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius-lg);
}

.awp-animal-panel__title {
  margin: 0 0 16px;
  font-family: var(--awp-font-display);
  font-size: clamp(21px, 4vw, 28px);
  font-weight: 900;
  color: var(--awp-primary-dark);
}

.awp-animal-subtitle { margin: 26px 0 12px; font-size: 17px; font-weight: 800; }

.awp-species-row { display: flex; flex-wrap: wrap; gap: 8px; margin-block-end: 18px; }

.awp-species-chip {
  padding: 7px 14px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--awp-primary-dark);
  text-decoration: none;
}

.awp-species-chip:hover { background: var(--awp-primary); border-color: var(--awp-primary); color: #fff; }

.awp-benefits { margin: 0 0 20px; padding: 0; list-style: none; display: grid; gap: 9px; }

.awp-benefits li {
  position: relative;
  padding-inline-start: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--awp-ink-soft);
}

.awp-benefits li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--awp-primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
}

.awp-spec-list { margin: 0; display: grid; gap: 1px; background: var(--awp-line); border: 1px solid var(--awp-line); border-radius: var(--awp-radius); overflow: hidden; }
.awp-spec-list > div { display: grid; grid-template-columns: 1fr; gap: 2px; padding: 12px 15px; background: var(--awp-surface); }
.awp-spec-list dt { font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--awp-ink-faint); }
.awp-spec-list dd { margin: 0; font-size: 15px; color: var(--awp-ink); }

.awp-dosage-table { width: 100%; border-collapse: collapse; background: var(--awp-surface); border-radius: var(--awp-radius); overflow: hidden; font-size: 14px; }
.awp-dosage-table th,
.awp-dosage-table td { padding: 11px 14px; text-align: start; border-block-end: 1px solid var(--awp-line); }
.awp-dosage-table thead th { background: var(--awp-primary); color: #fff; font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.awp-dosage-table tbody th { font-weight: 800; color: var(--awp-primary-dark); }

.awp-warning {
  margin-block-start: 22px;
  padding: 15px 18px;
  background: var(--awp-accent-wash);
  border-inline-start: 4px solid var(--awp-accent);
  border-radius: var(--awp-radius-sm);
  font-size: 14px;
  line-height: 1.6;
  color: var(--awp-ink-soft);
}

.awp-warning strong { display: block; margin-block-end: 5px; color: var(--awp-accent-dark); }

/* =========================================================
   HOMEPAGE SECTIONS
========================================================= */
.awp-section { padding-block: var(--awp-section); }
.awp-section--wash { background: var(--awp-sand); }

.awp-section__head { margin-block-end: 26px; }

.awp-section__eyebrow {
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--awp-accent);
}

.awp-section__title {
  margin: 0 0 8px;
  font-family: var(--awp-font-display);
  font-size: clamp(25px, 5vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--awp-ink);
}

.awp-section__desc { margin: 0; max-width: 62ch; font-size: 15px; line-height: 1.65; color: var(--awp-ink-soft); }

.awp-tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--awp-gap); }

.awp-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 16px;
  background: var(--awp-primary-wash);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  color: var(--awp-ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s var(--awp-ease), box-shadow .22s var(--awp-ease);
}

.awp-tile:hover { transform: translateY(-3px); box-shadow: var(--awp-shadow); color: var(--awp-ink); }

.awp-tile__bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.awp-tile__bg + .awp-tile__label { position: relative; color: #fff; }
.awp-tile:has(.awp-tile__bg)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 58, 47, 0) 35%, rgba(18, 58, 47, .82));
}

.awp-tile__label { position: relative; z-index: 1; font-size: 16px; font-weight: 800; }
.awp-tile__meta { position: relative; z-index: 1; font-size: 12px; opacity: .8; }

.awp-needs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--awp-gap); }

.awp-need {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  text-decoration: none;
  transition: border-color .2s var(--awp-ease), box-shadow .2s var(--awp-ease);
}

.awp-need:hover { border-color: var(--awp-primary); box-shadow: var(--awp-shadow-sm); }
.awp-need__title { font-size: 15px; font-weight: 800; color: var(--awp-ink); }
.awp-need__count { font-size: 12px; color: var(--awp-ink-faint); }

.awp-newsletter {
  padding: 34px 22px;
  background: linear-gradient(150deg, var(--awp-primary-dark), var(--awp-primary));
  border-radius: var(--awp-radius-lg);
  color: #fff;
  text-align: center;
}

.awp-newsletter .awp-section__title { color: #fff; }
.awp-newsletter .awp-section__desc { color: rgba(255, 255, 255, .85); margin-inline: auto; }

/* =========================================================
   BREAKPOINTS
========================================================= */
@media (min-width: 600px) {
  .awp-grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-needs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-spec-list > div { grid-template-columns: 190px 1fr; align-items: baseline; gap: 12px; }
  .awp-card__foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .awp-card__atc { display: inline-block; }
}

@media (min-width: 900px) {
  :root { --awp-section: 76px; --awp-gap: 20px; }
  .awp-container { padding-inline: 30px; }
  .awp-shop-hero { padding-block: 44px 50px; }
  .awp-grid-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-tiles { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .awp-needs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-card__title { font-size: 16px; }

  .awp-filter-toggle { display: none; }
  .awp-filters { display: block; position: sticky; inset-block-start: 96px; align-self: start; margin-block-end: 0; }
  .awp-shop-layout { display: grid; grid-template-columns: 268px minmax(0, 1fr); gap: var(--awp-gap-lg); align-items: start; }
}

@media (min-width: 1200px) {
  .awp-grid-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .awp-shop-layout { grid-template-columns: 290px minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .awp-card:hover { transform: none; }
  .awp-card:hover .awp-card__img { transform: none; }
}

/* =========================================================
   HOMEPAGE
   Added in 8.1.0 with the animal front page.
========================================================= */

.awp-home { display: block; background: var(--awp-surface); }

/* HERO */
.awp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding-block: 48px 40px;
  background: linear-gradient(155deg, var(--awp-primary-dark), var(--awp-primary) 62%, #2a7360);
  color: #fff;
  overflow: hidden;
}

.awp-hero__media { position: absolute; inset: 0; }
.awp-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.awp-hero--image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 32, 25, .35) 0%, rgba(9, 32, 25, .82) 78%);
}

.awp-hero__inner { position: relative; z-index: 2; width: 100%; }
.awp-hero__content { max-width: 40ch; }

.awp-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--awp-accent);
}

.awp-hero__title {
  margin: 0 0 14px;
  font-family: var(--awp-font-display);
  font-size: clamp(31px, 8vw, 60px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.03em;
  color: #fff;
}

.awp-hero__body {
  margin: 0 0 24px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}

.awp-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.awp-btn--onDark {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .38);
  color: #fff;
  backdrop-filter: blur(6px);
}

.awp-btn--onDark:hover { background: rgba(255, 255, 255, .24); color: #fff; }

.awp-hero__species {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-block-start: 28px;
}

.awp-hero__species-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-inline-end: 3px;
}

.awp-hero__species-chip {
  padding: 6px 13px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.awp-hero__species-chip:hover { background: #fff; color: var(--awp-primary-dark); }

/* TRUST BAR */
.awp-trust { background: var(--awp-primary-dark); color: #fff; padding-block: 18px; }

.awp-trust__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awp-trust__item { display: flex; flex-direction: column; gap: 2px; }
.awp-trust__title { font-size: 13px; font-weight: 800; }
.awp-trust__text { font-size: 12px; color: rgba(255, 255, 255, .62); line-height: 1.4; }

/* SECTION HEAD with an inline link */
.awp-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.awp-section__link {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  color: var(--awp-primary);
  text-decoration: none;
  white-space: nowrap;
}

.awp-section__link::after { content: ' \2192'; }
.awp-section__link:hover { color: var(--awp-accent-dark); }

/* FEATURED CATEGORIES */
.awp-cats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--awp-gap); }

.awp-cat {
  display: flex;
  flex-direction: column;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s var(--awp-ease), box-shadow .22s var(--awp-ease);
}

.awp-cat:hover { transform: translateY(-3px); box-shadow: var(--awp-shadow); }

.awp-cat__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--awp-primary-wash);
  overflow: hidden;
}

.awp-cat__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.awp-cat__body { display: flex; flex-direction: column; gap: 3px; padding: 13px 15px 16px; }
.awp-cat__title { font-size: 15px; font-weight: 800; color: var(--awp-ink); }
.awp-cat__count { font-size: 12px; color: var(--awp-ink-faint); }

/* ANIMAL WELLNESS */
.awp-wellness { background: var(--awp-primary-wash); }
.awp-wellness__inner { display: grid; gap: 28px; }
.awp-wellness__copy .awp-section__title { margin-block-end: 12px; }
.awp-wellness__copy .awp-btn { margin-block-start: 20px; }

.awp-wellness__chips { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }

.awp-wellness__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 15px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius-sm);
  font-size: 14px;
  font-weight: 700;
  color: var(--awp-ink);
  text-decoration: none;
  transition: border-color .18s var(--awp-ease), transform .18s var(--awp-ease);
}

.awp-wellness__chip:hover { border-color: var(--awp-primary); transform: translateX(2px); color: var(--awp-primary-dark); }
.awp-wellness__chip small { font-size: 12px; font-weight: 600; color: var(--awp-ink-faint); }

/* BRANDS */
.awp-brands { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--awp-gap); }

.awp-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  text-align: center;
  text-decoration: none;
  transition: border-color .2s var(--awp-ease), box-shadow .2s var(--awp-ease);
}

.awp-brand:hover { border-color: var(--awp-primary); box-shadow: var(--awp-shadow-sm); }

.awp-brand__logo {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: var(--awp-sand);
  border-radius: 50%;
  overflow: hidden;
}

.awp-brand__logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.awp-brand__initial { font-family: var(--awp-font-display); font-size: 24px; font-weight: 900; color: var(--awp-primary); }
.awp-brand__name { font-size: 14px; font-weight: 800; color: var(--awp-ink); }
.awp-brand__count { font-size: 12px; color: var(--awp-ink-faint); }

/* DEALS */
.awp-deals { display: grid; grid-template-columns: 1fr; gap: var(--awp-gap); margin-block-end: 30px; }

.awp-deal {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  padding: 20px;
  background: var(--awp-primary);
  border-radius: var(--awp-radius);
  color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: transform .22s var(--awp-ease);
}

.awp-deal:hover { transform: translateY(-3px); color: #fff; }
.awp-deal__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.awp-deal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 58, 47, .18) 25%, rgba(18, 58, 47, .88));
}

.awp-deal__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.awp-deal__title { font-family: var(--awp-font-display); font-size: 20px; font-weight: 900; }
.awp-deal__text { font-size: 14px; color: rgba(255, 255, 255, .84); }

/* GUIDES */
.awp-guides { display: grid; grid-template-columns: 1fr; gap: var(--awp-gap); }

.awp-guide {
  display: flex;
  flex-direction: column;
  background: var(--awp-surface);
  border: 1px solid var(--awp-line);
  border-radius: var(--awp-radius);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .22s var(--awp-ease), transform .22s var(--awp-ease);
}

.awp-guide:hover { transform: translateY(-3px); box-shadow: var(--awp-shadow); }
.awp-guide__media { display: block; aspect-ratio: 16 / 9; background: var(--awp-sand); overflow: hidden; }
.awp-guide__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.awp-guide__body { display: flex; flex-direction: column; gap: 5px; padding: 15px 16px 18px; }
.awp-guide__date { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--awp-accent); }
.awp-guide__title { font-size: 16px; font-weight: 800; line-height: 1.32; color: var(--awp-ink); }

/* NEWSLETTER */
.awp-newsletter__form { margin-block-start: 22px; display: flex; justify-content: center; }

.awp-newsletter__native { display: flex; flex-direction: column; gap: 9px; width: 100%; max-width: 460px; }

.awp-newsletter__native input[type='email'] {
  flex: 1;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}

.awp-newsletter__native input[type='email']::placeholder { color: rgba(255, 255, 255, .55); }
.awp-newsletter__native input[type='email']:focus { outline: 2px solid var(--awp-accent); background: rgba(255, 255, 255, .2); }
.awp-newsletter__native .awp-btn--primary { background: var(--awp-accent); }
.awp-newsletter__native .awp-btn--primary:hover { background: var(--awp-accent-dark); }

/* HOMEPAGE BREAKPOINTS */
@media (min-width: 600px) {
  .awp-trust__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-brands { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .awp-deals { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-guides { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-wellness__chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .awp-newsletter__native { flex-direction: row; }
}

@media (min-width: 900px) {
  .awp-hero { min-height: 580px; padding-block: 80px 64px; }
  .awp-hero__content { max-width: 46ch; }
  .awp-trust__list { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .awp-cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .awp-wellness__inner { grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
  .awp-wellness__chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .awp-brands { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .awp-wellness__chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
