/* =========================================================
   Pashuseva — Cattle Nutrition E-commerce
   Inspired by mobile pet-food UI, adapted for farm animals
   ========================================================= */

:root {
  --ps-teal: #0f8a7a;
  --ps-teal-dark: #0a6b5e;
  --ps-teal-soft: #e6f6f3;
  --ps-orange: #f07a2a;
  --ps-orange-soft: #fff1e6;
  --ps-yellow: #f5c518;
  --ps-ink: #1a1f2c;
  --ps-muted: #6b7280;
  --ps-line: #e8ecf0;
  --ps-bg: #f7f8fa;
  --ps-white: #ffffff;
  --ps-radius: 18px;
  --ps-radius-sm: 12px;
  --ps-radius-pill: 999px;
  --ps-shadow: 0 8px 24px rgba(26, 31, 44, 0.08);
  --ps-shadow-soft: 0 4px 14px rgba(26, 31, 44, 0.06);
  --font-body: "Outfit", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --bottom-nav-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ps-ink);
  background: var(--ps-bg);
  min-height: 100vh;
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 12px);
  -webkit-font-smoothing: antialiased;
}

body.no-bottom-nav { padding-bottom: 24px; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font: inherit;
  box-sizing: border-box;
  max-width: 100%;
}

/* Full-width site shell (no phone drawer on desktop) */
.app-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  background: var(--ps-white);
  position: relative;
  box-shadow: none;
  border-radius: 0;
}

.site-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Desktop site header ---------- */
.site-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--ps-line);
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ps-teal-dark);
  font-weight: 700;
  white-space: nowrap;
}
.site-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo-img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.site-logo-img.footer-logo {
  height: 48px;
  max-width: 220px;
  /* logo has black bg — keep as is or invert if needed */
  background: transparent;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: var(--ps-radius-pill);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ps-muted);
  transition: all .2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ps-teal-dark);
  background: var(--ps-teal-soft);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header-actions .btn-ps {
  width: auto;
  padding: 10px 18px;
  font-size: .9rem;
}

.header-signin {
  padding: 8px 16px !important;
  font-size: .85rem !important;
  min-width: 0 !important;
  width: auto !important;
}

.header-user {
  font-size: .9rem;
  color: var(--ps-muted);
  font-weight: 500;
}

.cart-icon-btn {
  position: relative;
}

/* Cart lives in bottom nav on mobile — hide header bag below desktop */
@media (max-width: 991.98px) {
  .site-header .cart-icon-btn {
    display: none !important;
  }
}

.cart-icon-btn.active {
  background: var(--ps-teal-soft);
  border-color: transparent;
  color: var(--ps-teal);
}

.header-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--ps-orange);
  color: #fff;
  font-size: .65rem;
  font-style: normal;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
}

@media (min-width: 992px) {
  body {
    background: #fff;
    padding-bottom: 0;
  }
  body.no-bottom-nav { padding-bottom: 0; }
  .site-header { display: block; }
  .mobile-only { display: none !important; }
  .bottom-nav { display: none !important; }
  .topbar { display: none !important; }

  .product-grid,
  .related-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
    padding: 0 0 8px !important;
    align-items: stretch;
  }
  .product-scroll {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    gap: 20px;
    padding: 8px 0 24px;
  }
  .product-scroll .product-card,
  .product-grid .product-card,
  .related-grid .product-card {
    width: 100% !important;
    max-width: none;
    flex: none;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .product-card .body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-card .meta-row { margin-top: auto; }
  .product-card .thumb {
    aspect-ratio: 1;
    min-height: 180px;
  }
  .pd-sticky-cta {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 360px;
    padding: 24px 0 0;
    background: none;
  }
  .btn-ps { width: auto; min-width: 200px; }
  .btn-ps.btn-block { width: 100%; }
}

@media (max-width: 991.98px) {
  .desktop-only { display: none !important; }
}

/* ---------- Buttons ---------- */
.btn-ps {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  border: none;
  border-radius: var(--ps-radius-pill);
  padding: 15px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-ps:active { transform: scale(.98); }
.btn-ps-primary {
  background: var(--ps-teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 138, 122, .28);
}
.btn-ps-primary:hover { background: var(--ps-teal-dark); color: #fff; }
.btn-ps-outline {
  background: #fff;
  color: var(--ps-teal);
  border: 1.5px solid var(--ps-teal);
}
.btn-ps-orange {
  background: var(--ps-orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 122, 42, .3);
}

/* ---------- Welcome / Onboarding ---------- */
.welcome-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(15,138,122,.18), transparent),
    linear-gradient(180deg, #f0faf8 0%, #ffffff 45%, #fff8f1 100%);
  padding: 28px 24px 40px;
  max-width: 520px;
  margin: 0 auto;
}
.welcome-brand {
  text-align: center;
  margin-bottom: 16px;
}
.welcome-logo {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 8px;
}
.welcome-progress {
  height: 4px;
  background: var(--ps-line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}
.welcome-progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--ps-teal);
  border-radius: 4px;
  animation: progressIn .8s ease;
}
@keyframes progressIn { from { width: 0; } }

.welcome-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 20px;
}
.welcome-photo {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ps-shadow);
  background: #e8ecf0;
}
.welcome-photo img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}
.welcome-orb {
  width: min(320px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #fff 0%, transparent 40%),
    linear-gradient(160deg, #d4f0ea, #b8e4db 40%, #f5d4b8 100%);
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--ps-shadow);
  overflow: hidden;
}
.welcome-orb img {
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 50%;
}
.welcome-copy { text-align: center; margin-bottom: 28px; }
.welcome-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ps-ink);
}
.welcome-copy p {
  color: var(--ps-muted);
  margin: 0 auto;
  max-width: 320px;
  font-size: .95rem;
  line-height: 1.55;
}
.welcome-actions { display: grid; gap: 12px; }
.welcome-guest {
  text-align: center;
  color: var(--ps-muted);
  font-size: .9rem;
  margin-top: 4px;
}

/* Home image banners — full artwork on mobile (no heavy crop) */
.home-banner-wrap {
  margin: 8px -24px 18px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: #eef2f4;
}
.home-banner-wrap .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 8px;
  padding-bottom: 4px;
}
.hero-banner {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  background: #eef2f4;
}
.hero-banner picture {
  display: block;
  width: 100%;
  line-height: 0;
  background: linear-gradient(180deg, #e8eef2, #f5f7f8);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 660;
  object-fit: contain;
  object-position: center;
  display: block;
}
/* Readable title + CTA under wide desktop banners on phones */
.hero-banner-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 14px;
  background: #fff;
  border-bottom: 1px solid var(--ps-line);
}
.hero-banner-meta-text {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.hero-banner-meta-text strong {
  font-size: .92rem;
  line-height: 1.25;
  color: var(--ps-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-banner-meta-text small {
  color: var(--ps-muted);
  font-size: .78rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-banner-cta {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: var(--ps-radius-pill);
  background: var(--ps-teal);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-pagination {
  bottom: auto !important;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--ps-teal) !important;
}
@media (min-width: 992px) {
  .home-banner-wrap {
    margin: 20px 0 28px;
    border-radius: 20px;
    box-shadow: var(--ps-shadow-soft);
    background: #0a3d36;
  }
  .home-banner-wrap .swiper-pagination {
    position: absolute !important;
    bottom: 12px !important;
    margin-top: 0;
    padding-bottom: 0;
  }
  .hero-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  .hero-banner picture {
    background: #0a3d36;
  }
  .hero-banner-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    aspect-ratio: 1920 / 660;
    object-fit: cover;
  }
  /* Desktop art is readable — hide the mobile caption strip */
  .hero-banner-meta {
    display: none;
  }
}

/* About strip */
.about-strip {
  position: relative;
  border-radius: var(--ps-radius);
  overflow: hidden;
  margin: 8px 0 28px;
  min-height: 220px;
  background:
    linear-gradient(105deg, rgba(6, 40, 36, .88) 0%, rgba(10, 61, 54, .72) 45%, rgba(10, 61, 54, .35) 100%),
    var(--about-bg) center / cover no-repeat;
  color: #fff;
  box-shadow: var(--ps-shadow-soft);
}
.about-strip-inner {
  padding: 28px 24px;
  max-width: 420px;
}
.about-eyebrow {
  margin: 0 0 6px;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}
.about-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0 0 10px;
  color: #fff;
}
.about-strip-inner > p:last-of-type {
  margin: 0 0 18px;
  opacity: .92;
  line-height: 1.55;
  font-size: .95rem;
}
.about-strip .btn-ps-primary {
  background: #fff;
  color: var(--ps-teal);
}
.about-strip .btn-ps-primary:hover {
  background: #f0faf8;
  color: var(--ps-teal);
}
@media (min-width: 992px) {
  .about-strip {
    min-height: 280px;
    border-radius: 20px;
    margin: 12px 0 36px;
  }
  .about-strip-inner { padding: 40px 48px; max-width: 480px; }
}

/* ---------- Top bar / Home header ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--ps-white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--ps-line);
}
.topbar-logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}
.topbar-logo img {
  height: 36px;
  width: auto;
  max-width: min(200px, 58vw);
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.location-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .95rem;
}
.location-chip i { color: var(--ps-teal); }
.location-chip small {
  display: block;
  font-weight: 400;
  color: var(--ps-muted);
  font-size: .75rem;
}
.topbar-actions { display: flex; gap: 8px; flex-shrink: 0; }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ps-line);
  background: var(--ps-white);
  display: grid;
  place-items: center;
  color: var(--ps-ink);
  position: relative;
  transition: background .2s, border-color .2s;
}
.icon-btn:hover { background: var(--ps-teal-soft); border-color: transparent; color: var(--ps-teal); }
.icon-btn .dot {
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  background: var(--ps-orange);
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ---------- Promo banner ---------- */
.promo-banner {
  margin: 12px 20px 8px;
  border-radius: var(--ps-radius);
  padding: 22px 20px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), transparent),
    linear-gradient(135deg, #0f8a7a, #0a6b5e 60%, #086055);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(15, 138, 122, .28);
}
.promo-banner::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  right: -30px; bottom: -50px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
}
.promo-banner h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 4px;
  position: relative;
  z-index: 1;
}
.promo-banner p {
  margin: 0;
  opacity: .9;
  font-size: .85rem;
  position: relative;
  z-index: 1;
}
.promo-banner .shop-btn {
  background: #fff;
  color: var(--ps-teal-dark);
  border: none;
  border-radius: var(--ps-radius-pill);
  padding: 10px 16px;
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.promo-banner--orange {
  background: linear-gradient(135deg, #f07a2a, #d96518 60%, #c45510) !important;
  box-shadow: 0 12px 28px rgba(240, 122, 42, .28) !important;
}
.promo-banner--orange .shop-btn { color: #c45510; }
.promo-banner--green {
  background: linear-gradient(135deg, #1b7a4a, #146c3f 60%, #0f5c38) !important;
}
@media (min-width: 992px) {
  .promo-banner { margin: 0; min-height: 180px; padding: 36px 40px; }
  .promo-banner h3 { font-size: 2rem; }
  .section-pad { padding-left: 0; padding-right: 0; }
  .product-grid { padding-left: 0; padding-right: 0; }
  .cat-scroll { gap: 24px; }
  .cat-item { width: 88px; }
  .cat-item .cat-icon { width: 76px; height: 76px; }
  .page-header, .search-bar-wrap { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
  .filter-chips { max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
  .pd-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    align-items: start;
  }
  .pd-gallery {
    border-radius: 24px;
    min-height: 560px;
    margin: 0;
    padding: 40px 32px;
  }
  .pd-thumbs { padding-left: 0; padding-right: 0; }
  .pd-thumb { width: 80px; height: 80px; flex-basis: 80px; }
  .pd-gallery img {
    max-height: 520px;
    width: 100%;
    max-width: 560px;
  }
  .pd-body {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .pd-header { display: none; }
}

/* ---------- Categories ---------- */
.section-pad { padding: 16px 20px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.section-head a {
  color: var(--ps-teal);
  font-weight: 500;
  font-size: .9rem;
}

.cat-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item {
  flex: 0 0 auto;
  width: 72px;
  text-align: center;
}
.cat-item .cat-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ps-teal-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-size: 1.45rem;
  color: var(--ps-teal);
  border: 2px solid transparent;
  transition: all .2s;
}
.cat-item:hover .cat-icon,
.cat-item.active .cat-icon {
  background: var(--ps-teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(15,138,122,.25);
}
.cat-item span {
  font-size: .75rem;
  font-weight: 500;
  color: var(--ps-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Product cards ---------- */
.product-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 20px 16px;
  scrollbar-width: none;
}
.product-scroll::-webkit-scrollbar { display: none; }

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 8px 20px 24px;
}
.home-products {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 992px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 8px 0 24px; }
}

.product-card {
  background: var(--ps-white);
  border-radius: var(--ps-radius);
  overflow: hidden;
  box-shadow: var(--ps-shadow-soft);
  border: 1px solid rgba(232,236,240,.8);
  position: relative;
  transition: transform .2s, box-shadow .2s;
  flex: 0 0 168px;
}
.product-scroll .product-card { width: 168px; }
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ps-shadow);
}
.product-card .thumb {
  position: relative;
  background: #f3f5f7;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.badge-off {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ps-yellow);
  color: #3b2f00;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 2;
}
.badge-oos {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #414651;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  z-index: 2;
}
.product-card.is-oos .thumb img { opacity: .72; }
.product-card .body { padding: 12px 12px 14px; }
.product-card .title {
  font-size: .88rem;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.product-card .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  color: var(--ps-muted);
  margin-bottom: 8px;
}
.product-card .rating i { color: var(--ps-orange); font-size: .8rem; }
.product-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card .price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ps-ink);
}
.product-card .price .mrp-tag {
  display: block;
  font-weight: 500;
  font-size: .68rem;
  color: var(--ps-muted);
  text-decoration: none;
  margin-bottom: 1px;
}
.product-card .price small {
  font-weight: 400;
  color: var(--ps-muted);
  text-decoration: line-through;
  font-size: .75rem;
  margin-left: 4px;
}
.add-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--ps-orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(240,122,42,.35);
  transition: transform .15s;
}
.add-btn.disabled,
.add-btn:disabled {
  background: #c5cad3;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}
.add-btn:active { transform: scale(.9); }

/* ---------- Search ---------- */
.search-bar-wrap {
  padding: 12px 20px 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--ps-white);
  position: sticky;
  top: 0;
  z-index: 30;
}
body.psa-theme .search-bar-wrap {
  /* sit below sticky site header so the input stays usable */
  top: 72px;
  z-index: 40;
}
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ps-bg);
  border-radius: var(--ps-radius-pill);
  padding: 12px 16px;
  border: 1px solid transparent;
}
.search-field:focus-within {
  border-color: var(--ps-teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,138,122,.12);
}
.search-field input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: .95rem;
  margin: 0;
  padding: 0;
  height: auto;
  line-height: 1.4;
  display: block;
  position: static;
}
.search-submit-btn {
  flex-shrink: 0;
  background: var(--ps-teal);
  color: #fff;
  border-color: transparent;
}
.search-submit-btn:hover {
  background: var(--ps-teal-dark);
  color: #fff;
}
.search-field i { color: var(--ps-muted); }
.filter-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 20px 14px;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 138, 122, 0.45) transparent;
}
.filter-chips::-webkit-scrollbar {
  height: 6px;
}
.filter-chips::-webkit-scrollbar-thumb {
  background: rgba(15, 138, 122, 0.45);
  border-radius: 999px;
}
.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--ps-radius-pill);
  border: 1px solid var(--ps-line);
  background: #fff;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ps-ink);
  cursor: pointer;
  transition: all .2s;
}
.chip.active, .chip:hover {
  background: var(--ps-teal-soft);
  border-color: var(--ps-teal);
  color: var(--ps-teal-dark);
}
.chip-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
}

/* ---------- Product detail ---------- */
.pd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.pd-gallery {
  background: linear-gradient(180deg, #eef7f5, #f7f8fa);
  padding: 56px 24px 28px;
  display: grid;
  place-items: center;
  min-height: 320px;
  position: relative;
}
.pd-gallery-wrap { width: 100%; }
.pd-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 16px 0;
  scrollbar-width: none;
}
.pd-thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--ps-line);
  background: #fff;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--ps-teal);
  box-shadow: 0 0 0 2px rgba(15,138,122,.15);
}
.pd-gallery img {
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.12));
  animation: productIn .6s ease;
}
@keyframes productIn {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to { opacity: 1; transform: none; }
}
.pd-body {
  background: #fff;
  border-radius: 28px 28px 0 0;
  margin-top: -20px;
  position: relative;
  padding: 24px 20px 120px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.04);
}
.pd-brand {
  color: var(--ps-teal);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 4px;
}
.pd-body h1 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.pd-animals {
  margin: 0 0 10px;
  color: var(--ps-teal-dark);
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-animals i { font-size: 1rem; }
.pd-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ps-muted);
  font-size: .9rem;
  margin-bottom: 14px;
}
.pd-rating i { color: var(--ps-orange); }
.pd-price-row {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}
.pd-price-block, .pd-mrp-block { display: flex; flex-direction: column; gap: 2px; }
.price-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ps-muted);
}
.pd-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ps-ink);
  line-height: 1.1;
}
.pd-compare {
  color: var(--ps-muted);
  text-decoration: line-through;
  font-size: 1.05rem;
  line-height: 1.1;
}
.pd-off {
  background: var(--ps-yellow);
  color: #3b2f00;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.option-label {
  font-weight: 600;
  font-size: .95rem;
  margin: 0 0 10px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pill {
  border: 1.5px solid var(--ps-line);
  background: #fff;
  border-radius: var(--ps-radius-pill);
  padding: 9px 14px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.pill.active, .pill:hover {
  border-color: var(--ps-teal);
  background: var(--ps-teal-soft);
  color: var(--ps-teal-dark);
}
.size-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.size-row::-webkit-scrollbar { display: none; }
.size-chip {
  flex: 0 0 auto;
  min-width: 52px;
  text-align: center;
  border: 1.5px solid var(--ps-line);
  border-radius: 14px;
  padding: 10px 8px;
  font-weight: 600;
  font-size: .85rem;
  background: #fff;
  cursor: pointer;
}
.size-chip.active {
  background: var(--ps-teal);
  border-color: var(--ps-teal);
  color: #fff;
}
.pd-sticky-cta {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
  left: 0;
  right: 0;
  width: 100%;
  padding: 12px 20px 16px;
  background: linear-gradient(180deg, transparent, #fff 30%);
  z-index: 45;
}
@media (min-width: 992px) {
  .pd-sticky-cta {
    position: static;
    transform: none;
    width: auto;
    max-width: 360px;
    padding: 24px 0 0;
    background: none;
  }
}
body.no-bottom-nav .pd-sticky-cta { bottom: 0; }

/* ---------- Cart ---------- */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
}
.page-header h1 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
  text-align: center;
}
.page-header .side { width: 42px; }

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ps-line);
  align-items: center;
}
.cart-item .ci-img {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: #f3f5f7;
  display: grid;
  place-items: center;
  padding: 8px;
}
.cart-item .ci-img img { max-height: 100%; object-fit: contain; }
.cart-item h3 {
  font-size: .95rem;
  margin: 0 0 4px;
  font-weight: 600;
}
.cart-item .variant {
  font-size: .8rem;
  color: var(--ps-muted);
  margin-bottom: 8px;
}
.cart-item .price { font-weight: 700; }
.qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ps-bg);
  border-radius: var(--ps-radius-pill);
  padding: 4px;
}
.qty-ctrl button {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--ps-teal);
  font-weight: 700;
  box-shadow: var(--ps-shadow-soft);
  cursor: pointer;
}
.qty-ctrl span { font-weight: 600; min-width: 16px; text-align: center; }

.promo-row {
  display: flex;
  gap: 8px;
  margin: 18px 0;
  align-items: stretch;
}
.promo-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-pill);
  padding: 12px 16px;
  outline: none;
  background: var(--ps-bg);
  box-sizing: border-box;
  margin: 0;
  height: auto;
  display: block;
  position: static;
}
.promo-row input:focus {
  border-color: var(--ps-teal);
  background: #fff;
}
.promo-row button {
  border: none;
  background: var(--ps-teal);
  color: #fff;
  border-radius: var(--ps-radius-pill);
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
}
.summary-box {
  background: var(--ps-bg);
  border-radius: var(--ps-radius);
  padding: 16px;
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--ps-muted);
  font-size: .95rem;
}
.summary-row.total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--ps-line);
  color: var(--ps-ink);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- Promo modal ---------- */
.modal-ps .modal-content {
  border: none;
  border-radius: 24px;
  padding: 8px;
  text-align: center;
}
.modal-ps .promo-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ps-orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: -40px auto 16px;
  box-shadow: 0 10px 24px rgba(240,122,42,.35);
}
.modal-ps h2 {
  color: var(--ps-teal-dark);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

/* ---------- Checkout ---------- */
.checkout-card {
  background: #fff;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius);
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--ps-shadow-soft);
  cursor: pointer;
  transition: border-color .2s;
}
.checkout-card:hover, .checkout-card.active {
  border-color: var(--ps-teal);
}
.checkout-card .cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ps-teal-soft);
  color: var(--ps-teal);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.checkout-card .cc-body { flex: 1; min-width: 0; }
.checkout-card .cc-body strong { display: block; margin-bottom: 2px; }
.checkout-card .cc-body span {
  font-size: .85rem;
  color: var(--ps-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.checkout-card .cc-body input,
.checkout-card .cc-body textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  position: static;
  float: none;
}
.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--ps-line);
  border-radius: var(--ps-radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  background: #fff;
}
.pay-option.active {
  border-color: var(--ps-teal);
  background: var(--ps-teal-soft);
}
.pay-option input {
  width: auto;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--ps-teal);
}

/* ---------- Profile ---------- */
.profile-hero {
  text-align: center;
  padding: 32px 20px 20px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(15,138,122,.15), transparent),
    #fff;
}
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: var(--ps-shadow);
  background: var(--ps-teal-soft);
}
.profile-hero h2 { margin: 0 0 4px; font-size: 1.3rem; }
.profile-hero p { margin: 0; color: var(--ps-muted); font-size: .9rem; }
.menu-list { padding: 8px 20px 24px; }
.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--ps-line);
  font-weight: 500;
}
.menu-item i.lead {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--ps-teal-soft);
  color: var(--ps-teal);
  display: grid;
  place-items: center;
}
.menu-item .chev { margin-left: auto; color: var(--ps-muted); }

/* ---------- Auth ---------- */
.auth-page {
  min-height: 100vh;
  padding: 40px 24px;
  background:
    radial-gradient(ellipse 80% 40% at 50% -5%, rgba(15,138,122,.2), transparent),
    #fff;
}
.auth-page .logo {
  font-family: var(--font-display);
  color: var(--ps-teal-dark);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}
.auth-page h1 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 6px;
}
.auth-page .sub {
  text-align: center;
  color: var(--ps-muted);
  margin-bottom: 28px;
}
/* Form controls — prevent overlap */
.form-group {
  display: block;
  margin-bottom: 16px;
  clear: both;
}
.form-group label {
  display: block;
  position: static;
  float: none;
  font-weight: 500;
  font-size: .9rem;
  margin: 0 0 6px;
  line-height: 1.3;
}
.form-control-ps {
  display: block;
  position: static;
  float: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--ps-line);
  border-radius: var(--ps-radius-sm);
  padding: 13px 16px;
  margin: 0;
  outline: none;
  background: var(--ps-bg);
  transition: border-color .2s, background .2s;
  line-height: 1.4;
  height: auto;
}
.form-control-ps:focus {
  border-color: var(--ps-teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,138,122,.12);
}
textarea.form-control-ps {
  resize: vertical;
  min-height: 80px;
}

/* ---------- Bottom nav ---------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--bottom-nav-h) + var(--safe-bottom));
  padding: 8px 8px calc(8px + var(--safe-bottom));
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--ps-line);
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(0,0,0,.04);
}
@media (min-width: 992px) {
  .bottom-nav { display: none !important; }
}
.bn-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--ps-muted);
  font-size: .68rem;
  font-weight: 500;
  padding: 6px 10px;
  min-width: 56px;
  transition: color .2s;
}
.bn-item i { font-size: 1.25rem; }
.bn-item.active { color: var(--ps-teal); }
.bn-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--ps-orange);
  color: #fff;
  font-style: normal;
  font-size: .65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

/* ---------- Empty / misc ---------- */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--ps-muted);
}
.empty-state i {
  font-size: 3rem;
  color: var(--ps-teal);
  opacity: .5;
  display: block;
  margin-bottom: 12px;
}
.toast-flash {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ps-ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--ps-radius-pill);
  z-index: 100;
  font-size: .9rem;
  box-shadow: var(--ps-shadow);
  animation: toastIn .35s ease, toastOut .35s ease 2.6s forwards;
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -12px); } }
@keyframes toastOut { to { opacity: 0; transform: translate(-50%, -12px); } }

.desc-text {
  color: var(--ps-muted);
  font-size: .92rem;
  line-height: 1.6;
  margin: 0;
}

/* Desktop home split */
@media (min-width: 992px) {
  .home-desktop {
    display: grid;
    grid-template-columns: 340px 1fr;
  }
  .home-desktop .home-side {
    border-right: 1px solid var(--ps-line);
    background: linear-gradient(180deg, #f0faf8, #fff);
  }
}

/* Related products */
.related-section {
  padding: 40px 24px 48px;
  border-top: 1px solid var(--ps-line);
  margin-top: 24px;
  background: var(--ps-bg);
}
.related-section .section-head h2 {
  font-size: 1.25rem;
}

/* Site footer — desktop only */
.site-footer {
  display: none;
  background: #0a3d36;
  color: rgba(255,255,255,.85);
  margin-top: 24px;
}
@media (min-width: 992px) {
  .site-footer { display: block; }
}
.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.sf-brand .site-logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}
.sf-brand p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,.7);
  max-width: 280px;
}
.sf-col h4 {
  color: #fff;
  font-size: .95rem;
  margin: 0 0 14px;
  font-weight: 600;
}
.sf-col a,
.sf-col span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 8px;
  text-decoration: none;
}
.sf-col a:hover { color: #fff; }
.site-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 16px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

@media (max-width: 991.98px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 36px 20px 24px;
    gap: 24px;
  }
  .sf-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-footer-inner { grid-template-columns: 1fr; }
}

.sf-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.sf-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff !important;
  font-size: 1rem;
}
.sf-social a:hover { background: rgba(255,255,255,.22); }

/* =========================================================
   Landing page sections (home)
   ========================================================= */
:root {
  --ps-forest: #0a3d36;
  --ps-forest-mid: #0f5c50;
  --ps-sage: #e8f0ea;
}

.landing-page {
  background: #fff;
}

.landing-hero,
.home-banner-wrap.landing-hero {
  max-width: none;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: none !important;
}
@media (min-width: 992px) {
  .home-banner-wrap.landing-hero .hero-banner {
    border-radius: 0 !important;
  }
}
.landing-hero-fallback {
  width: 100%;
  max-height: 660px;
  overflow: hidden;
}
.landing-hero-fallback img {
  width: 100%;
  height: auto;
  max-height: 660px;
  object-fit: cover;
  aspect-ratio: 1920 / 660;
}

.btn-ps-forest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ps-forest);
  color: #fff !important;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, transform .15s;
}
.btn-ps-forest:hover {
  background: var(--ps-forest-mid);
  color: #fff !important;
}
.btn-ps-forest-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ps-forest) !important;
  border: 1.5px solid var(--ps-forest);
  border-radius: 8px;
  padding: 11px 22px;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s, color .2s;
}
.btn-ps-forest-outline:hover {
  background: var(--ps-forest);
  color: #fff !important;
}

/* Trust bar */
.lp-trust {
  background: #fff;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--ps-line);
}
.lp-trust-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  text-align: center;
}
.lp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lp-trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--ps-forest);
  color: var(--ps-forest);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
}
.lp-trust-item strong {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ps-ink);
}
@media (min-width: 768px) {
  .lp-trust-inner { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .lp-trust { padding: 48px 0 40px; }
}

/* Welcome */
.lp-welcome {
  padding: 48px 0;
  background: #fff;
}
.lp-welcome-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.lp-welcome-visual {
  border-radius: 16px;
  overflow: hidden;
  background: var(--ps-sage);
  box-shadow: var(--ps-shadow-soft);
}
.lp-welcome-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  max-height: 420px;
}
.lp-welcome-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--ps-forest);
  margin: 0 0 16px;
  line-height: 1.25;
}
.lp-welcome-copy p {
  margin: 0 0 14px;
  color: var(--ps-muted);
  line-height: 1.65;
  font-size: .98rem;
}
.lp-welcome-copy .btn-ps-forest { margin-top: 8px; }
@media (min-width: 900px) {
  .lp-welcome { padding: 72px 0; }
  .lp-welcome-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
  .lp-welcome-visual img { min-height: 380px; max-height: 480px; }
}

/* Featured */
.lp-featured {
  background: var(--ps-sage);
  padding: 48px 0 56px;
}
.lp-section-head {
  text-align: center;
  margin-bottom: 28px;
}
.lp-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ps-forest);
  margin: 0;
}
.lp-featured .product-grid {
  padding-left: 0;
  padding-right: 0;
}
.lp-center-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
@media (min-width: 992px) {
  .lp-featured { padding: 64px 0 72px; }
}

/* Why choose us */
.lp-why {
  padding: 48px 0;
  background: #fff;
}
.lp-why-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.lp-why-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ps-forest);
  margin: 0 0 14px;
}
.lp-why-copy > p {
  margin: 0 0 18px;
  color: var(--ps-muted);
  line-height: 1.65;
}
.lp-check-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ps-ink);
  font-size: .95rem;
}
.lp-check-list i {
  color: var(--ps-forest);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.lp-why-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ps-shadow);
  background: #f3f5f7;
}
.lp-why-visual img {
  width: 100%;
  min-height: 240px;
  max-height: 400px;
  object-fit: cover;
}
@media (min-width: 900px) {
  .lp-why { padding: 72px 0; }
  .lp-why-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }
  .lp-why-visual img { min-height: 360px; max-height: 440px; }
}

/* Challenges */
.lp-challenges {
  padding: 48px 0 56px;
  background: #f7faf8;
}
.lp-challenge-grid {
  display: grid;
  gap: 20px;
}
.lp-challenge {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--ps-shadow-soft);
  border: 1px solid rgba(10, 61, 54, .06);
}
.lp-challenge-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ps-forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.lp-challenge h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--ps-forest);
  font-weight: 700;
}
.lp-challenge p {
  margin: 0;
  color: var(--ps-muted);
  font-size: .9rem;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .lp-challenge-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lp-challenges { padding: 64px 0 72px; }
}

/* Collection / testimonial */
.lp-collection {
  padding: 48px 0 40px;
  background: #fff;
}
.lp-collection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.lp-collection-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--ps-forest);
  margin: 0;
}
.lp-collection-nav {
  display: flex;
  gap: 8px;
}
.lp-collection-nav span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ps-line);
  display: grid;
  place-items: center;
  color: var(--ps-forest);
}
.lp-testimonial {
  display: grid;
  gap: 0;
  background: var(--ps-forest);
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--ps-shadow);
}
.lp-testimonial-copy {
  padding: 32px 28px;
}
.lp-stars {
  display: flex;
  gap: 4px;
  color: #f5c518;
  margin-bottom: 16px;
  font-size: 1rem;
}
.lp-testimonial-copy blockquote {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.45;
  font-weight: 600;
  color: #fff;
}
.lp-testimonial-author {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: .95rem;
}
.lp-testimonial-author span {
  display: block;
  font-weight: 400;
  opacity: .75;
  font-size: .85rem;
  margin-top: 2px;
}
.lp-testimonial-link {
  color: #c8e6df !important;
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-testimonial-link:hover { color: #fff !important; }
.lp-testimonial-photo {
  min-height: 220px;
  background: #062822;
}
.lp-testimonial-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
@media (min-width: 800px) {
  .lp-collection { padding: 64px 0 48px; }
  .lp-testimonial {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 320px;
  }
  .lp-testimonial-copy { padding: 44px 40px; }
  .lp-testimonial-photo img { min-height: 100%; }
}

/* Contact */
.lp-contact {
  padding: 40px 0 56px;
  background: var(--ps-sage);
}
.lp-contact-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--ps-shadow-soft);
}
.lp-contact-inner h2 {
  font-family: var(--font-display);
  color: var(--ps-forest);
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.lp-contact-inner p {
  margin: 0;
  color: var(--ps-muted);
}
.lp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Show footer on mobile for landing completeness */
@media (max-width: 991.98px) {
  .landing-page ~ .site-footer,
  body:has(.landing-page) .site-footer {
    display: block;
  }
}

