:root {
  --red: #ef2f35;
  --blue: #0876d8;
  --yellow: #ffd21f;
  --green: #39a845;
  --black: #151515;
  --white: #ffffff;
  --cream: #fffaf5;
  --muted: #66646a;
  --line: rgba(17, 17, 17, 0.1);
  --stroke: rgba(17, 17, 17, 0.16);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow: 0 28px 80px rgba(24, 28, 38, 0.12);
  --soft-shadow: 0 18px 46px rgba(24, 28, 38, 0.1);
  --lift-shadow: 0 28px 72px rgba(24, 28, 38, 0.16);
  --button-shadow: 0 12px 26px rgba(24, 28, 38, 0.12);
  --radius: 18px;
  --promo-height: 38px;
  --font: "Segoe UI", Arial, sans-serif;
  --display: "Trebuchet MS", "Arial Black", var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  font-family: var(--font);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 210, 31, 0.38) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 92% 9%, rgba(8, 118, 216, 0.22) 0 13rem, transparent 13.1rem),
    linear-gradient(135deg, #fffdf8, #fff4e4 46%, #f7fbff);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.promo-ribbon {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  height: var(--promo-height);
  overflow: hidden;
  color: #2b292d;
  background: #fff2ad;
  border-bottom: 1px solid rgba(239, 47, 53, 0.28);
  box-shadow: 0 5px 18px rgba(24, 28, 38, 0.08);
  backdrop-filter: blur(16px);
}

.promo-label {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  box-shadow: 8px 0 20px rgba(239, 47, 53, 0.2);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-window {
  min-width: 0;
  overflow: hidden;
}

.promo-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: promoScroll 40s linear infinite;
}

.promo-group {
  display: flex;
  flex: none;
  align-items: center;
  width: max-content;
}

.promo-group span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  color: #413c35;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.promo-group b {
  color: #171515;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 2px;
  transform: rotate(10deg);
}

.dot-red { background: var(--red); }
.dot-blue { background: var(--blue); }
.dot-yellow { background: var(--yellow); }
.dot-green { background: var(--green); }

@keyframes promoScroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.site-header {
  position: sticky;
  top: calc(var(--promo-height) + 14px);
  z-index: 20;
  width: min(94vw, 1200px);
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(24, 28, 38, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.6rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a,
.nav-dropdown-toggle,
.menu-button,
.search-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 12px 14px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.menu-button:hover,
.menu-button:focus-visible,
.search-button:hover,
.search-button:focus-visible {
  background: rgba(17, 17, 17, 0.06);
  outline: 0;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  cursor: pointer;
  font-size: inherit;
  text-transform: uppercase;
}

.nav-dropdown-toggle span {
  display: inline-block;
  color: var(--red);
  font-size: 0.72em;
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle span,
.nav-dropdown-toggle[aria-expanded="true"] span,
.nav-dropdown:hover .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  z-index: 25;
  min-width: 230px;
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.94)),
    var(--white);
  box-shadow: 0 20px 48px rgba(24, 28, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -8px) scale(0.96);
  transform-origin: top center;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  backdrop-filter: blur(16px);
}

.nav-dropdown-menu.kit-menu {
  width: min(360px, 88vw);
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.22;
  text-transform: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.62), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.nav-cta,
.primary-action {
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, var(--yellow), #ffe96a);
  box-shadow: var(--button-shadow);
}

.menu-button {
  display: none;
}

.menu-icon {
  display: grid;
  gap: 4px;
  width: 20px;
}

.menu-icon span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--black);
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(8, 118, 216, 0.12), rgba(255, 255, 255, 0.9)),
    var(--white);
  box-shadow: 0 10px 22px rgba(24, 28, 38, 0.08);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.nav-search-button {
  display: none;
}

.cart-link,
.site-nav .cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 58px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(57, 168, 69, 0.18), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: 0 10px 22px rgba(24, 28, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-link:hover,
.cart-link:focus-visible,
.site-nav .cart-link:hover,
.site-nav .cart-link:focus-visible {
  outline: 0;
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.cart-icon {
  position: relative;
  width: 22px;
  height: 18px;
  display: inline-block;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 6px 6px;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -7px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: skewX(-16deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 2px 2px, currentColor 0 2px, transparent 2.2px),
    radial-gradient(circle at calc(100% - 2px) 2px, currentColor 0 2px, transparent 2.2px);
}

.cart-link b {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.75rem;
  line-height: 1;
}

.mobile-cart-link {
  display: none;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.site-search.open {
  opacity: 1;
  pointer-events: auto;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.34);
  backdrop-filter: blur(8px);
}

.site-search-panel {
  position: relative;
  width: min(92vw, 840px);
  max-height: calc(100vh - 84px);
  margin: calc(var(--promo-height) + 58px) auto 24px;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0, rgba(239, 47, 53, 0.12), transparent 14rem),
    radial-gradient(circle at 92% 10%, rgba(255, 210, 31, 0.26), transparent 13rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 90px rgba(17, 17, 17, 0.28);
  transform: translateY(-12px) scale(0.98);
  transition: transform 0.2s ease;
}

.site-search.open .site-search-panel {
  transform: translateY(0) scale(1);
}

.site-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.site-search-head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  text-transform: uppercase;
}

.search-close {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-box {
  display: grid;
  gap: 7px;
}

.site-search-box span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.site-search-box input {
  width: 100%;
  min-height: 54px;
  border: 2px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 800;
  outline: none;
}

.site-search-box input:focus {
  border-color: rgba(8, 118, 216, 0.44);
  box-shadow: 0 0 0 4px rgba(8, 118, 216, 0.1);
}

.site-search-results {
  display: grid;
  gap: 14px;
  max-height: min(58vh, 560px);
  overflow-y: auto;
  padding-right: 4px;
}

.search-result-section {
  display: grid;
  gap: 9px;
}

.search-result-section h3 {
  color: var(--black);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.search-result-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 9px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-result-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24, 28, 38, 0.12);
}

.search-result-item.coming-soon {
  cursor: not-allowed;
  opacity: 0.7;
}

.search-result-item img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 14px;
  background: #ffffff;
  object-fit: contain;
}

.search-result-item span:not(.search-addon-mark) {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.search-result-item strong {
  overflow: hidden;
  font-family: var(--display);
  font-size: 0.98rem;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.addon-search-result,
.section-search-result {
  grid-template-columns: 42px minmax(0, 1fr);
}

.search-addon-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent, var(--blue));
  font-weight: 950;
}

.section-search-result .search-addon-mark {
  background: var(--black);
}

.search-empty {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.search-empty strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.search-empty span {
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  width: min(94vw, 1220px);
  min-height: 430px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: 24px;
  padding: clamp(22px, 3.5vw, 42px);
  border: 1px solid var(--stroke);
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(239, 47, 53, 0.1), transparent 38%),
    linear-gradient(35deg, transparent 66%, rgba(255, 210, 31, 0.58) 66% 82%, rgba(8, 118, 216, 0.46) 82%),
    var(--glass-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy,
.hero-board {
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 32px rgba(239, 47, 53, 0.22);
  font-family: var(--display);
  font-weight: 950;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.98;
}

.hero h1 {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(2.45rem, 5.2vw, 4.6rem);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.8);
}

.hero p {
  max-width: 560px;
  color: #303030;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.hero-badges span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.secondary-action {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--button-shadow);
}

.primary-action:hover,
.secondary-action:hover,
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--lift-shadow);
}

button.primary-action:disabled {
  cursor: wait;
  opacity: 0.68;
  pointer-events: none;
  transform: none;
  box-shadow: var(--button-shadow);
}

.hero-board img {
  width: 100%;
  max-height: 523px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  box-shadow: var(--lift-shadow);
  transform: rotate(1deg);
}

.uno-tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: 74px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(24, 28, 38, 0.13);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 950;
}

.tile-red {
  left: -14px;
  top: 15%;
  background: var(--red);
  animation: drift 5s ease-in-out infinite;
}

.tile-blue {
  right: 17%;
  top: 9%;
  background: var(--blue);
  transform: rotate(14deg);
  animation: drift 6s ease-in-out infinite reverse;
}

.tile-green {
  right: -10px;
  bottom: 16%;
  background: var(--green);
  animation: drift 5.4s ease-in-out infinite;
}

@keyframes drift {
  50% {
    translate: 0 -16px;
  }
}

.stats-strip {
  position: relative;
  z-index: 3;
  width: min(94vw, 1180px);
  margin: 14px auto 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  color: var(--black);
  background: var(--glass-strong);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.stats-strip article {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
}

.stats-strip strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.live-stat {
  position: relative;
}

.live-stat strong {
  transition: color 0.25s ease, transform 0.25s ease;
}

.live-stat.updated strong {
  color: var(--green);
  transform: translateY(-1px);
}

.live-stat small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 6px;
  padding: 3px 7px;
  border: 1px solid rgba(57, 168, 69, 0.22);
  border-radius: 999px;
  color: var(--green);
  background: rgba(57, 168, 69, 0.08);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-stat small::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.4s ease-in-out infinite;
}

@keyframes livePulse {
  50% {
    opacity: 0.35;
    transform: scale(1.45);
  }
}

.section-shell {
  width: min(94vw, 1180px);
  margin: 0 auto 86px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  text-transform: uppercase;
  margin-top: 35px;
}

.section-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.kit-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  text-align: left;
  animation: cardRise 0.7s ease both;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.kit-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--lift-shadow);
}

.kit-card.coming-soon {
  cursor: not-allowed;
  opacity: 1;
}

.kit-card.coming-soon:hover,
.kit-card.coming-soon:focus-visible {
  transform: none;
}

.kit-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.12), transparent 42%),
    #ffffff;
  object-fit: contain;
  object-position: center;
  transition: transform 0.55s ease;
}

.kit-card:hover img {
  transform: scale(1.025);
}

.kit-card.coming-soon:hover img {
  transform: none;
}

.kit-card.coming-soon img {
  filter: saturate(0.72) contrast(0.96);
  opacity: 0.58;
}

.kit-card.coming-soon::before {
  content: "Coming Soon";
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  padding: 9px 13px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
  box-shadow: 0 12px 26px rgba(24, 28, 38, 0.12);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
  pointer-events: none;
  transform: rotate(-1deg);
}

.kit-card::after {
  content: none;
}

.kit-card.coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.03)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(17, 17, 17, 0.025) 16px 17px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.kit-card.coming-soon:is(:hover, :focus-visible)::after {
  opacity: 0.45;
}

.kit-card-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 18px 20px 20px;
  border-top: 1px solid var(--line);
  color: var(--black);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.92)),
    var(--white);
}

.kit-card-content span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
}

.kit-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  text-transform: uppercase;
}

.kit-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.kit-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 20px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 245, 0.92)),
    var(--white);
}

.kit-card-actions .primary-action,
.kit-card-actions .secondary-action {
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.74rem;
}

.kit-card-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

@keyframes cardRise {
  from {
    transform: translateY(22px) rotate(0.7deg);
  }

  to {
    transform: none;
  }
}

.occasion-band {
  width: 100%;
  margin-bottom: 86px;
  padding: 70px max(3vw, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 6% 12%, rgba(239, 47, 53, 0.12), transparent 18rem),
    radial-gradient(circle at 92% 22%, rgba(8, 118, 216, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.62);
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(94vw, 1180px);
  margin: 0 auto;
}

.occasion-chip {
  --accent: var(--red);
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--black);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 245, 0.8)),
    var(--glass);
  box-shadow: var(--soft-shadow);
  text-align: left;
  backdrop-filter: blur(12px);
  animation: cardRise 0.65s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.occasion-chip:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent), transparent 58%);
  box-shadow: var(--lift-shadow);
}

.occasion-chip.coming-soon {
  cursor: not-allowed;
  opacity: 1;
}

.occasion-chip.coming-soon:hover,
.occasion-chip.coming-soon:focus-visible {
  transform: translateY(-4px);
}

.occasion-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent), transparent 82%), transparent 38%);
  pointer-events: none;
}

.occasion-chip.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(24, 28, 38, 0.12);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.occasion-chip.coming-soon:is(:hover, :focus-visible)::after {
  opacity: 1;
  transform: translateY(0);
}

.occasion-chip img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.05 / 1;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(24, 28, 38, 0.08);
}

.occasion-chip.coming-soon img {
  filter: saturate(0.72) contrast(0.96);
  opacity: 0.58;
}

.occasion-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(24, 28, 38, 0.14);
  font-family: var(--display);
  font-weight: 950;
}

.occasion-chip strong {
  font-family: var(--display);
}

.occasion-copy,
.occasion-meta,
.occasion-kit {
  position: relative;
  z-index: 1;
}

.occasion-copy {
  display: grid;
  gap: 8px;
}

.occasion-copy strong {
  font-size: 1.26rem;
  line-height: 1.05;
}

.occasion-copy span,
.occasion-meta {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
}

.occasion-meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.occasion-meta b {
  color: var(--black);
}

.occasion-kit {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 62%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent), white 86%);
  font-size: 0.78rem;
  font-weight: 950;
}

.addon-band {
  width: 100%;
  margin-bottom: 86px;
  padding: 64px max(3vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 210, 31, 0.24), transparent 18rem),
    radial-gradient(circle at 92% 72%, rgba(57, 168, 69, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 245, 0.9));
}

.addon-shell {
  width: min(94vw, 1180px);
  margin: 0 auto;
}

.addon-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 14px;
  align-items: end;
  margin-bottom: 14px;
}

.addon-search {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.addon-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(24, 28, 38, 0.07);
  outline: none;
}

.addon-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-filters button,
.addon-summary button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  padding: 10px 13px;
  font-size: 0.82rem;
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.addon-filters button:hover,
.addon-filters button.active,
.addon-summary button:hover:not(:disabled) {
  border-color: rgba(239, 47, 53, 0.24);
  background: rgba(255, 210, 31, 0.36);
  transform: translateY(-1px);
}

.addon-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(24, 28, 38, 0.08);
  backdrop-filter: blur(14px);
}

.addon-summary span {
  color: var(--muted);
  font-weight: 800;
}

.addon-summary button {
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.76), rgba(255, 233, 106, 0.7));
}

.addon-summary button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.addon-card {
  --accent: var(--red);
  position: relative;
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(24, 28, 38, 0.08);
  text-align: left;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.addon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 86%), transparent 58%);
  pointer-events: none;
}

.addon-card:hover,
.addon-card.selected {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent), transparent 52%);
  box-shadow: var(--soft-shadow);
}

.addon-card.selected {
  background: color-mix(in srgb, var(--accent), white 90%);
}

.addon-card strong,
.addon-card small,
.addon-card-top,
.addon-price,
.addon-plus {
  position: relative;
  z-index: 1;
}

.addon-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.addon-card strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.08;
}

.addon-card small {
  color: var(--muted);
  font-weight: 800;
}

.addon-price {
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(24, 28, 38, 0.08);
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.addon-plus {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 54%);
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  font-weight: 950;
}

.addon-card.selected .addon-plus {
  color: #ffffff;
  background: var(--accent);
}

.addon-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.addon-more[hidden] {
  display: none;
}

.addon-more button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--black);
  padding: 11px 16px;
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
  font-weight: 850;
  transition: transform 0.2s ease, background 0.2s ease;
}

.addon-more button:hover {
  background: rgba(255, 210, 31, 0.36);
  transform: translateY(-2px);
}

.inquiry-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background: var(--glass-strong);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.inquiry-panel label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.inquiry-panel .wide {
  grid-column: 1 / -1;
}

.inquiry-panel input,
.inquiry-panel select,
.inquiry-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
  background: var(--white);
  outline: none;
}

.inquiry-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer {
  width: 100%;
  margin-top: 18px;
  padding: 30px 0 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 210, 31, 0.18), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(8, 118, 216, 0.09), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 245, 0.94) 28%, #fffaf5);
}

.footer-frame {
  width: min(94vw, 1200px);
  margin: 0 auto;
  color: var(--black);
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(24, 28, 38, 0.08);
  backdrop-filter: blur(18px);
}

.footer-topline span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-topline h2 {
  margin-top: 3px;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  text-transform: none;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(140px, 0.65fr) minmax(220px, 1fr) minmax(190px, 0.85fr) minmax(230px, 1fr);
  gap: 20px;
  padding: 30px 0 24px;
  border-bottom: 1px solid var(--line);
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.site-footer .brand strong {
  color: var(--red);
}

.site-footer .brand small,
.footer-brand p,
.footer-social-column p,
.footer-hours span,
.footer-kit-links small {
  color: var(--muted);
}

.footer-brand p,
.footer-social-column p {
  margin: 0;
  line-height: 1.6;
}

.footer-contact-list,
.footer-socials {
  display: grid;
  gap: 8px;
}

.footer-kit-links {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 8px;
}

.footer-kit-links::-webkit-scrollbar {
  width: 4px;
}

.footer-kit-links::-webkit-scrollbar-track {
  background: transparent;
}

.footer-kit-links::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 99px;
}

.footer-kit-links::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.footer-contact-list a,
.footer-socials a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: #3d3d42;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-contact-list b,
.footer-socials span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 210, 31, 0.42);
  font-size: 0.76rem;
  font-weight: 850;
}

.footer-contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 4px;
  padding-bottom: 10px;
  color: var(--black);
  font-size: 1rem;
  text-transform: none;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue), var(--green));
}

.footer-column a,
.footer-kit-links button {
  width: fit-content;
  border: 0;
  color: #4e4c52;
  background: transparent;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover,
.footer-kit-links button:hover,
.footer-contact-list a:hover,
.footer-socials a:hover {
  color: var(--red);
  transform: translateX(2px);
}

.footer-kit-links button {
  display: grid;
  gap: 3px;
}

.footer-kit-links button.coming-soon {
  cursor: not-allowed;
  color: #8d8585;
  opacity: 1;
}

.footer-kit-links button.coming-soon:hover,
.footer-kit-links button.coming-soon:focus-visible {
  color: var(--black);
  transform: none;
}

.footer-kit-links button.coming-soon small {
  color: var(--red);
  font-weight: 850;
}

.footer-hours {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
}

.footer-hours strong {
  color: var(--black);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 210, 31, 0.68);
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
  font-weight: 850;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--lift-shadow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.store-main {
  width: min(94vw, 1180px);
  margin: 42px auto 90px;
}

.product-detail-page {
  display: grid;
  gap: 22px;
}

.product-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 24px;
  align-items: start;
}

.product-gallery,
.product-info-panel,
.store-panel,
.cart-summary,
.cart-item,
.cart-empty {
  border: 1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 245, 0.9)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.product-gallery {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 28px;
}

.product-main-image {
  display: grid;
  place-items: center;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 210, 31, 0.18), transparent 14rem),
    #ffffff;
}

.product-main-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.product-thumbs button {
  min-height: 82px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
}

.product-thumbs button.active {
  border-color: var(--red);
}

.product-thumbs img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.product-info-panel {
  position: sticky;
  top: calc(var(--promo-height) + 104px);
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
}

.product-info-panel h1,
.cart-page-heading h1,
.cart-empty h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.product-subtitle,
.cart-page-heading p,
.cart-empty p,
.store-panel p,
.related-card small,
.cart-note {
  color: var(--muted);
  line-height: 1.55;
}

.product-price .variant-price {
  margin: 0;
}

.product-selector,
.product-quantity {
  display: grid;
  gap: 10px;
}

.product-selector h2,
.product-quantity h2 {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-variant-list {
  display: grid;
  gap: 8px;
}

.product-variant-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  text-align: left;
}

.product-variant-list button.selected {
  border-color: rgba(239, 47, 53, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.5), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.product-variant-list span {
  color: var(--red);
  font-weight: 950;
  white-space: nowrap;
}

.quantity-control {
  width: fit-content;
  display: grid;
  grid-template-columns: 42px 64px 42px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
}

.quantity-control button,
.quantity-control input {
  min-height: 42px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 950;
}

.quantity-control button {
  color: var(--black);
  background: rgba(255, 210, 31, 0.36);
}

.quantity-control input {
  width: 64px;
  appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quantity-control.small {
  grid-template-columns: 36px 52px 36px;
}

.quantity-control.small button,
.quantity-control.small input {
  min-height: 36px;
}

.quantity-control.small input {
  width: 52px;
}

.product-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-panel,
.customer-review-panel,
.related-products-shell {
  margin-top: 24px;
}

.store-panel {
  padding: 24px;
  border-radius: 26px;
}

.store-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  margin-top: 15px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
}

.compact-pills {
  gap: 8px;
}

.customer-review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
}

.review-placeholder {
  display: grid;
  gap: 6px;
  min-height: 150px;
  place-items: center;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.review-placeholder strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 2.4rem;
}

.related-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover,
.related-card:focus-visible {
  outline: 0;
  transform: translateY(-4px);
  box-shadow: var(--lift-shadow);
}

.related-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  object-fit: contain;
}

.related-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.74rem;
  font-weight: 950;
}

.related-card strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.cart-page-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.surprise-offer-banner {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 18px 20px;
  border: 2px solid rgba(57, 168, 69, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.34), rgba(57, 168, 69, 0.16)),
    var(--white);
  box-shadow: var(--lift-shadow);
  animation: celebrationPop 0.58s ease both;
}

.surprise-offer-banner strong {
  display: block;
  color: var(--black);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.surprise-offer-banner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.celebration-burst {
  display: inline-grid;
  grid-template-columns: repeat(3, 28px);
  place-items: center;
  min-width: 88px;
  font-size: 1.5rem;
}

.celebration-burst span {
  display: inline-block;
  animation: confettiBounce 1.35s ease-in-out infinite;
}

.celebration-burst span:nth-child(2) {
  animation-delay: 0.16s;
}

.celebration-burst span:nth-child(3) {
  animation-delay: 0.32s;
}

.surprise-offer-pill {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(239, 47, 53, 0.22);
}

.surprise-offer-pill {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.cart-item {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
}

.cart-item.addon-cart-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.cart-item.combo-gift-cart-item {
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid rgba(57, 168, 69, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.22), rgba(57, 168, 69, 0.12)),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.cart-item.combo-gift-cart-item .cart-item-copy span {
  color: #1f6f2b;
  background: rgba(57, 168, 69, 0.16);
}

.combo-gift-badge {
  display: inline-grid;
  min-height: 36px;
  place-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(57, 168, 69, 0.22);
}

.cart-item-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 136px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

.cart-item-image img {
  width: 100%;
  height: 128px;
  object-fit: contain;
}

.cart-item-copy {
  display: grid;
  gap: 6px;
}

.cart-item-copy span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 210, 31, 0.55);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cart-item-copy h2 {
  margin: 0;
  font-size: 1.45rem;
}

.cart-item-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.cart-line-price {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
}

.cart-line-price strong,
.cart-summary-row strong {
  color: var(--red);
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 10px;
}

@keyframes celebrationPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes confettiBounce {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  45% {
    transform: translateY(-8px) rotate(8deg) scale(1.12);
  }
}

.cart-remove {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(239, 47, 53, 0.2);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 950;
}

.cart-summary {
  position: sticky;
  top: calc(var(--promo-height) + 104px);
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
}

.cart-summary h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.cart-note {
  margin: 0;
  padding: 12px;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.cart-empty {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 34px;
  border-radius: 26px;
}

.kit-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.kit-modal.open {
  display: block;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(239, 47, 53, 0.26), transparent 22rem),
    radial-gradient(circle at 84% 12%, rgba(8, 118, 216, 0.2), transparent 24rem),
    rgba(17, 19, 28, 0.48);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: absolute;
  inset: 18px;
  overflow: auto;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 245, 0.94)),
    var(--cream);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), var(--shadow);
  animation: modalIn 0.32s ease both;
}

@keyframes modalIn {
  from {
    transform: scale(0.94) rotate(1deg);
  }

  to {
    transform: none;
  }
}

.modal-close {
  position: sticky;
  top: 16px;
  z-index: 3;
  float: right;
  margin: 16px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  padding: 10px 15px;
  box-shadow: var(--button-shadow);
  font-weight: 950;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 54px 30px 28px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(255, 210, 31, 0.4), transparent 42%),
    linear-gradient(38deg, transparent 64%, rgba(8, 118, 216, 0.25) 64%),
    var(--white);
}

.draw-hearts-hero {
  grid-template-columns: 1fr;
  background:
    radial-gradient(circle at 12% 16%, rgba(239, 47, 53, 0.14), transparent 15rem),
    radial-gradient(circle at 70% 12%, rgba(255, 210, 31, 0.32), transparent 18rem),
    linear-gradient(130deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 242, 0.96));
}

.detail-hero h2 {
  margin-top: 16px;
  font-size: clamp(2.45rem, 6.6vw, 5.8rem);
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 210, 31, 0.55);
}

.detail-hero p {
  color: var(--muted);
  line-height: 1.58;
}

.detail-description {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  line-height: 1.58;
  text-align: left;
}

.expandable-description {
  cursor: pointer;
}

.expandable-description:not(.expanded) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}

.expandable-description.expanded {
  display: block;
  overflow: visible;
}

.detail-body {
  display: grid;
  gap: 22px;
  padding: 28px 30px 40px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
}

.detail-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
}

.detail-panel h3 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.variant-panel,
.business-panel {
  grid-column: 1 / -1;
}

.variant-list,
.pill-list {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.pill-list > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.variant-panel .variant-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.variant {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 28, 38, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.variant:hover {
  transform: translateY(-5px);
  box-shadow: var(--lift-shadow);
}

.variant.coming-soon:hover {
  transform: none;
  box-shadow: 0 14px 34px rgba(24, 28, 38, 0.08);
}

.variant.coming-soon .variant-image {
  filter: saturate(0.72) contrast(0.96);
  opacity: 0.58;
}

.variant.coming-soon .variant-summary,
.variant.coming-soon .items {
  opacity: 0.58;
}

.variant.coming-soon .variant-summary {
  cursor: not-allowed;
}

.variant-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 12px 28px rgba(24, 28, 38, 0.08);
}

.variant h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 1.25rem;
}

.variant-price {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.58), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: 0 10px 22px rgba(24, 28, 38, 0.08);
}

.price-original {
  color: #817979;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}

.price-final {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.08rem;
}

.discount-badge {
  display: inline-block;
  background-color: rgba(57, 168, 69, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  align-self: center;
}

.coming-soon-price {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-variant-list button.coming-soon {
  cursor: not-allowed;
  opacity: 0.58;
}

.primary-action:disabled,
.secondary-action:disabled,
.product-variant-list button:disabled {
  cursor: not-allowed;
}

.variant p,
.variant-summary {
  color: var(--muted);
  line-height: 1.45;
}

.variant-summary {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.variant-summary.expanded {
  overflow: visible;
  white-space: normal;
}

.variant-summary:focus-visible {
  outline: 2px solid rgba(8, 118, 216, 0.38);
  outline-offset: 4px;
  border-radius: 8px;
}

.variant-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.46), rgba(255, 255, 255, 0.92)),
    var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.variant-detail-link.disabled-link {
  cursor: not-allowed;
  opacity: 0.62;
  background: rgba(17, 17, 17, 0.06);
}

.combo-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 1 / -1;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 210, 31, 0.46), transparent 9rem),
    radial-gradient(circle at 92% 18%, rgba(239, 47, 53, 0.28), transparent 10rem),
    radial-gradient(circle at 76% 88%, rgba(8, 118, 216, 0.2), transparent 11rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 230, 0.92));
  box-shadow: 0 24px 70px rgba(239, 47, 53, 0.15), 0 14px 34px rgba(24, 28, 38, 0.1);
}

.combo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(239, 47, 53, 0.38) 0 2px, transparent 2.2px) 10px 16px / 42px 42px,
    radial-gradient(circle, rgba(8, 118, 216, 0.3) 0 2px, transparent 2.2px) 30px 4px / 48px 48px,
    radial-gradient(circle, rgba(57, 168, 69, 0.3) 0 2px, transparent 2.2px) 14px 28px / 56px 56px;
  opacity: 0.55;
}

.combo-spark {
  position: absolute;
  color: var(--red);
  font-size: 1.45rem;
  opacity: 0.72;
}

.combo-spark-one {
  top: 18px;
  right: 24px;
}

.combo-spark-two {
  bottom: 18px;
  left: 22px;
  color: var(--blue);
}

.combo-heading {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-bottom: 18px;
}

.combo-kicker {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(24, 28, 38, 0.08);
  font-weight: 950;
}

.combo-heading h3 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.3rem);
  text-transform: uppercase;
}

.combo-heading p {
  margin: 0;
  color: #3f3b42;
  font-weight: 850;
}

.combo-tier-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.combo-tier {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(24, 28, 38, 0.1);
}

.combo-tier::after {
  content: "FREE";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff686d);
  font-size: 0.68rem;
  font-weight: 950;
}

.combo-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 10px 22px rgba(24, 28, 38, 0.1);
}

.combo-tier strong {
  color: var(--black);
  font-family: var(--display);
  font-size: 1.18rem;
}

.combo-tier p {
  margin: 0;
  color: var(--muted);
  line-height: 1.42;
}

.combo-tier b {
  color: var(--red);
}

.mini-bulk-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-bulk-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 34px rgba(24, 28, 38, 0.1);
}

.mini-bulk-card > strong {
  color: var(--black);
  font-family: var(--display);
  font-size: 1.12rem;
}

.mini-bulk-tiers {
  display: grid;
  gap: 8px;
}

.mini-bulk-tiers span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.mini-bulk-tiers b {
  color: var(--black);
}

.mini-bulk-tiers em {
  color: var(--red);
  font-style: normal;
  font-weight: 950;
}

.variant-tier {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.draw-hearts-variants {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 245, 0.92)),
    var(--white);
}

.draw-hearts-variants .variant-basic {
  background: #ffffff;
}

.draw-hearts-variants .variant-basic .items,
.draw-hearts-variants .variant-featured .items,
.draw-hearts-variants .variant-premium .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.draw-hearts-variants .variant-basic .items::-webkit-scrollbar,
.draw-hearts-variants .variant-featured .items::-webkit-scrollbar,
.draw-hearts-variants .variant-premium .items::-webkit-scrollbar {
  width: 5px;
}

.draw-hearts-variants .variant-basic .items::-webkit-scrollbar-thumb,
.draw-hearts-variants .variant-featured .items::-webkit-scrollbar-thumb,
.draw-hearts-variants .variant-premium .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.draw-hearts-variants .variant.coming-soon .items {
  display: none;
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
  scrollbar-width: auto;
}

.swap-shuffle-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.swap-shuffle-variants .items::-webkit-scrollbar {
  width: 5px;
}

.swap-shuffle-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.no-skips-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.no-skips-variants .items::-webkit-scrollbar {
  width: 5px;
}

.no-skips-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.uno-caught-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.uno-caught-variants .items::-webkit-scrollbar {
  width: 5px;
}

.uno-caught-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.reverse-screen-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.reverse-screen-variants .items::-webkit-scrollbar {
  width: 5px;
}

.reverse-screen-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.reverse-screen-variants .variant.coming-soon .items {
  display: none;
  max-height: none;
  overflow-y: visible;
  padding-right: 0;
  scrollbar-width: auto;
}

.blank-card-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.blank-card-variants .items::-webkit-scrollbar {
  width: 5px;
}

.blank-card-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.mini-flips-variants .items {
  max-height: 184px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.24) transparent;
}

.mini-flips-variants .items::-webkit-scrollbar {
  width: 5px;
}

.mini-flips-variants .items::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.24);
}

.draw-hearts-variants .variant-featured {
  border-color: rgba(8, 118, 216, 0.28);
  background:
    linear-gradient(145deg, rgba(8, 118, 216, 0.08), rgba(255, 255, 255, 0.94) 46%, rgba(255, 210, 31, 0.14));
  transform: translateY(-6px);
}

.draw-hearts-variants .variant-featured .variant-tier {
  color: var(--white);
  background: var(--blue);
}

.draw-hearts-variants .variant-premium {
  border-color: rgba(239, 47, 53, 0.34);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 210, 31, 0.42), transparent 9rem),
    linear-gradient(145deg, rgba(239, 47, 53, 0.12), rgba(255, 255, 255, 0.94) 42%, rgba(57, 168, 69, 0.12));
  box-shadow: 0 24px 70px rgba(239, 47, 53, 0.18);
  animation: premiumFloat 3.2s ease-in-out infinite;
}

.draw-hearts-variants .variant-premium::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 80%;
  height: 80%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: rotate(22deg);
  animation: premiumShine 3.8s ease-in-out infinite;
}

.draw-hearts-variants .variant-premium > * {
  position: relative;
  z-index: 1;
}

.draw-hearts-variants .variant-premium .variant-tier {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #ff686d);
  box-shadow: 0 12px 24px rgba(239, 47, 53, 0.2);
}

.draw-hearts-variants .variant-premium .variant-image {
  border-color: rgba(239, 47, 53, 0.24);
  box-shadow: 0 18px 42px rgba(239, 47, 53, 0.14);
}

@keyframes premiumFloat {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes premiumShine {
  50% {
    translate: 150% 90%;
  }
}

.items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.items li,
.pill {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.82rem;
}

.items li {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.items li strong {
  color: var(--black);
  font-weight: 950;
}

.pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 100;
  display: grid;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  right: calc(22px + env(safe-area-inset-right));
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 70;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(18, 140, 75, 0.3), 0 4px 10px rgba(24, 28, 38, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
  background: #20bd5a;
  box-shadow: 0 18px 40px rgba(18, 140, 75, 0.36), 0 5px 12px rgba(24, 28, 38, 0.14);
  outline: none;
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
}

.whatsapp-float span {
  position: absolute;
  right: calc(100% + 10px);
  width: max-content;
  max-width: 180px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #343136;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(24, 28, 38, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(12px);
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
  opacity: 1;
  transform: none;
}

.toast {
  width: min(360px, calc(100vw - 40px));
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  font-weight: 850;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 2px;
    font-size: 0.72rem;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    padding: 10px 8px;
  }

  .hero,
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .variant-panel .variant-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .addon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .occasion-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-shell,
  .product-detail-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-info-panel,
  .cart-summary {
    position: static;
  }

  .cart-item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .cart-item.addon-cart-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-item-controls {
    grid-column: 2;
    justify-items: start;
  }

  .addon-cart-item .cart-item-controls {
    grid-column: 1;
  }

  .customer-review-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --promo-height: 34px;
  }

  body {
    background:
      radial-gradient(circle at 8% 4%, rgba(255, 210, 31, 0.24) 0 6rem, transparent 6.1rem),
      radial-gradient(circle at 96% 2%, rgba(8, 118, 216, 0.16) 0 7rem, transparent 7.1rem),
      linear-gradient(180deg, #fffdf9, #fff8ef 44%, #f8fbff);
  }

  .site-header {
    top: calc(var(--promo-height) + 8px);
    width: calc(100% - 24px);
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 9px 10px;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(24, 28, 38, 0.1);
  }

  .promo-group span {
    gap: 7px;
    padding: 0 18px;
    font-size: 0.7rem;
  }

  .promo-ribbon {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .promo-label {
    font-size: 0.75rem;
  }

  .promo-dot {
    width: 7px;
    height: 7px;
  }

  .whatsapp-float {
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float span {
    display: none;
  }

  .toast-stack {
    right: 14px;
    bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.32rem;
  }

  .brand small {
    display: block;
    max-width: 168px;
    overflow: hidden;
    font-size: 0.66rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    order: 3;
    display: inline-flex;
    min-height: 40px;
    width: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255, 210, 31, 0.38);
    box-shadow: 0 8px 18px rgba(24, 28, 38, 0.08);
  }

  .site-header > .mobile-cart-link {
    order: 2;
    display: inline-flex;
    min-width: 46px;
    min-height: 40px;
    margin-left: auto;
    padding: 8px 9px;
  }

  .site-header > .search-button {
    display: none;
  }

  .site-nav .nav-search-button {
    display: flex;
    width: 100%;
    min-height: 40px;
    padding: 12px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    background:
      linear-gradient(135deg, rgba(8, 118, 216, 0.14), rgba(255, 255, 255, 0.78)),
      rgba(255, 255, 255, 0.72);
    box-shadow: none;
    font-size: 0.78rem;
  }

  .site-search-panel {
    width: calc(100% - 24px);
    max-height: calc(100vh - 42px);
    margin: calc(var(--promo-height) + 18px) auto 14px;
    gap: 13px;
    padding: 16px;
    border-radius: 22px;
  }

  .site-search-head {
    align-items: center;
  }

  .site-search-head h2 {
    font-size: 1.45rem;
  }

  .site-search-box input {
    min-height: 50px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .search-result-list {
    grid-template-columns: 1fr;
  }

  .search-result-item {
    min-height: 70px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    right: auto;
    width: min(calc(100vw - 24px), 420px);
    max-height: calc(100vh - var(--promo-height) - 92px);
    box-sizing: border-box;
    display: none;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--stroke);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--soft-shadow);
    transform: translateX(-50%);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    backdrop-filter: blur(16px);
  }

  .site-nav a,
  .site-nav .nav-dropdown-toggle {
    padding: 12px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    background: rgba(255, 255, 255, 0.62);
  }

  .site-nav .nav-dropdown {
    display: grid;
    gap: 6px;
    width: 100%;
  }

  .site-nav .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .site-nav .nav-dropdown-menu {
    position: static;
    left: auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    gap: 6px;
    padding: 0 8px;
    border-width: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.5);
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease, visibility 0.2s ease;
  }

  .site-nav .nav-dropdown-menu::before {
    content: none;
  }

  .site-nav .nav-dropdown:hover .nav-dropdown-menu {
    max-height: 0;
    padding: 0 8px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .site-nav .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    max-height: min(36vh, 230px);
    padding: 8px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-nav .nav-dropdown:focus-within .nav-dropdown-menu,
  .site-nav .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
    display: grid;
    max-height: min(36vh, 230px);
    padding: 8px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-nav .nav-dropdown.open:hover .nav-dropdown-menu {
    max-height: min(36vh, 230px);
    padding: 8px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-nav .nav-dropdown.open .nav-dropdown-menu.kit-menu {
    max-height: min(42vh, 320px);
    overflow-y: auto;
  }

  .site-nav .nav-dropdown:focus-within .nav-dropdown-menu.kit-menu,
  .site-nav .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu.kit-menu {
    max-height: min(42vh, 320px);
    overflow-y: auto;
  }

  .site-nav .nav-dropdown.open:hover .nav-dropdown-menu.kit-menu {
    max-height: min(42vh, 320px);
    overflow-y: auto;
  }

  .site-nav .nav-dropdown-menu a {
    width: 100%;
    box-sizing: border-box;
    min-height: 38px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.74);
    overflow-wrap: anywhere;
    text-transform: none;
    white-space: normal;
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav .cart-link {
    display: none;
  }

  .cart-link,
  .site-nav .cart-link {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .cart-link b,
  .site-nav .cart-link b {
    min-width: 20px;
    height: 20px;
    font-size: 0.68rem;
  }

  .store-main {
    width: calc(100% - 24px);
    margin-top: 26px;
    margin-bottom: 56px;
  }

  .product-hero-shell,
  .product-detail-grid,
  .related-products,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .product-info-panel,
  .store-panel,
  .cart-summary,
  .cart-item,
  .cart-empty {
    border-radius: 20px;
  }

  .product-gallery,
  .product-info-panel,
  .store-panel,
  .cart-summary,
  .cart-item {
    padding: 14px;
  }

  .product-main-image {
    min-height: 320px;
    border-radius: 18px;
  }

  .product-main-image img {
    max-height: 320px;
  }

  .product-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-thumbs button,
  .product-thumbs img {
    min-height: 66px;
    height: 66px;
  }

  .product-info-panel h1,
  .cart-page-heading h1,
  .cart-empty h1 {
    font-size: 2.2rem;
  }

  .product-variant-list button {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .product-variant-list span {
    white-space: normal;
  }

  .product-actions,
  .cart-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-actions .primary-action,
  .product-actions .secondary-action,
  .cart-actions .primary-action,
  .cart-actions .secondary-action {
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .surprise-offer-banner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 16px;
  }

  .celebration-burst {
    min-width: 0;
  }

  .surprise-offer-pill {
    white-space: normal;
  }

  .cart-item.addon-cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item.combo-gift-cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-image {
    min-height: 92px;
    border-radius: 14px;
  }

  .cart-item-image img {
    height: 86px;
  }

  .cart-item-copy h2 {
    font-size: 1.18rem;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .kit-card-actions {
    grid-template-columns: 1fr;
    display: contents;
  }

  .hero {
    position: relative;
    width: calc(100% - 24px);
    min-height: auto;
    margin-top: 16px;
    display: block;
    padding: 20px 16px 18px;
    border-radius: 26px;
    background:
      linear-gradient(150deg, rgba(239, 47, 53, 0.1), transparent 44%),
      linear-gradient(34deg, transparent 64%, rgba(255, 210, 31, 0.5) 64% 78%, rgba(8, 118, 216, 0.26) 78%),
      rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(24, 28, 38, 0.1);
  }

  .hero-copy {
    min-width: 0;
  }

  .tag {
    padding: 7px 11px;
    font-size: 0.76rem;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: 2.28rem;
    line-height: 0.96;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.75);
    text-wrap: balance;
  }

  .hero p {
    margin: 12px 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-badges {
    flex-wrap: nowrap;
    gap: 7px;
    margin: 14px -3px 0;
    padding: 2px 3px 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-badges::-webkit-scrollbar,
  .occasion-grid::-webkit-scrollbar,
  .addon-filters::-webkit-scrollbar {
    display: none;
  }

  .hero-badges span {
    flex: 0 0 auto;
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .primary-action,
  .secondary-action {
    min-height: 46px;
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .hero-board {
    position: absolute;
    right: 13px;
    bottom: 14px;
    z-index: 1;
    width: 112px;
    margin-top: 0;
    opacity: 0.18;
    pointer-events: none;
  }

  .hero-board img {
    width: 100%;
    height: 142px;
    max-height: none;
    border-width: 1px;
    border-radius: 18px;
    object-fit: cover;
    object-position: center 22%;
    box-shadow: 0 14px 30px rgba(24, 28, 38, 0.1);
    transform: rotate(4deg);
  }

  .uno-tile {
    width: 44px;
    height: 62px;
    border-radius: 13px;
    font-size: 1rem;
    opacity: 0.88;
  }

  .tile-red {
    left: -10px;
    top: 112px;
  }

  .tile-blue {
    top: auto;
    right: 18px;
    bottom: 132px;
  }

  .tile-green {
    right: -8px;
    bottom: 24px;
  }

  .stats-strip,
  .addon-toolbar,
  .inquiry-panel,
  .footer-shell,
  .variant-panel .variant-list {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: calc(100% - 24px);
    margin-bottom: 52px;
  }

  .section-heading {
    gap: 7px;
    margin-bottom: 18px;
    text-align: left;
  }

  .section-heading span {
    font-size: 0.78rem;
  }

  .section-heading h2 {
    font-size: 2.1rem;
    line-height: 0.98;
    text-wrap: balance;
  }

  .section-heading p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .kit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kit-card {
    animation: none;
    display: grid;
    grid-template-columns: minmax(116px, 40%) minmax(0, 1fr);
    min-height: 150px;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(24, 28, 38, 0.08);
    transform: none;
  }

  .kit-card img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    aspect-ratio: auto;
    padding: 7px;
    border-right: 1px solid var(--line);
    object-fit: contain;
  }

  .kit-card-content {
    align-content: center;
    min-height: 0;
    gap: 7px;
    padding: 12px;
    border-top: 0;
  }

  .kit-card-content span {
    width: fit-content;
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  .kit-card h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 1.12rem;
    line-height: 1.02;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .kit-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .stats-strip {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto 46px;
    border-radius: 20px;
  }

  .stats-strip article {
    min-height: 74px;
    padding: 12px;
  }

  .stats-strip strong {
    font-size: 1.5rem;
  }

  .stats-strip span {
    font-size: 0.82rem;
  }

  .occasion-band {
    margin-bottom: 52px;
    padding: 48px 0 46px 12px;
  }

  .occasion-band .section-heading {
    width: calc(100% - 24px);
    margin-right: 12px;
  }

  .occasion-grid {
    display: flex;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 12px 10px 0;
    scroll-snap-type: x mandatory;
  }

  .occasion-chip {
    animation: none;
    flex: 0 0 82%;
    min-height: 0;
    max-width: 320px;
    padding: 12px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .occasion-chip img {
    aspect-ratio: 1.28 / 1;
    padding: 7px;
    border-radius: 14px;
  }

  .occasion-number {
    top: 18px;
    left: 18px;
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }

  .occasion-copy strong {
    font-size: 1.12rem;
  }

  .occasion-copy span,
  .occasion-meta {
    font-size: 0.86rem;
  }

  .addon-band {
    margin-bottom: 52px;
    padding: 48px 12px 50px;
  }

  .occasion-grid,
  .addon-shell {
    width: 100%;
  }

  .addon-toolbar {
    gap: 12px;
  }

  .addon-search input {
    min-height: 44px;
    border-radius: 16px;
  }

  .addon-filters {
    flex-wrap: nowrap;
    gap: 7px;
    margin-inline: -2px;
    padding: 1px 2px 7px;
    overflow-x: auto;
  }

  .addon-filters button {
    flex: 0 0 auto;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .addon-summary {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .addon-summary span {
    font-size: 0.88rem;
    line-height: 1.4;
  }

  .addon-summary button {
    width: 100%;
    min-height: 42px;
  }

  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .addon-card {
    min-height: 92px;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
  }

  .addon-card strong {
    font-size: 0.94rem;
  }

  .addon-card small {
    font-size: 0.76rem;
  }

  .addon-plus {
    width: 24px;
    height: 24px;
  }

  .addon-more {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    text-align: center;
  }

  .addon-more button {
    min-height: 44px;
    padding: 10px 14px;
  }

  .inquiry-panel {
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .inquiry-panel input,
  .inquiry-panel select,
  .inquiry-panel textarea {
    border-radius: 14px;
    padding: 12px;
  }

  .site-footer {
    padding-top: 8px;
  }

  .footer-frame {
    width: calc(100% - 24px);
  }

  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
    padding: 14px;
  }

  .footer-topline h2 {
    font-size: 1.28rem;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 22px 0 18px;
  }

  .footer-brand,
  .footer-social-column,
  .footer-shell > .footer-column:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .footer-brand,
  .footer-column {
    gap: 10px;
  }

  .footer-brand p,
  .footer-social-column p {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-contact-list a,
  .footer-socials a {
    padding: 7px 0;
  }

  .footer-column h3 {
    padding-bottom: 8px;
  }

  .footer-column a,
  .footer-kit-links button {
    font-size: 0.88rem;
  }

  .footer-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-socials a {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.52);
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .draw-hearts-variants .variant-featured,
  .draw-hearts-variants .variant-premium {
    transform: none;
    animation: none;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 38px;
  }

  .stats-strip article {
    min-height: 68px;
    padding: 12px;
  }

  .modal-card {
    inset: 0;
    animation: none;
    border-radius: 0;
    overflow-x: hidden;
    transform: none;
  }

  .detail-hero,
  .detail-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .detail-hero {
    clear: both;
    gap: 18px;
    padding-top: 58px;
    padding-bottom: 20px;
  }

  .detail-hero h2 {
    margin-top: 12px;
    font-size: 2.18rem;
    line-height: 0.98;
    text-wrap: balance;
  }

  .detail-hero p {
    font-size: 0.94rem;
  }

  .expandable-description {
    cursor: pointer;
    font-size: 0.94rem;
  }

  .expandable-description:not(.expanded) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
  }

  .expandable-description.expanded {
    display: block;
    overflow: visible;
  }

  .detail-body {
    gap: 16px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 28px;
    overflow-x: hidden;
  }

  .detail-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .detail-panel h3 {
    font-size: 1.36rem;
  }

  .variant {
    padding: 12px;
    border-radius: 16px;
  }

  .variant-image {
    aspect-ratio: 1.18 / 1;
  }

  .business-panel .pill-list {
    gap: 10px;
  }

  .business-panel .pill-list > strong {
    display: block;
    margin-top: 8px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .business-panel .pill-list > strong:first-child {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .business-panel .pill-list > div {
    gap: 7px;
  }

  .business-panel .pill {
    padding: 7px 9px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.32;
  }

  .combo-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .combo-heading {
    margin-bottom: 14px;
  }

  .combo-heading h3 {
    font-size: 1.55rem;
    line-height: 1.04;
  }

  .combo-heading p {
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .combo-tier-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mini-bulk-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .combo-tier {
    min-height: 0;
    padding: 13px;
    border-radius: 15px;
  }

  .combo-tier strong {
    font-size: 1rem;
  }

  .combo-tier p {
    font-size: 0.84rem;
  }

  .modal-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .modal-actions .primary-action,
  .modal-actions .secondary-action {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .modal-close {
    position: fixed;
    top: 14px;
    right: 14px;
    left: auto;
    float: none;
    margin: 0;
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}
