/* =====================================================================
   NOLI — fictional premium pet-store demo
   Warm habitat palette + soft retail surfaces + aquatic contrast.
   All product artwork is code-drawn and intentionally non-commercial.
   ===================================================================== */

:root {
  --paper: #f7efe4;
  --paper-deep: #ecdfd1;
  --surface: #fffaf3;
  --surface-solid: #fffdf9;
  --ink: #362335;
  --ink-soft: #584451;
  --muted: #76666f;
  --line: #ddcec6;
  --line-soft: rgba(54, 35, 53, 0.1);
  --papaya: #ef704f;
  --papaya-deep: #c94c35;
  --papaya-soft: #f8c3ad;
  --plum: #4d2947;
  --plum-deep: #2b182b;
  --lilac: #c9aed1;
  --aqua: #8edbd5;
  --teal: #16776f;
  --teal-deep: #0d4f51;
  --blue: #377eb5;
  --citron: #e7df79;
  --oat: #e9d3b5;
  --rose: #eab3ae;
  --cedar: #a56846;
  --white: #fffdf9;
  --shadow-sm: 0 10px 30px rgba(61, 40, 54, 0.09);
  --shadow-md: 0 24px 64px rgba(61, 40, 54, 0.14);
  --shadow-lg: 0 44px 110px rgba(44, 28, 41, 0.2);
  --shell: 1280px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 64px;
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Hebrew", sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --paper: #211822;
  --paper-deep: #2b2028;
  --surface: #2b202b;
  --surface-solid: #332634;
  --ink: #fff5ed;
  --ink-soft: #e6d7df;
  --muted: #bfaeba;
  --line: #4b3949;
  --line-soft: rgba(255, 245, 237, 0.1);
  --papaya: #ff8768;
  --papaya-deep: #ff9d83;
  --papaya-soft: #733f3c;
  --plum: #d4b3d2;
  --plum-deep: #140d16;
  --lilac: #8c7093;
  --aqua: #64c9c5;
  --teal: #56b7ae;
  --teal-deep: #082f36;
  --blue: #68a9d8;
  --citron: #e9e58b;
  --oat: #8d6d58;
  --rose: #9c646a;
  --cedar: #8f5d43;
  --white: #fff9f2;
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 28px 76px rgba(0, 0, 0, 0.33);
  --shadow-lg: 0 48px 120px rgba(0, 0, 0, 0.46);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 8% 18%, color-mix(in srgb, var(--papaya) 8%, transparent), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:not(:disabled), [href] { cursor: pointer; }
img { display: block; max-width: 100%; }

::selection { background: var(--citron); color: #302131; }

:focus-visible {
  outline: 3px solid var(--papaya);
  outline-offset: 4px;
  border-radius: 8px;
}

.shell { width: min(calc(100% - 2rem), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section-space); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1 { margin-bottom: 1.45rem; font-size: clamp(3rem, 7vw, 6.9rem); font-weight: 830; letter-spacing: -0.065em; line-height: 0.91; }
h2 { margin-bottom: 1.05rem; font-size: clamp(2.35rem, 5vw, 4.7rem); font-weight: 810; letter-spacing: -0.055em; line-height: 0.98; }
h3 { font-size: 1.2rem; line-height: 1.2; }
[dir="rtl"] h1, [dir="rtl"] h2 { letter-spacing: -0.045em; }

.skip-link {
  position: fixed;
  top: 0;
  inset-inline-start: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0 0 12px 12px;
  background: var(--plum-deep);
  color: var(--white);
  font-weight: 750;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.demo-ribbon {
  position: relative;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 34px;
  padding: 0.35rem 1rem;
  background: var(--plum-deep);
  color: #f9eaf5;
  font-size: 0.72rem;
  font-weight: 670;
  text-align: center;
}
.demo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--citron); box-shadow: 0 0 0 4px rgba(231, 223, 121, 0.12); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--papaya-deep);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}
[dir="ltr"] .eyebrow { letter-spacing: 0.1em; text-transform: uppercase; }
.eyebrow > span:first-child { color: var(--papaya); font-size: 0.5rem; }

.section-heading { max-width: 760px; }
.section-heading > p:last-child { max-width: 640px; color: var(--muted); font-size: 1.03rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p:last-child { margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(18px) saturate(130%);
}
.header-inner { display: flex; align-items: center; min-height: 78px; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.72rem; flex: none; }
.brand-mark { position: relative; display: block; width: 43px; height: 40px; transform: rotate(-5deg); }
.brand-mark i, .brand-mark b { position: absolute; display: block; background: var(--papaya); }
.brand-mark i { width: 10px; height: 13px; border-radius: 50%; }
.brand-mark i:nth-child(1) { top: 0; left: 5px; transform: rotate(-20deg); }
.brand-mark i:nth-child(2) { top: 0; right: 5px; transform: rotate(20deg); }
.brand-mark i:nth-child(3) { top: 11px; left: 0; transform: rotate(-35deg); }
.brand-mark i:nth-child(4) { top: 11px; right: 0; transform: rotate(35deg); }
.brand-mark b { left: 10px; bottom: 0; width: 23px; height: 22px; border-radius: 50% 50% 45% 45%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--ink); font-size: 1.03rem; font-weight: 880; letter-spacing: 0.18em; }
.brand-copy small { margin-top: 0.25rem; color: var(--muted); font-size: 0.58rem; font-weight: 650; white-space: nowrap; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 2vw, 2rem); margin-inline: auto; }
.desktop-nav a { position: relative; color: var(--muted); font-size: 0.82rem; font-weight: 700; white-space: nowrap; transition: color 0.2s ease; }
.desktop-nav a::after { position: absolute; inset-inline: 0; bottom: -10px; height: 5px; border-radius: 50%; background: var(--papaya); content: ""; transform: scaleX(0); transition: transform 0.22s ease; }
.desktop-nav a:hover { color: var(--ink); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.header-whatsapp { min-height: 42px; padding: 0.55rem 1rem; font-size: 0.72rem; }
.language-toggle, .theme-toggle, .cart-button, .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; }
.language-toggle:hover, .theme-toggle:hover, .cart-button:hover, .menu-toggle:hover { border-color: var(--papaya); transform: translateY(-2px); }
.language-toggle { gap: 0.25rem; padding-inline: 0.8rem; color: var(--muted); font-size: 0.67rem; font-weight: 720; }
.language-toggle .is-active { color: var(--ink); font-weight: 850; }
.language-toggle i { font-style: normal; opacity: 0.35; }

.theme-toggle { position: relative; }
.sun { width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 50%; box-shadow: 0 -7px 0 -6px currentColor, 0 7px 0 -6px currentColor, 7px 0 0 -6px currentColor, -7px 0 0 -6px currentColor; }
.moon { display: none; width: 16px; height: 16px; border-right: 4px solid currentColor; border-radius: 50%; transform: rotate(-24deg); }
[data-theme="dark"] .sun { display: none; }
[data-theme="dark"] .moon { display: block; }

.cart-button { position: relative; }
.bag-icon { position: relative; width: 16px; height: 15px; border: 2px solid currentColor; border-radius: 3px 3px 5px 5px; }
.bag-icon::before { position: absolute; top: -7px; left: 3px; width: 6px; height: 7px; border: 2px solid currentColor; border-bottom: 0; border-radius: 6px 6px 0 0; content: ""; }
.cart-button b { position: absolute; top: -5px; right: -3px; display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--papaya); color: #fff; font-size: 0.65rem; box-shadow: 0 4px 10px rgba(201, 76, 53, 0.28); }

.menu-toggle { display: none; flex-direction: column; gap: 6px; }
.menu-toggle span { width: 17px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.25s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; inset-inline: 0; height: calc(100svh - 112px); overflow-y: auto; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-12px); pointer-events: none; transition: 0.25s ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mobile-nav { display: grid; padding-block: 1rem 2rem; }
.mobile-nav a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: clamp(1.45rem, 6vw, 2rem); font-weight: 780; }
.mobile-nav .button { width: 100%; margin-top: 1.1rem; border-bottom: 0; color: var(--white); font-size: 0.9rem; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-large { min-height: 58px; padding-inline: 1.7rem; }
.button-primary { background: var(--plum); color: var(--white); box-shadow: 0 14px 34px rgba(77, 41, 71, 0.22); }
[data-theme="dark"] .button-primary { background: var(--papaya); color: #261822; }
.button-primary:hover { box-shadow: 0 20px 44px rgba(77, 41, 71, 0.3); }
.button-soft { border-color: color-mix(in srgb, var(--papaya) 40%, var(--line)); background: color-mix(in srgb, var(--papaya-soft) 55%, var(--surface)); color: var(--ink); }
.button-light { background: var(--white); color: #382333; box-shadow: var(--shadow-sm); }

/* Hero */
.hero { position: relative; min-height: 760px; overflow: hidden; padding: clamp(5rem, 8vw, 7rem) 0 clamp(4rem, 7vw, 6rem); }
.hero::before { position: absolute; top: 12%; inset-inline-end: -8%; width: 34vw; height: 34vw; border: 1px dashed color-mix(in srgb, var(--papaya) 42%, transparent); border-radius: 50%; content: ""; opacity: 0.45; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero-copy { position: relative; z-index: 3; }
.hero-copy h1 { max-width: 700px; }
.hero-text { max-width: 620px; margin-bottom: 2rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.26rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-note { display: flex; align-items: center; gap: 0.55rem; margin: 1.35rem 0 0; color: var(--muted); font-size: 0.8rem; font-weight: 670; }
.hero-note span:first-child { color: var(--papaya); }

.companion-stage { position: relative; min-height: 610px; border-radius: 48% 40% 44% 36%; background: linear-gradient(145deg, #f5b498 0%, #ea8065 55%, #cf5f50 100%); box-shadow: var(--shadow-lg); isolation: isolate; }
[data-theme="dark"] .companion-stage { background: linear-gradient(145deg, #77494a 0%, #9b5048 55%, #5f3942 100%); }
.companion-stage::before { position: absolute; inset: 7%; z-index: -1; border: 1px solid rgba(255,255,255,0.35); border-radius: inherit; content: ""; }
.stage-orbit { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.24); filter: blur(0.2px); }
.orbit-one { top: 11%; left: 11%; width: 145px; height: 145px; }
.orbit-two { right: 8%; bottom: 9%; width: 210px; height: 210px; background: rgba(231,223,121,0.36); }

.pet { position: absolute; z-index: 3; }
.pet-face { position: absolute; overflow: visible; }
.pet-dog { right: 7%; bottom: 5%; width: 300px; height: 405px; }
.dog-body { position: absolute; right: 26px; bottom: 0; width: 244px; height: 240px; border-radius: 48% 48% 38% 42%; background: #bf7444; box-shadow: inset 28px -18px 0 rgba(115,54,37,0.14); }
.pet-dog .pet-face { top: 26px; right: 44px; z-index: 3; width: 215px; height: 198px; border-radius: 47% 52% 44% 46%; background: #cf8751; box-shadow: inset 18px -10px 0 rgba(134,69,42,0.12); }
.dog-ear { position: absolute; z-index: 1; top: 12px; width: 88px; height: 148px; border-radius: 50% 50% 70% 55%; background: #7e4935; }
.pet-dog .ear-one { right: 8px; transform: rotate(-22deg); }
.pet-dog .ear-two { left: 8px; transform: rotate(22deg); }
.eye { position: absolute; top: 69px; width: 29px; height: 33px; overflow: hidden; border-radius: 50%; background: #fff8eb; box-shadow: inset 0 -3px 0 rgba(62,35,49,0.08); }
.eye-one { left: 48px; }
.eye-two { right: 48px; }
.eye i { position: absolute; left: 9px; top: 10px; width: 12px; height: 14px; border-radius: 50%; background: #2d1d2b; transform: translate(var(--look-x, 0), var(--look-y, 0)); transition: transform 0.09s linear; }
.eye i::after { position: absolute; top: 2px; left: 2px; width: 3px; height: 3px; border-radius: 50%; background: #fff; content: ""; }
.dog-muzzle { position: absolute; left: 50%; top: 112px; width: 104px; height: 68px; border-radius: 48%; background: #e7b07b; transform: translateX(-50%); }
.dog-muzzle i { position: absolute; left: 50%; top: 5px; width: 29px; height: 22px; border-radius: 50% 50% 55% 55%; background: #35222f; transform: translateX(-50%); }
.dog-muzzle b { position: absolute; left: 50%; top: 30px; width: 46px; height: 18px; border-bottom: 3px solid #563246; border-radius: 50%; transform: translateX(-50%); }
.dog-tail { position: absolute; right: -32px; bottom: 76px; z-index: -1; width: 112px; height: 54px; border: 22px solid #ad653f; border-left: 0; border-bottom: 0; border-radius: 0 80% 0 0; transform-origin: 10% 80%; }
.companion-stage:hover .dog-tail { animation: tailWag 0.34s ease-in-out 3 alternate; }

.pet-cat { left: 4%; bottom: 7%; width: 235px; height: 325px; }
.cat-body { position: absolute; left: 24px; bottom: 0; width: 185px; height: 192px; border-radius: 50% 50% 42% 42%; background: #e6cab0; box-shadow: inset -22px -10px 0 rgba(95,62,67,0.08); }
.pet-cat .pet-face { top: 26px; left: 28px; z-index: 3; width: 180px; height: 165px; border-radius: 47% 47% 54% 54%; background: #eedac4; }
.cat-ear { position: absolute; top: 0; z-index: 1; width: 82px; height: 92px; background: #e4c2a4; clip-path: polygon(50% 0, 100% 100%, 0 84%); }
.pet-cat .ear-one { left: 24px; transform: rotate(-10deg); }
.pet-cat .ear-two { right: 8px; transform: rotate(10deg); }
.pet-cat .eye { top: 62px; width: 31px; height: 28px; background: #c9de96; }
.pet-cat .eye-one { left: 38px; }
.pet-cat .eye-two { right: 38px; }
.pet-cat .eye i { top: 7px; width: 10px; height: 15px; }
.cat-nose { position: absolute; left: 50%; top: 105px; width: 15px; height: 11px; border-radius: 50% 50% 60% 60%; background: #a95f6d; transform: translateX(-50%); }
.whisker { position: absolute; top: 119px; width: 54px; height: 24px; border-top: 1.5px solid #7a5b64; }
.whisker::before { position: absolute; top: 7px; width: 50px; border-top: 1.5px solid #7a5b64; content: ""; }
.whisker-one { left: -5px; transform: rotate(5deg); }
.whisker-two { right: -5px; transform: rotate(-5deg); }

.hero-pack { position: absolute; z-index: 5; display: flex; flex-direction: column; justify-content: space-between; width: 132px; height: 182px; padding: 1rem; border-radius: 20px 20px 28px 28px; color: #392437; box-shadow: 0 24px 45px rgba(65,39,49,0.2); transform: rotate(-6deg); }
.hero-pack::before { position: absolute; inset: 9px 8px auto; height: 3px; border-radius: 5px; background: rgba(55,32,48,0.2); content: ""; }
.hero-pack small { margin-top: 0.5rem; font-size: 0.6rem; font-weight: 900; letter-spacing: 0.14em; }
.hero-pack b { max-width: 80px; font-size: 1rem; line-height: 1.05; }
.hero-pack i { width: 46px; height: 46px; align-self: flex-end; border-radius: 50% 50% 42% 50%; }
.pack-dog { left: 7%; top: 9%; background: #f9eee0; }
.pack-dog i { background: var(--papaya); }
.pack-cat { right: -4%; top: 17%; background: #d7c2dc; transform: rotate(7deg); }
.pack-cat i { background: var(--plum); }
.toy-ball { position: absolute; left: 37%; bottom: 6%; z-index: 6; width: 64px; height: 64px; overflow: hidden; border-radius: 50%; background: var(--citron); box-shadow: 0 12px 24px rgba(68,43,51,0.18); }
.toy-ball i { position: absolute; inset: -20% 40%; width: 14px; background: var(--papaya); transform: rotate(35deg); }

@keyframes tailWag { to { transform: rotate(18deg) translateY(-3px); } }

/* Categories */
.categories-section { position: relative; background: var(--surface); }
.category-rail { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.8rem; margin-top: 3.2rem; }
.category-card { position: relative; min-width: 0; min-height: 235px; padding: 1.25rem; overflow: hidden; border: 1px solid var(--line); border-radius: 80px 80px var(--radius-md) var(--radius-md); background: var(--surface-solid); text-align: start; box-shadow: var(--shadow-sm); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.25s ease, box-shadow 0.25s ease; }
.category-card:hover { z-index: 2; border-color: var(--papaya); transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow-md); }
[dir="ltr"] .category-card:hover { transform: translateY(-10px) rotate(1deg); }
.category-symbol { position: relative; display: grid; place-items: center; width: 92px; height: 92px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--symbol-bg, var(--papaya-soft)); color: var(--symbol-color, var(--plum)); }
.category-card:nth-child(2) .category-symbol { --symbol-bg: color-mix(in srgb, var(--lilac) 70%, var(--surface)); }
.category-card:nth-child(3) .category-symbol { --symbol-bg: color-mix(in srgb, var(--aqua) 65%, var(--surface)); --symbol-color: var(--teal-deep); }
.category-card:nth-child(4) .category-symbol { --symbol-bg: color-mix(in srgb, var(--citron) 65%, var(--surface)); }
.category-card:nth-child(5) .category-symbol { --symbol-bg: color-mix(in srgb, var(--oat) 70%, var(--surface)); }
.category-card:nth-child(6) .category-symbol { --symbol-bg: color-mix(in srgb, var(--blue) 25%, var(--surface)); --symbol-color: var(--blue); }
.category-card h3 { margin-bottom: 0.35rem; text-align: center; }
.category-card p { margin: 0; color: var(--muted); font-size: 0.78rem; line-height: 1.45; text-align: center; }
.category-card small { position: absolute; top: 1rem; inset-inline-end: 1rem; color: var(--muted); font-size: 0.65rem; font-weight: 750; }

.symbol-dog::before, .symbol-cat::before { width: 44px; height: 42px; border: 3px solid currentColor; border-radius: 48% 48% 55% 55%; content: ""; }
.symbol-dog::after { position: absolute; top: 22px; width: 59px; height: 29px; border-inline: 13px solid currentColor; border-radius: 45%; content: ""; }
.symbol-cat::after { position: absolute; top: 18px; width: 45px; height: 28px; background: currentColor; clip-path: polygon(0 0, 36% 30%, 64% 30%, 100% 0, 88% 100%, 12% 100%); content: ""; opacity: 0.22; }
.symbol-fish::before { width: 50px; height: 33px; border: 3px solid currentColor; border-radius: 55% 45% 45% 55%; content: ""; }
.symbol-fish::after { position: absolute; right: 14px; width: 23px; height: 30px; border: 3px solid currentColor; clip-path: polygon(0 50%, 100% 0, 100% 100%); content: ""; }
.symbol-small::before { width: 45px; height: 45px; border: 3px solid currentColor; border-radius: 50%; content: ""; }
.symbol-small::after { position: absolute; top: 15px; width: 52px; height: 25px; border-left: 10px solid currentColor; border-right: 10px solid currentColor; border-radius: 50%; content: ""; }
.symbol-home::before { width: 48px; height: 39px; margin-top: 15px; border: 3px solid currentColor; border-top: 0; border-radius: 4px 4px 12px 12px; content: ""; }
.symbol-home::after { position: absolute; top: 17px; width: 42px; height: 42px; border-top: 3px solid currentColor; border-left: 3px solid currentColor; transform: rotate(45deg); content: ""; }
.symbol-loop::before { width: 49px; height: 49px; border: 4px solid currentColor; border-radius: 50%; content: ""; }
.symbol-loop::after { position: absolute; right: 18px; bottom: 15px; width: 17px; height: 9px; border: 3px solid currentColor; border-radius: 5px; transform: rotate(-30deg); content: ""; }

/* Product discovery */
.products-section { background: var(--paper); }
.products-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.product-count { display: flex; align-items: baseline; gap: 0.45rem; flex: none; padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 0.75rem; }
.product-count strong { color: var(--ink); font-size: 1.4rem; }
.filter-list { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 2.5rem 0; }
.filter-button { min-height: 42px; padding: 0.55rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 0.78rem; font-weight: 720; transition: 0.2s ease; }
.filter-button:hover, .filter-button[aria-pressed="true"] { border-color: var(--plum); background: var(--plum); color: var(--white); transform: translateY(-2px); }
[data-theme="dark"] .filter-button:hover, [data-theme="dark"] .filter-button[aria-pressed="true"] { border-color: var(--papaya); background: var(--papaya); color: #2b1827; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.product-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-solid); box-shadow: var(--shadow-sm); transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.28s ease; }
.product-card:hover { z-index: 2; border-color: color-mix(in srgb, var(--papaya) 65%, var(--line)); transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-art { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 0.9; overflow: hidden; background: radial-gradient(circle at 30% 22%, color-mix(in srgb, var(--art-bg, #f2d8c9) 55%, white) 0%, var(--art-bg, #f2d8c9) 62%, color-mix(in srgb, var(--art-bg, #f2d8c9) 78%, black) 100%); }
.product-art::before { position: absolute; inset: 12% 10%; border: 1px solid rgba(255,255,255,0.46); border-radius: 50%; content: ""; }
.tone-papaya { --art-bg: #f1b197; --art-ink: #77352d; --art-accent: #fff0dc; }
.tone-citron { --art-bg: #dfda7d; --art-ink: #4a3e2f; --art-accent: #fff7d2; }
.tone-plum { --art-bg: #b89bb9; --art-ink: #40253e; --art-accent: #f8e8ee; }
.tone-lilac { --art-bg: #d4bdd9; --art-ink: #563b59; --art-accent: #fff3ef; }
.tone-oat { --art-bg: #dcc4a4; --art-ink: #624537; --art-accent: #fff4df; }
.tone-cedar { --art-bg: #b97851; --art-ink: #4d2b21; --art-accent: #f8d3a8; }
.tone-rose { --art-bg: #dca8a4; --art-ink: #663a48; --art-accent: #ffe6df; }
.tone-teal { --art-bg: #7bc7be; --art-ink: #144e51; --art-accent: #e5ffed; }
.tone-blue { --art-bg: #8dbbd5; --art-ink: #244c66; --art-accent: #eaf8ff; }
.tone-aqua { --art-bg: #66bfc3; --art-ink: #123f4b; --art-accent: #d9fbf3; }

.art-object { position: relative; z-index: 2; display: flex; flex-direction: column; color: var(--art-ink); filter: drop-shadow(0 16px 16px rgba(67,40,51,0.15)) drop-shadow(0 2px 4px rgba(67,40,51,0.12)); }
.art-object small { font-size: 0.48rem; font-weight: 900; letter-spacing: 0.16em; }
.art-object strong { font-size: 0.7rem; font-weight: 850; line-height: 1.08; }
.art-bag-dog .art-object, .art-bag-puppy .art-object, .art-bag-cat .art-object { width: 44%; height: 67%; padding: 1rem 0.75rem; border-radius: 17px 17px 26px 26px; background: var(--art-accent); transform: rotate(-4deg); }
.art-bag-puppy .art-object { transform: rotate(4deg); }
.art-bag-cat .art-object { border-radius: 24px 16px 25px 20px; }
.art-bag-dog .art-object::before, .art-bag-puppy .art-object::before, .art-bag-cat .art-object::before { position: absolute; top: 7px; inset-inline: 8px; height: 3px; border-radius: 2px; background: var(--art-ink); content: ""; opacity: 0.18; }
.art-bag-dog .art-object i, .art-bag-puppy .art-object i { position: absolute; right: 14%; bottom: 12%; width: 52%; height: 38%; border-radius: 50% 50% 45% 45%; background: var(--art-ink); opacity: 0.9; }
.art-bag-dog .art-object i::after, .art-bag-puppy .art-object i::after { position: absolute; left: -19%; top: 6%; width: 46%; height: 40%; border-radius: 50% 30% 50% 50%; background: var(--art-ink); content: ""; }
.art-bag-cat .art-object i { position: absolute; right: 18%; bottom: 10%; width: 58%; height: 42%; border-radius: 50% 50% 44% 44%; background: var(--art-ink); }
.art-bag-cat .art-object i::before, .art-bag-cat .art-object i::after { position: absolute; top: -18%; width: 42%; height: 40%; background: var(--art-ink); clip-path: polygon(50% 0,100% 100%,0 82%); content: ""; }
.art-bag-cat .art-object i::before { left: 4%; }.art-bag-cat .art-object i::after { right: 4%; }

.art-toy-moon .art-object { width: 46%; aspect-ratio: 1; border: 24px solid var(--art-ink); border-top-color: transparent; border-radius: 50%; transform: rotate(-28deg); }
.art-toy-moon .art-object::after { position: absolute; right: -34px; bottom: -22px; width: 42px; height: 42px; border-radius: 50%; background: var(--art-accent); box-shadow: inset 0 0 0 6px var(--art-ink); content: ""; }
.art-bed-cloud .art-object { width: 65%; height: 42%; margin-top: 15%; border: 14px solid var(--art-accent); border-radius: 50%; background: var(--art-ink); box-shadow: 0 11px 0 color-mix(in srgb, var(--art-ink) 75%, black); }
.art-bed-cloud .art-object::before { position: absolute; inset: 13%; border-radius: 50%; background: var(--art-accent); content: ""; }
.art-house-yard .art-object { width: 60%; height: 50%; margin-top: 12%; border-radius: 4px 4px 12px 12px; background: var(--art-accent); }
.art-house-yard .art-object::before { position: absolute; left: -12%; top: -32%; width: 124%; height: 55%; background: var(--art-ink); clip-path: polygon(50% 0,100% 100%,0 100%); content: ""; }
.art-house-yard .art-object::after { position: absolute; left: 34%; bottom: 0; width: 33%; height: 51%; border-radius: 50% 50% 0 0; background: var(--art-ink); content: ""; }
.art-house-cat .art-object { width: 58%; aspect-ratio: 1; border-radius: 48% 48% 22% 22%; background: var(--art-accent); }
.art-house-cat .art-object::before { position: absolute; left: 23%; bottom: 0; width: 54%; height: 58%; border-radius: 50% 50% 0 0; background: var(--art-ink); content: ""; }
.art-house-cat .art-object::after { position: absolute; right: -14%; top: -11%; width: 35%; height: 35%; border-radius: 50%; background: var(--art-ink); content: ""; opacity: 0.75; }
.art-cat-tower .art-object { width: 58%; height: 68%; padding: 0.65rem; }
.art-cat-tower .art-object::before { position: absolute; left: 47%; top: 10%; width: 9%; height: 88%; border-radius: 999px; background: repeating-linear-gradient(0deg, var(--art-ink) 0 5px, var(--art-accent) 6px 10px); content: ""; }
.art-cat-tower .art-object::after { position: absolute; left: 4%; top: 24%; width: 62%; height: 12%; border-radius: 999px; background: var(--art-ink); box-shadow: 58px 58px 0 -3px var(--art-ink), 4px 127px 0 3px var(--art-ink); content: ""; }
.art-cat-tower .art-object i { position: absolute; right: 4%; bottom: 8%; width: 43%; height: 39%; border-radius: 48% 48% 20% 20%; background: var(--art-accent); box-shadow: inset 0 -9px 0 color-mix(in srgb, var(--art-ink) 22%, transparent); }
.art-cat-tower .art-object small, .art-cat-tower .art-object strong { position: relative; z-index: 3; display: block; width: 46%; }
.art-leash-loop .art-object { width: 50%; aspect-ratio: 1; border: 18px solid var(--art-ink); border-radius: 50%; }
.art-leash-loop .art-object::after { position: absolute; right: -25%; bottom: -12%; width: 38%; height: 22%; border: 8px solid var(--art-accent); border-radius: 8px; transform: rotate(-28deg); content: ""; }
.art-bowl-drop .art-object { width: 63%; height: 34%; margin-top: 14%; border-radius: 8px 8px 50% 50%; background: var(--art-ink); }
.art-bowl-drop .art-object::before { position: absolute; top: -15px; inset-inline: 5%; height: 22px; border: 5px solid var(--art-accent); border-radius: 50%; background: var(--art-ink); content: ""; }
.art-brush-soft .art-object { width: 37%; height: 59%; border-radius: 40% 40% 16px 16px; background: var(--art-ink); transform: rotate(21deg); }
.art-brush-soft .art-object::before { position: absolute; left: 12%; top: 8%; width: 76%; height: 53%; border-radius: 40%; background: var(--art-accent); content: ""; }
.art-brush-soft .art-object::after { position: absolute; left: 35%; bottom: -27%; width: 30%; height: 36%; border-radius: 0 0 10px 10px; background: var(--art-ink); content: ""; }
.art-carrier-pocket .art-object { width: 62%; height: 52%; margin-top: 13%; border: 8px solid var(--art-ink); border-radius: 40px 40px 18px 18px; background: var(--art-accent); }
.art-carrier-pocket .art-object::before { position: absolute; left: 23%; top: -41%; width: 54%; height: 48%; border: 8px solid var(--art-ink); border-bottom: 0; border-radius: 30px 30px 0 0; content: ""; }
.art-carrier-pocket .art-object::after { position: absolute; inset: 18% 14%; border-radius: 50%; background: repeating-linear-gradient(90deg, transparent 0 7px, var(--art-ink) 8px 10px); content: ""; opacity: 0.7; }
.art-box-meadow .art-object { width: 45%; height: 62%; padding: 0.9rem; border-radius: 16px; background: var(--art-accent); transform: rotate(-3deg); }
.art-box-meadow .art-object::after { position: absolute; left: 14%; right: 14%; bottom: 10%; height: 39%; border-radius: 50% 50% 20% 20%; background: repeating-linear-gradient(70deg, var(--art-ink) 0 4px, transparent 5px 10px); content: ""; opacity: 0.8; }
.art-tank-blue .art-object { width: 70%; height: 57%; margin-top: 5%; overflow: hidden; border: 8px solid var(--art-ink); border-radius: 9px 9px 22px 22px; background: linear-gradient(#bff4ee, #3d9db3); }
.art-tank-blue .art-object::before { position: absolute; left: 15%; top: 34%; width: 30%; height: 18%; border-radius: 50% 45% 45% 50%; background: var(--art-accent); content: ""; box-shadow: 62px 39px 0 -3px var(--art-ink); }
.art-tank-blue .art-object::after { position: absolute; inset-inline: 0; bottom: 0; height: 22%; background: linear-gradient(18deg, #275d62 0 20%, transparent 21%), linear-gradient(-16deg, #326f68 0 24%, transparent 25%); content: ""; }
.art-filter-clear .art-object { width: 41%; height: 63%; padding: 0.8rem; border-radius: 12px 12px 25px 25px; background: var(--art-ink); }
.art-filter-clear .art-object::before { position: absolute; inset: 20% 17%; border-radius: 8px; background: repeating-linear-gradient(0deg, var(--art-accent) 0 5px, transparent 6px 11px); content: ""; }
.art-filter-clear .art-object::after { position: absolute; top: -13%; right: -24%; width: 42%; height: 49%; border-top: 8px solid var(--art-ink); border-right: 8px solid var(--art-ink); border-radius: 0 16px 0 0; content: ""; }
.art-tin-fish .art-object { width: 45%; height: 59%; padding: 1rem 0.8rem; border-radius: 22px; background: var(--art-accent); box-shadow: inset 0 8px 0 color-mix(in srgb, var(--art-ink) 45%, transparent); }
.art-tin-fish .art-object::after { position: absolute; left: 21%; bottom: 14%; width: 58%; height: 25%; border-radius: 50% 42% 42% 50%; background: var(--art-ink); clip-path: polygon(0 50%,22% 0,22% 20%,100% 15%,100% 85%,22% 80%,22% 100%); content: ""; }
.art-tube-light .art-object { width: 72%; height: 19%; border: 8px solid var(--art-ink); border-radius: 999px; background: var(--art-accent); box-shadow: 0 26px 36px color-mix(in srgb, var(--art-accent) 72%, transparent); }
.art-tube-light .art-object::after { position: absolute; left: 6%; right: 6%; bottom: -48px; height: 38px; background: linear-gradient(to bottom, color-mix(in srgb, var(--art-accent) 70%, transparent), transparent); clip-path: polygon(10% 0,90% 0,100% 100%,0 100%); content: ""; }
.art-stones-river .art-object { width: 72%; height: 43%; margin-top: 16%; }
.art-stones-river .art-object::before, .art-stones-river .art-object::after { position: absolute; bottom: 0; border-radius: 50%; background: var(--art-ink); content: ""; }
.art-stones-river .art-object::before { left: 2%; width: 58%; height: 72%; box-shadow: 76px 4px 0 -4px var(--art-accent), 118px 24px 0 -13px var(--art-ink); }
.art-stones-river .art-object::after { left: 34%; bottom: 8%; width: 44%; height: 58%; background: color-mix(in srgb, var(--art-ink) 62%, var(--art-accent)); }
.art-care-mist .art-object { width: 32%; height: 61%; padding: 1rem 0.45rem; border-radius: 12px 12px 22px 22px; background: var(--art-accent); border: 6px solid var(--art-ink); }
.art-care-mist .art-object::before { position: absolute; left: 22%; top: -20%; width: 56%; height: 20%; border-radius: 5px 5px 0 0; background: var(--art-ink); content: ""; }
.art-care-mist .art-object::after { position: absolute; right: -42%; top: -16%; width: 67%; height: 9%; border-radius: 8px; background: var(--art-ink); content: ""; }

.favorite-button { position: absolute; top: 0.8rem; inset-inline-end: 0.8rem; z-index: 5; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(56,33,49,0.12); border-radius: 50%; background: rgba(255,253,249,0.88); color: #4d2947; font-size: 1.25rem; line-height: 1; backdrop-filter: blur(8px); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease; }
.favorite-button:hover { transform: scale(1.08) rotate(-6deg); }
.favorite-button[aria-pressed="true"] { background: var(--papaya); color: #fff; animation: heartPop 0.34s ease; }
@keyframes heartPop { 50% { transform: scale(1.24); } }

.product-info { padding: 1.15rem; }
.product-topline { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.55rem; }
.product-category { color: var(--papaya-deep); font-size: 0.66rem; font-weight: 780; letter-spacing: 0.04em; }
[dir="ltr"] .product-category { text-transform: uppercase; letter-spacing: 0.1em; }
.product-tag { padding: 0.28rem 0.5rem; border-radius: 999px; background: var(--paper-deep); color: var(--muted); font-size: 0.6rem; font-weight: 700; }
.product-info h3 { margin-bottom: 0.48rem; font-size: 1.15rem; }
.product-info > p { min-height: 46px; margin-bottom: 1rem; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.product-price { display: flex; flex-direction: column; font-size: 1.15rem; font-weight: 850; line-height: 1.1; }
.product-price small { margin-top: 0.22rem; color: var(--muted); font-size: 0.55rem; font-weight: 600; }
.product-actions { display: flex; flex: 1 1 100%; gap: 0.4rem; }
.quick-button, .add-button { min-height: 40px; padding: 0.45rem 0.8rem; border-radius: 999px; font-size: 0.72rem; font-weight: 750; white-space: nowrap; transition: 0.2s ease; }
.add-button { flex: 1; }
.quick-button { border: 1px solid var(--line); background: var(--surface); color: var(--muted); }
.add-button { background: var(--plum); color: var(--white); }
[data-theme="dark"] .add-button { background: var(--papaya); color: #2b1827; }
.quick-button:hover, .add-button:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.empty-state { padding: 2rem; border: 1px dashed var(--line); border-radius: var(--radius-md); color: var(--muted); text-align: center; }

/* Dog / cat paths */
.pet-paths { overflow: hidden; background: var(--surface); }
.pet-paths .section-heading { max-width: 880px; margin-bottom: 3rem; }
.path-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.path-card { position: relative; display: grid; grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1fr); align-items: center; min-height: 420px; overflow: hidden; border-radius: var(--radius-lg); }
.dog-path { background: #e8d777; color: #352937; }
.cat-path { background: #bba2c6; color: #342338; }
[data-theme="dark"] .dog-path { background: #938a4d; color: #fff8e2; }
[data-theme="dark"] .cat-path { background: #6c5575; color: #fff2ff; }
.path-copy { position: relative; z-index: 3; padding: 2rem 2rem 2rem 1rem; }
[dir="ltr"] .path-copy { padding: 2rem 1rem 2rem 2rem; }
.path-copy > span { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; }
.path-copy h3 { margin: 0.8rem 0; font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -0.05em; }
.path-copy p { max-width: 360px; margin-bottom: 1.3rem; font-size: 0.9rem; }
.text-button { padding: 0.2rem 0 0.28rem; border-bottom: 2px solid currentColor; background: transparent; font-size: 0.78rem; font-weight: 800; }
.path-art { position: relative; align-self: end; width: 100%; height: 88%; }
.path-art i { position: absolute; left: 50%; top: 24%; width: 150px; height: 150px; border-radius: 50% 50% 46% 46%; background: #9c593e; transform: translateX(-50%); }
.path-art b { position: absolute; left: 50%; bottom: 0; width: 190px; height: 190px; border-radius: 50% 50% 0 0; background: #b86c45; transform: translateX(-50%); }
.path-ear { position: absolute; z-index: 2; top: 14%; width: 74px; height: 125px; border-radius: 50%; background: #754132; }
.path-ear.one { left: 4%; transform: rotate(18deg); }.path-ear.two { right: 4%; transform: rotate(-18deg); }
.cat-path-art i { background: #e8d2bc; }
.cat-path-art b { background: #d7bea9; }
.cat-path-art .path-ear { top: 12%; width: 86px; height: 96px; border-radius: 0; background: #d9baa0; clip-path: polygon(50% 0,100% 100%,0 80%); }

/* Aquarium */
.aquarium-section { position: relative; min-height: 760px; overflow: hidden; padding-block: var(--section-space); background: linear-gradient(150deg, #082f3a 0%, #0b5563 48%, #187e7f 100%); color: #effffb; isolation: isolate; }
.aquarium-section::after { position: absolute; inset-inline: 0; bottom: 0; z-index: -1; height: 18%; background: linear-gradient(to top, rgba(2,32,39,0.7), transparent); content: ""; }
.aquarium-grid { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr); align-items: center; gap: clamp(2rem, 7vw, 7rem); min-height: 560px; }
.aquarium-copy h2 { max-width: 670px; }
.aquarium-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(239,255,251,0.72); font-size: 1.04rem; }
.aquarium-copy small { display: block; margin-top: 1.3rem; color: var(--aqua); font-size: 0.72rem; font-weight: 700; }
.aquarium-eyebrow { color: #a6ece4; }
.button-water { margin-top: 0.7rem; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.12); color: #fff; backdrop-filter: blur(10px); }
.button-water:hover { background: #d9fbf3; color: #0d4f51; }
.aquarium-shelf { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.7rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 38px; background: rgba(5,43,51,0.4); backdrop-filter: blur(12px); }
.aqua-product { min-width: 0; padding: 0.8rem; border-radius: 25px; background: rgba(236,255,250,0.94); color: #153a41; box-shadow: 0 18px 36px rgba(0,20,28,0.24); }
.aqua-product .product-art { aspect-ratio: 1; border-radius: 18px; }
.aqua-product h3 { min-height: 38px; margin: 0.8rem 0 0.3rem; font-size: 0.82rem; }
.aqua-product footer { display: flex; align-items: center; justify-content: space-between; gap: 0.3rem; font-size: 0.72rem; font-weight: 800; }
.aqua-product button { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #0d4f51; color: #fff; font-size: 1.05rem; }
.aquarium-light { position: absolute; top: -18%; z-index: -1; width: 19%; height: 120%; background: linear-gradient(to bottom, rgba(195,255,246,0.18), transparent 75%); filter: blur(8px); transform: rotate(14deg); }
.light-one { left: 12%; }.light-two { left: 45%; width: 12%; transform: rotate(-10deg); }
.bubble-field i { position: absolute; z-index: 1; bottom: -40px; width: 12px; height: 12px; border: 1px solid rgba(211,255,248,0.52); border-radius: 50%; animation: bubbleRise 8s linear infinite; }
.bubble-field i:nth-child(1) { left: 6%; animation-delay: -1s; }.bubble-field i:nth-child(2) { left: 18%; width: 20px; height: 20px; animation-delay: -5s; }.bubble-field i:nth-child(3) { left: 36%; animation-delay: -3s; }.bubble-field i:nth-child(4) { left: 57%; width: 8px; height: 8px; animation-delay: -7s; }.bubble-field i:nth-child(5) { left: 71%; width: 16px; height: 16px; animation-delay: -2s; }.bubble-field i:nth-child(6) { left: 88%; animation-delay: -6s; }.bubble-field i:nth-child(7) { left: 96%; width: 23px; height: 23px; animation-delay: -4s; }
.fish { position: absolute; z-index: 1; width: 92px; height: 46px; border-radius: 55% 45% 45% 55%; background: var(--fish-color, #ef8a68); box-shadow: inset -10px -5px rgba(16,56,63,0.12); animation: fishSwim 16s linear infinite; }
.fish span { position: absolute; right: -28px; top: 6px; width: 35px; height: 35px; background: inherit; clip-path: polygon(0 50%,100% 0,100% 100%); }
.fish i { position: absolute; left: 18px; top: 12px; width: 6px; height: 6px; border-radius: 50%; background: #173a3f; box-shadow: inset 2px 1px #fff; }
.fish-one { top: 18%; left: -120px; --fish-color: #ef8a68; }
.fish-two { top: 74%; left: -110px; width: 68px; height: 34px; --fish-color: #e8dd76; animation-duration: 21s; animation-delay: -7s; }
.fish-three { top: 45%; left: -100px; width: 54px; height: 28px; --fish-color: #a9c4df; animation-duration: 25s; animation-delay: -14s; }
.aquatic-plant { position: absolute; bottom: 0; z-index: 1; width: 130px; height: 180px; }
.plant-one { left: 2%; }.plant-two { right: 3%; transform: scale(0.7); transform-origin: bottom; }
.aquatic-plant i { position: absolute; bottom: -20px; width: 34px; height: 190px; border-radius: 50% 50% 0 0; background: #1b8e79; transform-origin: bottom; }
.aquatic-plant i:nth-child(1) { left: 10px; transform: rotate(-18deg); }.aquatic-plant i:nth-child(2) { left: 48px; height: 145px; transform: rotate(8deg); }.aquatic-plant i:nth-child(3) { right: 3px; height: 115px; transform: rotate(22deg); }
@keyframes bubbleRise { to { transform: translateY(-820px) scale(1.4); opacity: 0; } }
@keyframes fishSwim { from { transform: translateX(-130px); } to { transform: translateX(calc(100vw + 260px)); } }

/* Homes */
.homes-section { background: var(--paper); }
.homes-grid { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.homes-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); }
.homes-copy .button { margin-top: 0.6rem; }
.habitat-mosaic { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: 260px 220px; gap: 0.8rem; }
.habitat-card { position: relative; overflow: hidden; padding: 1.2rem; border-radius: var(--radius-md); color: #3c2838; }
.habitat-card h3 { position: absolute; inset-inline: 1.2rem; bottom: 0.3rem; z-index: 3; font-size: 0.9rem; }
.habitat-outdoor { grid-row: 1 / 3; background: #d8b07b; }
.habitat-indoor { background: #d8c6de; }
.habitat-hideaway { background: #9bd3ca; }
.kennel-art { position: absolute; inset: 24% 15% 12%; border-radius: 6px 6px 20px 20px; background: #f1d5ad; box-shadow: 0 18px 24px rgba(71,45,40,0.12); }
.kennel-art::before { position: absolute; top: -36%; left: -12%; width: 124%; height: 48%; background: #794630; clip-path: polygon(50% 0,100% 100%,0 100%); content: ""; }
.kennel-art span { position: absolute; left: 32%; bottom: 0; width: 36%; height: 57%; border-radius: 50% 50% 0 0; background: #6d4539; }
.nest-art { position: absolute; left: 50%; top: 24%; width: 190px; height: 100px; border: 24px solid #fff1e4; border-radius: 50%; background: #6d4d69; transform: translateX(-50%); box-shadow: 0 14px 24px rgba(67,44,65,0.15); }
.nest-art::after { position: absolute; left: 50%; top: 42%; width: 50px; height: 32px; border-radius: 50%; background: #b78f9f; content: ""; transform: translate(-50%,-50%); }
.tower-art { position: absolute; left: 50%; bottom: 18%; width: 120px; height: 135px; background: #e8cfaa; transform: translateX(-50%); }
.tower-art::before { position: absolute; top: 23%; left: 27%; width: 46%; height: 48%; border-radius: 50% 50% 0 0; background: #406a66; content: ""; }
.tower-art span { position: absolute; left: 50%; top: -34px; width: 156px; height: 22px; border-radius: 20px; background: #d5b282; transform: translateX(-50%); }
.tower-art i { position: absolute; left: 50%; bottom: -30px; width: 18px; height: 42px; background: #6b5b47; transform: translateX(-50%); }

/* Why / process */
.experience-section { background: var(--surface); }
.experience-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.why-block, .process-block { padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); }
.why-block { background: color-mix(in srgb, var(--citron) 58%, var(--surface)); }
.process-block { background: var(--plum-deep); color: #fff7f0; }
.why-list { display: grid; gap: 0.7rem; margin-top: 2rem; }
.why-item { padding: 1rem 0; border-top: 1px solid rgba(60,43,45,0.18); }
.why-item h3 { margin-bottom: 0.35rem; }
.why-item p { margin: 0; color: color-mix(in srgb, currentColor 70%, transparent); font-size: 0.85rem; }
.process-block .eyebrow { color: var(--papaya-soft); }
.process-list { display: grid; gap: 0; margin: 2rem 0 0; padding: 0; list-style: none; }
.process-item { display: grid; grid-template-columns: 44px 1fr; gap: 0.8rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.15); }
.process-item > span { color: var(--citron); font-size: 0.7rem; font-weight: 800; }
.process-item h3 { margin-bottom: 0.3rem; }
.process-item p { margin: 0; color: rgba(255,247,240,0.62); font-size: 0.82rem; }

/* FAQ */
.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr); gap: clamp(3rem, 8vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 32px 1fr 24px; align-items: center; gap: 0.8rem; padding: 1.25rem 0; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--papaya-deep); font-size: 0.65rem; font-weight: 800; }
.faq-list summary strong { font-size: 1rem; }
.faq-list summary i { position: relative; width: 20px; height: 20px; }
.faq-list summary i::before, .faq-list summary i::after { position: absolute; top: 9px; left: 3px; width: 14px; height: 2px; background: currentColor; content: ""; transition: transform 0.2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -0.2rem 40px 1.4rem; color: var(--muted); font-size: 0.9rem; }

/* Contact / footer */
.contact-section { padding: 0 0 clamp(2rem,5vw,5rem); background: var(--paper); }
.contact-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: center; min-height: 470px; overflow: hidden; padding: clamp(2rem,6vw,5.5rem); border-radius: var(--radius-xl); background: var(--papaya); color: #392332; box-shadow: var(--shadow-lg); }
[data-theme="dark"] .contact-card { background: #9d5149; color: #fff4eb; }
.contact-copy { position: relative; z-index: 3; max-width: 760px; }
.contact-copy h2 { max-width: 720px; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; }
.contact-eyebrow { color: currentColor; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 1.7rem; }
.contact-actions p { margin: 0; font-size: 0.82rem; }
.contact-actions p a { border-bottom: 1px solid currentColor; font-weight: 800; }
.contact-pets { position: absolute; right: 1%; bottom: 0; width: 390px; height: 380px; }
[dir="rtl"] .contact-pets { right: auto; left: 1%; }
.contact-pets em { position: absolute; right: 0; top: 4%; color: rgba(255,255,255,0.28); font-size: 5rem; font-style: normal; font-weight: 900; letter-spacing: 0.1em; transform: rotate(90deg); }
.contact-dog, .contact-cat { position: absolute; bottom: 0; display: block; border-radius: 50% 50% 0 0; }
.contact-dog { right: 32px; width: 205px; height: 285px; background: #d29563; }
.contact-cat { left: 12px; width: 165px; height: 230px; background: #ead1b9; }
.contact-dog::before, .contact-dog::after, .contact-cat::before, .contact-cat::after { position: absolute; content: ""; }
.contact-dog::before { left: -32px; top: 0; width: 74px; height: 122px; border-radius: 50%; background: #7c4938; transform: rotate(20deg); }
.contact-dog::after { right: -32px; top: 0; width: 74px; height: 122px; border-radius: 50%; background: #7c4938; transform: rotate(-20deg); }
.contact-cat::before { left: 2px; top: -30px; border-right: 50px solid transparent; border-bottom: 70px solid #ead1b9; }
.contact-cat::after { right: 2px; top: -30px; border-left: 50px solid transparent; border-bottom: 70px solid #ead1b9; }
.contact-pets i, .contact-pets b { position: absolute; top: 78px; z-index: 3; width: 18px; height: 22px; border-radius: 50%; background: #392332; }
.contact-pets i { left: 30%; }.contact-pets b { right: 30%; }

.site-footer { padding-block: 4rem; background: var(--plum-deep); color: #fff7f0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 1fr 1fr; gap: 3rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.footer-grid p { margin-bottom: 0; color: rgba(255,247,240,0.65); font-size: 0.82rem; }
.footer-grid > div > strong { margin-bottom: 0.4rem; color: var(--citron); font-size: 0.72rem; }
.footer-grid a:not(.brand) { color: rgba(255,247,240,0.72); font-size: 0.78rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-note { justify-content: flex-end; }
.footer-note small { color: rgba(255,247,240,0.45); }

.floating-whatsapp { position: fixed; right: 1rem; bottom: 1rem; z-index: 80; display: inline-flex; align-items: center; gap: 0.55rem; min-height: 50px; padding: 0.4rem 0.9rem 0.4rem 0.45rem; border-radius: 999px; background: #42b66a; color: #fff; box-shadow: 0 16px 34px rgba(23,86,50,0.25); font-size: 0.75rem; }
[dir="rtl"] .floating-whatsapp { right: auto; left: 1rem; padding: 0.4rem 0.45rem 0.4rem 0.9rem; }
.floating-whatsapp span { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; font-weight: 800; }
.floating-whatsapp .wa-icon { width: 21px; height: 21px; }

/* Dialogs and toast */
dialog { border: 0; color: var(--ink); }
dialog::backdrop { background: rgba(28,18,27,0.58); backdrop-filter: blur(5px); }
.dialog-close { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); font-size: 1.5rem; line-height: 1; }
.quick-dialog { position: relative; width: min(calc(100% - 2rem), 850px); max-height: min(88vh, 760px); padding: 0; overflow: visible; border-radius: var(--radius-lg); background: var(--surface-solid); box-shadow: var(--shadow-lg); }
.quick-dialog .dialog-close { position: absolute; top: 1rem; inset-inline-end: 1rem; z-index: 10; }
.quick-layout { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: inherit; }
.quick-layout .product-art { min-height: 460px; aspect-ratio: auto; }
.quick-copy { padding: clamp(2rem,5vw,4rem); }
.quick-copy .demo-chip { margin-bottom: 1.2rem; }
.quick-copy h2 { font-size: clamp(2rem,4vw,3.4rem); }
.quick-copy > p { color: var(--muted); }
.quick-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.4rem 0; }
.quick-meta span { padding: 0.35rem 0.65rem; border-radius: 999px; background: var(--paper-deep); color: var(--muted); font-size: 0.68rem; }
.quick-price { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.quick-price strong { font-size: 1.5rem; }
.demo-chip { display: inline-flex; padding: 0.27rem 0.55rem; border-radius: 999px; background: var(--citron); color: #382f2a; font-size: 0.6rem; font-weight: 900; letter-spacing: 0.12em; }

.cart-dialog { position: fixed; inset: 0 0 0 auto; width: min(100%, 460px); max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; overflow: hidden; border-radius: 34px 0 0 34px; background: var(--surface-solid); box-shadow: var(--shadow-lg); }
[dir="rtl"] .cart-dialog { inset: 0 auto 0 0; border-radius: 0 34px 34px 0; }
.cart-dialog[open] { animation: drawerIn 0.35s cubic-bezier(0.22,1,0.36,1); }
@keyframes drawerIn { from { transform: translateX(100%); opacity: 0; } }
[dir="rtl"] .cart-dialog[open] { animation-name: drawerInRtl; }
@keyframes drawerInRtl { from { transform: translateX(-100%); opacity: 0; } }
.cart-panel { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.cart-header h2 { margin: 0.4rem 0 0; font-size: 2rem; }
.cart-items { display: grid; gap: 0.75rem; padding-block: 1rem; overflow-y: auto; }
.cart-empty { margin: auto; padding: 3rem 1rem; color: var(--muted); text-align: center; }
.cart-item { display: grid; grid-template-columns: 72px minmax(0,1fr) auto; align-items: center; gap: 0.8rem; padding: 0.65rem; border: 1px solid var(--line); border-radius: 18px; }
.cart-item .product-art { width: 72px; aspect-ratio: 1; border-radius: 13px; }
.cart-item .art-object { transform: scale(0.75) rotate(-3deg); }
.cart-item h3 { margin: 0 0 0.25rem; font-size: 0.82rem; }
.cart-item p { margin: 0; color: var(--muted); font-size: 0.67rem; }
.remove-button { padding: 0.35rem; background: transparent; color: var(--papaya-deep); font-size: 0.67rem; font-weight: 750; }
.cart-summary { display: flex; justify-content: space-between; gap: 1rem; margin-top: auto; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.cart-summary strong { font-size: 1.4rem; }
.cart-note { margin: 0; padding: 0.9rem; border-radius: 14px; background: var(--paper-deep); color: var(--muted); font-size: 0.72rem; }
.toast { position: fixed; left: 50%; bottom: 1.2rem; z-index: 200; padding: 0.7rem 1rem; border-radius: 999px; background: var(--plum-deep); color: #fff; font-size: 0.76rem; font-weight: 750; box-shadow: var(--shadow-md); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: 0.25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.noscript { margin: 0; padding: 1rem; background: var(--citron); color: #382c33; text-align: center; }

/* Responsive */
@media (max-width: 1160px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-whatsapp { display: none; }
  .hero-grid { grid-template-columns: minmax(0,0.92fr) minmax(420px,1.08fr); gap: 2rem; }
  .companion-stage { min-height: 540px; }
  .pet-dog { transform: scale(0.86); transform-origin: right bottom; }
  .pet-cat { transform: scale(0.86); transform-origin: left bottom; }
  .category-rail { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .aquarium-grid { grid-template-columns: minmax(0,0.9fr) minmax(380px,1.1fr); }
  .contact-card { grid-template-columns: minmax(0,1fr) 300px; }
  .contact-pets { transform: scale(0.85); transform-origin: bottom right; }
}

@media (max-width: 880px) {
  h1 { font-size: clamp(3.2rem, 11vw, 5.8rem); }
  .hero { min-height: auto; }
  .hero-grid, .homes-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 1rem; }
  .companion-stage { width: min(100%, 680px); min-height: 590px; margin-inline: auto; }
  .category-rail { display: flex; gap: 0.75rem; margin-inline: -1rem; padding: 0 1rem 1.2rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .category-card { flex: 0 0 195px; scroll-snap-align: start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .path-grid, .experience-grid { grid-template-columns: 1fr; }
  .aquarium-grid { grid-template-columns: 1fr; }
  .aquarium-section { min-height: 1020px; }
  .aquarium-copy { max-width: 690px; }
  .aquarium-shelf { max-width: 660px; }
  .habitat-mosaic { max-width: 700px; }
  .contact-card { grid-template-columns: 1fr; min-height: 680px; padding-bottom: 310px; }
  .contact-pets { right: 50%; transform: translateX(50%) scale(0.82); transform-origin: bottom; }
  [dir="rtl"] .contact-pets { left: 50%; right: auto; transform: translateX(-50%) scale(0.82); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-layout { grid-template-columns: 0.85fr 1.15fr; }
}

@media (max-width: 620px) {
  :root { --section-space: 4.6rem; }
  .demo-ribbon { font-size: 0.63rem; }
  .header-inner { min-height: 70px; }
  .brand-copy small { display: none; }
  .brand-mark { width: 36px; height: 34px; transform: scale(0.86) rotate(-5deg); }
  .language-toggle { min-width: 50px; padding-inline: 0.45rem; }
  .theme-toggle, .cart-button, .menu-toggle { min-width: 39px; width: 39px; height: 39px; }
  .mobile-menu { height: calc(100svh - 104px); }
  h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .hero { padding-top: 3.8rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .companion-stage { min-height: 470px; border-radius: 42% 35% 36% 28%; }
  .pet-dog { right: -7%; bottom: 1%; transform: scale(0.67); }
  .pet-cat { left: -8%; bottom: 4%; transform: scale(0.66); }
  .hero-pack { transform: scale(0.76) rotate(-6deg); transform-origin: top left; }
  .pack-dog { left: 2%; top: 4%; }
  .pack-cat { right: -3%; top: 11%; transform: scale(0.74) rotate(7deg); transform-origin: top right; }
  .toy-ball { left: 43%; width: 48px; height: 48px; }
  .category-rail { margin-inline: -1.25rem; padding-inline: 1.25rem; }
  .products-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .filter-list { flex-wrap: nowrap; margin-inline: -1.25rem; padding: 0 1.25rem 0.8rem; overflow-x: auto; }
  .filter-button { flex: none; }
  .shell { width: min(calc(100% - 2.5rem), var(--shell)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
  .product-art { aspect-ratio: 1 / 0.92; }
  .product-info { padding: 0.8rem 0.75rem 0.85rem; }
  .product-topline .product-tag, .product-info > p { display: none; }
  .product-info h3 { font-size: 0.98rem; line-height: 1.25; }
  .product-price { font-size: 1rem; }
  .product-price small { display: none; }
  .product-actions { flex-direction: column-reverse; }
  .quick-button, .add-button { min-height: 38px; padding-inline: 0.5rem; font-size: 0.68rem; white-space: normal; line-height: 1.2; }
  .favorite-button { width: 34px; height: 34px; top: 0.55rem; inset-inline-end: 0.55rem; }
  .path-card { grid-template-columns: 0.72fr 1.28fr; min-height: 360px; }
  .path-copy { padding: 1.25rem 1.1rem 1.25rem 0.5rem; }
  [dir="ltr"] .path-copy { padding: 1.25rem 0.5rem 1.25rem 1.1rem; }
  .path-copy h3 { font-size: 2rem; }
  .path-art { transform: scale(0.75); transform-origin: bottom; }
  .aquarium-section { min-height: 930px; }
  .aquarium-shelf { grid-template-columns: repeat(3, 155px); margin-inline: -0.5rem; padding: 0.8rem; overflow-x: auto; border-radius: 24px; }
  .fish-two, .fish-three { display: none; }
  .habitat-mosaic { grid-template-columns: 1fr; grid-template-rows: 300px 210px 210px; }
  .habitat-outdoor { grid-row: auto; }
  .why-block, .process-block { padding: 1.5rem; border-radius: var(--radius-md); }
  .faq-list details p { margin-inline: 32px; }
  .contact-card { min-height: 690px; padding: 2rem 1.3rem 300px; border-radius: 36px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-whatsapp b { display: none; }
  .floating-whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; }
  [dir="rtl"] .floating-whatsapp { padding: 0; }
  .quick-dialog { max-height: 92vh; overflow-y: auto; }
  .quick-layout { grid-template-columns: 1fr; }
  .quick-layout .product-art { min-height: 280px; }
  .quick-copy { padding: 1.5rem; }
  .cart-dialog, [dir="rtl"] .cart-dialog { inset: auto 0 0; width: 100%; height: min(86vh, 720px); border-radius: 28px 28px 0 0; }
  .cart-dialog[open], [dir="rtl"] .cart-dialog[open] { animation-name: drawerUp; }
  @keyframes drawerUp { from { transform: translateY(100%); opacity: 0; } }
}

@media (max-width: 390px) {
  .brand-copy strong { font-size: 0.86rem; letter-spacing: 0.12em; }
  .header-actions { gap: 0.3rem; }
  .language-toggle { font-size: 0.6rem; }
  .companion-stage { min-height: 430px; }
  .pet-dog { right: -15%; transform: scale(0.6); }
  .pet-cat { left: -14%; transform: scale(0.59); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .fish-two, .fish-three, .bubble-field { display: none; }
  .eye i { transform: none !important; }
}

/* Email addresses are LTR strings: isolate them so digits/@ never reorder inside RTL text */
[data-email] { direction: ltr; unicode-bidi: isolate; }
