/* FlexShop public store — Bootstrap 5 + brand styling (mirrors flexshop.ng) */

.fs-store {
  --fs-primary: #15803d;
  --fs-primary-soft: rgba(21, 128, 61, 0.08);
  --fs-primary-border: rgba(21, 128, 61, 0.25);
  --fs-text: #0f172a;
  --fs-muted: #64748b;
  --fs-border: #e2e8f0;
  --fs-card: #ffffff;
  --fs-bg: #f8fafc;
  --fs-amber: #fbbf24;
  /* Mobile-first content width; widens from tablet up */
  --fs-content-max: 32rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--fs-text);
  background: var(--fs-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .fs-store {
    --fs-content-max: 40rem;
  }
}

@media (min-width: 768px) {
  .fs-store {
    --fs-content-max: 48rem;
  }
}

@media (min-width: 1024px) {
  .fs-store {
    --fs-content-max: 64rem;
  }
}

@media (min-width: 1280px) {
  .fs-store {
    --fs-content-max: 72rem;
  }
}

/* Catalog shell: one centered column on tablet+ (hero, toolbar, products share width). */
body.store-mode {
  background: #e2e8f0;
}

@media (min-width: 640px) {
  .fs-store {
    width: 100%;
    max-width: var(--fs-content-max);
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid var(--fs-border);
    border-right: 1px solid var(--fs-border);
    box-shadow: 0 0 48px rgba(15, 23, 42, 0.06);
  }
}

.fs-store-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

/* Cart / checkout: grow page and vertically center empty state */
.fs-store-page {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.fs-store-page--empty {
  min-height: calc(100dvh - 3.5rem);
}

.fs-store-page--empty .fs-store-main-empty {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.fs-store-page--empty .fs-cart-empty {
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-store-footer {
  flex-shrink: 0;
  margin-top: auto;
}

.fs-store h1,
.fs-store h2,
.fs-store h3 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.fs-store .font-amount {
  font-variant-numeric: tabular-nums;
}

.fs-store-inner {
  width: 100%;
  max-width: var(--fs-content-max);
  margin-left: auto;
  margin-right: auto;
}

.fs-delivery-bar {
  font-size: 0.6875rem;
  letter-spacing: 0.03em;
  color: var(--fs-muted);
  line-height: 1.5;
}

.fs-delivery-bar--oneline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  font-size: clamp(0.5rem, 2.55vw, 0.6875rem);
  line-height: 1.2;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fs-delivery-bar--oneline::-webkit-scrollbar {
  display: none;
}

.fs-delivery-bar--oneline > span {
  flex-shrink: 0;
}

/* Compact bar at store / funnel top — fixed while scrolling (overflow-x on .fs-store breaks sticky). */
.fs-delivery-bar--sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 52;
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--fs-border) !important;
}

.fs-delivery-bar-fixed-spacer {
  height: calc(1.875rem + env(safe-area-inset-top, 0px));
  flex-shrink: 0;
  pointer-events: none;
}

@media (min-width: 576px) {
  .fs-delivery-bar--sticky-top {
    padding-top: 0.5rem;
  }

  .fs-delivery-bar-fixed-spacer {
    height: 1.875rem;
  }
}

/* Stack sticky toolbar below the delivery bar when both are present. */
.fs-store:has(.fs-delivery-bar--sticky-top) .fs-sticky-toolbar {
  top: calc(env(safe-area-inset-top, 0px) + 1.875rem);
}

@media (min-width: 576px) {
  .fs-store:has(.fs-delivery-bar--sticky-top) .fs-sticky-toolbar {
    top: 1.875rem;
  }
}

.fs-hero-banner {
  max-height: 3rem;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.fs-hero-banner-wrap {
  position: relative;
  width: min(100%, 320px);
  min-height: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-hero-rc {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #6c757d;
  opacity: 0.72;
}

.fs-hero-banner-wrap.fs-image-frame-inline {
  position: relative;
  min-height: 3rem;
}

.fs-hero-banner-wrap.fs-image-frame-inline .fs-image-skeleton {
  position: absolute;
  inset: 0;
  border-radius: 0.375rem;
}

.fs-hero-banner-wrap.fs-image-frame-inline img.fs-hero-banner {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.fs-image-frame-inline {
  position: relative;
  display: block;
  overflow: hidden;
}

.fs-image-frame {
  position: absolute;
  inset: 0;
}

.fs-image-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-image-frame-inline img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.fs-image-inline-loading {
  opacity: 0;
  visibility: hidden;
}

img.fs-image-inline-loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.fs-cart-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.9);
}

.fs-cart-thumb-sm {
  width: 40px;
  height: 40px;
}

.fs-skeleton-block,
.fs-skeleton-line {
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: fs-image-shimmer 1.4s ease-in-out infinite;
  border-radius: 0.375rem;
}

.fs-skeleton-line {
  height: 0.75rem;
}

.fs-skeleton-line-lg {
  height: 1.125rem;
}

.fs-skeleton-hero-banner {
  width: 200px;
  height: 3rem;
}

.fs-skeleton-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
}

.fs-skeleton-price {
  width: 4.5rem;
  height: 0.875rem;
  border-radius: 0.25rem;
}

.fs-sticky-toolbar .fs-skeleton-toolbar {
  width: 100%;
  margin: 0;
}

@media (min-width: 576px) {
  .fs-skeleton-price {
    width: 5.25rem;
  }
}

.fs-skeleton-shop-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem;
}

.fs-skeleton-product-hero {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.75rem;
}

.fs-skeleton-btn {
  height: 2.75rem;
  border-radius: 0.5rem;
}

.fs-skeleton-toolbar {
  height: 3rem;
  margin: 0.75rem 1rem;
  border-radius: 0.5rem;
}

.w-90 {
  width: 90%;
}

.w-55 {
  width: 55%;
}

@media (min-width: 576px) {
  .fs-hero-banner {
    max-height: 3.25rem;
  }
}

.fs-trust-pill {
  border: 1px solid var(--fs-primary-border);
  background: var(--fs-primary-soft);
  border-radius: 999px;
  padding: 0.25rem 0.625rem;
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.fs-tab-switch {
  display: flex;
  gap: 2px;
  padding: 2px;
  border-radius: 0.5rem;
  border: 1px solid rgba(226, 232, 240, 0.7);
  background: rgba(241, 245, 249, 0.5);
}

.fs-tab-switch .btn {
  flex: 1;
  border: none;
  border-radius: 0.3rem;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  color: var(--fs-muted);
  background: transparent;
}

.fs-tab-switch .btn.active {
  background: var(--fs-card);
  color: var(--fs-text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.fs-sticky-toolbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.fs-search-input {
  border-radius: 0.5rem;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  padding: 0.625rem 2rem 0.625rem 2.25rem;
}

.fs-filter-btn.active {
  border-color: var(--fs-text) !important;
  background: var(--fs-text) !important;
  color: #fff !important;
}

.fs-catalog-empty {
  border-radius: 0.75rem;
  overflow: hidden;
  border-color: var(--fs-border) !important;
  background: var(--fs-card);
}

.fs-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--fs-border);
  background: var(--fs-card);
  overflow: hidden;
}

.fs-product-list-item {
  width: 100%;
  border-bottom: 1px solid var(--fs-border);
}

.fs-product-list-item:last-child {
  border-bottom: none;
}

.fs-product-list-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.875rem 2.5rem 0.875rem 0.5rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.15s;
}

.fs-product-list-link:hover {
  background: rgba(241, 245, 249, 0.6);
}

.fs-product-list-price {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.fs-product-thumb {
  position: relative;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #f1f5f9;
}

@media (min-width: 576px) {
  .fs-product-thumb {
    width: 6rem;
    height: 6rem;
  }
}

.fs-product-thumb .fs-image-frame {
  position: absolute;
  inset: 0;
}

.fs-product-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* List rows: keep photos full color — muted text only when out of stock */

.fs-shop-grid {
  --fs-shop-cols: 2;
  --fs-shop-gap: 0.75rem;
  --fs-shop-col-width: calc(
    (100% - (var(--fs-shop-cols) - 1) * var(--fs-shop-gap)) / var(--fs-shop-cols)
  );
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--fs-shop-gap);
}

.fs-shop-grid > .fs-shop-card {
  flex: 0 0 var(--fs-shop-col-width);
  width: var(--fs-shop-col-width);
  max-width: var(--fs-shop-col-width);
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .fs-shop-grid {
    --fs-shop-gap: 1rem;
  }
}

@media (min-width: 768px) {
  .fs-shop-grid {
    --fs-shop-cols: 3;
    --fs-shop-gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .fs-shop-grid {
    --fs-shop-cols: 4;
    --fs-shop-gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .fs-shop-grid {
    --fs-shop-cols: 5;
  }
}

.fs-shop-card {
  border: 1px solid var(--fs-border);
  border-radius: 0.5rem;
  background: var(--fs-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.fs-shop-card:hover {
  border-color: rgba(100, 116, 139, 0.3);
}

.fs-shop-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ffffff;
}

.fs-shop-card-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s ease;
}

.fs-shop-card:hover .fs-shop-card-image img {
  transform: scale(1.02);
}

.fs-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.fs-badge-orange {
  background: #ffedd5;
  color: #9a3412;
}

.fs-badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.fs-badge-green {
  background: #dcfce7;
  color: #166534;
}

.fs-discount-tag {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--fs-primary);
  border: 1px solid var(--fs-border);
  background: var(--fs-card);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}

.fs-product-detail-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.55);
}

.fs-product-detail-image > .badge,
.fs-product-detail-image > .fs-discount-tag {
  z-index: 2;
}

.fs-product-detail-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-shop-card-image img,
.fs-product-thumb img,
.fs-error-reco-image img {
  z-index: 1;
}

.fs-image-skeleton {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #eef2f7 0%, #e2e8f0 45%, #eef2f7 100%);
  background-size: 200% 100%;
  opacity: 1;
  animation: fs-image-shimmer 1.15s ease-in-out infinite;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.fs-image-frame--loaded .fs-image-skeleton {
  opacity: 0;
  animation: none;
}

@keyframes fs-image-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.fs-image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(241, 245, 249, 0.9);
  color: #94a3b8;
  font-size: 0.75rem;
  font-weight: 500;
}

img.fs-image-loading,
.fs-store-fill-img.fs-image-loading {
  opacity: 0;
  visibility: hidden;
}

img.fs-image-loaded,
.fs-store-fill-img.fs-image-loaded {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease;
}

.fs-oos-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
}

.fs-star {
  color: var(--fs-amber);
  fill: var(--fs-amber);
}

.fs-star-empty {
  color: var(--fs-border);
  fill: transparent;
}

.fs-category-chip {
  font-size: 0.625rem;
  background: rgba(241, 245, 249, 0.9);
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
  color: var(--fs-muted);
}

.fs-shop-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.25rem;
  --fs-shop-btn-blue: #2563eb;
  --fs-shop-btn-blue-hover: #1d4ed8;
  --fs-shop-btn-blue-soft: rgba(37, 99, 235, 0.1);
  --fs-shop-btn-blue-border: rgba(37, 99, 235, 0.32);
}

.fs-shop-btn {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.625rem;
  border-radius: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}

.fs-shop-btn-cart {
  background: #fff;
  border-color: var(--fs-shop-btn-blue-border);
  color: var(--fs-shop-btn-blue);
}

.fs-shop-btn-cart:hover {
  background: var(--fs-shop-btn-blue-soft);
  border-color: rgba(37, 99, 235, 0.45);
  color: var(--fs-shop-btn-blue-hover);
}

.fs-shop-btn-order {
  background: var(--fs-shop-btn-blue);
  border-color: var(--fs-shop-btn-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.22);
}

.fs-shop-btn-order:hover {
  background: var(--fs-shop-btn-blue-hover);
  border-color: var(--fs-shop-btn-blue-hover);
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.28);
}

.fs-btn-primary {
  background: var(--fs-primary);
  border-color: var(--fs-primary);
  color: #fff;
}

.fs-btn-primary:hover {
  background: #166534;
  border-color: #166534;
  color: #fff;
}

.fs-btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.fs-btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.fs-checkout-thumb {
  position: relative;
  width: 4rem;
  height: 4rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.55);
}

.fs-checkout-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-affiliate-banner {
  display: block;
  width: 100%;
  max-width: 28rem;
  text-decoration: none;
  border-radius: 0.75rem;
  border: 1px solid var(--fs-primary-border);
  background: linear-gradient(135deg, var(--fs-primary-soft), transparent);
  padding: 0.875rem 1rem;
  transition: transform 0.2s, border-color 0.2s;
}

.fs-affiliate-banner:hover {
  transform: scale(1.02);
  border-color: rgba(21, 128, 61, 0.5);
}

.fs-builder-attribution {
  margin: 0;
  font-size: 0.875rem;
  color: var(--fs-muted);
}

.fs-built-with-love {
  font-size: 0.625rem;
  letter-spacing: 0.02em;
}

.fs-heart {
  color: #3b82f6;
}

.fs-cart-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(20rem, calc(100vw - 2rem));
  z-index: 200;
  border-radius: 0.75rem;
  border: 1px solid var(--fs-border);
  background: var(--fs-card);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
}

.fs-cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 1040;
}

.fs-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(24rem, 100vw);
  z-index: 1050;
  background: var(--fs-card);
  box-shadow: -4px 0 24px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
}

.fs-detail-trust {
  border: 1px solid var(--fs-primary-border);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--fs-primary-soft), transparent);
  padding: 1rem;
}

.fs-fade-in-up {
  animation: fsFadeInUp 0.35s ease both;
}

.fs-card-scale-in {
  animation: fsScaleIn 0.35s ease both;
}

@keyframes fsFadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fsScaleIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fs-cart-empty {
  text-align: center;
  padding: 2.5rem 1.5rem 2.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(37, 99, 235, 0.14), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px rgba(37, 99, 235, 0.08);
}

.fs-cart-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  color: #2563eb;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.fs-cart-empty-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fs-text);
}

.fs-cart-empty-text {
  margin: 0 auto 1.5rem;
  max-width: 18rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--fs-muted);
}

.fs-cart-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(29, 78, 216, 0.35);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 48%, #1d4ed8 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 1px 2px rgba(29, 78, 216, 0.2),
    0 10px 28px rgba(37, 99, 235, 0.32);
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.fs-cart-empty-cta:hover {
  color: #fff;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 2px 4px rgba(29, 78, 216, 0.22),
    0 14px 36px rgba(37, 99, 235, 0.38);
}

.fs-cart-empty-cta:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 4px 14px rgba(37, 99, 235, 0.28);
}

.fs-cart-empty-cta svg {
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fs-cart-empty-cta:hover svg {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .fs-cart-empty-cta,
  .fs-cart-empty-cta svg {
    transition: none;
  }

  .fs-cart-empty-cta:hover {
    transform: none;
  }

  .fs-cart-empty-cta:hover svg {
    transform: none;
  }

  .fs-fade-in-up,
  .fs-card-scale-in {
    animation: none;
  }
}

/* iOS Safari zooms focused inputs below 16px */
@media screen and (max-width: 1023px) {
  .fs-store input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]),
  .fs-store select,
  .fs-store textarea {
    font-size: max(16px, 1rem);
  }
}
