/** Shopify CDN: Minification failed

Line 2162:1 Expected "}" to go with "{"

**/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage-50:  #f2f7f2;
  --sage-100: #e0eedf;
  --sage-200: #c2ddc0;
  --sage-300: #98c495;
  --sage-400: #6aaa66;
  --sage-500: #4a8f46;
  --sage-600: #3a7237;
  --sage-700: #2e5a2b;
  --navy-50:  #f0f2f7;
  --navy-300: #9ba8c0;
  --navy-400: #6b7a9a;
  --navy-500: #4a5878;
  --navy-600: #374463;
  --navy-700: #28324f;
  --navy-800: #1c243d;
  --navy-900: #111827;
  --cream-50:  #faf7f2;
  --cream-100: #f5efdf;
  --cream-200: #ede3cc;
  --cream-300: #dfd0b2;
  --red-500: #ef4444;
  --red-100: #fee2e2;
  --red-600: #dc2626;
  --white: #ffffff;
}

html {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--cream-50);
  scroll-behavior: smooth;
}
body { background-color: var(--cream-50); }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--sage-500);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 16px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
.header-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
@media(max-width:640px){ .header-top { padding: 0 16px; height: 72px; } }
.header-logo img { height: 95px; width: auto; display: block; }
@media(max-width:640px){ .header-logo img { height: 70px; } }
.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  padding: 10px; border-radius: 12px;
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; line-height: 1;
}
.icon-btn:hover { background: var(--sage-50); color: var(--sage-600); }
.icon-btn svg { width: 20px; height: 20px; display: block; }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -2px; right: -2px;
  background: var(--sage-500); color: var(--white);
  font-size: 11px; font-weight: 900;
  border-radius: 999px; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* ── Search ── */
.search-bar { border-top: 1px solid #f0f0f0; display: none; animation: fadeIn .2s ease-out; }
.search-bar.open { display: block; }
.search-inner { max-width: 1280px; margin: 0 auto; padding: 12px 24px; }
.search-wrap { position: relative; }
.search-wrap svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; color: #9ca3af; pointer-events: none;
}
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 48px;
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 16px;
  font-size: 14px; font-family: inherit; color: var(--navy-800); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap input:focus { border-color: var(--sage-300); box-shadow: 0 0 0 3px rgba(74,143,70,.1); }

.predictive-search-wrap {
  position: relative;
}

.predictive-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  padding: 10px;
  z-index: 999;
}

.predictive-search-results.open {
  display: block;
}

.predictive-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s;
}

.predictive-item:hover {
  background: var(--sage-50);
}

.predictive-img {
  width: 56px;
  height: 56px;
  background: var(--cream-50);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.predictive-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.predictive-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-900);
}

.predictive-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--sage-600);
  margin-top: 3px;
}

.predictive-empty {
  padding: 16px;
  text-align: center;
  color: var(--navy-400);
  font-size: 14px;
}

/* ── Desktop Nav ── */
.desktop-nav { border-top: 1px solid #f0f0f0; background: var(--white); display: none; }
@media(min-width:1024px){ .desktop-nav { display: block; } }
.desktop-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--navy-800);
  text-decoration: none; background: none; border: none; cursor: pointer;
  font-family: inherit; transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--sage-50); color: var(--sage-600); }
.nav-link.sale { color: var(--red-500); }
.nav-link.sale:hover { background: #fef2f2; }
.nav-link svg { width: 14px; height: 14px; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 4px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.12); border: 1px solid #f0f0f0;
  padding: 12px; min-width: 180px; z-index: 200; animation: fadeIn .15s ease-out;
}
.nav-item:hover .nav-dropdown { display: block; }
/* Language dropdown — JS controlled */
#lang-dropdown { display: none; }
#lang-dropdown.open { display: block; }
.lang-toggle-btn { border-radius: 12px; }
.nav-dropdown a {
  display: block; padding: 10px 16px; font-size: 14px;
  color: var(--navy-700); text-decoration: none; border-radius: 12px;
  transition: background .15s, color .15s;
}
.nav-dropdown a:hover { background: var(--sage-50); color: var(--sage-600); }

/* ── Mobile Menu ── */
.mobile-menu-btn { display: flex; }
@media(min-width:1024px){ .mobile-menu-btn { display: none; } }
.mobile-menu { display: none; border-top: 1px solid #f0f0f0; background: var(--white); padding: 0 16px 16px; animation: fadeIn .2s ease-out; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 16px; font-size: 14px; font-weight: 600;
  color: var(--navy-800); text-decoration: none; border-radius: 12px; transition: background .15s, color .15s;
}
.mobile-menu a:hover { background: var(--sage-50); color: var(--sage-600); }
.mobile-menu a.sale { color: var(--red-500); }

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(17,24,39,.5);
  backdrop-filter: blur(4px); z-index: 300;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 420px;
  background: var(--white); z-index: 400; display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--cream-200); flex-shrink: 0;
}
.cart-header-left { display: flex; align-items: center; gap: 10px; }
.cart-header-left svg { width: 20px; height: 20px; color: var(--sage-500); }
.cart-header h2 { font-size: 16px; font-weight: 900; color: var(--navy-900); }
.cart-badge { background: var(--sage-100); color: var(--sage-700); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; }
.cart-empty .empty-icon { font-size: 56px; margin-bottom: 16px; }
.cart-empty p { color: var(--navy-600); font-weight: 500; font-size: 15px; }
.cart-empty span { color: #9ca3af; font-size: 13px; margin-top: 4px; display: block; }
.cart-item { display: flex; gap: 12px; background: var(--cream-50); border-radius: 16px; padding: 12px; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 700; color: var(--navy-900); line-height: 1.3; }
.cart-item-price { font-size: 14px; font-weight: 900; color: var(--sage-600); margin-top: 4px; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty-control { display: flex; align-items: center; gap: 4px; background: var(--white); border: 1px solid var(--cream-200); border-radius: 12px; overflow: hidden; }
.qty-btn { background: none; border: none; cursor: pointer; padding: 6px 10px; display: flex; align-items: center; justify-content: center; transition: background .15s; color: var(--navy-600); }
.qty-btn:hover { background: var(--cream-50); }
.qty-btn svg { width: 14px; height: 14px; }
.qty-num { font-size: 13px; font-weight: 700; color: var(--navy-800); min-width: 20px; text-align: center; }
.remove-btn { background: none; border: none; cursor: pointer; padding: 6px; border-radius: 12px; color: #9ca3af; display: flex; transition: background .15s, color .15s; }
.remove-btn:hover { background: #fef2f2; color: var(--red-500); }
.remove-btn svg { width: 16px; height: 16px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--cream-200); flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal { display: flex; justify-content: space-between; align-items: center; }
.cart-subtotal .label { color: var(--navy-600); font-size: 15px; font-weight: 500; }
.cart-subtotal .amount { font-size: 20px; font-weight: 900; color: var(--navy-900); }
.cart-shipping-note { font-size: 12px; color: #9ca3af; text-align: center; }
.checkout-btn {
  display: block; width: 100%; background: var(--sage-500); color: var(--white);
  border: none; font-family: inherit; font-size: 15px; font-weight: 900;
  padding: 16px; border-radius: 16px; cursor: pointer; text-align: center;
  text-decoration: none; transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(74,143,70,.25);
}
.checkout-btn:hover { background: var(--sage-600); transform: scaleX(1.02); }
.continue-btn {
  background: none; border: none; font-family: inherit; font-size: 14px;
  font-weight: 600; color: var(--navy-500); cursor: pointer; padding: 8px;
  transition: color .2s; text-align: center; width: 100%;
}
.continue-btn:hover { color: var(--navy-700); }

.cart-page-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-200);
}

.cart-page-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cart-page-image {
  background: var(--cream-50);
  border-radius: 16px;
  overflow: hidden;
}

.cart-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-page-info h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.cart-page-info p {
  color: var(--navy-400);
  font-size: 13px;
}

.cart-page-price {
  color: var(--sage-600);
  font-weight: 900;
  margin-top: 10px;
}

.cart-page-qty {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-page-qty label {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy-700);
}

.cart-page-qty input {
  width: 70px;
  padding: 8px;
  border: 1px solid var(--cream-300);
  border-radius: 10px;
  font-family: inherit;
}

.cart-page-remove {
  display: inline-block;
  margin-top: 12px;
  color: var(--red-500);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cart-page-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  color: var(--navy-900);
}

@media(max-width:640px) {
  .cart-page-item {
    grid-template-columns: 1fr;
  }
}

/* ── Hero ── */
.hero { background: linear-gradient(to bottom, var(--cream-100), var(--white)); padding: 56px 0; }
@media(min-width:1024px){ .hero { padding: 80px 0; } }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; align-items: center; }
@media(min-width:1024px){ .hero-inner { grid-template-columns: 1fr 1fr; gap: 64px; } }
.hero h1 { font-size: clamp(40px,6vw,64px); font-weight: 900; color: var(--navy-900); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 .accent { color: var(--sage-500); }
.hero-sub { color: var(--navy-500); font-size: 17px; line-height: 1.6; margin-bottom: 32px; max-width: 360px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage-500); color: var(--white); font-family: inherit;
  font-weight: 900; font-size: 15px; padding: 16px 28px; border-radius: 16px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s; box-shadow: 0 4px 20px rgba(74,143,70,.25);
}
.hero-cta:hover { background: var(--sage-600); transform: scale(1.05); }
.hero-cta svg { width: 16px; height: 16px; }
.hero-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--navy-500); }
.stars-row { display: flex; }
.stars-row svg { width: 14px; height: 14px; fill: var(--sage-400); color: var(--sage-400); }
.hero-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.hero-product-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid #f0f0f0; transition: box-shadow .3s, transform .3s; }
.hero-product-card:hover { box-shadow: 0 8px 32px rgba(74,143,70,.12); transform: translateY(-4px); }
.hero-product-img { aspect-ratio: 1; overflow: hidden; background: var(--cream-50); }
.hero-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hero-product-card:hover .hero-product-img img { transform: scale(1.05); }
.hero-product-info { padding: 12px; }
.hero-product-badge { display: inline-block; font-size: 11px; font-weight: 700; background: var(--sage-100); color: var(--sage-700); padding: 2px 8px; border-radius: 999px; margin-bottom: 4px; }
.hero-product-name { font-size: 11px; font-weight: 700; color: var(--navy-900); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-product-price { font-size: 13px; font-weight: 900; color: var(--sage-600); margin-top: 4px; }
.hero-product-card:nth-child(2){
  margin-top:0!important;
}
.hero-products{
  align-items:stretch!important;
}

/* ── Trust Bar ── */
.trust-bar { background: var(--white); border-top: 1px solid var(--cream-200); border-bottom: 1px solid var(--cream-200); padding: 48px 0; }
.trust-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media(min-width:1024px){ .trust-inner { grid-template-columns: repeat(4,1fr); } }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon { padding: 12px; border-radius: 16px; flex-shrink: 0; display: flex; }
.trust-icon svg { width: 24px; height: 24px; }
.trust-icon.sage { background: var(--sage-50); } .trust-icon.sage svg { color: var(--sage-600); }
.trust-icon.navy { background: var(--navy-50); } .trust-icon.navy svg { color: var(--navy-600); }
.trust-icon.sage-dark { background: var(--sage-100); } .trust-icon.sage-dark svg { color: var(--sage-700); }
.trust-title { font-weight: 700; color: var(--navy-900); font-size: 14px; }
.trust-desc { color: #9ca3af; font-size: 12px; }

/* ── Section header shared ── */
.section-super { color: var(--sage-500); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.section-title { font-size: clamp(32px,4vw,48px); font-weight: 900; color: var(--navy-900); line-height: 1.1; }
.view-all-link { display: inline-flex; align-items: center; gap: 8px; color: var(--sage-600); font-weight: 700; text-decoration: none; font-size: 14px; transition: gap .2s; }
.view-all-link:hover { gap: 12px; }
.view-all-link svg { width: 16px; height: 16px; }

/* ── Categories ── */
.categories-section { padding: 80px 0; background: var(--cream-50); }
.categories-header { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.categories-grid { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media(min-width:640px){ .categories-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .categories-grid { grid-template-columns: repeat(6,1fr); } }
.category-card { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 1; cursor: pointer; text-decoration: none; display: block; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-card:hover img { transform: scale(1.1); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,39,.7) 0%, rgba(17,24,39,.1) 50%, transparent 100%); }
.cat-hover-overlay { position: absolute; inset: 0; background: rgba(74,143,70,.2); opacity: 0; transition: opacity .3s; }
.category-card:hover .cat-hover-overlay { opacity: 1; }
.cat-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; }
.cat-icon { font-size: 22px; margin-bottom: 4px; }
.cat-name { color: var(--white); font-weight: 900; font-size: 13px; line-height: 1.2; }
.cat-count { color: rgba(255,255,255,.7); font-size: 11px; margin-top: 2px; }

/* ── Promo ── */
.promo-section { padding: 80px 0; background: var(--white); }
.promo-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: grid; gap: 24px; }
@media(min-width:1024px){ .promo-inner { grid-template-columns: 1fr 1fr; } }
.promo-card { position: relative; overflow: hidden; border-radius: 24px; padding: 32px; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between; }
@media(min-width:1024px){ .promo-card { padding: 48px; } }
.promo-card.dogs { background: var(--sage-500); }
.promo-card.cats { background: var(--cream-200); }
.promo-emoji { position: absolute; right: -8px; bottom: -8px; font-size: 160px; line-height: 1; opacity: .1; pointer-events: none; user-select: none; }
.promo-pill { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; width: fit-content; }
.promo-card.dogs .promo-pill { background: rgba(255,255,255,.2); color: var(--white); }
.promo-card.cats .promo-pill { background: rgba(17,24,39,.1); color: var(--navy-800); }
.promo-title { font-size: clamp(28px,3.5vw,40px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.promo-card.dogs .promo-title { color: var(--white); }
.promo-card.cats .promo-title { color: var(--navy-900); }
.promo-desc { font-size: 14px; line-height: 1.6; max-width: 300px; }
.promo-card.dogs .promo-desc { color: #d4e8d3; }
.promo-card.cats .promo-desc { color: var(--navy-600); }
.promo-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--navy-900); color: var(--white); font-weight: 700; font-size: 14px; padding: 14px 24px; border-radius: 16px; text-decoration: none; transition: background .2s, gap .2s; margin-top: 24px; align-self: flex-start; }
.promo-btn:hover { background: var(--navy-800); gap: 12px; }
.promo-btn svg { width: 16px; height: 16px; }

/* ── Products ── */
.products-section { padding: 80px 0; background: var(--cream-50); }
.products-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.products-header { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
@media(min-width:640px){ .products-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn { padding: 10px 20px; border-radius: 20px; font-size: 13px; font-weight: 700; border: 1px solid var(--cream-300); background: var(--white); color: var(--navy-700); cursor: pointer; font-family: inherit; transition: all .2s; }
.filter-btn:hover { background: var(--sage-50); color: var(--sage-700); }
.filter-btn.active { background: var(--sage-500); color: var(--white); border-color: var(--sage-500); box-shadow: 0 4px 12px rgba(74,143,70,.2); transform: scale(1.05); }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
@media(min-width:640px){ .products-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .products-grid { grid-template-columns: repeat(4,1fr); gap: 24px; } }
.product-card { background: var(--white); border-radius: 24px; overflow: hidden; border: 1px solid var(--cream-200); transition: border-color .2s, box-shadow .3s; }
.product-card:hover { border-color: var(--sage-300); box-shadow: 0 12px 40px rgba(74,143,70,.12); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream-50); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; }
.badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.badge-sale, .badge-bestseller { background: var(--red-500); color: var(--white); }
.badge-new { background: var(--navy-700); color: var(--white); }
.badge-toprated { background: var(--sage-500); color: var(--white); }
.badge-popular { background: var(--sage-400); color: var(--white); }
.badge-discount { background: var(--red-100); color: var(--red-600); }
.product-info { padding: 16px; }
.product-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-stars .stars { display: flex; }
.product-stars .stars svg { width: 13px; height: 13px; }
.star-filled { fill: var(--sage-400); color: var(--sage-400); }
.star-empty { fill: #e5e7eb; color: #e5e7eb; }
.product-stars .count { font-size: 11px; color: #9ca3af; font-weight: 500; }
.product-name { font-size: 13px; font-weight: 700; color: var(--navy-900); line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-desc { font-size: 11px; color: #9ca3af; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.product-price-group { display: flex; align-items: baseline; gap: 6px; }
.product-price { font-size: 17px; font-weight: 900; color: var(--navy-900); }
.product-price-original { font-size: 11px; color: #9ca3af; text-decoration: line-through; }
.add-btn { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 10px 12px; border-radius: 12px; background: var(--sage-500); color: var(--white); border: none; cursor: pointer; font-family: inherit; transition: all .2s; }
.add-btn:hover { background: var(--sage-600); transform: scale(1.05); }
.add-btn.added { transform: scale(.95); }
.add-btn svg { width: 13px; height: 13px; }
.load-more-wrap { text-align: center; margin-top: 48px; }
.load-more-btn { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--sage-400); color: var(--sage-600); background: transparent; font-family: inherit; font-weight: 700; font-size: 14px; padding: 16px 32px; border-radius: 16px; cursor: pointer; transition: all .2s; }
.load-more-btn:hover { background: var(--sage-500); color: var(--white); transform: scale(1.05); }
.load-more-btn svg { width: 16px; height: 16px; }

/* ── Testimonials ── */
.testimonials-section { padding: 80px 0; background: linear-gradient(135deg, var(--sage-50), var(--cream-100)); }
.testimonials-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.reviews-text { color: var(--navy-600); font-weight: 600; margin-top: 8px; font-size: 15px; }
.testimonials-grid { display: grid; gap: 20px; }
@media(min-width:640px){ .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .testimonials-grid { grid-template-columns: repeat(4,1fr); } }
.testimonial-card { background: var(--white); border-radius: 24px; padding: 24px; border: 1px solid var(--sage-100); transition: box-shadow .3s, transform .3s; }
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(74,143,70,.1); transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--sage-400); color: var(--sage-400); }
.testimonial-text { color: var(--navy-700); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.testimonial-meta { font-size: 11px; color: #9ca3af; }

/* ── Newsletter ── */
.newsletter-section { padding: 80px 0; background: var(--navy-900); }
.newsletter-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.newsletter-content { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-paw { font-size: 48px; margin-bottom: 24px; }
.newsletter-content h2 { font-size: clamp(32px,4vw,48px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.newsletter-sub { color: var(--navy-300); font-size: 17px; line-height: 1.6; margin-bottom: 40px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
@media(min-width:640px){ .newsletter-form { flex-direction: row; } }
.newsletter-input { flex: 1; background: var(--navy-800); border: 1px solid var(--navy-700); color: var(--white); font-family: inherit; font-size: 14px; padding: 16px 20px; border-radius: 16px; outline: none; transition: border-color .2s, box-shadow .2s; }
.newsletter-input::placeholder { color: var(--navy-400); }
.newsletter-input:focus { border-color: var(--sage-400); box-shadow: 0 0 0 3px rgba(106,170,102,.15); }
.newsletter-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--sage-500); color: var(--white); font-family: inherit; font-weight: 900; font-size: 15px; padding: 16px 28px; border: none; border-radius: 16px; cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--sage-400); transform: scale(1.05); }
.newsletter-btn svg { width: 16px; height: 16px; }
.newsletter-note { color: var(--navy-500); font-size: 12px; margin-top: 16px; }
.newsletter-success { background: rgba(74,143,70,.1); border: 1px solid rgba(106,170,102,.2); border-radius: 16px; padding: 32px; text-align: center; }
.newsletter-success-icon { font-size: 40px; margin-bottom: 12px; }
.newsletter-success-title { color: var(--sage-400); font-weight: 900; font-size: 20px; margin-bottom: 4px; }
.newsletter-success-sub { color: var(--navy-300); font-size: 14px; }
.newsletter-success {
  margin: 0 auto;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── Footer ── */
.site-footer { background: var(--navy-900); color: var(--navy-300); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 64px 24px 32px; }
.footer-grid { display: grid; gap: 48px; margin-bottom: 64px; }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand-logo { display: inline-block; background: var(--sage-500); border-radius: 16px; padding: 12px 16px; margin-bottom: 24px; }
.footer-brand-logo img { height: 64px; width: auto; display: block; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; font-size: 14px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--sage-400); flex-shrink: 0; }
.footer-contact-item a { color: var(--navy-300); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: var(--sage-400); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: var(--navy-800); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--navy-400); text-decoration: none; transition: background .2s, color .2s; }
.social-link:hover { background: var(--sage-500); color: var(--white); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h3 { color: var(--white); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--navy-300); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--sage-400); }
.footer-bottom { border-top: 1px solid var(--navy-800); padding-top: 32px; }
.footer-bottom p { font-size: 12px; text-align: center; }
@media(min-width:640px){ .footer-bottom p { text-align: left; } }

/* ── Page hero ── */
.page-hero { background: linear-gradient(to bottom, var(--cream-100), var(--cream-50)); padding: 64px 0; text-align: center; }
.page-hero-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-badge { display: inline-block; background: var(--sage-100); color: var(--sage-700); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; color: var(--navy-900); margin-bottom: 16px; line-height: 1.1; }
.page-hero p { color: var(--navy-500); font-size: 17px; line-height: 1.6; }

/* ── Content page ── */
.page-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.content-section { margin-bottom: 64px; }
.content-section h2 { font-size: 28px; font-weight: 900; color: var(--navy-900); margin-bottom: 16px; }
.content-section p { color: var(--navy-500); line-height: 1.7; font-size: 15px; margin-bottom: 12px; }
.cards-grid { display: grid; gap: 20px; margin-top: 24px; }
@media(min-width:640px){ .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .cards-grid { grid-template-columns: repeat(3,1fr); } }
.info-card { background: var(--white); border-radius: 20px; padding: 24px; border: 1px solid var(--cream-200); }
.info-card h3 { font-size: 16px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.info-card p { font-size: 14px; color: var(--navy-500); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.faq-item { background: var(--white); border-radius: 16px; border: 1px solid var(--cream-200); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 24px; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--navy-900); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background .15s; }
.faq-question:hover { background: var(--cream-50); }
.faq-question svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--sage-500); transition: transform .2s; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--navy-500); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── Contact form ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 14px; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field select, .form-field textarea { padding: 12px 16px; background: var(--white); border: 1px solid var(--cream-300); border-radius: 12px; font-family: inherit; font-size: 14px; color: var(--navy-800); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--sage-400); box-shadow: 0 0 0 3px rgba(106,170,102,.1); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; gap: 16px; }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }
.submit-btn { background: var(--sage-500); color: var(--white); border: none; font-family: inherit; font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 14px; cursor: pointer; transition: background .2s, transform .15s; }
.submit-btn:hover { background: var(--sage-600); transform: scale(1.02); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
@media(min-width:1024px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-card { text-align: center; background: var(--white); border-radius: 20px; padding: 28px 20px; border: 1px solid var(--cream-200); }
.stat-num { font-size: 36px; font-weight: 900; color: var(--sage-500); line-height: 1; }
.stat-label { font-size: 13px; color: var(--navy-500); margin-top: 6px; }

/* ── CTA block ── */
.cta-block { background: var(--sage-500); border-radius: 24px; padding: 48px 40px; text-align: center; margin-top: 48px; }
.cta-block h2 { font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-block p { color: rgba(255,255,255,.8); margin-bottom: 24px; }
.cta-block a { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--sage-700); font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 14px; text-decoration: none; transition: all .2s; }
.cta-block a:hover { transform: scale(1.03); }

/* ── Tracking ── */
.tracking-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.tracking-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-step { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot { width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.timeline-dot.done { background: var(--sage-500); color: var(--white); }
.timeline-dot.pending { background: var(--cream-200); color: var(--navy-500); }
.timeline-line { position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px; background: var(--cream-200); }
.timeline-step:last-child .timeline-line { display: none; }
.timeline-content h4 { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.timeline-content p { font-size: 13px; color: var(--navy-500); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .2s ease-out; }
.hidden { display: none !important; }

/* ── Rich page layout helpers ── */
.page-hero-gradient { background: linear-gradient(to bottom, var(--cream-100), var(--cream-50)); padding: 80px 0; text-align: center; }
.page-hero-center { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.page-h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 900; color: var(--navy-900); line-height: 1.1; margin-bottom: 20px; }
.page-hero-desc { color: var(--navy-500); font-size: 17px; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.text-sage { color: var(--sage-500); }
.text-center { text-align: center; }

.py-section { padding: 80px 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream-50); }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-3 { margin-bottom: 12px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-14 { margin-bottom: 56px; }
.gap-md { gap: 16px; }
.gap-xl { gap: 48px; }
.flex-shrink-0 { flex-shrink: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.items-center { align-items: center; }
.object-cover { object-fit: cover; }
.w-full { width: 100%; }
.rounded-2xl { border-radius: 16px; }

.container-lg { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 480px; margin: 0 auto; padding: 0 24px; }

.two-col-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width:1024px){ .two-col-grid { grid-template-columns: 1fr 1fr; } }

.section-h2 { font-size: clamp(24px,4vw,36px); font-weight: 900; color: var(--navy-900); line-height: 1.2; }
.section-h2-sm { font-size: 20px; font-weight: 900; color: var(--navy-900); }

/* Icon box */
.icon-box { width: 44px; height: 44px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 20px; height: 20px; }
.icon-box.sage { background: var(--sage-100); }
.icon-box.sage svg { color: var(--sage-600); }
.icon-box.sm { width: 36px; height: 36px; border-radius: 12px; }
.icon-box.sm svg { width: 16px; height: 16px; }
.icon-box.white-sm { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.2); }
.icon-box.white-sm svg { width: 16px; height: 16px; color: var(--white); }

/* Value / feature card */
.cards-grid-3 { display: grid; gap: 20px; }
@media(min-width:640px){ .cards-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .cards-grid-3 { grid-template-columns: repeat(3,1fr); } }
.value-card { background: var(--white); border-radius: 20px; padding: 24px; border: 1px solid var(--cream-200); }
.value-card.center { text-align: center; }
.value-card h3 { font-size: 15px; font-weight: 800; color: var(--navy-900); margin: 12px 0 8px; }
.value-card p { font-size: 13px; color: var(--navy-500); line-height: 1.6; }

/* Stats */
.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 48px;
  text-align: center;
}

@media(max-width:640px){
  .stats-grid-4 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.stat-item {}
.stat-big { font-size: 40px; font-weight: 900; color: var(--sage-500); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 13px; color: var(--navy-500); font-weight: 500; }

/* CTA sections */
.cta-dark-section { background: var(--navy-900); padding: 64px 0; }
.cta-sage-section { background: var(--sage-500); padding: 64px 0; }
.cta-h2 { font-size: clamp(28px,4vw,40px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-h2-white { font-size: clamp(28px,4vw,40px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.cta-desc { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 32px; }
.cta-desc-light { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.6; margin-bottom: 32px; }
.cta-btn-white { display: inline-block; background: var(--sage-500); color: var(--white); font-weight: 900; font-size: 15px; padding: 16px 36px; border-radius: 16px; text-decoration: none; transition: all .2s; }
.cta-btn-white:hover { background: var(--sage-600); transform: scale(1.05); }
.cta-btn-white-navy { display: inline-block; background: var(--white); color: var(--sage-700); font-weight: 900; font-size: 15px; padding: 16px 36px; border-radius: 16px; text-decoration: none; transition: all .2s; }
.cta-btn-white-navy:hover { background: var(--cream-100); transform: scale(1.05); }
.cta-btn-sage { display: inline-block; background: var(--sage-500); color: var(--white); font-weight: 900; font-size: 14px; padding: 14px 28px; border-radius: 14px; text-decoration: none; transition: all .2s; }
.cta-btn-sage:hover { background: var(--sage-600); transform: scale(1.05); }

/* Mission pillars */
.mission-pillar { display: grid; grid-template-columns: 64px 56px 1fr; gap: 24px; align-items: flex-start; padding-bottom: 56px; border-bottom: 1px solid var(--cream-200); margin-bottom: 56px; }
.mission-pillar:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
@media(max-width:640px){ .mission-pillar { grid-template-columns: 1fr; } }
.mission-number { font-size: 48px; font-weight: 900; color: var(--sage-100); line-height: 1; }
.mission-icon-wrap { padding-top: 4px; }
.mission-body h2 { font-size: 22px; font-weight: 900; color: var(--navy-900); margin-bottom: 12px; }
.mission-body p { color: var(--navy-500); line-height: 1.7; font-size: 15px; }

/* FAQ styled */
.cta-sage-block { background: var(--sage-500); border-radius: 20px; padding: 40px; text-align: center; margin-top: 48px; }
.cta-sage-block-title { font-size: 20px; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-sage-block-desc { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 20px; }
.cta-btn-white-sm { display: inline-block; background: var(--white); color: var(--sage-700); font-weight: 800; font-size: 14px; padding: 12px 24px; border-radius: 12px; text-decoration: none; transition: all .2s; }
.cta-btn-white-sm:hover { background: var(--cream-100); transform: scale(1.05); }

/* Contact page */
.contact-layout { display: grid; gap: 48px; }
@media(min-width:1024px){ .contact-layout { grid-template-columns: 2fr 3fr; } }
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-form-col {}
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-label { font-size: 11px; font-weight: 700; color: var(--navy-400); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 2px; }
.contact-value-link { font-size: 14px; font-weight: 600; color: var(--navy-800); text-decoration: none; transition: color .2s; }
.contact-value-link:hover { color: var(--sage-600); }
.contact-value { font-size: 14px; font-weight: 600; color: var(--navy-800); }
.hours-card { background: var(--cream-100); border: 1px solid var(--cream-200); border-radius: 16px; padding: 20px; }
.hours-header { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 900; color: var(--navy-900); margin-bottom: 12px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--navy-500); padding: 4px 0; }
.hours-row span:last-child { font-weight: 600; color: var(--navy-800); }
.response-card { background: var(--sage-50); border: 1px solid var(--sage-100); border-radius: 16px; padding: 20px; }
.response-card h3 { font-size: 13px; font-weight: 900; color: var(--navy-900); margin-bottom: 6px; }
.response-card p { font-size: 13px; color: var(--navy-500); line-height: 1.6; }

/* Rich form */
.rich-form { background: var(--white); border-radius: 24px; border: 1px solid var(--cream-200); box-shadow: 0 2px 16px rgba(0,0,0,.06); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-row-2 { display: grid; gap: 16px; }
@media(min-width:640px){ .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-field-rich { display: flex; flex-direction: column; gap: 6px; }
.form-field-rich label { font-size: 11px; font-weight: 800; color: var(--navy-700); letter-spacing: .1em; }
.form-field-rich input, .form-field-rich select, .form-field-rich textarea {
  padding: 12px 16px; background: var(--cream-50); border: 1px solid var(--cream-300);
  border-radius: 12px; font-family: inherit; font-size: 14px; color: var(--navy-800); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-field-rich input:focus, .form-field-rich select:focus, .form-field-rich textarea:focus {
  border-color: var(--sage-400); box-shadow: 0 0 0 3px rgba(106,170,102,.1);
}
.form-field-rich textarea { resize: vertical; min-height: 120px; }
.rich-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--sage-500); color: var(--white); border: none; font-family: inherit;
  font-size: 15px; font-weight: 900; padding: 16px; border-radius: 14px; cursor: pointer;
  transition: background .2s, transform .15s; box-shadow: 0 4px 16px rgba(74,143,70,.2);
}
.rich-submit-btn:hover { background: var(--sage-600); transform: scale(1.02); }
.form-privacy { font-size: 12px; color: var(--navy-400); text-align: center; }
.form-success { text-align: center; padding: 40px; }
.form-success-icon { width: 56px; height: 56px; background: var(--sage-100); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success-icon svg { width: 24px; height: 24px; color: var(--sage-600); }
.form-success h2 { font-size: 24px; font-weight: 900; color: var(--navy-900); margin-bottom: 8px; }
.form-success p { color: var(--navy-500); line-height: 1.6; }

/* Shipping / returns story card */
.shipping-story-card { background: linear-gradient(135deg, var(--sage-500), var(--sage-600)); border-radius: 24px; padding: 40px 40px 48px; color: var(--white); margin-bottom: 48px; }
@media(min-width:640px){ .shipping-story-card { padding: 48px 56px 56px; } }
.shipping-story-label { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.8); margin-bottom: 16px; }
.shipping-story-card h2 { font-size: clamp(22px,3.5vw,32px); font-weight: 900; margin-bottom: 20px; line-height: 1.2; }
.shipping-story-text { display: flex; flex-direction: column; gap: 12px; color: var(--sage-100); font-size: 14px; line-height: 1.7; max-width: 640px; }

/* Fact cards */
.facts-grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 48px; }
@media(min-width:1024px){ .facts-grid-4 { grid-template-columns: repeat(4,1fr); } }
.fact-card { background: var(--white); border-radius: 20px; border: 1px solid var(--cream-200); padding: 24px 16px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.fact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy-400); margin-bottom: 4px; }
.fact-value { font-size: 15px; font-weight: 900; color: var(--navy-900); }

/* Note cards */
.note-card { display: flex; align-items: flex-start; gap: 16px; border-radius: 16px; padding: 20px 24px; }
.note-card.sage-note { background: var(--sage-50); border: 1px solid var(--sage-100); }
.note-card h3 { font-size: 14px; font-weight: 900; color: var(--navy-900); margin-bottom: 6px; }
.note-card p { font-size: 13px; color: var(--navy-500); line-height: 1.6; }
.note-card a { color: var(--sage-600); font-weight: 700; }

/* Dark notice */
.dark-notice { background: var(--navy-900); border-radius: 16px; padding: 20px 24px; display: flex; align-items: flex-start; gap: 16px; }

/* Steps */
.steps-grid-3 { display: grid; gap: 20px; }
@media(min-width:640px){ .steps-grid-3 { grid-template-columns: repeat(3,1fr); } }
.step-card { background: var(--white); border-radius: 20px; border: 1px solid var(--cream-200); padding: 24px; text-align: center; }
.step-num { width: 36px; height: 36px; background: var(--sage-500); color: var(--white); border-radius: 999px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; margin: 0 auto 16px; }
.step-card h3 { font-size: 15px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.step-card p { font-size: 13px; color: var(--navy-500); line-height: 1.6; }

/* Accept / reject lists */
.accept-title, .reject-title { font-size: 16px; font-weight: 900; color: var(--navy-900); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.check-list, .cross-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li, .cross-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--navy-500); line-height: 1.5; }
.check-list li svg { width: 14px; height: 14px; color: var(--sage-500); flex-shrink: 0; margin-top: 2px; }
.cross-list li svg { width: 14px; height: 14px; color: var(--red-500); flex-shrink: 0; margin-top: 2px; }

/* Terms */
.terms-grid-3 { display: grid; grid-template-columns: repeat(1,1fr); gap: 16px; }
@media(min-width:640px){ .terms-grid-3 { grid-template-columns: repeat(3,1fr); } }
.term-card { background: var(--cream-100); border: 1px solid var(--cream-200); border-radius: 16px; padding: 20px; text-align: center; }
.term-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--navy-400); margin-bottom: 6px; }
.term-value { font-size: 14px; font-weight: 900; color: var(--navy-900); }

/* Tracking steps */
.track-steps { display: flex; flex-direction: column; gap: 16px; }
.track-step { display: flex; align-items: center; gap: 16px; }
.track-step-icon { width: 36px; height: 36px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.track-step.done .track-step-icon { background: var(--sage-100); }
.track-step.done .track-step-icon svg { width: 16px; height: 16px; color: var(--sage-600); }
.track-step.pending .track-step-icon { background: var(--cream-100); }
.track-step.pending .track-step-icon svg { width: 16px; height: 16px; color: var(--navy-400); }
.track-step-title { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.track-step-time { font-size: 12px; color: var(--navy-400); display: flex; align-items: center; gap: 4px; margin-top: 2px; }

/* No jobs */
.no-jobs-card { background: var(--white); border-radius: 24px; border: 1px solid var(--cream-200); padding: 64px 40px; text-align: center; }
.no-jobs-card h2 { font-size: 22px; font-weight: 900; color: var(--navy-900); margin-bottom: 12px; }
.no-jobs-card p { color: var(--navy-500); line-height: 1.7; font-size: 14px; }

/* Text stack */
.text-stack { display: flex; flex-direction: column; gap: 12px; }
.text-stack p { color: var(--navy-500); line-height: 1.7; font-size: 15px; }

.cart-page {
  background: linear-gradient(to bottom, var(--cream-100), var(--white));
  padding: 72px 0 96px;
}

.cart-page-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.cart-page-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.cart-page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--navy-900);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cart-page-header p {
  color: var(--navy-500);
  font-size: 17px;
  line-height: 1.6;
}

.cart-empty-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(17,24,39,.06);
}

.cart-empty-icon {
  font-size: 64px;
  margin-bottom: 18px;
}

.cart-empty-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.cart-empty-card p {
  color: var(--navy-500);
  margin-bottom: 28px;
}

.cart-primary-btn {
  display: inline-flex;
  background: var(--sage-500);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(74,143,70,.22);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.cart-items-card,
.cart-summary-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(17,24,39,.06);
}

.cart-items-card {
  padding: 8px 28px;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-200);
}

.cart-page-item:last-child {
  border-bottom: 0;
}

.cart-page-image {
  width: 112px;
  height: 112px;
  background: var(--cream-50);
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.cart-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.cart-item-variant {
  margin-top: 4px;
  color: var(--navy-400);
  font-size: 13px;
}

.cart-page-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.cart-qty-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty-box label {
  color: var(--navy-500);
  font-size: 12px;
  font-weight: 800;
}

.cart-qty-box input {
  width: 68px;
  padding: 10px;
  border: 1px solid var(--cream-300);
  border-radius: 12px;
  font-family: inherit;
  color: var(--navy-800);
}

.cart-remove-link {
  color: var(--red-500);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cart-item-price-desktop {
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 900;
}

.cart-item-mobile-price {
  display: none;
}

.cart-summary-card {
  padding: 28px;
  position: sticky;
  top: 120px;
}

.cart-summary-card h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy-600);
  font-size: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-200);
}

.summary-row strong {
  color: var(--navy-900);
  font-size: 17px;
}

.summary-note {
  color: var(--navy-400);
  font-size: 13px;
  line-height: 1.6;
  margin: 18px 0 22px;
}

.cart-checkout-btn,
.cart-update-btn {
  width: 100%;
  border: none;
  font-family: inherit;
  cursor: pointer;
  border-radius: 16px;
  font-weight: 900;
}

.cart-checkout-btn {
  background: var(--sage-500);
  color: var(--white);
  padding: 17px;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(74,143,70,.24);
}

.cart-update-btn {
  background: var(--cream-50);
  color: var(--navy-700);
  padding: 14px;
  margin-top: 10px;
  font-size: 14px;
  border: 1px solid var(--cream-200);
}

.cart-continue-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--sage-600);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media(max-width:900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary-card {
    position: static;
  }
}

@media(max-width:640px) {
  .cart-page {
    padding: 48px 0 72px;
  }

  .cart-page-item {
    grid-template-columns: 88px 1fr;
  }

  .cart-page-image {
    width: 88px;
    height: 88px;
  }

  .cart-item-price-desktop {
    display: none;
  }

  .cart-item-mobile-price {
    display: block;
    color: var(--sage-600);
    font-weight: 900;
    margin-top: 8px;
  }

  .cart-page-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.cart-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.cart-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 8px 28px rgba(17,24,39,.05);
}

.cart-trust-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cart-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.cart-trust-item span {
  display: block;
  font-size: 12px;
  color: var(--navy-500);
}

@media(max-width:900px) {
  .cart-trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:560px) {
  .cart-trust-row {
    grid-template-columns: 1fr;
  }
}
.collection-sort-form {
  max-width: 1280px;
  margin: 0 auto 36px;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.collection-sort-form label {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.collection-sort-form select {
  appearance: none;
  -webkit-appearance: none;
  min-width: 210px;
  padding: 13px 44px 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--cream-300);
  background: var(--white);
  color: var(--navy-800);
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17,24,39,.05);
  outline: none;
}

.collection-sort-form select:hover,
.collection-sort-form select:focus {
  border-color: var(--sage-400);
  box-shadow: 0 0 0 3px rgba(106,170,102,.12);
}
.product-story-hero {
  background: linear-gradient(to bottom, var(--cream-100), var(--white));
  padding: 72px 0;
}

.product-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-story-media {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(17,24,39,.06);
}

.product-story-media video,
.product-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-story-content h1 {
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 16px;
}

.product-story-badge {
  display: inline-block;
  background: var(--sage-100);
  color: var(--sage-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.product-story-stars {
  color: var(--sage-500);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
}

.product-story-stars span {
  color: var(--navy-400);
  font-size: 14px;
  font-weight: 600;
  margin-left: 8px;
}

.product-story-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.product-story-price strong {
  color: var(--navy-900);
  font-size: 40px;
  font-weight: 900;
}

.product-story-price .compare-price {
  color: #8b93a7 !important;
  text-decoration: line-through !important;
}

.product-story-price .sale-price {
  color: #dc2626 !important;
}

.product-story-price .discount-pill {
  background: #fee2e2 !important;
  color: #dc2626 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
} 

.product-story-desc {
  color: var(--navy-500);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-top:18px;
  margin-bottom:18px;
}

.trust-item{
  background:#f8f6ef;
  border:1px solid #eadfca;
  border-radius:15px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  min-height:64px;
}

.trust-icon{
  width:38px;
  height:38px;
  border-radius:11px;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  flex-shrink:0;
}

.trust-text{
  font-size:13px;
  font-weight:800;
  color:#16233d;
  line-height:1.25;
}

@media(max-width:768px){

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

}

.product-story-form {
  display: grid;
  gap: 12px;
}

.product-story-select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--cream-300);
  background: var(--white);
  font-family: inherit;
  font-weight: 800;
}

.product-story-atc {
  width: 100%;
  border: none;
  background: var(--sage-500);
  color: var(--white);
  border-radius: 18px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(74,143,70,.22);
}

.product-story-atc:hover {
  background: var(--sage-600);
}

.product-story-note {
  color: var(--navy-400);
  font-size: 13px;
  text-align: center;
  margin-top: 14px;
}

.product-explain-section {
  background: var(--white);
  padding: 80px 0;
}

.product-explain-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-explain-inner h2,
.product-reviews-section h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  color: var(--navy-900);
  margin-bottom: 22px;
}

.product-explain-inner p {
  color: var(--navy-500);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.product-explain-inner ul {
  display: grid;
  gap: 12px;
  list-style: none;
}

.product-explain-inner li {
  color: var(--navy-700);
  font-weight: 800;
}

.product-explain-inner li::before {
  content: "✓";
  color: var(--sage-600);
  margin-right: 8px;
}

.product-explain-image {
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
}

.product-explain-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-reviews-section {
  background: var(--cream-50);
  padding: 80px 24px 140px;
  text-align: center;
}

.product-review-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-review-card {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(17,24,39,.05);
}

.review-stars {
  color: var(--sage-500);
  font-weight: 900;
  margin-bottom: 14px;
}

.product-review-card p {
  color: var(--navy-800);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 800;
  margin-bottom: 18px;
}

.product-review-card span {
  color: var(--navy-400);
  font-size: 13px;
}

.sticky-product-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(255,255,255,.96);
  border-top: 1px solid var(--cream-200);
  box-shadow: 0 -10px 30px rgba(17,24,39,.08);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.sticky-product-bar > div {
  min-width: 260px;
}

.sticky-product-bar strong {
  display: block;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-product-bar span {
  color: var(--sage-600);
  font-size: 14px;
  font-weight: 900;
}

.sticky-product-form button {
  border: none;
  background: var(--sage-600);
  color: var(--white);
  border-radius: 14px;
  padding: 15px 42px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

@media(max-width: 900px) {
  .product-story-inner,
  .product-explain-inner,
  .product-review-grid {
    grid-template-columns: 1fr;
  }

  .sticky-product-bar {
    justify-content: space-between;
  }
}

@media(max-width:640px) {
  .product-story-hero {
    padding: 40px 0;
  }

  .sticky-product-bar {
    gap: 12px;
    padding: 12px;
  }

  .sticky-product-bar > div {
    min-width: 0;
    flex: 1;
  }

  .sticky-product-form button {
    padding: 14px 18px;
    white-space: nowrap;
  }
}

.product-explain-description {
  color: var(--navy-500);
  font-size: 17px;
  line-height: 1.8;
}

.product-explain-description p {
  margin-bottom: 16px;
}

.product-explain-image video {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.sticky-product-bar {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.sticky-product-bar.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media(max-width:768px){
  .trust-grid {
    display:grid!important;
    grid-template-columns:repeat(2, minmax(0, 1fr))!important;
    gap:10px!important;
    width:100%!important;
    margin:18px 0!important;
  }

  .trust-item {
    min-height:72px!important;
    padding:12px!important;
    display:flex!important;
    align-items:center!important;
    text-align:left!important;
    gap:10px!important;
  }

  .trust-icon {
    width:38px!important;
    height:38px!important;
    font-size:17px!important;
  }

  .trust-text {
    font-size:12px!important;
    line-height:1.25!important;
    text-align:left!important;
  }

  .product-story-select{
    appearance:none!important;
    -webkit-appearance:none!important;
    width:100%!important;
    min-height:54px!important;
    height:54px!important;
    border:1px solid #eadfc9!important;
    border-radius:16px!important;
    background-color:#fff!important;
    color:#111827!important;
    font-size:15px!important;
    font-weight:900!important;
    padding:0 48px 0 18px!important;
    outline:none!important;
    box-shadow:none!important;
  }

  .product-upsell-box{
    margin-top:22px!important;
    padding:18px!important;
    border-radius:22px!important;
  }

  .product-upsell-head h3{
    font-size:22px!important;
    line-height:1.15!important;
    margin-bottom:4px!important;
  }

  .product-upsell-head span{
    font-size:14px!important;
  }

  .product-upsell-list{
    display:flex!important;
    flex-direction:column!important;
    gap:14px!important;
    margin-top:16px!important;
  }

  .product-upsell-item{
    display:grid!important;
    grid-template-columns:86px 1fr 42px!important;
    gap:14px!important;
    padding:16px!important;
    border-radius:18px!important;
    position:relative!important;
  }

  .product-upsell-image{
    width:86px!important;
    height:104px!important;
    border-radius:14px!important;
  }

  .product-upsell-title{
    font-size:17px!important;
    line-height:1.2!important;
  }

  .product-upsell-price{
    font-size:17px!important;
    margin-top:6px!important;
  }

  .product-upsell-add{
    width:42px!important;
    height:42px!important;
    font-size:24px!important;
    line-height:1!important;
  }
}

.categories-grid-two {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px;
}

.categories-grid-two .category-card {
  aspect-ratio: 1.4 / 1;
}

@media(max-width:640px) {
  .categories-grid-two {
    grid-template-columns: 1fr !important;
  }
}

.language-selector{
  display:flex;
  align-items:center;
  position:relative;
}

.products-section .view-all-link svg,
.products-section .load-more-btn svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex: 0 0 18px !important;
  display: inline-block !important;
  transform: none !important;
}

.products-section .view-all-link,
.products-section .load-more-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #4a8f46 !important;
  text-decoration: none !important;
}

.products-section .load-more-wrap {
  text-align: center !important;
}

.compare-price{
  text-decoration: line-through !important;
  text-decoration-thickness: 2px !important;
  text-decoration-color: currentColor !important;
}
.cart-upsell-section{
  padding:18px 24px;
  border-top:1px solid var(--cream-200);
  background:#fff;
}

.cart-upsell-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.cart-upsell-head h3{
  font-size:15px;
  font-weight:900;
  color:var(--navy-900);
}

.cart-upsell-arrow{
  width:30px;
  height:30px;
  border:0;
  background:var(--cream-50);
  border-radius:999px;
  font-size:20px;
  cursor:pointer;
}

.cart-upsell-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}

.cart-upsell-track::-webkit-scrollbar{
  display:none;
}

.cart-upsell-card{
  min-width:260px;
  scroll-snap-align:start;
  display:grid;
  grid-template-columns:86px 1fr;
  gap:14px;
  padding:14px;
  border:1px solid var(--cream-200);
  border-radius:18px;
  background:var(--cream-50);
}

.cart-upsell-img{
  width:86px;
  height:104px;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

.cart-upsell-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cart-upsell-title{
  display:block;
  font-size:14px;
  font-weight:900;
  color:var(--navy-900);
  text-decoration:none;
  line-height:1.25;
}

.cart-upsell-price{
  margin:5px 0 10px;
  font-size:14px;
  font-weight:900;
  color:var(--sage-600);
}

.cart-upsell-add{
  width:100%;
  border:0;
  border-radius:12px;
  background:var(--navy-900);
  color:white;
  font-size:13px;
  font-weight:900;
  padding:11px;
  cursor:pointer;
}

@media(max-width:640px){
  .cart-upsell-card{
    min-width:240px;
  }
}
.cart-page-upsell{
  max-width:1180px;
  margin:34px auto 0;
}

.cart-page-upsell .cart-upsell-section{
  border:1px solid var(--cream-200);
  border-radius:28px;
  padding:28px;
  background:#fff;
  box-shadow:0 12px 40px rgba(17,24,39,.06);
}

.cart-page-upsell .cart-upsell-head h3{
  font-size:24px;
}

.cart-page-upsell .cart-upsell-card{
  min-width:340px;
  grid-template-columns:110px 1fr;
}

.cart-page-upsell .cart-upsell-img{
  width:110px;
  height:130px;
}

@media(max-width:640px){
  .cart-page-upsell{
    margin-top:24px;
  }

  .cart-page-upsell .cart-upsell-section{
    padding:18px;
    border-radius:22px;
  }

  .cart-page-upsell .cart-upsell-card{
    min-width:260px;
    grid-template-columns:86px 1fr;
  }

  .cart-page-upsell .cart-upsell-img{
    width:86px;
    height:104px;
  }
}
@media(max-width:640px){

  .product-card{
    overflow:hidden!important;
  }

  .product-info{
    padding:14px!important;
  }

  .product-name{
    font-size:14px!important;
    line-height:1.25!important;
  }

  .product-desc{
    font-size:12px!important;
    line-height:1.35!important;
  }

  .product-bottom{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
    align-items:stretch!important;
  }

  .product-price-group{
    min-width:0!important;
  }

  .product-price{
    font-size:20px!important;
    white-space:nowrap!important;
  }

  .add-btn{
    width:100%!important;
    justify-content:center!important;
    padding:12px 10px!important;
    border-radius:14px!important;
    font-size:13px!important;
    white-space:nowrap!important;
  }

  .cart-upsell-card{
    min-width:260px!important;
    max-width:260px!important;
    grid-template-columns:82px 1fr!important;
    overflow:hidden!important;
  }

  .cart-upsell-info{
    min-width:0!important;
  }

  .cart-upsell-title{
    font-size:14px!important;
    line-height:1.2!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }

  .cart-upsell-add{
    width:100%!important;
    max-width:100%!important;
    padding:11px 8px!important;
    font-size:13px!important;
    border-radius:12px!important;
    white-space:nowrap!important;
  }
 /* GLOBAL PRODUCT IMAGE FIX */
.product-card-image,
.product-img-wrap,
.hero-product-img,
.collection-product-image,
.cart-upsell-img,
.product-upsell-image,
.predictive-img{
  position:relative!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  background:#fffaf2!important;
  border-radius:18px!important;
  aspect-ratio:1 / 1!important;
}

.product-card-image img,
.product-img-wrap img,
.hero-product-img img,
.collection-product-image img,
.cart-upsell-img img,
.product-upsell-image img,
.predictive-img img{
  width:85%!important;
  height:85%!important;
  max-width:85%!important;
  max-height:85%!important;
  object-fit:contain!important;
  object-position:center!important;
  display:block!important;
  margin:auto!important;
  transform:none!important;
}

.product-card:hover .product-img-wrap img,
.hero-product-card:hover .hero-product-img img{
  transform:none!important;
}

.product-page-random-upsell{
  display:none!important;
}

/* CART DRAWER SALE PRICE */
.cart-item-price{
  display:flex!important;
  align-items:center!important;
  gap:8px!important;
  flex-wrap:wrap!important;
}

.cart-item-price .cart-compare-price{
  color:#9ca3af!important;
  font-size:15px!important;
  font-weight:800!important;
  position:relative!important;
  display:inline-block!important;
}

.cart-item-price .cart-compare-price::after{
  content:""!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  top:50%!important;
  height:2px!important;
  background:#9ca3af!important;
  transform:translateY(-50%)!important;
}

.cart-item-price .cart-sale-price{
  color:#4a8f46!important;
  font-size:18px!important;
  font-weight:900!important;
}

@media(max-width:768px){
  .product-card-image img,
  .product-img-wrap img,
  .hero-product-img img,
  .collection-product-image img,
  .cart-upsell-img img,
  .product-upsell-image img,
  .predictive-img img{
    width:82%!important;
    height:82%!important;
    max-width:82%!important;
    max-height:82%!important;
  }

  .product-gallery-thumb{
    width:72px!important;
    height:72px!important;
  }
}
.product-upsell-item{
  position:relative!important;
}

.product-upsell-add{
  position:relative!important;
  z-index:20!important;
  pointer-events:auto!important;
}

.product-upsell-image,
.product-upsell-title{
  position:relative!important;
  z-index:1!important;
}