/* ------------------------------
   DESIGN SYSTEM
--------------------------------*/

/* Colours */
:root {
  --header-offset: 72px;

  --clr-bg: #ffffff;
  --clr-bg-alt: #f7f7f7;

  --clr-text: #333333;
  --clr-text-light: #666666;

  --clr-primary: #ff7f50; /* Coral – friendly + modern */
  --clr-primary-dark: #e56f45;

  --clr-accent: #4c9aff; /* Soft blue accent */
  --clr-border: #e0e0e0;

  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  --transition: 0.25s ease;
}

/* Typography */
body {
  font-family: "Inter", sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--clr-text);
}

p {
  color: var(--clr-text-light);
}

/* Layout */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 2rem 0;
}

/* Spacing scale */
.spacing-xs {
  margin: 0.25rem;
}
.spacing-sm {
  margin: 0.5rem;
}
.spacing-md {
  margin: 1rem;
}
.spacing-lg {
  margin: 2rem;
}
.spacing-xl {
  margin: 4rem;
}

/* ------------------------------
   HEADER + NAV
--------------------------------*/

header {
  background: var(--clr-bg);
  padding: 1rem 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 90%);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--clr-text);
  font-size: 1.25rem;
  font-weight: 700;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  max-width: 520px;
  margin: 0 1rem;
}

.header-search input {
  width: 100%;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.8rem;
  font: inherit;
}

.header-search input:focus {
  outline: 2px solid #ffd1bd;
  border-color: var(--clr-primary);
}

.header-search .btn-secondary {
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

nav {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: var(--header-offset);
  z-index: 1050;
}

.nav-links {
  display: flex;
  gap: 0.9rem 1.1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 1rem;
  margin: 0;
  justify-content: center;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-primary);
}

.nav-parent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-parent-link::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--clr-text-light);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 1200;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #fff1e8;
  color: var(--clr-primary-dark);
}

.nav-item-has-menu:hover .nav-dropdown,
.nav-item-has-menu:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ------------------------------
   BUTTONS
--------------------------------*/

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-sizing: border-box;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--clr-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
}

/* ------------------------------
   SHOP GRID + PRODUCT CARDS
--------------------------------*/

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--clr-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
  position: relative;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  width: 100%;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

.product-badge {
  position: static;
  z-index: auto;
  background: #1f7a44;
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
}

.product-name {
  margin: 0.2rem 0 0.3rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.product-rating {
  margin: 0;
  color: #d18d00;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-rating span {
  color: var(--clr-text-light);
  font-weight: 600;
}

.product-price-previous {
  margin: 0;
  color: var(--clr-text-light);
  text-decoration: line-through;
  font-size: 0.9rem;
}

.product-unit-price {
  margin: 0;
  font-size: 0.82rem;
  color: var(--clr-text-light);
}

/* ------------------------------
   PRODUCT PAGE
--------------------------------*/

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.product-details img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-info-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .product-details {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------
   FOOTER
--------------------------------*/

footer {
  background: var(--clr-bg-alt);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--clr-text-light);
}

.footer-inner {
  width: min(1200px, 90%);
  margin: 0 auto;
  text-align: left;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 1.5rem;
}

.footer-grid h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-grid p {
  margin: 0 0 0.4rem;
}

.footer-grid a {
  color: var(--clr-text-light);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--clr-primary-dark);
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}
/* ------------------------------
   MOBILE NAVIGATION
--------------------------------*/

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--clr-text);
  border-radius: 3px;
  transition: var(--transition);
}

.nav-container {
  transition: var(--transition);
}

main.container:not(.home-page) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

main.container:not(.home-page) > h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.shop-controls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.75rem;
  align-items: center;
}

.search-bar,
.filter-dropdown,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  font: inherit;
  box-sizing: border-box;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    max-height: 0;
    overflow: hidden;
  }

  .nav-container.open {
    max-height: 1100px;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links a {
    white-space: normal;
  }

  .header-search {
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0.75rem 0 0;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-parent-link {
    justify-content: center;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0.3rem 0 0.6rem;
    background: transparent;
  }

  .nav-dropdown a {
    white-space: normal;
    text-align: center;
  }

  .offer-slide {
    flex-wrap: wrap;
    align-content: center;
  }

  .shop-controls {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--clr-primary);
  color: white;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--clr-border);
}

.cart-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.cart-item-content h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-item-content p {
  margin: 0;
}

.cart-item-content .product-price {
  font-size: 1rem;
}

.cart-item-content .btn-secondary {
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
}

.cart-summary {
  margin-top: 1.25rem;
  padding: 1rem;
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--radius);
}

.cart-empty-actions {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cart-item-content .btn-secondary {
    align-self: center;
  }
}

/* ------------------------------
   HOMEPAGE
--------------------------------*/

.home-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.campaign-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.9rem;
}

.mosaic-tile {
  background: linear-gradient(145deg, #fff6ef 0%, #ffe9dc 100%);
  border: 1px solid #ffd7c3;
  border-radius: calc(var(--radius) + 2px);
  padding: 1rem;
  text-decoration: none;
  color: #57230f;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.mosaic-tile:hover {
  transform: translateY(-2px);
  border-color: #ffba96;
}

.mosaic-tile h3,
.mosaic-tile p {
  margin: 0;
  color: inherit;
}

.tile-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  color: #8f3f1e;
  font-weight: 700;
}

.mosaic-tile-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 260px;
  background: linear-gradient(145deg, #ffd8c6 0%, #ffe8d8 100%);
}

.shop-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.7rem;
}

.shop-ribbon a {
  text-decoration: none;
  border: 1px solid var(--clr-border);
  background: #ffffff;
  color: var(--clr-text);
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.86rem;
  transition: var(--transition);
}

.shop-ribbon a:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-dark);
  background: #fff6f1;
}

.promo-shell {
  background: #fff9f5;
  border-bottom: 1px solid #f2ddd1;
  margin-bottom: 0.5rem;
}

.promo-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.promo-title {
  margin: 0;
  font-weight: 800;
  color: #a0431f;
  white-space: nowrap;
}

.promo-offers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.promo-offers-list a {
  display: inline-block;
  text-decoration: none;
  color: #7f3517;
  background: #ffe8dc;
  border: 1px solid #ffd7c3;
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.offer-slider {
  padding-bottom: 0.75rem;
}

.offer-slider-track {
  position: relative;
  min-height: 56px;
}

.offer-slide {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(120deg, #ffd9c5 0%, #ffebd9 100%);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #6b2e14;
}

.offer-slide.is-active {
  display: flex;
}

.offer-slide-tag {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a3f1f;
}

.pet-switch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 0.75rem;
}

.pet-switch-chip {
  text-decoration: none;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  color: var(--clr-text);
  font-weight: 700;
  transition: var(--transition);
}

.pet-switch-chip:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-dark);
  transform: translateY(-2px);
}

.home-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  background: linear-gradient(120deg, #fff5f0 0%, #f2f8ff 100%);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--clr-primary-dark);
  margin: 0;
}

.home-hero h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.75rem;
}

.home-hero p {
  margin: 0;
}

.hero-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.home-hero-panel {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.home-hero-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.home-hero-panel ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.section-heading h2 {
  margin: 0;
}

.section-heading a,
.news-card a {
  color: var(--clr-primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.section-heading a:hover,
.news-card a:hover {
  text-decoration: underline;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(76, 154, 255, 0.35);
  outline-offset: 2px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(100px, 1fr));
  gap: 0.75rem;
}

.brand-tile {
  display: block;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.9rem 0.5rem;
  text-align: center;
  background: var(--clr-bg);
  font-weight: 700;
  color: var(--clr-text);
  text-decoration: none;
  transition: var(--transition);
}

.brand-tile:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary-dark);
  transform: translateY(-1px);
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.deal-card {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.deal-card h3,
.news-card h3 {
  margin: 0;
}

.deal-card p,
.news-card p {
  margin: 0;
}

.deal-tag {
  align-self: flex-start;
  background: #ffe3d5;
  color: #7b3d21;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1rem;
}

.spotlight-tile {
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 150px;
  color: #222;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}

.spotlight-tile h3,
.spotlight-tile p {
  margin: 0;
}

.spotlight-tile p {
  margin-top: 0.35rem;
}

.toy-tile {
  background: linear-gradient(145deg, #fef3cf, #ffe6b2);
}

.treat-tile {
  background: linear-gradient(145deg, #ffe5e8, #ffd1d8);
}

.care-tile {
  background: linear-gradient(145deg, #def4ff, #c7e9ff);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.news-card {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.news-date {
  font-size: 0.85rem;
  color: var(--clr-text-light);
}

.trust-strip {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.8rem;
}

.trust-item {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 0.85rem;
}

.trust-item h3,
.trust-item p {
  margin: 0;
}

.trust-item h3 {
  font-size: 0.95rem;
}

.trust-item p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.faq-accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: var(--clr-text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--clr-primary-dark);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.about-cta-actions .btn-primary,
.about-cta-actions .btn-secondary {
  min-width: 160px;
  text-align: center;
}

.home-cta {
  background: linear-gradient(130deg, #ff7f50 0%, #ff9a5f 100%);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  text-align: center;
}

.home-cta h2,
.home-cta p {
  color: #fff;
  margin: 0;
}

.home-cta p {
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.home-cta .btn-primary {
  background: #ffffff;
  color: #b5481f;
}

.home-cta .btn-primary:hover {
  background: #ffe7d9;
}

@media (max-width: 980px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .campaign-mosaic {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .mosaic-tile-lg {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }

  .shop-ribbon {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .deal-grid,
  .spotlight-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .pet-switch-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page {
    gap: 1.75rem;
  }

  .container {
    width: min(1200px, 93%);
    padding: 1.2rem 0;
  }

  .home-hero {
    padding: 1.25rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-grid,
  .deal-grid,
  .spotlight-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .campaign-mosaic,
  .shop-ribbon {
    grid-template-columns: 1fr;
  }

  .mosaic-tile-lg {
    grid-column: span 1;
    min-height: 170px;
  }

  .promo-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-search {
    gap: 0.4rem;
  }

  .header-search .btn-secondary {
    padding: 0.62rem 0.8rem;
  }

  .pet-switch-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 0.95rem 1rem;
  }

  .faq-item p {
    padding: 0 1rem 0.95rem;
  }

  .about-cta-actions {
    flex-direction: column;
  }

  .about-cta-actions .btn-primary,
  .about-cta-actions .btn-secondary {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
