/* ============================================
   PawSmart — Smart Pet Gear
   Design system
============================================ */

:root {
  --brand: #ff6b35;
  --brand-dark: #e85a25;
  --accent: #2ec4b6;
  --ink: #1a1a2e;
  --ink-2: #4a4a68;
  --muted: #8a8aa3;
  --line: #eaeaef;
  --bg: #ffffff;
  --bg-soft: #faf8f5;
  --bg-tint: #fff5ef;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(20,20,40,.05);
  --shadow-md: 0 8px 24px rgba(20,20,40,.08);
  --shadow-lg: 0 20px 50px rgba(20,20,40,.12);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.15rem; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.muted { color: var(--muted); font-weight: 500; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--brand);
  background: var(--bg-tint);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hl { color: var(--brand); }

/* ============================================
   Announcement bar
============================================ */
.announce-bar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 10px 24px;
  font-weight: 500;
}

/* ============================================
   Header / Nav
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-simple {
  position: relative;
  background: var(--bg);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.logo-mark { font-size: 1.5rem; }
.logo-dark { color: #fff; }
.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--ink);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: 3px 3px 0 0;
}
.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border-radius: 10px;
  transition: background .2s;
}
.icon-btn:hover { background: var(--bg-soft); }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 100px;
  line-height: 1.5;
}
.checkout-steps {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
}
.checkout-steps span { color: var(--muted); }
.checkout-steps span.done { color: var(--ink); }
.checkout-steps span.active { color: var(--brand); }

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  border: 0;
  transition: all .2s;
  font-family: inherit;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,53,.35);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,107,53,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
}
.btn-block { width: 100%; }
.btn-large { padding: 16px 26px; font-size: 15.5px; }

.link {
  color: var(--brand);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-block;
}
.link:hover { text-decoration: underline; }

/* ============================================
   Hero
============================================ */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 { margin: 14px 0 20px; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.4rem; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); }
.hero-trust span { font-size: 13px; color: var(--muted); }

.hero-visual {
  position: relative;
  height: 460px;
}
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, var(--bg-tint), transparent 60%),
              radial-gradient(circle at 30% 70%, #ffe4d6, transparent 60%);
  z-index: -1;
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  animation: float 6s ease-in-out infinite;
}
.hero-card .mock-emoji { font-size: 4rem; }
.hero-card .hc-meta { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; }
.hero-card .hc-price { color: var(--brand); font-size: 16px; }
.hero-card.card-a { top: 30px; left: 80px; transform: rotate(-6deg); }
.hero-card.card-b { top: 140px; right: 40px; transform: rotate(5deg); animation-delay: -2s; }
.hero-card.card-c { bottom: 40px; left: 40px; transform: rotate(-3deg); animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
.card-a { --r: -6deg; }
.card-b { --r: 5deg; }
.card-c { --r: -3deg; }

/* ============================================
   Sections
============================================ */
.section {
  padding: 80px 0;
}
.section-tight { padding: 40px 0; }
.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--bg-tint); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { margin: 0; }

/* ============================================
   Categories
============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cat-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: all .25s;
}
.cat-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}
.cat-card h3 { margin-bottom: 6px; }
.cat-card p { color: var(--ink-2); font-size: 14px; margin-bottom: 12px; }
.cat-count {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ============================================
   Products
============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.pc-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.badge-new { background: var(--accent); }
.product-card h3 { font-size: 1rem; margin-bottom: 6px; }
.pc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}
.pc-price { color: var(--ink); font-weight: 800; }
.pc-rating { color: var(--muted); }
.pc-cta {
  display: none;
  margin-top: 12px;
  font-size: 13px;
  color: var(--brand);
  font-weight: 700;
}
.product-card:hover .pc-cta { display: block; }

/* product image placeholders (gradient + emoji feel) */
.pc-img-1 { background: linear-gradient(135deg, #ffe4d6, #ffb59e); }
.pc-img-1::before { content: '🍽️'; font-size: 5rem; }
.pc-img-2 { background: linear-gradient(135deg, #d6f0e8, #8ad9c8); }
.pc-img-2::before { content: '📡'; font-size: 5rem; }
.pc-img-3 { background: linear-gradient(135deg, #d6e8ff, #8ab9f0); }
.pc-img-3::before { content: '💧'; font-size: 5rem; }
.pc-img-4 { background: linear-gradient(135deg, #f0e0ff, #c78aff); }
.pc-img-4::before { content: '📹'; font-size: 5rem; }
.pc-img-5 { background: linear-gradient(135deg, #ffe1ed, #ff9bc4); }
.pc-img-5::before { content: '📍'; font-size: 5rem; }
.pc-img-6 { background: linear-gradient(135deg, #fff4d6, #ffd680); }
.pc-img-6::before { content: '🍱'; font-size: 5rem; }
.pc-img-7 { background: linear-gradient(135deg, #ffe0e0, #ff9b9b); }
.pc-img-7::before { content: '❤️'; font-size: 5rem; }
.pc-img-8 { background: linear-gradient(135deg, #d6fff2, #80e8c4); }
.pc-img-8::before { content: '🎾'; font-size: 5rem; }
.pc-img-9 { background: linear-gradient(135deg, #f5e0ff, #d49bff); }
.pc-img-9::before { content: '🪨'; font-size: 5rem; }
.pc-img-10 { background: linear-gradient(135deg, #ffd6e8, #ff80b8); }
.pc-img-10::before { content: '🚪'; font-size: 5rem; }
.pc-img-11 { background: linear-gradient(135deg, #e0eaff, #80b0ff); }
.pc-img-11::before { content: '🧘'; font-size: 5rem; }
.pc-img-12 { background: linear-gradient(135deg, #e0fff5, #80e8c0); }
.pc-img-12::before { content: '⛲'; font-size: 5rem; }

/* Why PawSmart */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-text p { color: var(--ink-2); font-size: 1.05rem; margin-top: 16px; }
.why-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.why-card h4 { font-size: 1rem; margin-bottom: 6px; margin-top: 8px; }
.why-card p { font-size: 13.5px; color: var(--ink-2); }
.why-emoji { font-size: 1.8rem; }

/* Reviews */
.dots { display: flex; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); }
.dot.active { background: var(--brand); }
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.review {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}
.r-stars { color: #fbb040; margin-bottom: 12px; }
.review p { color: var(--ink-2); font-size: 15px; margin-bottom: 16px; }
.review footer { font-size: 13px; color: var(--muted); }
.review footer span { color: var(--accent); }

/* Newsletter */
.nl-wrap { display: flex; justify-content: center; }
.nl-card {
  background: linear-gradient(135deg, var(--ink) 0%, #2d2d4a 100%);
  color: #fff;
  border-radius: 28px;
  padding: 60px 50px;
  text-align: center;
  max-width: 720px;
  width: 100%;
}
.nl-card h2 { color: #fff; }
.nl-card p { color: rgba(255,255,255,.75); margin: 12px 0 24px; }
.nl-card small { display: block; margin-top: 12px; color: rgba(255,255,255,.5); font-size: 13px; }
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 100px;
  padding: 6px;
}
.nl-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: 100px;
  font-family: inherit;
}

/* ============================================
   Footer
============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  padding: 6px 0;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 13px;
  text-align: center;
}

/* ============================================
   Page hero (sub pages)
============================================ */
.page-hero {
  background: var(--bg-tint);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--ink-2); font-size: 1.05rem; }

/* ============================================
   Shop page
============================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}
.filters {
  position: sticky;
  top: 100px;
  align-self: start;
}
.filter-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.filter-block h4 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink-2);
}
.filter-block label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 500;
}
.filter-block label span { color: var(--muted); font-size: 13px; }
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
}
.sort {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.pagination a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.pagination a:hover { background: var(--bg-soft); }
.pagination a.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ============================================
   Product detail
============================================ */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffe4d6, #ffb59e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main::before { content: '🍽️'; font-size: 9rem; }
.gallery-main.pc-img-1 { background: linear-gradient(135deg, #ffe4d6, #ffb59e); }
.gallery-main.lg { aspect-ratio: 1; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.thumb {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
}
.thumb.active { border-color: var(--brand); }

.pdp-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 10px 0 8px;
}
.pdp-rate {
  color: #fbb040;
  font-weight: 700;
  margin-bottom: 24px;
}
.pdp-rate span { color: var(--muted); font-weight: 500; margin-left: 8px; font-size: 14px; }
.pdp-price {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.pc-price.big { font-size: 2rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.strike { color: var(--muted); text-decoration: line-through; font-weight: 500; }
.save-badge {
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}
.pdp-desc { color: var(--ink-2); margin-bottom: 24px; }
.pdp-option {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.opt-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 80px;
}
.swatches { display: flex; gap: 10px; }
.sw {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
}
.sw.active { border-color: var(--brand); }
.sw-1 { background: #fff; box-shadow: 0 0 0 1px var(--line); }
.sw-2 { background: var(--ink); }
.sw-3 { background: #b8a08a; }
.chips { display: flex; gap: 10px; }
.chips span {
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--bg-soft);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
}
.chips span.active { background: var(--ink); color: #fff; }

.pdp-qty {
  display: flex;
  gap: 12px;
  margin: 28px 0;
  align-items: center;
}
.qty {
  display: inline-flex;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.qty button {
  background: var(--bg-soft);
  border: 0;
  width: 40px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 700;
}
.qty input {
  width: 50px;
  text-align: center;
  border: 0;
  outline: 0;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
}

.pdp-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
}
.pdp-perks > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.pdp-collapse details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.pdp-collapse summary {
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.pdp-collapse summary::-webkit-details-marker { display: none; }
.pdp-collapse summary::after { content: '+'; font-size: 1.2rem; color: var(--muted); }
.pdp-collapse details[open] summary::after { content: '−'; }
.pdp-collapse details p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 14px;
}

.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { margin: 0 8px; }
.breadcrumb span:last-child { color: var(--ink); font-weight: 600; }

/* ============================================
   Cart
============================================ */
.cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.cart-main h1 { margin-bottom: 30px; font-size: 2rem; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.ci-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}
.ci-info h3 { font-size: 1.05rem; }
.ci-stock {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  margin: 4px 0 12px;
}
.ci-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ci-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
}
.ci-remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 8px;
  align-self: flex-start;
}
.ci-remove:hover { color: var(--brand); }
.trust-block {
  margin-top: 30px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 13.5px;
}
.cart-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-size: 1.15rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14.5px;
}
.sum-row .free { color: var(--accent); font-weight: 700; }
.sum-row.sum-total {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 16px;
  font-weight: 800;
  font-size: 1.15rem;
}
.cart-summary .btn { margin-top: 16px; }
.paypal-link {
  text-align: center;
  display: block;
  margin-top: 12px;
  font-size: 14px;
}
.paymethods {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.paymethods span {
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
}

/* ============================================
   Checkout
============================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.checkout-main h1 { margin-bottom: 28px; font-size: 2rem; }
.ck-fieldset {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
}
.ck-fieldset legend {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0 6px;
  background: #fff;
}
.ck-fieldset input,
.ck-fieldset select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  font-family: inherit;
}
.ck-fieldset input:focus,
.ck-fieldset select:focus {
  outline: none;
  border-color: var(--brand);
}
.ck-row2, .ck-row3 { display: grid; gap: 12px; margin-bottom: 0; }
.ck-row2 { grid-template-columns: 1fr 1fr; }
.ck-row3 { grid-template-columns: 1fr 1fr 1.4fr; }
.ck-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 6px;
}
.ck-ship-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.ck-ship-opt.active {
  border-color: var(--brand);
  background: var(--bg-tint);
}
.ck-ship-opt strong { font-weight: 700; }
.free-tag {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}

.ck-mini-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.ck-mini-item .ci-img { width: 50px; height: 50px; }

/* ============================================
   About
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.about-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.about-card span:not(.big-num) { opacity: .85; }
.big-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
}
.values-grid .full { grid-column: 1/-1; }
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--line);
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-2); font-size: 14px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.team-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.tc-avatar {
  font-size: 3.5rem;
  background: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--muted); }

/* ============================================
   Responsive
============================================ */
@media (max-width: 960px) {
  .hero-grid,
  .pdp-grid,
  .cart-grid,
  .checkout-grid,
  .why-grid,
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { height: 380px; }
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .filters { position: static; }
}
@media (max-width: 540px) {
  .section { padding: 50px 0; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 20px; }
  .pdp-perks { grid-template-columns: 1fr; }
}
