/* Sweet Cravings storefront — brand tokens + Sugreve-style components */
body.cake-storefront {
  --sc-primary: #99225b;
  --sc-primary-hover: #7a1b48;
  --sc-accent: #e87a95;
  --sc-accent-light: #f589a3;
  --sc-tab-inactive: #f8d8d8;
  --sc-tab-active: #fae2dc;
  --sc-bg-top: #fef6f6;
  --sc-bg-bottom: #fbe6e6;
  --sc-border: #f8d8d8;
  --sc-text-muted: #838f9b;
  background: linear-gradient(180deg, var(--sc-bg-top) 0%, var(--sc-bg-bottom) 100%);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.cake-storefront .btn-primary {
  background-color: var(--sc-primary);
  color: #ffffff;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.cake-storefront .btn-primary:hover {
  background-color: var(--sc-primary-hover);
}
.cake-storefront .btn-primary:focus-visible {
  outline: 2px solid var(--sc-primary);
  outline-offset: 2px;
}
.cake-storefront .btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.cake-storefront .sc-btn-loading {
  pointer-events: none;
}
.cake-storefront .sc-btn-loading-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.cake-storefront .sc-btn-spinner {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: sc-btn-spin 0.65s linear infinite;
}
.cake-storefront .sc-card-cta.sc-btn-loading {
  min-width: 6.75rem;
}
@keyframes sc-btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.cake-storefront .text-sc-primary {
  color: var(--sc-primary);
}
.cake-storefront .bg-sc-primary {
  background-color: var(--sc-primary);
}
.cake-storefront .border-sc-primary {
  border-color: var(--sc-primary);
}
.cake-storefront .ring-sc-primary {
  --tw-ring-color: var(--sc-primary);
}

.cake-storefront .sc-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.cake-storefront .sc-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.5rem;
  gap: 0.75rem;
}
.cake-storefront .sc-header-left {
  flex: 1 1 0;
  min-width: 0;
  max-width: calc(50% - 4.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}
.cake-storefront .sc-header-logo--center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: auto;
}
.cake-storefront .sc-header-actions {
  flex: 1 1 0;
  min-width: 0;
  max-width: calc(50% - 4.5rem);
  z-index: 2;
}
.cake-storefront .sc-header-delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  max-width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  color: #111827;
  text-align: left;
  cursor: pointer;
}
.cake-storefront .sc-header-delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sc-primary);
}
.cake-storefront .sc-header-delivery-text {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.15;
}
.cake-storefront .sc-header-delivery-top {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--sc-primary);
  line-height: 1.2;
  white-space: nowrap;
}
.cake-storefront .sc-header-delivery-bottom {
  display: block;
  min-width: 0;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cake-storefront .sc-header-delivery-chevron {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.75rem;
  height: 0.75rem;
  color: var(--sc-primary);
}
.cake-storefront .sc-header-delivery-chevron svg {
  display: block;
  width: 100%;
  height: 100%;
}
.cake-storefront .sc-header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: var(--sc-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cake-storefront .sc-header-icon-btn:hover {
  background: var(--sc-bg-top);
}
@media (min-width: 1024px) {
  .cake-storefront #cake-nav-toggle {
    display: none;
  }
}
.cake-storefront .sc-header-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  color: var(--sc-primary);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.cake-storefront .sc-header-cart-btn:hover {
  background: var(--sc-bg-top);
}
.cake-storefront .sc-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: var(--sc-primary);
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.cake-storefront .sc-header-badge--cart {
  background: var(--sc-primary);
  color: #ffffff;
}
.cake-storefront .sc-header-drawer-link {
  display: block;
  padding: 0.625rem 0.5rem;
  border-radius: 0.5rem;
  color: #212529;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.cake-storefront .sc-header-drawer-link:hover,
.cake-storefront .sc-header-drawer-link.is-active {
  background: var(--sc-tab-active);
  color: #212529;
}

/* Product search overlay */
.cake-storefront .sc-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top))
           max(0.75rem, env(safe-area-inset-right))
           max(0.75rem, env(safe-area-inset-bottom))
           max(0.75rem, env(safe-area-inset-left));
}
.cake-storefront .sc-search-overlay.hidden {
  display: none !important;
}
.cake-storefront .sc-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(2px);
}
.cake-storefront .sc-search-overlay__panel {
  position: relative;
  width: min(100%, 32rem);
  max-height: min(85vh, 640px);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.cake-storefront .sc-search-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.5rem;
}
.cake-storefront .sc-search-overlay__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}
.cake-storefront .sc-search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}
.cake-storefront .sc-search-overlay__close:hover {
  background: #f3f4f6;
  color: #111827;
}
.cake-storefront .sc-search-overlay__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.cake-storefront .sc-search-overlay__input-wrap {
  position: relative;
  margin: 0 1rem 0.75rem;
}
.cake-storefront .sc-search-overlay__input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: #9ca3af;
  pointer-events: none;
}
.cake-storefront .sc-search-overlay__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 0.7rem 1rem 0.7rem 2.5rem;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb;
  outline: none;
}
.cake-storefront .sc-search-overlay__input:focus {
  border-color: var(--sc-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(153, 34, 91, 0.12);
}
.cake-storefront .sc-search-overlay__status {
  padding: 0 1rem 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.cake-storefront .sc-search-overlay__status.is-hidden {
  display: none;
}
.cake-storefront .sc-search-overlay__results {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0.75rem;
  overflow-y: auto;
  flex: 1 1 auto;
}
.cake-storefront .sc-search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: none;
  border-radius: 0.75rem;
  padding: 0.55rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.cake-storefront .sc-search-result:hover,
.cake-storefront .sc-search-result:focus-visible {
  background: #fdf2f8;
  outline: none;
}
.cake-storefront .sc-search-result__thumb {
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #f3f4f6;
}
.cake-storefront .sc-search-result__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cake-storefront .sc-search-result__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cake-storefront .sc-search-result__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
}
.cake-storefront .sc-search-result__meta {
  font-size: 0.75rem;
  color: #6b7280;
}
.cake-storefront .sc-search-result__price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-primary);
}
.cake-storefront .sc-header-delivery-btn--compact {
  padding: 0.25rem;
}
@media (min-width: 640px) {
  .cake-storefront .sc-header-delivery-top {
    font-size: 0.8125rem;
  }
  .cake-storefront .sc-header-delivery-bottom {
    font-size: 0.8125rem;
  }
  .cake-storefront .sc-header-delivery-chevron {
    width: 0.875rem;
    height: 0.875rem;
  }
}
@media (max-width: 639px) {
  .cake-storefront .sc-header-inner {
    min-height: 3.625rem;
    gap: 0.125rem;
    justify-content: flex-start;
  }
  .cake-storefront .sc-header-left {
    flex: 0 1 auto;
    width: max-content;
    max-width: min(38vw, 8.75rem);
  }
  .cake-storefront .sc-header-delivery-btn {
    width: 100%;
  }
  .cake-storefront .sc-header-delivery-text {
    flex: 0 1 auto;
  }
  .cake-storefront .sc-header-logo--center {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    flex: 0 0 auto;
    margin-left: 0.125rem;
  }
  .cake-storefront .sc-header-actions {
    flex: 0 1 auto;
    max-width: none;
    margin-left: auto;
    gap: 0;
  }
  .cake-storefront .sc-header-delivery-icon svg {
    width: 1rem;
    height: 1rem;
  }
  .cake-storefront .sc-header-delivery-chevron {
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .cake-storefront .sc-header-icon-btn,
  .cake-storefront .sc-header-cart-btn {
    width: 2.125rem;
    height: 2.125rem;
  }
  .cake-storefront .sc-header-icon-btn svg,
  .cake-storefront .sc-header-cart-btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .cake-storefront .sc-header-badge {
    min-width: 1rem;
    height: 1rem;
    font-size: 0.5625rem;
  }
}
@media (max-width: 380px) {
  .cake-storefront .sc-header-left {
    max-width: min(40vw, 8.25rem);
  }
  .cake-storefront .sc-header-icon-btn,
  .cake-storefront .sc-header-cart-btn {
    width: 2rem;
    height: 2rem;
  }
}
.cake-storefront .sc-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  color: #212529;
}
.cake-storefront .sc-footer-logo {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  text-decoration: none;
}
.cake-storefront .sc-footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
.cake-storefront .sc-tabs-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.04);
}
.cake-storefront .sc-tab {
  background: #f4e7ee;
  color: var(--sc-primary);
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(153, 34, 91, 0.22);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cake-storefront .sc-tab:hover:not(.sc-tab--active) {
  background: #ead3de;
  color: #7a1b48;
  border-color: rgba(153, 34, 91, 0.35);
}
.cake-storefront .sc-tab--active,
.cake-storefront .sc-tab--active:hover,
.cake-storefront .sc-tab--active:focus-visible {
  background: var(--sc-primary) !important;
  color: #ffffff !important;
  border-color: var(--sc-primary) !important;
  box-shadow: 0 8px 18px rgba(153, 34, 91, 0.22);
}

.cake-storefront .sc-product-card {
  background: #ffffff;
  border: 1px solid rgba(153, 34, 91, 0.28);
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.cake-storefront .sc-product-card:hover {
  box-shadow: 0 8px 24px rgba(153, 34, 91, 0.12);
  transform: translateY(-2px);
}
.cake-storefront .sc-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  text-align: center;
  padding: 0.625rem 0.75rem 0.875rem;
}
.cake-storefront .sc-product-card .sc-card-title {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #212529;
}
.cake-storefront .sc-product-card .sc-card-desc {
  color: var(--sc-text-muted);
  font-size: 0.6875rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}
.cake-storefront .sc-product-card .sc-card-desc-slot {
  min-height: 2.5em;
}
.cake-storefront .sc-card-separator {
  border: 0;
  border-top: 1px solid #e9ecef;
  margin: 0.5rem 0 0.5rem;
}
.cake-storefront .sc-product-card .sc-card-price {
  font-size: 9px;
  font-weight: 700;
  color: #212529;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .cake-storefront .sc-product-card .sc-card-price {
    font-size: 11px;
  }
}
.cake-storefront .sc-product-card .sc-card-price-was {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #adb5bd;
  text-decoration: line-through;
  margin-left: 0.3rem;
}
.cake-storefront .sc-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: auto;
  margin-top: 0.625rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  white-space: nowrap;
}
.cake-storefront .favorite-heart-btn.is-favorite,
.cake-storefront .favorite-heart-btn[aria-pressed="true"] {
  color: var(--sc-primary);
}

.cake-storefront .welcome-hero-section {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.cake-storefront .sc-menu-header {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cake-storefront .sc-menu-header__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sc-accent);
}

.cake-storefront .sc-menu-header__title {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--sc-primary);
}

.cake-storefront .sc-menu-header__subtitle {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.cake-storefront .sc-menu-header__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cake-storefront .sc-menu-header__line {
  display: block;
  height: 2px;
  width: min(4.5rem, 18vw);
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, var(--sc-primary) 45%, var(--sc-accent) 100%);
}

.cake-storefront .sc-menu-header__line:last-child {
  background: linear-gradient(270deg, transparent, var(--sc-primary) 45%, var(--sc-accent) 100%);
}

.cake-storefront .sc-menu-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: linear-gradient(145deg, #fff5f8 0%, #fde8ef 100%);
  color: var(--sc-primary);
  box-shadow: 0 2px 12px rgba(153, 34, 91, 0.18), inset 0 0 0 1px rgba(153, 34, 91, 0.12);
}
.cake-storefront .glass-card {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
}
/* Pizza Master–style hero: compact frame + dots row (no side arrows) */
.cake-storefront .slider-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 0.35rem;
}
.cake-storefront .slider.slider-frame {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-radius: 1rem;
  box-shadow: none;
  height: auto;
  min-height: 0;
  max-height: none;
  box-sizing: border-box;
}
.cake-storefront .slider-inner {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  position: relative;
  isolation: isolate;
  box-sizing: border-box;
}
/* Active slide sets frame height; inactive slides overlay for crossfade */
.cake-storefront .slide {
  width: 100%;
  margin: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
  z-index: 0;
}
.cake-storefront .slide.active {
  position: relative;
  inset: auto;
  height: auto;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.cake-storefront .slide:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.cake-storefront .slide-images {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
  line-height: 0;
}
.cake-storefront .main-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  border-radius: 1rem;
}
.cake-storefront .slider-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 1rem;
}
.cake-storefront .slider-hero-fallback {
  display: flex;
  min-height: 200px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sc-primary);
  background: #ffffff;
}
.cake-storefront .slider-dots-wrap {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.15rem 0 0;
}
.cake-storefront .slider-dots-wrap .dot {
  appearance: none;
  -webkit-appearance: none;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cake-storefront .slider-dots-wrap .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cake-storefront .slider-dots-wrap .dot.active::after {
  background: var(--sc-primary);
  border-color: var(--sc-primary);
  transform: scale(1.25);
}
@media (min-width: 1024px) {
  .cake-storefront .slider.slider-frame {
    border-radius: 1rem;
  }
  .cake-storefront .main-image,
  .cake-storefront .slider-hero-img {
    border-radius: 1rem;
  }
  .cake-storefront .slider-section {
    row-gap: 0;
  }
  .cake-storefront .slider-dots-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .cake-storefront .slider.slider-frame {
    border-radius: 0;
    box-shadow: none;
  }
  .cake-storefront .slider-hero-img {
    max-height: none;
  }
  .cake-storefront .slider-hero-fallback {
    min-height: 140px;
    font-size: 1.25rem;
  }
  .cake-storefront .slider-section {
    row-gap: 0;
  }
  .cake-storefront .slider-dots-wrap {
    padding: 0.25rem 0 0;
  }
  .cake-storefront .slider-dots-wrap .dot {
    min-width: 1.5rem;
    min-height: 1.5rem;
  }
  .cake-storefront .slider-dots-wrap .dot::after {
    width: 7px;
    height: 7px;
  }
}

/* Category card active state (JS toggles) */
.cake-storefront a.category-tile.is-active {
  outline: 3px solid var(--sc-primary);
  outline-offset: 2px;
}

.cake-storefront .no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cake-storefront .no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Onboarding modal — in-modal pickers (avoids native select misplacement in mobile emulation) */
.cake-storefront .sc-onboarding-header__logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(28vw, 9.5rem);
  object-fit: contain;
  object-position: center;
}

.cake-storefront .sc-onboarding-picker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cake-storefront .sc-onboarding-picker-trigger--brand {
  border-color: var(--sc-primary-hover);
  background: var(--sc-primary);
  color: #ffffff;
}
.cake-storefront .sc-onboarding-picker-trigger:focus-visible {
  outline: 2px solid var(--sc-primary);
  outline-offset: 2px;
}
.cake-storefront .sc-onboarding-picker-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 40;
  max-height: min(14rem, 50vh);
  overflow-y: auto;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}
.cake-storefront .sc-onboarding-picker-menu--brand {
  border-color: var(--sc-primary-hover);
  background: var(--sc-primary);
}
.cake-storefront .sc-onboarding-picker-option {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0.65rem;
  background: transparent;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
}
.cake-storefront .sc-onboarding-picker-menu--brand .sc-onboarding-picker-option {
  color: #ffffff;
}
.cake-storefront .sc-onboarding-picker-option:hover,
.cake-storefront .sc-onboarding-picker-option.is-active {
  background: rgba(153, 34, 91, 0.1);
}
.cake-storefront .sc-onboarding-picker-menu--brand .sc-onboarding-picker-option:hover,
.cake-storefront .sc-onboarding-picker-menu--brand .sc-onboarding-picker-option.is-active {
  background: rgba(255, 255, 255, 0.16);
}

/* Mobile install FAB — stacked above WhatsApp on home, solo on other pages */
#pwa-install-fab-slot:empty {
  display: none;
}

.pwa-install-fab {
  border: 2px solid rgba(255, 255, 255, 0.85);
  min-height: 3rem;
}

.pwa-install-fab__label {
  line-height: 1.2;
}

.pwa-install-fab[aria-busy="true"] {
  opacity: 0.75;
  pointer-events: none;
}

@media (min-width: 1024px) {
  #pwa-install-fab-slot,
  #mobile-fab-stack #pwa-install-fab-slot,
  .pwa-install-fab {
    display: none !important;
  }
}
