.glass { background: #0a0a14 !important; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.glass-dark { background: rgba(0,0,0,0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,0,0,0.3); }
html { scroll-behavior: smooth; }
#kioskFilterNavOverlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(185, 28, 28, 0.22), transparent 52%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(0, 0, 0, 0.98));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
html.kiosk-filter-transition-active #kioskFilterNavOverlay {
  opacity: 1;
  pointer-events: auto;
}
.kiosk-filter-transition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  min-width: min(88vw, 20rem);
  padding: 1.4rem 1.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  text-align: center;
}
.kiosk-filter-transition-spinner {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(248, 113, 113, 0.95);
  animation: kioskFilterSpin 0.72s linear infinite;
}
.kiosk-filter-transition-title {
  color: #f8fafc;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.kiosk-filter-transition-text {
  color: rgba(203, 213, 225, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@keyframes kioskFilterSpin {
  to {
    transform: rotate(360deg);
  }
}
.kiosk-readable .text-\[9px\], .kiosk-readable .text-\[10px\] { font-size: 0.75rem !important; line-height: 1.05rem !important; }
.kiosk-readable .text-slate-500 { color: rgb(148 163 184 / 0.95) !important; }
.kiosk-readable .text-slate-600 { color: rgb(203 213 225 / 0.92) !important; }
.kiosk-readable a:focus-visible,
.kiosk-readable button:focus-visible,
.kiosk-readable .js-customer-review-card:focus-visible,
.kiosk-readable input:focus-visible,
.kiosk-readable textarea:focus-visible,
.kiosk-readable select:focus-visible {
  outline: 2px solid rgba(248, 113, 113, 0.95);
  outline-offset: 2px;
}
.kiosk-readable select {
  color-scheme: dark;
}
.kiosk-readable select option,
.kiosk-readable select optgroup {
  background: #020617;
  color: #f8fafc;
}
.kiosk-readable .js-review-filter-chip[aria-pressed="true"] {
  border-color: rgba(248, 113, 113, 0.55) !important;
  background: rgba(239, 68, 68, 0.18) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(127, 29, 29, 0.25);
}
.kiosk-readable #customerReviewsSection .customer-review-chip {
  height: 2.25rem;
  padding: 0 0.75rem;
  border: 0;
  background: transparent;
  color: rgba(203, 213, 225, 0.92);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.kiosk-readable #customerReviewsSection .customer-review-chip:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.kiosk-readable #customerReviewsSection .customer-review-chip[aria-pressed="true"] {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #ffffff !important;
  background: rgba(239, 68, 68, 0.12) !important;
}
.kiosk-readable #customerReviewsSection .customer-review-chip[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.2), rgba(248, 113, 113, 0.95), rgba(248, 113, 113, 0.2));
}
.kiosk-readable :is(a[href], button, [data-notification-id], [data-promo-dot], [data-promo-highlight], [data-helpbot-question], [data-helpbot-emoji], .chip, .kiosk-review-thumb, .js-cat-link, .js-customer-review-card) {
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.18s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    opacity 0.24s ease,
    filter 0.24s ease;
  will-change: transform;
}
.kiosk-readable :is(a[href], button, [data-notification-id], [data-promo-dot], [data-promo-highlight], [data-helpbot-question], [data-helpbot-emoji], .chip, .kiosk-review-thumb, .js-cat-link, .js-customer-review-card):active {
  transform: translateY(1px) scale(0.985);
}
.kiosk-readable .kiosk-ripple-host {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.kiosk-readable .kiosk-click-ripple {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.32) 0%, rgba(248,113,113,0.22) 48%, rgba(248,113,113,0.08) 68%, transparent 72%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0.58;
  mix-blend-mode: screen;
  animation: kioskClickRipple 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
#kioskBrowseContent {
  transition: opacity 0.22s ease, filter 0.22s ease;
}
#kioskBrowseContent.is-loading {
  opacity: 0.42;
  filter: saturate(0.8);
  pointer-events: none;
}
#kioskBrowseContent.is-loading-soft {
  pointer-events: none;
}
.kiosk-readable #faqModal {
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}
.compare-tray {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: min(24rem, calc(100vw - 2rem));
  padding: 1rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.42);
  z-index: 404;
}
.compare-tray.hidden {
  display: none !important;
}
.compare-tray-header,
.compare-tray-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.compare-tray-kicker {
  color: rgba(248, 113, 113, 0.92);
  font-size: 0.63rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.compare-tray-title {
  margin-top: 0.2rem;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-tray-clear {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(226,232,240,0.92);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-tray-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.compare-tray-item {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.compare-tray-item img {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.04);
}
.compare-tray-item-name {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}
.compare-tray-item-meta {
  margin-top: 0.2rem;
  color: rgba(148,163,184,0.95);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-tray-remove {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(248,250,252,0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.compare-tray-actions {
  margin-top: 0.9rem;
}
.compare-tray-hint {
  color: rgba(148,163,184,0.95);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.compare-tray-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 9.75rem;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, rgba(220,38,38,0.96), rgba(239,68,68,0.96));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 16px 36px rgba(127,29,29,0.32);
}
.compare-tray-link[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  box-shadow: none;
}
.js-compare-toggle.is-active {
  background: rgb(139 92 246 / 0.95) !important;
  color: #fff !important;
  border-color: rgba(221, 214, 254, 0.92) !important;
  box-shadow: 0 14px 30px rgba(109, 40, 217, 0.26) !important;
}
@keyframes kioskClickRipple {
  0% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
.kiosk-header-action {
  flex-shrink: 0;
  white-space: nowrap;
}
.kiosk-header-action:active {
  transform: none !important;
}
.kiosk-header-utility-btn {
  position: relative;
  overflow: visible;
}
.kiosk-header-utility-icon {
  width: 1.62rem;
  height: 1.62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}
.kiosk-header-utility-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.kiosk-header-utility-btn:hover .kiosk-header-utility-icon,
.kiosk-header-utility-btn:focus-visible .kiosk-header-utility-icon {
  transform: translateY(-1px) scale(1.08);
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.28));
}
.kiosk-header-utility-btn[data-kiosk-tooltip="Saved wishlist"]:hover .kiosk-header-utility-icon,
.kiosk-header-utility-btn[data-kiosk-tooltip="Saved wishlist"]:focus-visible .kiosk-header-utility-icon {
  filter: drop-shadow(0 12px 22px rgba(127, 29, 29, 0.36));
}
.kiosk-header-utility-btn[data-kiosk-tooltip]::before,
.kiosk-header-utility-btn[data-kiosk-tooltip]::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.kiosk-header-utility-btn[data-kiosk-tooltip]::before {
  content: attr(data-kiosk-tooltip);
  bottom: calc(100% + 0.7rem);
  transform: translate(-50%, 0.45rem) scale(0.97);
  z-index: 8;
  min-width: max-content;
  max-width: 11rem;
  padding: 0.52rem 0.72rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(2, 6, 23, 0.94);
  box-shadow:
    0 16px 34px rgba(2, 6, 23, 0.45),
    0 0 0 1px rgba(239, 68, 68, 0.08);
  color: #f8fafc;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
}
.kiosk-header-utility-btn[data-kiosk-tooltip]::after {
  content: "";
  bottom: calc(100% + 0.28rem);
  width: 0.72rem;
  height: 0.72rem;
  transform: translate(-50%, 0.4rem) rotate(45deg);
  z-index: 7;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.94);
}
.kiosk-header-utility-btn[data-kiosk-tooltip]:hover::before,
.kiosk-header-utility-btn[data-kiosk-tooltip]:hover::after,
.kiosk-header-utility-btn[data-kiosk-tooltip]:focus-visible::before,
.kiosk-header-utility-btn[data-kiosk-tooltip]:focus-visible::after {
  opacity: 1;
}
.kiosk-header-utility-btn[data-kiosk-tooltip]:hover::before,
.kiosk-header-utility-btn[data-kiosk-tooltip]:focus-visible::before {
  transform: translate(-50%, 0) scale(1);
}
.kiosk-header-utility-btn[data-kiosk-tooltip]:hover::after,
.kiosk-header-utility-btn[data-kiosk-tooltip]:focus-visible::after {
  transform: translate(-50%, 0) rotate(45deg);
}
.product-card {
  position: relative;
  overflow: hidden;
}
.promo-carousel-image {
  will-change: opacity, transform, filter;
  transition:
    opacity 0.42s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.42s ease;
}
.promo-carousel-image.is-transitioning {
  opacity: 0.12;
  transform: translateY(12px) scale(0.94);
  filter: blur(7px);
}
.promo-carousel-copy {
  will-change: opacity, transform;
  transition:
    opacity 0.34s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.promo-carousel-copy.is-transitioning {
  opacity: 0.16;
  transform: translateY(14px);
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(239, 68, 68, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.product-card:hover::before {
  opacity: 1;
}
.product-title-line {
  min-height: 3.05rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-spec-line {
  min-height: 2.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price-line {
  letter-spacing: -0.01em;
}
.btn-primary { background: linear-gradient(135deg, #000000, #b91c1c, #000000); transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,0,0,0.4); }
.btn-primary:active { transform: scale(0.97); }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(255,0,0,0.25); }
.smooth { transition: all 0.3s ease-in-out; }
.dropdown-card { background: rgba(0,0,0,0.65); border: 2px solid #000; border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 12px; border: 2px solid #000; font-weight: 700; font-size: 13px; }
.chip-parent { background: linear-gradient(135deg, #000000, #b91c1c, #000000); color: #ffffff; }
.chip-child { background: #ffffff; color: #000000; }
.chip-child:hover { background: #000000; color: #ffffff; box-shadow: 0 6px 12px rgba(255,0,0,0.25); }
.scroller { max-height: 60vh; overflow: auto; padding-right: 8px; }
.stepper { display: inline-flex; align-items: center; gap: 6px; }
.stepper-btn { width: 28px; height: 28px; border: 2px solid #000; border-radius: 6px; background: #fff; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; }
.stepper-num { min-width: 36px; text-align: center; border: 2px solid #000; border-radius: 6px; background: #f8fafc; padding: 2px 6px; font-weight: 700; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); color: #fff; border: 1px solid rgba(255,255,255,0.15); padding: 12px 24px; border-radius: 1.25rem; box-shadow: 0 15px 40px rgba(0,0,0,0.6); z-index: 2000; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.75rem; opacity: 0; pointer-events: none; }
.toast.opacity-0 { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }
.toast.opacity-100 { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; }
.bottom-card { margin: 0 24px 24px; background: rgba(0,0,0,0.75); border: 2px solid #000; border-radius: 16px; padding: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.5); }
.tooltip-trigger { position: relative; display: inline-block; }
.tooltip-bubble { position: absolute; top: -8px; left: 0; transform: translateY(-100%); background: #000; color: #fff; border: 2px solid #000; padding: 6px 8px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); font-size: 12px; line-height: 1.2; white-space: nowrap; display: none; z-index: 60; pointer-events: none; }
.tooltip-bubble-center { left: 50%; transform: translate(-50%, -100%); }
.tooltip-trigger:hover .tooltip-bubble { display: block; }
.carousel { position: relative; }
.carousel-track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.carousel-item { scroll-snap-align: center; display: flex; }
.carousel-card { width: 100%; margin: 0; }
@media (min-width: 640px) { .carousel-track { grid-auto-columns: 50%; } }
@media (min-width: 1024px) { .carousel-track { grid-auto-columns: 33.3333%; } }
@media (min-width: 1280px) { .carousel-track { grid-auto-columns: 25%; } }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 50; }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
.carousel-btn { width: 40px; height: 40px; border: 2px solid #000; border-radius: 9999px; background: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 900; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.carousel-btn i { font-size: 22px; }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-btn svg path { stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn { transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.carousel-btn:hover { transform: translateY(-2px) scale(1.08); box-shadow: 0 16px 36px rgba(0,0,0,0.45); background: #f8fafc; }
.carousel-btn:active { transform: translateY(0) scale(0.96); }
.carousel-btn:hover svg path { stroke: #b91c1c; }
.carousel-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.carousel-indicator { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); background: #000; color: #fff; border: 2px solid #000; border-radius: 9999px; padding: 4px 10px; font-size: 12px; z-index: 40; }
.icon-btn { transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease; }
.icon-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 34px rgba(0,0,0,0.35); background: #f8fafc; border-color: #b91c1c; }
.icon-btn:active { transform: translateY(0) scale(0.96); }
.icon-btn:focus { outline: none; box-shadow: 0 0 0 3px rgba(185,28,28,0.35); }
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn svg path { stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover svg path { stroke: #b91c1c; }
.ticker {
  white-space: nowrap;
  overflow: hidden;
}
.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.scroll-smooth { scroll-behavior: smooth; }
:root {
  --kiosk-float-right: 1rem;
  --kiosk-float-bottom: 1rem;
  --kiosk-float-gap: 0.75rem;
  --kiosk-scroll-size: 3.5rem;
}
#scrollTopBtn {
  display: inline-flex !important;
  visibility: hidden;
  right: var(--kiosk-float-right) !important;
  bottom: var(--kiosk-float-bottom) !important;
  z-index: 406 !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}
#scrollTopBtn.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#helpBotPanel {
  background: rgba(2, 6, 23, 0.94);
  box-shadow: 0 22px 54px rgba(2, 6, 23, 0.48);
}
#helpBotMessages {
  scroll-behavior: smooth;
}
.helpbot-quick-card {
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.helpbot-message-row {
  will-change: transform, opacity;
}

.customer-admin-chat-modal {
  min-height: 720px;
}

.customer-admin-chat-list {
  scroll-behavior: smooth;
}

.customer-admin-chat-message-stack {
  width: min(100%, 820px);
}

.customer-admin-chat-bubble {
  width: fit-content;
  max-width: min(72ch, calc(100vw - 10rem)) !important;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.customer-admin-chat-message-text {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.customer-admin-chat-meta {
  gap: 0.75rem;
  min-width: 0;
}

.customer-admin-chat-meta span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.customer-admin-chat-image {
  width: min(100%, 320px);
  height: auto;
}

@media (max-width: 640px) {
  .customer-admin-chat-modal {
    inset: 0.5rem !important;
    top: calc(var(--kiosk-header-height, 5rem) + 0.25rem) !important;
    width: auto !important;
    max-width: none !important;
    border-radius: 1.5rem;
  }

  .customer-admin-chat-list {
    padding: 0.875rem;
  }

  .customer-admin-chat-message-stack {
    gap: 0.5rem;
    max-width: 100% !important;
  }

  .customer-admin-chat-bubble {
    max-width: calc(100vw - 6.5rem) !important;
    padding: 0.875rem 1rem;
  }

  .customer-admin-chat-form {
    max-height: 44vh;
    overflow-y: auto;
    padding-right: 0.25rem;
  }
}
@media (max-width: 768px) {
  #products-section,
  #collection-products {
    max-width: 100%;
    overflow: hidden;
  }
  #productsGrid {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100%;
  }
  #productsGrid > .product-card {
    width: 100%;
    min-width: 0;
  }
  .product-card,
  .product-card * {
    min-width: 0;
  }
  .product-card > div:last-child > div:last-child form {
    width: 100%;
  }
  .product-card > div:last-child > div:last-child button {
    width: 100% !important;
  }
}

.helpbot-fab-wrap {
  --hb-fab-size: 62px;
  position: fixed;
  bottom: calc(var(--kiosk-float-bottom) + var(--kiosk-scroll-size) + var(--kiosk-float-gap));
  right: var(--kiosk-float-right);
  z-index: 419;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  touch-action: none;
  user-select: none;
  cursor: grab;
  width: var(--hb-fab-size);
  height: var(--hb-fab-size);
}
.helpbot-fab-wrap.is-dragging {
  cursor: grabbing;
}
.helpbot-fab-label {
  position: absolute;
  top: 50%;
  right: calc(var(--hb-fab-size) + 0.65rem);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e2e8f0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.42rem 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(calc(-50% + 4px));
  opacity: 0.86;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}
.helpbot-fab-wrap.helpbot-label-right .helpbot-fab-label {
  left: calc(var(--hb-fab-size) + 0.65rem);
  right: auto;
}
.helpbot-fab-wrap:hover .helpbot-fab-label {
  opacity: 1;
  transform: translateY(-50%);
}
.helpbot-fab {
  --hb-tilt-x: 0deg;
  --hb-tilt-y: 0deg;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,0.25), transparent 45%), linear-gradient(140deg, #ef4444, #b91c1c 55%, #111827);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 16px 34px rgba(185, 28, 28, 0.45);
  transition: box-shadow 0.25s ease, filter 0.25s ease, transform 0.22s ease;
  transform: perspective(900px) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y));
  animation: helpBotFloat 3.2s ease-in-out infinite;
  isolation: isolate;
}
.helpbot-fab:hover {
  filter: saturate(1.08);
  box-shadow: 0 22px 44px rgba(185, 28, 28, 0.55);
}
.helpbot-fab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.35), 0 18px 38px rgba(185, 28, 28, 0.5);
}
.helpbot-fab-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.helpbot-fab-ring {
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  border: 1px solid rgba(248, 113, 113, 0.55);
  z-index: 0;
  animation: helpBotRing 2.8s ease-out infinite;
  pointer-events: none;
}
.helpbot-fab-orbit {
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  z-index: 1;
  animation: helpBotSpin 7s linear infinite;
  pointer-events: none;
}
.helpbot-fab::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 42%;
  left: -10%;
  top: -30%;
  background: linear-gradient(135deg, rgba(255,255,255,0.48), rgba(255,255,255,0));
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}
.helpbot-fab-badge {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 28px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid #020617;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  z-index: 6;
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.55), 0 0 0 2px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}
.helpbot-open .helpbot-fab {
  animation: none;
  box-shadow: 0 24px 44px rgba(34, 197, 94, 0.32);
}
.helpbot-open .helpbot-fab-ring {
  border-color: rgba(74, 222, 128, 0.58);
}
.helpbot-open .helpbot-fab-badge {
  background: linear-gradient(135deg, #22c55e, #15803d);
  color: #ecfdf5;
}
.helpbot-open .helpbot-fab-label {
  color: #86efac;
}
.helpbot-fab-pop {
  animation: helpBotPop 0.42s ease-out 1;
}
.helpbot-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 14px;
}
.helpbot-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #94a3b8;
  opacity: 0.45;
  animation: helpBotDot 1s infinite ease-in-out;
}
.helpbot-typing-dots span:nth-child(2) {
  animation-delay: 0.16s;
}
.helpbot-typing-dots span:nth-child(3) {
  animation-delay: 0.32s;
}
.filter-gear-label {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.08em;
  white-space: normal;
  word-break: break-word;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
@keyframes helpBotDot {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
@keyframes helpBotFloat {
  0%, 100% { transform: perspective(900px) translateY(0) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y)); }
  50% { transform: perspective(900px) translateY(-4px) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y)); }
}
@keyframes helpBotRing {
  0% { transform: scale(0.94); opacity: 0.58; }
  70% { transform: scale(1.1); opacity: 0.08; }
  100% { transform: scale(1.12); opacity: 0; }
}
@keyframes helpBotSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes helpBotPop {
  0% { transform: perspective(900px) scale(1) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y)); }
  40% { transform: perspective(900px) scale(0.93) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y)); }
  100% { transform: perspective(900px) scale(1) rotateX(var(--hb-tilt-x)) rotateY(var(--hb-tilt-y)); }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker span,
  .helpbot-fab,
  .helpbot-fab-ring,
  .helpbot-fab-orbit {
    animation: none !important;
  }
}
@media (min-width: 1024px) {
  :root {
    --kiosk-float-right: 1.25rem;
    --kiosk-float-bottom: 1.25rem;
  }
}
@media (max-width: 640px) {
  .compare-tray {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    bottom: 0.75rem;
  }
  #helpBotPanel {
    top: max(0.6rem, env(safe-area-inset-top, 0px)) !important;
    right: max(0.6rem, env(safe-area-inset-right, 0px)) !important;
    bottom: max(0.6rem, env(safe-area-inset-bottom, 0px)) !important;
    left: max(0.6rem, env(safe-area-inset-left, 0px)) !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 1.25rem !important;
    transform: none !important;
    translate: 0 !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
  }
  #helpBotPanel .helpbot-panel-shell {
    height: 100% !important;
    max-height: none !important;
  }
  #helpBotPanel .helpbot-panel-header {
    padding: 0.85rem 0.9rem 0.75rem !important;
  }
  #helpBotPanel .helpbot-panel-header-layout {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.75rem !important;
  }
  #helpBotPanel .helpbot-panel-title-wrap {
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: row !important;
    text-align: left !important;
    gap: 0.75rem !important;
  }
  #helpBotPanel .helpbot-panel-title-wrap > div:first-child {
    width: 2.4rem !important;
    height: 2.4rem !important;
    border-radius: 0.9rem !important;
  }
  #helpBotPanel .helpbot-panel-title-wrap p:first-child {
    font-size: 0.72rem !important;
    line-height: 1rem !important;
    letter-spacing: 0.12em !important;
  }
  #helpBotPanel .helpbot-panel-title-wrap p.mt-1 {
    display: none !important;
  }
  #helpBotPanel .helpbot-panel-title-wrap #helpBotStatusText {
    margin-top: 0.15rem !important;
    font-size: 0.62rem !important;
    line-height: 0.85rem !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #helpBotPanel .helpbot-panel-actions {
    width: auto !important;
    gap: 0.4rem !important;
  }
  #helpBotPanel .helpbot-panel-actions button {
    width: 2.45rem !important;
    height: 2.45rem !important;
    min-width: 2.45rem !important;
    padding: 0 !important;
    border-radius: 0.9rem !important;
    justify-content: center !important;
  }
  #helpBotPanel .helpbot-panel-body {
    padding: 0.75rem !important;
    overflow: hidden;
  }
  #helpBotQuickCards {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
  }
  #helpBotQuickCards > button {
    flex: 0 0 auto;
  }
  #helpBotMessages {
    min-height: 0 !important;
    max-height: none !important;
  }
  #helpBotMessagesWrap {
    border-radius: 1.1rem !important;
    padding: 0.7rem !important;
  }
  #helpBotQuickArea {
    margin-top: 0.7rem !important;
  }
  #helpBotQuickArea > p {
    display: none !important;
  }
  #helpBotQuickCards {
    margin-top: 0 !important;
    gap: 0.45rem !important;
  }
  #helpBotQuickCards > button {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.64rem !important;
    line-height: 0.9rem !important;
    letter-spacing: 0.1em !important;
  }
  #helpBotQuickArea button.mt-3 {
    margin-top: 0.55rem !important;
    min-height: 2.35rem;
  }
  #helpBotForm {
    position: sticky;
    bottom: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0));
    padding-top: 0.5rem;
    margin-top: 0.75rem !important;
  }
  #helpBotForm > div {
    border-radius: 1rem !important;
    padding: 0.45rem !important;
    align-items: center !important;
  }
  #helpBotInput {
    min-width: 0;
    padding-left: 0.65rem !important;
    padding-right: 0.35rem !important;
    font-size: 0.85rem !important;
  }
  #helpBotSendBtn {
    height: 2.6rem !important;
    min-width: 2.75rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    border-radius: 0.85rem !important;
  }
  .helpbot-fab-label {
    display: none;
  }
}
@media (max-width: 640px) and (max-height: 560px) {
  #helpBotPanel {
    top: max(0.5rem, env(safe-area-inset-top, 0px)) !important;
    bottom: max(0.5rem, env(safe-area-inset-bottom, 0px)) !important;
    left: max(0.5rem, env(safe-area-inset-left, 0px)) !important;
    right: max(0.5rem, env(safe-area-inset-right, 0px)) !important;
    border-radius: 1.25rem !important;
  }
  #helpBotPanel .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  #helpBotPanel .pt-5 {
    padding-top: 1rem !important;
  }
  #helpBotPanel .pb-4 {
    padding-bottom: 0.75rem !important;
  }
  #helpBotPanel .px-4 {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  #helpBotPanel .pt-4 {
    padding-top: 0.75rem !important;
  }
  #helpBotPanel .pb-4 {
    padding-bottom: 0.75rem !important;
  }
  #helpBotPanel p.mt-1.text-xs {
    display: none !important;
  }
  #helpBotPanel .p-3 {
    padding: 0.5rem !important;
  }
  #helpBotQuickArea {
    margin-top: 0.75rem !important;
  }
  #helpBotQuickArea > p {
    display: none !important;
  }
  #helpBotQuickCards {
    margin-top: 0 !important;
    gap: 0.5rem !important;
  }
  #helpBotQuickArea button.mt-3 {
    margin-top: 0.6rem !important;
  }
}
@media (max-width: 768px) {
  .helpbot-fab-wrap {
    bottom: var(--kiosk-float-bottom);
  }
}
@media (max-width: 640px) {
  .helpbot-fab-wrap {
    bottom: var(--kiosk-float-bottom) !important;
    right: calc(var(--kiosk-float-right) + var(--kiosk-scroll-size) + var(--kiosk-float-gap)) !important;
  }
}
/* Refine Panel Animations */
.animate-in {
  animation-duration: 300ms;
  animation-fill-mode: both;
}
.fade-in {
  animation-name: fadeIn;
}
.slide-in-from-top-4 {
  animation-name: slideInFromTop;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInFromTop {
  from { transform: translateY(-1rem); }
  to { transform: translateY(0); }
}

#kioskHeader {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.28s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}
#kioskHeader.is-collapsed {
  transform: translateY(calc(-100% - 1rem));
  opacity: 0;
  pointer-events: none;
}

#kioskNavBar {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.28s ease;
  will-change: opacity, transform;
}
#kioskNavBar.is-hidden {
  opacity: 0;
  transform: translateY(-0.75rem);
  pointer-events: none;
}
/* When the main header auto-hides on scroll, keep account access (profile was unreachable). */
#kioskAccountPeek {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.94);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#kioskHeader.is-collapsed ~ #kioskAccountPeek {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.product-card {
  scroll-margin-top: calc(var(--kiosk-header-height, 6rem) + 1.5rem);
}
.product-card-search-hit {
  border-color: rgba(239, 68, 68, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.35), 0 24px 60px rgba(127, 29, 29, 0.35);
  transform: translateY(-4px);
}
@media (max-width: 640px) {
  :root {
    --kiosk-float-right: 0.85rem;
    --kiosk-float-bottom: 0.85rem;
    --kiosk-float-gap: 0.65rem;
  }
  #kioskHeader {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }
  #kioskHeader > div > div {
    border-radius: 1.5rem;
    padding: 0.8rem 0.95rem;
  }
  #kioskHeader h1 {
    font-size: 1.02rem !important;
    line-height: 1.2 !important;
  }
  #kioskHeader h1 span {
    display: none;
  }
  #kioskAccountPeek {
    display: none !important;
  }
  #kioskHeader .kiosk-header-brand {
    border-right: 0 !important;
    padding-right: 0 !important;
    gap: 0.85rem !important;
  }
  #kioskHeader .kiosk-header-utility-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  #kioskHeader .kiosk-header-utility-grid > * {
    width: 100% !important;
    min-width: 0 !important;
  }
  #kioskHeader .kiosk-header-utility-grid .kiosk-header-utility-btn {
    width: 100% !important;
    height: 2.75rem !important;
    border-radius: 1rem !important;
  }
  #kioskHeader .kiosk-header-utility-grid form {
    width: 100% !important;
  }
  #kioskHeader .kiosk-header-utility-grid form .kiosk-header-utility-btn {
    width: 100% !important;
  }
  #products-section,
  #collection-products {
    padding: 0.75rem !important;
    border-radius: 1.25rem !important;
  }
  #deptScroller {
    gap: 0.6rem !important;
    padding-bottom: 0.75rem !important;
  }
  #deptScroller .js-cat-link {
    min-width: 112px !important;
    height: 96px !important;
    border-radius: 1.35rem !important;
    gap: 0.55rem !important;
  }
  #deptScroller .js-cat-link > div.absolute {
    display: none !important;
  }
  #deptScroller .js-cat-link:hover {
    background: rgba(239, 68, 68, 0.12) !important;
    border-color: rgba(239, 68, 68, 0.22) !important;
  }
  #deptScroller .js-cat-link > div {
    width: 40px !important;
    height: 40px !important;
    border-radius: 0.9rem !important;
  }
  #deptScroller .js-cat-link i {
    font-size: 1.35rem !important;
  }
  #deptScroller .filter-gear-label {
    font-size: 0.62rem !important;
    letter-spacing: 0.08em !important;
    line-height: 0.85rem !important;
  }

  .helpbot-fab-wrap {
    bottom: var(--kiosk-float-bottom) !important;
    right: calc(var(--kiosk-float-right) + var(--kiosk-scroll-size) + var(--kiosk-float-gap)) !important;
    --hb-fab-size: 52px;
  }
  .helpbot-fab {
    width: 52px !important;
    height: 52px !important;
    border-radius: 16px !important;
  }
  .helpbot-fab-core i {
    font-size: 24px !important;
  }
  #productsGrid {
    gap: 0.9rem !important;
  }
  .product-card {
    border-radius: 1.35rem !important;
    padding: 0.75rem !important;
  }
  .product-card > div:first-child {
    aspect-ratio: 4 / 3 !important;
    margin-bottom: 0.85rem !important;
    border-radius: 1.15rem !important;
    padding: 0.65rem !important;
  }
  .product-card .absolute.top-3.left-3 {
    top: 0.55rem !important;
    left: 0.55rem !important;
  }
  .product-card .absolute.top-3.right-3 {
    top: 0.55rem !important;
    right: 0.55rem !important;
  }
  .product-card > .px-2 {
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
  }
  .product-title-line {
    min-height: 2.55rem;
    font-size: 0.98rem !important;
    line-height: 1.28 !important;
  }
  .product-spec-line {
    min-height: 1.75rem;
    font-size: 0.72rem !important;
    line-height: 1.2rem !important;
  }
  .product-card > div:last-child {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 0.9rem !important;
    padding: 0.75rem !important;
    border-radius: 1.1rem !important;
  }
  .product-card > div:last-child > div:first-child {
    min-width: 0;
  }
  .product-price-line {
    font-size: 0.98rem !important;
    line-height: 1.25rem !important;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
  .product-card > div:last-child > div:last-child {
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem !important;
    width: 100%;
  }
  .product-card-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 0.6rem !important;
  }
  .product-card-action {
    width: 100%;
    min-width: 0;
  }
  .product-card-action-compare {
    display: none !important;
  }
  .product-card-action-label {
    display: none !important;
  }
  .product-card-action-btn {
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
  }
  .product-card > div:last-child > div:last-child > div {
    flex: 1 1 0;
    min-width: 0;
  }
  .product-card > div:last-child button {
    width: 100% !important;
    height: 2.75rem !important;
    border-radius: 1rem !important;
  }
  .product-card > div:last-child button i {
    font-size: 1.15rem !important;
  }
  .product-card > div:last-child span.text-\[11px\] {
    max-width: 100%;
    font-size: 0.62rem !important;
    line-height: 0.8rem !important;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
