/* ══════════════════════════════
   VARIABLES & RESET
══════════════════════════════ */
:root {
  --orange:      #e57625;
  --orange-dk:   #c4601a;
  --orange-lt:   #f5a05a;
  --orange-pale: #fff3ea;
  --green:       #8ba245;
  --green-dk:    #6a7e32;
  --green-pale:  #f2f6e8;
  --dark:        #1c1a0f;
  --text:        #1e1b16;
  --muted:       #6b6659;
  --faint:       #b8b2a7;
  --border:      #e9e2d8;
  --border-lt:   #f2ece4;
  --bg:          #f7f5f1;
  --card:        #ffffff;
  --img-bg:      #fdf8f3;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.04);
  --shadow-hover: 0 8px 24px rgba(229,118,37,.18), 0 0 0 1px rgba(229,118,37,.12);
  --transition:  .2s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased }
a { text-decoration: none; color: inherit }
img { display: block; max-width: 100% }
button { font-family: inherit; cursor: pointer }
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif }

/* ══════════════════════════════
   PAGE LOAD ANIMATION
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px) }
  to   { opacity:1; transform:translateY(0) }
}
.topbar  { animation: fadeUp .3s ease both }
.header  { animation: fadeUp .35s .05s ease both }
.hero-row{ animation: fadeUp .4s .1s ease both }
.origin-bar { animation: fadeUp .4s .18s ease both }
.sec-wrap   { animation: fadeUp .4s .24s ease both }
.sec-wrap + .sec-wrap { animation-delay: .3s }
.trust   { animation: fadeUp .4s .38s ease both }

/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
.topbar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-nav { display: flex; align-items: center; overflow: hidden }
.topbar-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: rgba(255,255,255,.38);
  white-space: nowrap; padding: 0 10px;
  border-right: 1px solid rgba(255,255,255,.08); line-height: 1;
  transition: color var(--transition);
}
.topbar-nav a:first-child { padding-left: 0 }
.topbar-nav a:last-child  { border-right: none }
.topbar-nav a:hover { color: var(--orange-lt) }
.topbar-soc { display: flex; align-items: center; gap: 5px; flex-shrink: 0 }
.topbar-soc a {
  width: 22px; height: 22px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); transition: color var(--transition);
}
.topbar-soc a:hover { color: var(--orange-lt) }
.topbar-soc svg { width: 13px; height: 13px; stroke: currentColor; fill: none }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,.04);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 66px; display: flex; align-items: center; gap: 20px;
}
.logo { flex-shrink: 0; display: flex; align-items: center }
.logo img { height: 38px; width: auto; display: block }

/* Search */
.search-wrap {
  flex: 1; max-width: 680px; display: flex;
  border: 1.5px solid var(--border); border-radius: 50px;
  overflow: hidden; background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,118,37,.12);
  background: #fff;
}
.search-input {
  flex: 1; height: 42px; padding: 0 18px;
  border: none; font-size: 13.5px; color: var(--text);
  outline: none; background: transparent; font-family: 'DM Sans', sans-serif;
}
.search-input::placeholder { color: var(--faint) }
.cat-select {
  height: 42px; padding: 0 30px 0 14px; border: none;
  border-left: 1px solid var(--border-lt); font-size: 12.5px; color: var(--muted);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E") no-repeat right 11px center;
  appearance: none; outline: none; min-width: 150px; font-family: 'DM Sans', sans-serif;
}
.search-btn {
  width: 48px; height: 42px; background: var(--orange);
  border: none; display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; border-radius: 0 50px 50px 0;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--orange-dk) }
.search-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none }

/* Header right */
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 3px; flex-shrink: 0 }
.hdr-link {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 13px; color: var(--muted); font-weight: 500;
  border: none; background: none; white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.hdr-link:hover { background: var(--orange-pale); color: var(--orange) }
.hdr-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none }
.hdr-count {
  min-width: 18px; height: 18px; background: var(--orange);
  color: #fff; font-size: 10px; font-weight: 700;
  border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.hdr-sep { width: 1px; height: 22px; background: var(--border); margin: 0 3px }
.cart-btn {
  display: flex; align-items: center; gap: 9px; padding: 8px 16px;
  border-radius: 8px; font-size: 13px; color: var(--text); font-weight: 600;
  border: 1.5px solid var(--border); background: #fff; white-space: nowrap;
  transition: all var(--transition);
}
.cart-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale) }
.cart-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none }
.cart-badge {
  background: var(--orange); color: #fff;
  font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-left: -2px;
}
.cart-wrap { position: relative }
.cart-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 320px; background: var(--card);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius); box-shadow: 0 12px 36px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1000;
}
.cart-wrap:hover .cart-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.cart-dropdown::before {
  content: ''; position: absolute; top: -6px; right: 20px;
  width: 12px; height: 12px; background: var(--card);
  border-left: 1px solid var(--border-lt); border-top: 1px solid var(--border-lt);
  transform: rotate(45deg); z-index: 1;
}
.cd-header {
  font-family: 'Nunito', sans-serif; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--orange); padding: 14px 16px 8px;
}
.cd-items { max-height: 240px; overflow-y: auto }
.cd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-lt);
  transition: background .15s ease;
}
.cd-item:last-child { border-bottom: none }
.cd-item:hover { background: var(--bg) }
.cd-item img {
  width: 42px; height: 42px; border-radius: 6px;
  background: var(--bg); object-fit: contain; flex-shrink: 0;
}
.cd-item-info { flex: 1; min-width: 0 }
.cd-item-info span {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cd-item-info small {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--faint);
}
.cd-item strong {
  font-family: 'Nunito', sans-serif;
  font-size: 12.5px; font-weight: 800; color: var(--orange);
  white-space: nowrap;
}
.cd-footer { padding: 12px 16px; border-top: 1px solid var(--border-lt) }
.cd-total {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 12.5px; color: var(--muted);
}
.cd-total strong { color: var(--text); font-weight: 600 }
.cd-total-price {
  font-family: 'Nunito', sans-serif;
  font-size: 16px; font-weight: 900; color: var(--orange);
}
.cd-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 40px;
  background: var(--orange); color: #fff; border: none; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: background .2s ease;
}
.cd-btn:hover { background: var(--orange-dk) }
.cd-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none }

/* ══════════════════════════════
   PAGE WRAPPER
══════════════════════════════ */
.page {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 32px; display: flex; flex-direction: column; gap: 14px;
}

/* ══════════════════════════════
   HERO ROW
══════════════════════════════ */
.hero-row { display: flex; gap: 14px; align-items: stretch }

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar {
  width: 218px; flex-shrink: 0; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 16px; font-size: 13px; font-weight: 500; color: var(--muted);
  border-bottom: 1px solid var(--border-lt);
  transition: background var(--transition), color var(--transition);
  position: relative; flex: 1; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.cat-item:last-child { border-bottom: none }
.cat-item:hover { background: var(--orange-pale); color: var(--orange) }
.cat-item.active  { background: var(--orange-pale); color: var(--orange-dk); font-weight: 600 }
.cat-item.active::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange); border-radius: 0 3px 3px 0;
}
.cat-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--border-lt); flex-shrink: 0;
  transition: background var(--transition);
}
.cat-item:hover .cat-icon, .cat-item.active .cat-icon {
  background: rgba(229,118,37,.15);
}
.cat-icon svg {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.cat-icon i {
  font-size: 14px; color: var(--muted);
  transition: color var(--transition);
}
.cat-item:hover .cat-icon i, .cat-item.active .cat-icon i {
  color: var(--orange);
}

/* Disabled category (no products yet) */
.cat-item.disabled {
  opacity: .45;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}
.cat-item.disabled:hover { background: none; color: var(--muted); }
.cat-item.disabled .cat-icon { background: var(--border-lt); }
.cat-item.disabled .cat-icon i { color: var(--faint); }
.cat-soon {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  color: var(--faint);
  background: var(--border-lt);
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .02em;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  flex: 1; min-width: 0; border-radius: var(--radius);
  overflow: hidden; position: relative; display: flex; align-items: center;
  background: var(--orange);
  background-size: cover; background-position: center;
  min-height: 260px;
}
.hero-fade {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg,
    rgba(229,118,37,.88) 18%,
    rgba(229,118,37,.65) 40%,
    rgba(229,118,37,.25) 60%,
    transparent 80%);
}
.hero-body {
  position: relative; z-index: 3;
  padding: 48px 52px; max-width: 460px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,.18); color: rgba(255,255,255,.9);
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px; border: 1px solid rgba(255,255,255,.2);
  font-family: 'DM Sans', sans-serif;
}
.hero-body h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 900; color: #fff; line-height: 1.18; margin-bottom: 12px;
  letter-spacing: -.01em;
}
.hero-body p {
  font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.7;
  margin-bottom: 28px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap }
.hero-cta {
  display: inline-flex; align-items: center; height: 44px; padding: 0 24px;
  background: #fff; color: var(--orange-dk);
  border: none; border-radius: 50px;
  font-size: 13.5px; font-weight: 700; font-family: 'Nunito', sans-serif;
  transition: all var(--transition); box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.hero-cta:hover { background: var(--orange-pale); transform: translateY(-1px) }
.hero-cta-2 {
  display: inline-flex; align-items: center; height: 44px; padding: 0 20px;
  background: transparent; color: rgba(255,255,255,.9);
  border: 1.5px solid rgba(255,255,255,.4); border-radius: 50px;
  font-size: 13.5px; font-weight: 600; font-family: 'Nunito', sans-serif;
  transition: all var(--transition);
}
.hero-cta-2:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.1) }

/* ══════════════════════════════
   SPECIES BAR (origin-bar reuse)
══════════════════════════════ */
.origin-bar {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 18px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-card); flex-wrap: wrap;
}
.origin-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-right: 4px;
  white-space: nowrap; font-family: 'Nunito', sans-serif;
}
.origin-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 20px;
  border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
  color: var(--muted); background: var(--bg); cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.origin-chip:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale) }
.origin-chip.active { border-color: var(--orange); background: var(--orange-pale); color: var(--orange-dk) }
.origin-chip.green-active { border-color: var(--green); background: var(--green-pale); color: var(--green-dk) }
.origin-chip.soon { opacity: .4; cursor: default }
.soon-tag {
  font-size: 9px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; background: var(--border);
  color: var(--faint); padding: 2px 7px; border-radius: 10px;
}

/* ══════════════════════════════
   BRANDS STRIP
══════════════════════════════ */
.brands-strip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}
.brands-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-right: 4px;
  white-space: nowrap;
}
.brand-pill {
  font-size: 12px; font-weight: 700; color: var(--muted);
  padding: 5px 13px; border-radius: 20px; background: var(--bg);
  border: 1px solid var(--border-lt); cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
  font-family: 'Nunito', sans-serif; letter-spacing: -.01em;
}
.brand-pill:hover { color: var(--orange); background: var(--orange-pale); border-color: var(--orange) }

/* ══════════════════════════════
   SECTION HEADER
══════════════════════════════ */
.sec-wrap { display: flex; flex-direction: column; gap: 10px }
.sec-hd { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; flex-wrap: wrap }
.sec-hd h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.02em;
}
.sec-hd h2 span { color: var(--orange) }
.sec-badge {
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
  background: var(--green-pale); color: var(--green-dk);
  margin-left: 8px; vertical-align: middle;
}
.sec-badge.hot {
  background: #fff0ea; color: var(--orange-dk);
}
.sec-hd a {
  font-size: 12.5px; font-weight: 600; color: var(--orange);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.sec-hd a:hover { gap: 8px }
.sec-hd a svg { width: 12px; height: 12px; stroke: currentColor; fill: none }

/* ══════════════════════════════
   SLIDER
══════════════════════════════ */
.slider-wrap { position: relative; padding: 0 22px }
.slider-outer { overflow: hidden; cursor: grab; user-select: none; -webkit-user-select: none }
.slider-track {
  display: flex; gap: 12px;
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.sl-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); z-index: 5;
  transition: all var(--transition); flex-shrink: 0;
}
.sl-arrow:hover { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 4px 12px rgba(229,118,37,.3) }
.sl-arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round }
.sl-arrow.prev { left: 0 }
.sl-arrow.next { right: 0 }
.sl-arrow:disabled { opacity: .22; cursor: default; pointer-events: none }

/* ══════════════════════════════
   PRODUCT CARD
══════════════════════════════ */
.pc {
  flex: 0 0 calc((100% - 5*12px)/6); min-width: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}
.pc:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(229,118,37,.25);
}
.pc-img {
  position: relative; aspect-ratio: 1;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pc-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .35s var(--transition);
}
.pc:hover .pc-img img { transform: scale(1.08) }
.pc-wish {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--faint);
  transition: color var(--transition), transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.pc-wish:hover { color: #e74c3c; transform: scale(1.1) }
.pc-wish svg { width: 12px; height: 12px; stroke: currentColor; fill: none }
.pc-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 9.5px; font-weight: 800; letter-spacing: .03em;
  padding: 3px 7px; border-radius: 6px;
  background: #e74c3c; color: #fff;
  box-shadow: 0 2px 4px rgba(231,76,60,.3);
  font-family: 'Nunito', sans-serif;
}
.pc-badge.new-badge { background: var(--green); box-shadow: 0 2px 4px rgba(139,162,69,.3) }
.pc-body { padding: 10px 11px 12px; flex: 1; display: flex; flex-direction: column }
.pc-name {
  font-size: 12px; font-weight: 600; color: var(--text);
  line-height: 1.42; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 3px; font-family: 'DM Sans', sans-serif;
}
.pc-cats {
  font-size: 10.5px; color: var(--faint); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 9px; padding-top: 9px; border-top: 1px solid var(--border-lt); gap: 4px;
}
.pc-price { font-size: 14.5px; font-weight: 800; color: var(--orange); white-space: nowrap; font-family: 'Nunito', sans-serif }
.pc-old { font-size: 10.5px; color: var(--faint); text-decoration: line-through; margin-top: 1px }
.pc-add {
  width: 30px; height: 30px; background: var(--orange); color: #fff;
  border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 2px 6px rgba(229,118,37,.3);
}
.pc-add:hover { background: var(--orange-dk); transform: scale(1.1) }
.pc-add svg { width: 13px; height: 13px; stroke: #fff; fill: none; stroke-width: 2.5 }

/* ══════════════════════════════
   HOME — BLOG GRID
══════════════════════════════ */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .home-blog-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 580px) {
  .home-blog-grid { grid-template-columns: 1fr }
}

/* ══════════════════════════════
   TRUST STRIP
══════════════════════════════ */
.trust {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); display: grid;
  grid-template-columns: repeat(4,1fr);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.ti {
  display: flex; align-items: center; gap: 13px;
  padding: 18px 20px; border-right: 1px solid var(--border-lt);
  transition: background var(--transition);
}
.ti:last-child { border-right: none }
.ti:hover { background: var(--orange-pale) }
.ti-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--orange-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1;
  transition: transform var(--transition);
}
.ti:hover .ti-ico { transform: scale(1.08) }
.ti strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; font-family: 'Nunito', sans-serif }
.ti span { font-size: 11.5px; color: var(--faint) }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer { background: var(--orange-dk); color: rgba(255,255,255,.65); margin-top: 32px }
.ft { max-width: 1280px; margin: 0 auto; padding: 32px 32px 18px }
.ft-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 24px;
}
.ft-brand {}
.ft-logo-img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: .8; margin-bottom: 10px }
.ft-desc {
  font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.55);
  max-width: 220px; margin-bottom: 14px;
}
.ft-soc { display: flex; gap: 6px }
.ft-s {
  width: 30px; height: 30px; border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all var(--transition);
  text-decoration: none;
}
.ft-s:hover { background: rgba(255,255,255,.2); color: #fff }
.ft-s svg { width: 13px; height: 13px; stroke: currentColor; fill: none }
.ft-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 12px;
}
.ft-col ul { list-style: none }
.ft-col li { margin-bottom: 6px }
.ft-col a {
  font-size: 12px; color: rgba(255,255,255,.45);
  transition: color var(--transition); text-decoration: none;
}
.ft-col a:hover { color: #fff }
.ft-divider {
  height: 1px; background: rgba(255,255,255,.15); margin-bottom: 16px;
}
.ft-bot {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.ft-bot p { font-size: 11px; color: rgba(255,255,255,.45) }
.ft-pay { display: flex; gap: 5px }
.ptag {
  background: rgba(255,255,255,.12); padding: 3px 8px; border-radius: 3px;
  font-size: 8.5px; font-weight: 800; letter-spacing: .05em; color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.18);
}
.ptag-sm {
  background: rgba(255,255,255,.1); padding: 2px 6px; border-radius: 3px;
  font-size: 8px; font-weight: 800; letter-spacing: .04em; color: rgba(255,255,255,.6);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width:1100px) {
  .pc { flex-basis: calc((100% - 3*12px)/4) }
}
@media (max-width:860px) {
  .hero-row { flex-direction: column }
  .sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; min-height: auto }
  .cat-item { flex: 0 0 50%; min-height: 48px }
  .pc { flex-basis: calc((100% - 2*12px)/3) }
  .sec-hd h2 { font-size: 17px }
}
/* ── Hamburger Button (hidden on desktop) ── */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  border: none; background: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; flex-shrink: 0; padding: 0;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .25s ease;
}

/* ── Mobile Side Drawer ── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.4);
  opacity: 0; transition: opacity .3s ease;
}
.mobile-overlay.open { display: block; opacity: 1 }

.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; max-width: 85vw;
  background: #fff; z-index: 201;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.mobile-nav.open { transform: translateX(0) }

/* Drawer header */
.mn-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-lt);
  flex-shrink: 0;
}
.mn-header .logo img { height: 30px; width: auto }
.mn-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: none; cursor: pointer;
  color: var(--muted); border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.mn-close:hover { background: var(--bg); color: var(--text) }
.mn-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2 }

/* Drawer search */
.mn-search {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-lt);
  flex-shrink: 0;
}
.mn-search-input {
  width: 100%; height: 42px;
  padding: 0 16px 0 40px;
  border: 1.5px solid var(--border); border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px;
  color: var(--text); background: var(--bg);
  outline: none; transition: border-color var(--transition), box-shadow var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23b8b2a7' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 14px center;
}
.mn-search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,118,37,.12);
  background-color: #fff;
}
.mn-search-input::placeholder { color: var(--faint) }

/* Drawer scrollable body */
.mn-body {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 8px 0 24px;
  min-height: 0;
}

/* Section label */
.mn-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint);
  padding: 16px 20px 8px;
}

/* Drawer links */
.mn-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.mn-link:hover { background: var(--orange-pale); color: var(--orange) }
.mn-link svg {
  width: 20px; height: 20px; flex-shrink: 0;
  stroke: var(--faint); fill: none; stroke-width: 1.8;
  transition: stroke var(--transition);
}
.mn-link:hover svg { stroke: var(--orange) }

/* Divider */
.mn-divider {
  height: 1px; background: var(--border-lt);
  margin: 8px 20px;
}

@media (max-width:580px) {
  /* Topbar hidden */
  .topbar { display: none }

  /* Header compact */
  .header-inner { padding: 0 14px; gap: 10px; height: 56px }
  .logo img { height: 30px }

  /* Search hidden on mobile, accessible via nav */
  .search-wrap { display: none }

  /* Hide text labels, show icons only */
  .hdr-link { padding: 8px; font-size: 0 }
  .hdr-link svg { width: 20px; height: 20px }
  .hdr-sep { display: none }
  .cart-btn { padding: 8px; font-size: 0; border: none; background: none }
  .cart-btn svg { width: 20px; height: 20px }
  .cart-btn:hover { background: var(--orange-pale) }
  .cart-dropdown { display: none }
  .cart-badge { display: none }

  /* Show hamburger */
  .hamburger { display: flex; order: -1 }

  /* Page */
  .page { padding: 12px }
  .sidebar { display: none }
  .cat-select { display: none }
  .pc { flex-basis: calc((100% - 12px)/2) }

  /* Trust */
  .trust { grid-template-columns: 1fr 1fr }
  .ti:nth-child(2) { border-right: none }
  .ti:nth-child(3) { border-right: 1px solid var(--border-lt) }

  /* Footer */
  .ft-top { grid-template-columns: 1fr }
  .ft-top { gap: 24px }
  .ft { padding: 32px 20px 20px }
  .ft-desc { max-width: 100% }
  .ft-bot { flex-direction: column; text-align: center }
  .ft-pay { justify-content: center }

  /* Hero */
  .hero-body { padding: 28px 24px }
  .hero-body p { font-size: 13px; margin-bottom: 20px }

  /* Section headers */
  .sec-hd h2 { font-size: 16px }
  .sec-badge { font-size: 9px; padding: 2px 8px; margin-left: 4px }

  /* Slider: hide arrows on mobile, use swipe */
  .sl-arrow { display: none }
  .slider-wrap { padding: 0 }
  .slider-outer { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none }
  .slider-outer::-webkit-scrollbar { display: none }
  .slider-track { transition: none }
  .pc { scroll-snap-align: start }
}
@media (max-width:400px) {
  .page { padding: 8px }
  .header-inner { padding: 0 10px }
  .pc { flex-basis: 100% }
}

/* ══════════════════════════════
   ACCESSIBILITY
══════════════════════════════ */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 10000;
  background: var(--orange); color: #fff;
  padding: 12px 24px; font-weight: 700;
  font-family: 'Nunito', sans-serif;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus {
  position: fixed; left: 50%; top: 0;
  transform: translateX(-50%);
  width: auto; height: auto;
}

/* ══════════════════════════════
   CU DRAGOSTE SECTION
══════════════════════════════ */
.dragoste-section {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  background: var(--green); border-radius: var(--radius);
  padding: 32px 40px; margin-bottom: 24px;
  position: relative; overflow: hidden;
  animation: fadeUp .4s .16s ease both;
}
.dragoste-pet {
  flex-shrink: 0; height: 140px; width: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
.dragoste-dog { animation: petFloat 3s ease-in-out infinite }
.dragoste-cat { animation: petFloat 3s ease-in-out .5s infinite }
.dragoste-text {
  text-align: center; color: #fff;
  font-family: 'Nunito', sans-serif;
}
.dragoste-sub {
  display: block; font-size: clamp(16px, 2vw, 22px);
  font-weight: 600; opacity: .9; letter-spacing: .02em;
}
.dragoste-text strong {
  display: block; font-size: clamp(22px, 3vw, 36px);
  font-weight: 900; line-height: 1.2; letter-spacing: -.01em;
}

@keyframes petFloat {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-10px) }
}

@media (max-width: 640px) {
  .dragoste-section { flex-direction: column; gap: 16px; padding: 24px 20px }
  .dragoste-pet { height: 100px }
}

/* ══════════════════════════════
   HOME — BRANDS GRID
══════════════════════════════ */
.hp-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.hp-brand {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hp-brand:hover {
  border-color: var(--orange-lt);
  box-shadow: 0 4px 12px rgba(229,118,37,.1);
}
.hp-brand img {
  max-width: 100%; height: 28px; object-fit: contain;
  filter: grayscale(100%) opacity(.5);
  transition: filter var(--transition);
}
.hp-brand:hover img { filter: grayscale(0) opacity(1) }

/* ══════════════════════════════
   HOME — REVIEWS GRID
══════════════════════════════ */
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hp-review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}
.hp-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.hp-review-stars {
  font-size: 15px; color: #f5a623;
  margin-bottom: 10px; letter-spacing: 2px;
}
.hp-review p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--muted);
  line-height: 1.65; margin-bottom: 14px;
  font-style: italic;
}
.hp-review-author {
  display: flex; align-items: center; gap: 10px;
}
.hp-review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 11px; font-weight: 800; color: var(--orange);
  flex-shrink: 0;
}
.hp-review-author strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 12.5px; font-weight: 700; color: var(--text);
}
.hp-review-author span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: var(--faint);
}

/* ══════════════════════════════
   HOME — NEWSLETTER
══════════════════════════════ */
.hp-newsletter { margin: 4px 0 }
.hp-newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}
.hp-newsletter-text h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); margin-bottom: 4px;
}
.hp-newsletter-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.hp-newsletter-form {
  display: flex; gap: 0; flex-shrink: 0;
}
.hp-newsletter-form input {
  height: 42px; width: 240px; padding: 0 16px;
  border: 1.5px solid var(--border); border-right: none;
  border-radius: 50px 0 0 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--text);
  background: var(--bg); outline: none;
  transition: border-color var(--transition);
}
.hp-newsletter-form input:focus { border-color: var(--orange) }
.hp-newsletter-form input::placeholder { color: var(--faint) }
.hp-newsletter-form button {
  height: 42px; padding: 0 22px;
  background: var(--orange); color: #fff; border: none;
  border-radius: 0 50px 50px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background var(--transition);
  white-space: nowrap;
}
.hp-newsletter-form button:hover { background: var(--orange-dk) }

/* ══════════════════════════════
   HOME — CTA FINAL
══════════════════════════════ */
.hp-cta {
  text-align: center;
  padding: 48px 20px;
  background: linear-gradient(135deg, var(--orange-pale) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.hp-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 24px; font-weight: 900;
  color: var(--text); margin-bottom: 8px;
}
.hp-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--muted);
  margin-bottom: 22px; line-height: 1.6;
}
.hp-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.hp-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 46px; padding: 0 28px; border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700;
  transition: all var(--transition);
}
.hp-cta-btn.primary {
  background: var(--orange); color: #fff; border: none;
}
.hp-cta-btn.primary:hover { background: var(--orange-dk); transform: translateY(-1px) }
.hp-cta-btn.outline {
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border);
}
.hp-cta-btn.outline:hover { border-color: var(--orange); color: var(--orange) }
.hp-cta-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.hp-cta-trust span {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.hp-cta-trust i { color: var(--green); font-size: 11px }

/* HOME sections responsive */
@media (max-width: 1100px) {
  .hp-brands-grid { grid-template-columns: repeat(3, 1fr) }
}
@media (max-width: 860px) {
  .hp-reviews-grid { grid-template-columns: 1fr }
  .hp-newsletter-inner { flex-direction: column; text-align: center }
  .hp-newsletter-form { width: 100%; max-width: 400px }
  .hp-newsletter-form input { flex: 1; width: auto }
}
@media (max-width: 580px) {
  .hp-brands-grid { grid-template-columns: repeat(2, 1fr) }
  .hp-newsletter-inner { padding: 22px 18px }
  .hp-newsletter-text h2 { font-size: 18px }
  .hp-newsletter-form { flex-direction: column }
  .hp-newsletter-form input { border-right: 1.5px solid var(--border); border-radius: 50px; width: 100% }
  .hp-newsletter-form input:focus { border-color: var(--orange) }
  .hp-newsletter-form button { border-radius: 50px }
  .hp-cta { padding: 32px 16px }
  .hp-cta h2 { font-size: 20px }
  .hp-cta-trust { flex-direction: column; gap: 8px }
}
@media (max-width: 400px) {
  .hp-brands-grid { grid-template-columns: 1fr }
}

/* ══════════════════════════════
   PREFERS-REDUCED-MOTION
══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ══════════════════════════════
   PRINT STYLES
══════════════════════════════ */
@media print {
  .topbar, .header, .mobile-nav, .mobile-overlay,
  .ft, .cart-dropdown, .skip-link,
  .hero-ctas, .pc-add, .pc-wish, .search-wrap,
  .hdr-right, .hamburger, .mn-body { display: none !important }

  body { background: #fff; color: #000; font-size: 12pt }
  .page { padding: 0; max-width: 100% }
  a { color: #000; text-decoration: underline }
  img { max-width: 100% !important }

  .product-grid, .slider-track { display: block }
  .pc { break-inside: avoid; page-break-inside: avoid; border: 1px solid #ddd; margin-bottom: 8pt }
}