@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
  --hot-pink: #ff2aa3;
  --light-pink: #ffd5ee;
  --ice-blue: #82e8ff;
  --navy: #11173d;
  --white: #ffffff;
  --yellow: #ffe650;
  --sky: #e9fbff;
  --ink: #20233f;
  --shadow: 0 18px 45px rgba(17, 23, 61, 0.18);
  --radius: 28px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 7%, rgba(255, 42, 163, 0.16) 0 7%, transparent 8%),
    radial-gradient(circle at 18% 32%, rgba(130, 232, 255, 0.2) 0 9%, transparent 10%),
    radial-gradient(circle at 12% 10%, rgba(255, 230, 80, 0.22) 0 8%, transparent 9%),
    radial-gradient(circle at 90% 18%, rgba(130, 232, 255, 0.28) 0 9%, transparent 10%),
    linear-gradient(180deg, #fff7fc 0%, #ffffff 42%, #e9fbff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  line-height: 1.02;
  color: var(--navy);
  margin: 0;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-weight: 900;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 4px solid var(--light-pink);
  backdrop-filter: blur(14px);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-weight: 700;
  color: var(--navy);
  max-width: 16rem;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.logo span:last-child {
  min-width: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 0 0 5px var(--yellow);
}

.menu-toggle {
  display: inline-grid;
  gap: 0.28rem;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--navy);
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--white);
}

.primary-nav {
  position: fixed;
  inset: 7.35rem 1rem auto 1rem;
  max-width: calc(100% - 2rem);
  display: none;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 3px solid var(--ice-blue);
}

.primary-nav.is-open {
  display: grid;
}

.primary-nav a {
  max-width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  color: var(--navy);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  background: var(--hot-pink);
  color: var(--white);
  outline: none;
}

.quick-order-strip,
.mobile-bottom-bar {
  display: none;
}

.hero,
.page-hero,
.section,
.split-callout,
.social-strip,
.contact-band,
.contact-layout {
  width: min(100% - 2rem, 1120px);
  max-width: 100%;
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  gap: 2rem;
  min-height: 72vh;
  align-items: center;
  padding: 3.25rem 0 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% -8% 2%;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 42, 163, 0.48) 0 12%, transparent 30%),
    radial-gradient(circle at 34% 66%, rgba(130, 232, 255, 0.48) 0 14%, transparent 32%),
    radial-gradient(circle at 70% 78%, rgba(255, 230, 80, 0.32) 0 10%, transparent 24%),
    radial-gradient(circle at 16% 22%, rgba(255, 42, 163, 0.22) 0 10%, transparent 23%);
  filter: blur(10px);
  animation: hero-glow-breathe 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.page-hero > *,
.section-heading,
.product-grid,
.category-grid,
.steps-grid,
.feature-grid,
.booth-grid,
.video-grid,
.contact-layout,
.contact-form,
.faq-list {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--hot-pink);
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hero h1,
.page-hero h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow:
    0 4px 0 var(--white),
    0 0 24px rgba(255, 42, 163, 0.18);
}

.hero h1 {
  font-size: clamp(3rem, 15vw, 5.2rem);
  line-height: 0.95;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 13vw, 5.2rem);
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 100%;
  margin-top: 1rem;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--navy);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
  max-width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 1000;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-shadow: 0 10px 0 rgba(17, 23, 61, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 0 rgba(17, 23, 61, 0.1);
  outline: none;
}

.btn-primary {
  background: var(--hot-pink);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-small {
  min-height: 2.75rem;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.hero-triangle-positioner {
  min-height: 18rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  width: clamp(400px, 33vw, 500px);
  max-width: 100%;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-triangle-motion {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  transform-origin: 50% 75%;
  animation-name: triangleSeesaw !important;
  animation-duration: 5.6s !important;
  animation-timing-function: ease-in-out !important;
  animation-iteration-count: infinite !important;
  will-change: transform;
}

.hero-triangle-logo {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 28px rgba(16, 24, 70, 0.22));
}

.hero-triangle-spinner img,
.hero-triangle-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.candy-sprinkles::before,
.candy-sprinkles::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.candy-sprinkles::before {
  width: 5rem;
  height: 1rem;
  background: var(--yellow);
  transform: rotate(22deg);
  top: 2rem;
  right: 8%;
}

.candy-sprinkles::after {
  width: 4rem;
  height: 1rem;
  background: var(--ice-blue);
  transform: rotate(-28deg);
  bottom: 3rem;
  left: 4%;
}

.section,
.split-callout,
.social-strip,
.contact-band,
.contact-layout {
  margin-top: 4rem;
}

.section {
  position: relative;
  padding: 0.5rem 0;
}

.featured-section {
  overflow: hidden;
}

.section-blue {
  width: 100%;
  max-width: none;
  padding: 4rem max(1rem, calc((100% - 1120px) / 2));
  background: var(--sky);
  border-block: 5px solid var(--ice-blue);
}

.video-section {
  padding-block: 1rem;
  overflow: hidden;
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 1.5rem;
}

.section-heading h2,
.split-callout h2,
.social-strip h2,
.contact-band h2 {
  max-width: 100%;
  font-size: clamp(2rem, 8vw, 4rem);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-heading p:last-child,
.split-callout p,
.contact-card p {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-grid,
.category-grid,
.steps-grid,
.feature-grid,
.booth-grid {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.product-grid > *,
.category-grid > *,
.steps-grid > *,
.feature-grid > *,
.booth-grid > *,
.video-grid > *,
.contact-layout > * {
  min-width: 0;
}

.product-card,
.steps-grid article,
.feature-grid article,
.faq-list article,
.contact-card {
  max-width: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 3px solid var(--light-pink);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 230, 80, 0.45) 0 10%, transparent 11%),
    radial-gradient(circle at 88% 8%, rgba(130, 232, 255, 0.36) 0 11%, transparent 12%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  border-color: var(--hot-pink);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card h2,
.product-card h3,
.steps-grid h3,
.feature-grid h2,
.faq-list h2 {
  font-size: 1.45rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 13rem;
  border-radius: 22px;
  border: 4px dashed rgba(17, 23, 61, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 42, 163, 0.2), rgba(130, 232, 255, 0.28)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.9) 0 14px, rgba(255, 230, 80, 0.45) 14px 28px);
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.image-placeholder.tall {
  min-height: 19rem;
}

.product-image,
.feature-photo {
  width: 100%;
  border-radius: 22px;
  border: 4px solid var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 230, 80, 0.55), transparent 32%),
    linear-gradient(135deg, rgba(255, 42, 163, 0.24), rgba(130, 232, 255, 0.35));
  box-shadow: 0 14px 28px rgba(17, 23, 61, 0.14);
}

.product-image {
  height: 14rem;
  object-fit: contain;
  padding: 1rem;
}

.feature-photo {
  min-height: 19rem;
  height: 100%;
  object-fit: cover;
}

.feature-photo.tall {
  aspect-ratio: 4 / 5;
}

.price {
  margin-top: auto;
  color: var(--hot-pink);
  font-size: 1.15rem;
  font-weight: 1000;
}

.category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-grid a,
.category-grid span {
  display: grid;
  place-items: center;
  max-width: 100%;
  min-height: 6.5rem;
  padding: 1rem;
  border-radius: 24px;
  background: var(--white);
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  border: 3px solid var(--yellow);
  transition: transform 180ms ease, background 180ms ease;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  transform: rotate(-1deg) translateY(-4px);
  background: var(--yellow);
  outline: none;
}

.steps-grid article span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: var(--ice-blue);
  color: var(--navy);
  font-weight: 1000;
}

.split-callout {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem;
  max-width: calc(100% - 2rem);
  border-radius: 34px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.split-callout h2,
.split-callout p {
  color: var(--white);
}

.split-callout .btn {
  margin-top: 1.25rem;
}

.custom-callout {
  background:
    radial-gradient(circle at 94% 14%, rgba(255, 230, 80, 0.34) 0 12%, transparent 13%),
    var(--navy);
}

.callout-badge {
  display: grid;
  place-items: center;
  min-height: 15rem;
  border-radius: 28px;
  background: var(--yellow);
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(2.3rem, 12vw, 4.4rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  transform: rotate(2deg);
}

.booth-grid {
  grid-template-columns: 1fr;
}

.video-grid {
  display: grid;
  gap: 1rem;
}

.video-card {
  position: relative;
  padding: 0.5rem;
  border-radius: 30px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--hot-pink), var(--ice-blue), var(--yellow)) border-box;
  border: 5px solid transparent;
  box-shadow:
    0 18px 38px rgba(17, 23, 61, 0.18),
    0 0 30px rgba(255, 42, 163, 0.18),
    0 0 38px rgba(130, 232, 255, 0.2);
  overflow: hidden;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 230, 80, 0.38) 0 8%, transparent 9%),
    radial-gradient(circle at 86% 10%, rgba(255, 42, 163, 0.22) 0 10%, transparent 11%);
  pointer-events: none;
}

.video-card video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 36rem;
  object-fit: cover;
  border-radius: 22px;
  background: var(--navy);
}

.video-grid-clips {
  max-width: 980px;
  margin-inline: auto;
}

.video-card-clip {
  transform: rotate(-1deg);
}

.video-card-clip:nth-child(2) {
  transform: rotate(1.2deg);
}

.video-card-clip:nth-child(3) {
  transform: rotate(-0.4deg);
}

.social-strip,
.contact-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 30px;
}

.social-strip {
  background: var(--light-pink);
  border: 4px solid var(--hot-pink);
}

.contact-band {
  margin-bottom: 4rem;
  background: var(--yellow);
  color: var(--navy);
  text-align: center;
  border: 4px solid var(--navy);
}

.contact-band a {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(1.05rem, 5vw, 1.8rem);
  font-weight: 1000;
  color: var(--hot-pink);
}

.page-hero {
  position: relative;
  padding: 4rem 0 2.5rem;
  overflow: hidden;
}

.page-hero .btn {
  margin-top: 1.4rem;
}

.shop-toolbar {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--navy);
  color: var(--white);
  font-weight: 1000;
}

.catalog-toolbar {
  align-items: start;
}

.shop-toolbar div {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.shop-toolbar a,
.catalog-filter {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  border: 0;
  font: inherit;
  cursor: pointer;
}

.catalog-filter.is-active {
  background: var(--yellow);
  box-shadow: inset 0 0 0 3px var(--hot-pink);
}

.catalog-search-label {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.catalog-search {
  width: 100%;
  max-width: 34rem;
  min-height: 3.2rem;
  padding: 0.85rem 1rem;
  border: 3px solid var(--ice-blue);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  color: var(--navy);
}

.catalog-count {
  font-size: 1.05rem;
  color: var(--yellow);
}

.product-category,
.product-meta {
  font-weight: 1000;
}

.product-category {
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--ice-blue);
  color: var(--navy);
  line-height: 1;
}

.product-meta {
  color: var(--hot-pink);
}

.product-image-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  border: 4px dashed rgba(17, 23, 61, 0.22);
}

.catalog-empty {
  grid-column: 1 / -1;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 3px solid var(--yellow);
  font-weight: 900;
  text-align: center;
}

.card-order-controls,
.quantity-stepper,
.order-bag-item-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-order-controls {
  flex-wrap: wrap;
}

.quantity-stepper,
.order-bag-item-actions {
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--light-pink);
}

.quantity-stepper button,
.order-bag-item-actions button {
  display: grid;
  place-items: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.card-quantity,
.order-bag-item-actions span {
  min-width: 1.8rem;
  color: var(--navy);
  font-weight: 1000;
  text-align: center;
}

.add-order-btn {
  flex: 1 1 10rem;
}

.order-bag-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.8rem 1rem;
  border: 3px solid var(--navy);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(17, 23, 61, 0.22);
}

.order-bag-toggle span {
  display: grid;
  place-items: center;
  min-width: 2rem;
  min-height: 2rem;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
}

.order-bag-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 1rem;
  width: min(100%, 28rem);
  padding: 1.2rem;
  background: var(--white);
  border-left: 5px solid var(--hot-pink);
  box-shadow: -18px 0 45px rgba(17, 23, 61, 0.2);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.order-bag-panel.is-open {
  transform: translateX(0);
}

.order-bag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-bag-close {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

.order-bag-note,
.order-bag-empty {
  font-weight: 800;
}

.order-bag-note {
  padding: 0.85rem;
  border-radius: 18px;
  background: var(--sky);
  color: var(--navy);
}

.order-bag-items {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 0;
  overflow: auto;
}

.order-bag-item {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 3px solid var(--light-pink);
  border-radius: 20px;
  background: #fff9fd;
}

.order-bag-item h3 {
  font-size: 1.15rem;
}

.order-bag-item-actions {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.order-bag-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 3px solid var(--light-pink);
  color: var(--navy);
  font-weight: 1000;
}

.order-bag-send.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.product-flip-card {
  padding: 0;
  perspective: 1200px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-flip-card:hover {
  transform: none;
}

.product-flip-inner {
  position: relative;
  display: grid;
  min-height: 100%;
  transition: transform 520ms ease;
  transform-style: preserve-3d;
}

.product-flip-card.is-flipped .product-flip-inner {
  transform: rotateY(180deg);
}

.product-card-face {
  grid-area: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
  padding: 1rem;
  border: 3px solid var(--light-pink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.product-card-face h2,
.product-card-face h3,
.product-card-face .product-category,
.product-card-face .product-meta {
  padding-right: 5.75rem;
}

.product-price-bubble {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-width: 4.7rem;
  min-height: 2.75rem;
  padding: 0.45rem 0.75rem;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--yellow) 0%, #ff8bd2 100%);
  box-shadow:
    0 10px 20px rgba(255, 42, 163, 0.25),
    0 0 0 3px rgba(255, 230, 80, 0.32);
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.product-price-bubble::after {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0.62rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.price-bubble-theme-1 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #ff2aa3 0%, #ffe650 100%);
  box-shadow: 0 10px 20px rgba(255, 42, 163, 0.26), 0 0 0 3px rgba(255, 230, 80, 0.34);
}

.price-bubble-theme-2 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #21d4fd 0%, #82e8ff 100%);
  box-shadow: 0 10px 20px rgba(33, 212, 253, 0.24), 0 0 0 3px rgba(130, 232, 255, 0.34);
}

.price-bubble-theme-3 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #a9ffcb 0%, #23d160 100%);
  box-shadow: 0 10px 20px rgba(35, 209, 96, 0.24), 0 0 0 3px rgba(169, 255, 203, 0.36);
}

.price-bubble-theme-4 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #ffc1a6 0%, #ff8a00 100%);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.24), 0 0 0 3px rgba(255, 193, 166, 0.36);
}

.price-bubble-theme-5 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    linear-gradient(135deg, #d9b8ff 0%, #8a4fff 100%);
  box-shadow: 0 10px 20px rgba(138, 79, 255, 0.24), 0 0 0 3px rgba(217, 184, 255, 0.34);
}

.price-bubble-theme-6 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #ff9bd7 0%, #9be7ff 100%);
  box-shadow: 0 10px 20px rgba(255, 155, 215, 0.24), 0 0 0 3px rgba(155, 231, 255, 0.34);
}

.price-bubble-theme-7 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #ff4f87 0%, #7dff8a 100%);
  box-shadow: 0 10px 20px rgba(255, 79, 135, 0.24), 0 0 0 3px rgba(125, 255, 138, 0.32);
}

.price-bubble-theme-8 {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
    linear-gradient(135deg, #fff3c4 0%, #ff9f43 100%);
  box-shadow: 0 10px 20px rgba(255, 159, 67, 0.24), 0 0 0 3px rgba(255, 243, 196, 0.38);
}

.product-card-front {
  position: relative;
}

.product-card-front-layout {
  gap: 0.7rem;
}

.product-card-header {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.product-card-title {
  margin: 0;
  min-height: 3.05rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.05;
}

.product-card-front .product-card-title {
  padding-right: 0;
}

.product-card-meta,
.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.65rem;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.product-chip {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.product-chip-category {
  background: var(--ice-blue);
  color: var(--navy);
}

.product-chip-flavor {
  max-width: 100%;
  background: rgba(255, 42, 163, 0.12);
  color: var(--hot-pink);
  overflow-wrap: anywhere;
  text-align: left;
  white-space: normal;
}

.product-image-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(260px, 30vw, 320px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 230, 80, 0.5), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(255, 42, 163, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(130, 232, 255, 0.32), rgba(255, 255, 255, 0.86));
  overflow: hidden;
}

.product-card-front .product-image {
  width: 100%;
  height: clamp(260px, 30vw, 320px);
  max-height: none;
  padding: 1rem;
}

.product-card-description {
  margin: 0;
  min-height: 3rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-front-bottom {
  display: grid;
  gap: 0.65rem;
  margin-top: auto;
}

.product-info-row,
.product-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-width: 0;
}

.product-order-row {
  flex-wrap: nowrap;
}

.product-price-bottom {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-height: 2.5rem;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.92) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--yellow), #ff9bd7);
  box-shadow: 0 8px 16px rgba(255, 42, 163, 0.18);
  color: var(--navy);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.product-card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 230, 80, 0.45) 0 10%, transparent 11%),
    radial-gradient(circle at 88% 8%, rgba(130, 232, 255, 0.36) 0 11%, transparent 12%);
  pointer-events: none;
}

.product-card-front > * {
  position: relative;
  z-index: 1;
}

.product-card-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 230, 80, 0.62) 0 12%, transparent 13%),
    linear-gradient(135deg, #ffd5ee 0%, #82e8ff 52%, #ffffff 100%);
  border-color: var(--hot-pink);
  color: var(--navy);
  max-height: min(44rem, calc(100vh - 2rem));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.product-card-back ul {
  margin: 0;
  padding-left: 1.1rem;
  font-weight: 800;
}

.product-card-back li + li {
  margin-top: 0.35rem;
}

.more-info-button {
  align-self: flex-start;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--ice-blue);
  color: var(--navy);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.product-flip-trigger {
  cursor: pointer;
}

.product-label-wrap {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0.75rem;
  border: 4px solid var(--hot-pink);
  border-radius: 22px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 230, 80, 0.55), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(130, 232, 255, 0.45));
  box-shadow: 0 12px 24px rgba(17, 23, 61, 0.16);
  overflow: hidden;
}

.product-label-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: clamp(18rem, 58vh, 34rem);
  object-fit: contain;
  border-radius: 18px;
}

.product-label-placeholder {
  display: grid;
  gap: 0.55rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  border: 4px dashed var(--hot-pink);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 230, 80, 0.4)),
    repeating-linear-gradient(45deg, rgba(255, 42, 163, 0.12) 0 12px, rgba(130, 232, 255, 0.16) 12px 24px);
  overflow-wrap: anywhere;
}

.product-label-placeholder h4 {
  margin: 0;
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
}

.product-label-placeholder p {
  margin: 0;
}

.view-full-label-button {
  align-self: flex-start;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(255, 42, 163, 0.24);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.label-modal-open {
  overflow: hidden;
}

.label-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.label-modal.is-open {
  display: flex;
}

.label-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 61, 0.72);
}

.label-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 1060px);
  max-height: 90vh;
  border: 4px solid var(--hot-pink);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 230, 80, 0.44), transparent 26%),
    linear-gradient(135deg, var(--white), #fff0f8 58%, #e6fbff);
  box-shadow: 0 24px 60px rgba(17, 23, 61, 0.38);
  overflow: hidden;
}

.label-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 3px solid var(--light-pink);
}

.label-modal-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  color: var(--navy);
}

.label-modal-close {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.6rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
}

.label-modal-body {
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.label-modal-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: calc(90vh - 7rem);
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}

@media (max-width: 700px) {
  .product-card-front .product-image,
  .product-image-wrap {
    min-height: clamp(300px, 78vw, 380px);
    height: clamp(300px, 78vw, 380px);
  }

  .product-card-description {
    min-height: 1.5rem;
    -webkit-line-clamp: 1;
  }

  .product-chip-row {
    gap: 0.3rem;
  }

  .product-chip {
    padding: 0.24rem 0.52rem;
    font-size: 0.88rem;
  }

  .product-order-row {
    flex-wrap: wrap;
  }

  .product-order-row .add-order-btn {
    flex: 1 1 9rem;
  }

  .label-modal {
    padding: 0.35rem;
  }

  .label-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 0.7rem);
    border-radius: 18px;
  }

  .label-modal-header {
    align-items: flex-start;
    padding: 0.85rem;
  }

  .label-modal-close {
    min-width: max-content;
  }

  .label-modal-body {
    padding: 0.5rem;
  }

  .label-modal-image {
    max-height: calc(100dvh - 6.5rem);
  }
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list a {
  color: var(--hot-pink);
  font-weight: 1000;
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-card .btn {
  margin-top: 1rem;
}

.contact-value {
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(1rem, 5vw, 1.35rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@keyframes hero-glow-breathe {
  0%,
  100% {
    opacity: 0.78;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.04;
  }
}

@keyframes triangleSeesaw {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate3d(0, -5px, 0) rotate(2deg) scale(1.015);
  }
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 30px;
  background: var(--white);
  border: 3px solid var(--light-pink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 1000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 3px solid var(--ice-blue);
  border-radius: 18px;
  background: #fffaff;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  padding: 0.9rem 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--hot-pink);
  box-shadow: 0 0 0 4px rgba(255, 42, 163, 0.16);
  outline: none;
}

.contact-form .btn {
  border: 0;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.site-footer h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.site-footer a {
  max-width: 100%;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  min-width: 0;
}

.site-footer .credit {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer .credit a {
  color: var(--yellow);
}

@media (min-width: 680px) {
  .product-grid,
  .feature-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid-wide,
  .steps-grid,
  .booth-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-strip {
    grid-template-columns: 1fr auto;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-value {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
  }
}

@media (max-width: 679px) {
  body {
    padding-bottom: 5.75rem;
  }

  .quick-order-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    width: min(100% - 1rem, 1120px);
    margin: 0.85rem auto 0;
    padding: 0.55rem;
    border: 3px solid var(--ice-blue);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 12px 28px rgba(17, 23, 61, 0.14),
      0 0 26px rgba(255, 42, 163, 0.2);
  }

  .quick-order-strip a,
  .mobile-bottom-bar a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 3rem;
    padding: 0.65rem 0.45rem;
    border-radius: 999px;
    font-weight: 1000;
    line-height: 1;
    text-align: center;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .quick-order-strip a {
    color: var(--navy);
    background: var(--yellow);
    box-shadow: inset 0 0 0 2px rgba(17, 23, 61, 0.08);
  }

  .quick-order-strip a:nth-child(2) {
    color: var(--white);
    background: var(--hot-pink);
  }

  .quick-order-strip a:nth-child(3) {
    color: var(--navy);
    background: var(--ice-blue);
  }

  .mobile-bottom-bar {
    position: fixed;
    right: 0.65rem;
    bottom: max(0.65rem, env(safe-area-inset-bottom));
    left: 0.65rem;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    max-width: calc(100% - 1.3rem);
    padding: 0.55rem;
    border: 3px solid var(--navy);
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(255, 42, 163, 0.96), rgba(130, 232, 255, 0.96)),
      var(--white);
    box-shadow:
      0 16px 34px rgba(17, 23, 61, 0.26),
      0 0 30px rgba(255, 230, 80, 0.32);
  }

  .mobile-bottom-bar a {
    color: var(--navy);
    background: var(--white);
    border: 2px solid rgba(17, 23, 61, 0.14);
    font-size: 0.95rem;
  }

  .hero {
    text-align: center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
  }

  .hero .button-row {
    width: 100%;
    justify-content: center;
  }

  .hero .btn {
    width: 100%;
    min-height: 3.75rem;
    padding: 1rem 1.15rem;
    font-size: 1.05rem;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow) {
    font-size: clamp(1.12rem, 5vw, 1.45rem);
  }

  .hero-triangle-positioner {
    margin-inline: auto;
    min-height: 12rem;
  }

  .product-card {
    gap: 0.95rem;
    padding: 1.15rem;
    border-width: 4px;
    border-color: var(--ice-blue);
    box-shadow:
      0 16px 32px rgba(17, 23, 61, 0.17),
      0 0 24px rgba(255, 42, 163, 0.16);
  }

  .product-card h2,
  .product-card h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .product-image {
    height: clamp(16rem, 70vw, 21rem);
    padding: 1.15rem;
    border-width: 5px;
  }

  .price {
    display: inline-grid;
    align-self: flex-start;
    place-items: center;
    min-height: 2.65rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
    box-shadow: 0 7px 0 rgba(17, 23, 61, 0.12);
  }

  .btn-small {
    min-height: 3.45rem;
    font-size: 1.05rem;
  }

  .video-grid {
    gap: 1.2rem;
  }

  .video-card {
    width: min(100%, 24rem);
    margin-inline: auto;
    padding: 0.45rem;
    border-width: 5px;
    border-radius: 34px;
    box-shadow:
      0 18px 34px rgba(17, 23, 61, 0.2),
      0 0 30px rgba(255, 42, 163, 0.28),
      0 0 34px rgba(130, 232, 255, 0.26);
  }

  .video-card video {
    aspect-ratio: 9 / 16;
    max-height: 34rem;
    border-radius: 27px;
  }

  .order-bag-toggle {
    right: 0.8rem;
    bottom: 6.1rem;
  }

  .contact-band a,
  .site-footer a,
  .social-strip h2,
  .contact-value,
  .product-card h2,
  .product-card h3 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.65rem;
    padding: 0.75rem 0.75rem;
  }

  .logo {
    gap: 0.5rem;
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .logo-mark {
    width: 2.25rem;
    height: 2.25rem;
    box-shadow: 0 0 0 4px var(--yellow);
  }

  .menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero,
  .page-hero,
  .section,
  .split-callout,
  .social-strip,
  .contact-band,
  .contact-layout {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero {
    gap: 1.25rem;
    min-height: auto;
    padding-block: 2.5rem 1.5rem;
  }

  .button-row .btn,
  .social-buttons .btn {
    width: 100%;
  }

  .hero-triangle-positioner {
    width: clamp(220px, 60vw, 280px);
  }
}

@media (min-width: 680px) and (max-width: 919px) {
  .hero-triangle-positioner {
    width: clamp(280px, 38vw, 340px);
  }
}

@media (min-width: 920px) {
  .site-header {
    padding-inline: max(1rem, calc((100% - 1180px) / 2));
  }

  .contact-value {
    font-size: clamp(1.25rem, 2vw, 2rem);
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .primary-nav a {
    padding: 0.55rem 0.75rem;
    font-size: 0.94rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
    padding-block: 5rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .video-grid-clips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-callout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 2rem;
  }

  .site-footer {
    grid-template-columns: minmax(18rem, 1.2fr) 1fr;
    padding-inline: max(1rem, calc((100% - 1120px) / 2));
  }

  .site-footer .credit {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-triangle-motion {
    animation: none !important;
  }

  .product-flip-inner,
  .product-flip-card.is-flipped .product-flip-inner,
  .product-card-back {
    transition: none !important;
    transform: none !important;
  }

  .product-card-back {
    display: none;
  }

  .product-flip-card.is-flipped .product-card-front {
    display: none;
  }

  .product-flip-card.is-flipped .product-card-back {
    display: flex;
  }
}
