@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Barriecito&family=Caveat:wght@400;700&family=Patrick+Hand&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  /* lizpop palette */
  --cream: #F5E6C8;
  --warm-white: #FFF8EE;
  --rust: #E85D4A;
  --rust-light: #FF7D54;
  --rust-dark: #C4411F;
  --charcoal: #1A1A1A;
  --muted: #5A5248;
  --soft-border: #1A1A1A;
  --yellow: #F2C94C;
  --green: #5B8C5A;
  --blue: #7EC8E3;
  --lavender: #C4A8D4;
  --pink: #F4A5A0;
  --lemon: #FFF176;
  --ink: #1A1A1A;
  --radius: 14px;
  --shadow: 4px 5px 0 #1A1A1A;
  --shadow-hover: 6px 7px 0 #1A1A1A;
  --border: 3px solid #1A1A1A;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-y: scroll; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ══════ NAV ══════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--yellow);
  border-bottom: var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}
.nav-logo {
  font-family: 'Barriecito', cursive;
  font-size: 1.4rem; color: var(--ink);
  text-decoration: none; display: inline-block;
  transform: rotate(-2deg);
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.3rem; list-style: none;
  padding: 0; margin: 0;
}
.nav-cart {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 800; color: var(--ink);
  text-decoration: none; padding: 0.4rem 0.9rem;
  border: 2.5px solid var(--ink); border-radius: 999px;
  background: var(--warm-white); box-shadow: 2px 2px 0 var(--ink);
  transition: all 150ms var(--ease-bounce); white-space: nowrap;
}
.nav-cart:hover {
  background: var(--lemon); transform: translate(-1px,-1px) rotate(-1deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.cart-dot {
  background: var(--rust); color: var(--warm-white);
  font-size: 0.62rem; font-weight: 900;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
}
.nav-links li a {
  font-size: 0.8rem; color: var(--ink); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 800;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  border: 2.5px solid transparent;
  transition: all 150ms var(--ease-bounce); display: block;
  white-space: nowrap;
}
.nav-links li a:hover {
  background: var(--warm-white); border-color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(-1px, -1px) rotate(-1deg);
}
.nav-links li a.active {
  background: var(--rust); color: var(--warm-white);
  border-color: var(--ink); box-shadow: 2px 2px 0 var(--ink);
}

.page { min-height: 100vh; padding-top: 64px; }

/* ══════ SHARED TYPO ══════ */
.eyebrow {
  font-family: 'Patrick Hand', cursive;
  font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--rust); display: block;
  margin-bottom: 0.85rem;
}
.sec-title {
  font-family: 'Barriecito', cursive;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  color: var(--ink); line-height: 1.15; margin-bottom: 0.9rem;
}
.sec-sub {
  font-family: 'Patrick Hand', cursive;
  font-size: 1.1rem; color: var(--muted); max-width: 540px;
  margin: 0 auto; line-height: 1.7;
}
.sec-head { text-align: center; margin-bottom: 3rem; }

/* ══════ BUTTONS — lizpop cute ══════ */
.btn-r {
  display: inline-block;
  background: var(--rust); color: var(--warm-white);
  padding: 0.85rem 2.2rem; border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 800;
  text-decoration: none; border: var(--border); cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 120ms var(--ease-bounce);
  transform: rotate(-1deg);
}
.btn-r:hover {
  transform: translate(-2px, -3px) rotate(-2deg);
  box-shadow: var(--shadow-hover);
  background: var(--rust-dark);
}
.btn-r:active {
  transform: translate(2px, 2px) rotate(0deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-o {
  display: inline-block;
  background: var(--warm-white); color: var(--ink);
  padding: 0.85rem 2.2rem; border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 800;
  border: var(--border); cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 120ms var(--ease-bounce);
  transform: rotate(1deg);
}
.btn-o:hover {
  transform: translate(-2px, -3px) rotate(2deg);
  box-shadow: var(--shadow-hover);
  background: var(--lemon);
}
.btn-o:active {
  transform: translate(2px, 2px) rotate(0deg);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ══════ FOOTER ══════ */
footer {
  background: var(--ink); padding: 2rem; text-align: center;
  border-top: var(--border);
}
footer p {
  font-family: 'Patrick Hand', cursive;
  font-size: 0.95rem; color: rgba(255,248,238,0.35);
}
footer span { color: var(--rust-light); }

/* ══════ CART FAB ══════ */
.cart-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--rust); border: var(--border);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; text-decoration: none;
  transition: all 150ms var(--ease-bounce);
}
.cart-fab:hover {
  transform: translate(-2px,-3px) rotate(-5deg);
  box-shadow: var(--shadow-hover); background: var(--rust-dark);
}
.cart-fab:active {
  transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink);
}
.cart-fab svg { stroke: var(--warm-white); }
.cart-fab-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--yellow); color: var(--ink);
  font-family: 'Nunito', sans-serif; font-size: 0.65rem; font-weight: 900;
  min-width: 20px; height: 20px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
}
.cart-fab-badge.show { display: flex; }

/* ══════ RESPONSIVE ══════ */
@media (max-width: 760px) {
  .nav-links { gap: 0.15rem; }
  .nav-links li a { padding: 0.3rem 0.45rem; font-size: 0.65rem; letter-spacing: 0.02em; }
}
@media (max-width: 480px) {
  nav { height: auto; padding: 0.5rem 0; }
  .nav-links { gap: 0.1rem; flex-wrap: wrap; justify-content: center; }
  .nav-links li a { padding: 0.25rem 0.35rem; font-size: 0.58rem; white-space: nowrap; }
}
