/* Learning Press — violet school-paper theme */

:root {
  --paper: #FDFAF4;
  --ink: #46345E;
  --ink-soft: #6F5E8A;
  --violet: #8A6DC4;
  --violet-deep: #6C4FA8;
  --violet-night: #4E3B7E;
  --lilac: #F1EBFB;
  --lilac-deep: #E3D8F6;
  --lilac-line: #DCCFF2;
  --butter: #FFC94D;
  --butter-deep: #B97F0F;
  --rose: #F2A9C4;
  --rose-deep: #D95E93;
  --leaf: #58A97F;
  --leaf-soft: #DDF2E7;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(70, 52, 94, 0.12);
  --shadow-soft: 0 4px 14px rgba(70, 52, 94, 0.10);
  --font-display: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.4em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--violet-deep); }

img { max-width: 100%; }

.shell { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--violet-deep); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--butter);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ------------------------------------------------------------------ header */

.site-header {
  background: rgba(253, 250, 244, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px dashed var(--lilac-deep);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { border-radius: 14px; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: 0.2px;
}
.brand-word em { font-style: normal; color: var(--violet-deep); }
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: italic;
  font-size: 0.68rem;
  color: var(--rose-deep);
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 9px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.76rem;
}

.nav-bubble {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--violet-deep);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.nav-bubble svg { width: 21px; height: 21px; }

.nav-link:hover .nav-bubble,
.nav-link:focus-visible .nav-bubble {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.nav-link.active { color: var(--violet-deep); }
.nav-link.active .nav-bubble { background: var(--violet-deep); color: #fff; }

.cart-count[hidden] { display: none; }

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid var(--paper);
}

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--violet-deep);
  color: #fff;
  box-shadow: 0 5px 0 var(--violet-night);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--violet-night); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--violet-night); }

.btn-outline {
  background: #fff;
  color: var(--violet-deep);
  border-color: var(--violet);
}
.btn-outline:hover { background: var(--lilac); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--violet-deep); }
.btn-ghost:hover { background: var(--lilac); }

.btn-big { font-size: 1.12rem; padding: 13px 30px; }
.btn-small { font-size: 0.9rem; padding: 7px 16px; }

.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* --------------------------------------------------------------------- hero */

.hero {
  background: linear-gradient(180deg, var(--lilac) 0%, var(--paper) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 64px;
}

.eyebrow {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--rose-deep);
  margin-bottom: 10px;
}

.lede { font-size: 1.13rem; color: var(--ink-soft); max-width: 54ch; }

.squiggle {
  color: var(--violet-deep);
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 20px; }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.trust-row li::before { content: '✓ '; color: var(--leaf); font-weight: 800; }

/* the looseleaf-paper sheet */
.hero-paper { display: grid; place-items: center; }

.paper-sheet {
  position: relative;
  width: min(320px, 80vw);
  aspect-ratio: 17 / 20;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 30px,
      var(--lilac-line) 30px 31.5px
    ),
    #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  padding: 42px 26px 26px;
}
.paper-sheet::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 34px;
  width: 2px;
  background: var(--rose);
  opacity: 0.65;
}

.paper-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px;
  height: 26px;
  background: rgba(255, 201, 77, 0.75);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(70, 52, 94, 0.15);
}

.paper-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--violet-deep);
  margin: 0 0 14px 20px;
}

.paper-line {
  height: 10px;
  border-radius: 6px;
  background: var(--lilac-deep);
  margin: 21px 0 0 20px;
}
.paper-line.w80 { width: 78%; }
.paper-line.w95 { width: 92%; }
.paper-line.w70 { width: 64%; }

.paper-grade {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--butter);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: #7A5A0B;
  transform: rotate(8deg);
  box-shadow: var(--shadow-soft);
}
.paper-grade span { font-size: 1.1rem; margin-top: -10px; }

.doodle {
  position: absolute;
  font-size: 1.5rem;
  animation: bob 3.5s ease-in-out infinite;
}
.doodle-star { top: 14px; right: 30px; color: var(--butter); }
.doodle-heart { bottom: 30px; left: 48px; color: var(--rose); animation-delay: 1.2s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ----------------------------------------------------------------- sections */

.section { padding: 52px 0; }
.section-lilac { background: var(--lilac); }

.section-title {
  text-align: center;
  margin-bottom: 34px;
}
.section-title span {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}
.section-title span::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6px;
  height: 8px;
  background: var(--butter);
  opacity: 0.55;
  border-radius: 6px;
  transform: rotate(-1deg);
}

.page-head {
  background: linear-gradient(180deg, var(--lilac) 0%, var(--paper) 100%);
  padding: 44px 0 10px;
}

/* ---------------------------------------------------------------- products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 26px;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding-left: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* punch holes */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 22px;
  background:
    radial-gradient(circle at 11px 50%, var(--lilac-deep) 4.5px, transparent 5.5px) 0 0 / 22px 56px repeat-y,
    var(--lilac);
  border-right: 1.5px solid var(--lilac-deep);
}

.card-cover {
  display: block;
  position: relative;
  aspect-ratio: 17 / 13;
  background: var(--lilac);
  overflow: hidden;
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cover-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--violet);
  padding: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.cover-fallback svg { width: 44px; height: 44px; }
.cover-fallback.big { min-height: 320px; }
.cover-fallback.big svg { width: 70px; height: 70px; }

.price-sticker {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--butter);
  color: #6B4E09;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 999px;
  transform: rotate(-7deg);
  box-shadow: var(--shadow-soft);
  outline: 2px dashed rgba(255, 255, 255, 0.8);
  outline-offset: -5px;
}
.price-sticker.free { background: var(--leaf); color: #fff; }

.card-body { padding: 16px 18px 18px; }
.card-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover { color: var(--violet-deep); }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.chip {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--violet-deep);
}
.chip-grade { background: #FDE7F0; color: var(--rose-deep); }
.chip-subject { background: var(--lilac); color: var(--violet-deep); }

.card-actions { display: flex; gap: 8px; }

.see-all { text-align: center; margin-top: 32px; }

.empty-shelf {
  text-align: center;
  padding: 48px 20px;
  color: var(--ink-soft);
  background: #fff;
  border: 2px dashed var(--lilac-deep);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.empty-shelf svg { width: 52px; height: 52px; color: var(--violet); margin-bottom: 8px; }
.empty-shelf p { margin: 0; font-weight: 600; }

/* ------------------------------------------------------------------ filters */

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.filter-label {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin-right: 4px;
}

.filter-chip {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  border: 1.5px solid var(--lilac-deep);
  transition: background 0.15s ease;
}
.filter-chip:hover { background: var(--lilac); }
.filter-chip.active { background: var(--violet-deep); border-color: var(--violet-deep); color: #fff; }

/* -------------------------------------------------------------------- steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.steps li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  text-align: center;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--butter);
  color: #6B4E09;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 12px;
  transform: rotate(-6deg);
}

.steps p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* ------------------------------------------------------------ teacher strip */

.teacher-strip { display: grid; }

.teacher-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px clamp(24px, 5vw, 56px);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  border-top: 6px solid var(--rose);
}

.teacher-badge {
  display: inline-block;
  background: var(--lilac);
  color: var(--violet-deep);
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.teacher-card p { color: var(--ink-soft); max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------- product page */

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.product-cover {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px;
  transform: rotate(-1.5deg);
}
.product-cover img { display: block; border-radius: 6px; width: 100%; }
.product-cover .paper-tape { top: -13px; }

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--violet-deep);
  margin: 6px 0 14px;
}
.product-price.free { color: var(--leaf); }

.product-desc { color: var(--ink-soft); }

.buy-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }

.included-list {
  list-style: none;
  padding: 18px 22px;
  margin: 0;
  background: var(--lilac);
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.included-list li { padding: 4px 0; }
.included-list li::before { content: '✓ '; color: var(--leaf); font-weight: 800; }

/* --------------------------------------------------------------------- cart */

.cart-shell { max-width: 780px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  margin-bottom: 14px;
}

.cart-thumb {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--lilac);
  flex-shrink: 0;
}
.cart-thumb.fallback { display: grid; place-items: center; color: var(--violet); font-size: 1.4rem; }

.cart-item-title { flex: 1; font-weight: 700; }
.cart-item-title a { color: var(--ink); text-decoration: none; }
.cart-item-title a:hover { color: var(--violet-deep); }
.cart-item-title .chip-row { margin: 4px 0 0; }

.cart-item-price { font-family: var(--font-display); font-weight: 800; color: var(--violet-deep); }

.cart-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 6px;
  border-radius: 8px;
}
.cart-remove:hover { background: #FDE7F0; color: var(--rose-deep); }

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lilac);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cart-total { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }

.cart-empty { text-align: center; padding: 30px 0 10px; }
.cart-loading { text-align: center; color: var(--ink-soft); }

/* ---------------------------------------------------------------- thank you */

.thanks-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--butter);
  padding: clamp(26px, 5vw, 48px);
  text-align: center;
}

.thanks-confetti { font-size: 2.6rem; display: block; margin-bottom: 6px; }

.download-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  text-align: left;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lilac);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.download-note { display: block; font-size: 0.83rem; color: var(--ink-soft); font-weight: 600; }

.thanks-foot { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* -------------------------------------------------------- about and contact */

.about-page {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: start;
}

.about-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 40px);
}
.about-card p { color: var(--ink-soft); }
.about-sign { font-family: var(--font-display); font-weight: 700; color: var(--violet-deep); }

.about-side {
  background: var(--lilac);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.about-side h2 { font-size: 1.1rem; }
.about-side ul { list-style: none; padding: 0; margin: 0; font-weight: 600; color: var(--ink-soft); }
.about-side li { padding: 6px 0; }

.contact-page { max-width: 640px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 40px);
}
.contact-card h2 { font-size: 1.15rem; }
.contact-card .mt { margin-top: 28px; }
.contact-card p { color: var(--ink-soft); }

.terms-page { max-width: 760px; }
.terms-page h2 { font-size: 1.1rem; margin-top: 22px; }

/* -------------------------------------------------------------- admin login */

.admin-login-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 44px);
  max-width: 420px;
  margin: 20px auto;
  text-align: center;
}
.admin-login-card form { text-align: left; margin-top: 18px; display: grid; gap: 16px; }
.admin-login-card label { font-weight: 700; display: grid; gap: 6px; }
.admin-login-card input {
  font: inherit;
  padding: 11px 14px;
  border-radius: 12px;
  border: 2px solid var(--lilac-deep);
  background: var(--paper);
}
.admin-login-card input:focus { outline: none; border-color: var(--violet); }
.login-error { color: var(--rose-deep); font-weight: 700; margin: 0; }

/* ---------------------------------------------------------------- not found */

.notfound-card { padding: 40px 0; }
.notfound-emoji { font-size: 3rem; display: block; margin-bottom: 8px; }

/* ------------------------------------------------------------------- footer */

.site-footer { background: var(--violet-night); color: #E7DDF8; margin-top: 40px; }

.scallop {
  height: 22px;
  background:
    radial-gradient(circle at 11px 0, var(--paper) 11px, transparent 11.8px) 0 0 / 22px 22px repeat-x,
    var(--violet-night);
}
.section-lilac + .section + .site-footer .scallop,
.page-head + .section + .site-footer .scallop { background-color: var(--violet-night); }

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px 30px;
  padding: 30px 22px 34px;
  align-items: center;
}

.footer-brand { display: flex; gap: 14px; align-items: center; font-size: 0.95rem; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.1rem; }

.footer-nav { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.footer-nav a { color: #E7DDF8; text-decoration: none; font-weight: 700; }
.footer-nav a:hover { color: var(--butter); }

.footer-note { grid-column: 1 / -1; font-size: 0.8rem; color: #B9A8DE; }

/* -------------------------------------------------------------------- toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 200;
  animation: toast-in 0.25s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --------------------------------------------------------------- responsive */

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 46px; }
  .hero-paper { order: -1; }
  .paper-sheet { width: min(260px, 70vw); }
  .steps { grid-template-columns: 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .product-cover { max-width: 380px; margin: 0 auto; }
  .about-page { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .nav-link span:last-child { display: none; }
  .nav-link { padding: 4px 5px; }
  .brand-word { font-size: 1.2rem; }
  .header-row { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .doodle { animation: none; }
  .btn, .nav-bubble, .product-card, .filter-chip { transition: none; }
}
