/* Runtime storefront theme controls */
.commerce-page {
  font-size: calc(16px * var(--shop-font-scale, 1));
}

.commerce-page[data-store-theme-radius="sharp"] {
  --shop-radius-sm: 4px;
  --shop-radius-md: 8px;
  --shop-radius-lg: 14px;
  --shop-radius-xl: 20px;
}
.commerce-page[data-store-theme-radius="balanced"] {
  --shop-radius-sm: 8px;
  --shop-radius-md: 14px;
  --shop-radius-lg: 22px;
  --shop-radius-xl: 30px;
}
.commerce-page[data-store-theme-radius="soft"] {
  --shop-radius-sm: 12px;
  --shop-radius-md: 20px;
  --shop-radius-lg: 30px;
  --shop-radius-xl: 42px;
}

.commerce-page[data-store-theme-shadow="none"] {
  --shop-shadow-sm: none;
  --shop-shadow-md: none;
  --shop-shadow-lg: none;
}
.commerce-page[data-store-theme-shadow="soft"] {
  --shop-shadow-sm: 0 8px 24px rgba(2, 6, 23, .08);
  --shop-shadow-md: 0 18px 52px rgba(2, 6, 23, .14);
  --shop-shadow-lg: 0 28px 80px rgba(2, 6, 23, .22);
}
.commerce-page[data-store-theme-shadow="deep"] {
  --shop-shadow-sm: 0 12px 32px rgba(2, 6, 23, .16);
  --shop-shadow-md: 0 24px 68px rgba(2, 6, 23, .28);
  --shop-shadow-lg: 0 38px 110px rgba(2, 6, 23, .42);
}

html[data-theme="dark"] .commerce-page[data-store-theme-surface="midnight"] {
  --shop-bg: #01040d;
  --shop-bg-soft: #071020;
  --shop-surface: #0a1325;
  --shop-surface-soft: #101d34;
}
html[data-theme="dark"] .commerce-page[data-store-theme-surface="deep"] {
  --shop-bg: #020617;
  --shop-bg-soft: #0b1730;
  --shop-surface: #101b31;
  --shop-surface-soft: #17243c;
}
html[data-theme="dark"] .commerce-page[data-store-theme-surface="soft"] {
  --shop-bg: #071124;
  --shop-bg-soft: #101f38;
  --shop-surface: #172640;
  --shop-surface-soft: #20314d;
}

.commerce-page[data-store-theme-contrast="soft"] {
  --shop-text-soft: color-mix(in srgb, var(--shop-text) 68%, transparent);
  --shop-text-muted: color-mix(in srgb, var(--shop-text) 52%, transparent);
  --shop-border: color-mix(in srgb, var(--shop-text) 12%, transparent);
}
.commerce-page[data-store-theme-contrast="balanced"] {
  --shop-border: color-mix(in srgb, var(--shop-text) 16%, transparent);
}
.commerce-page[data-store-theme-contrast="high"] {
  --shop-text-soft: color-mix(in srgb, var(--shop-text) 84%, transparent);
  --shop-text-muted: color-mix(in srgb, var(--shop-text) 68%, transparent);
  --shop-border: color-mix(in srgb, var(--shop-text) 24%, transparent);
}

.commerce-page[data-header-sticky="false"] .shop-header {
  position: relative;
  top: auto;
}
.commerce-page[data-header-account-mode="icon"] .shop-account-link {
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-left: 0;
  border-radius: 50%;
}
.commerce-page[data-header-account-mode="icon"] .shop-account-link svg {
  width: 20px;
  height: 20px;
}
.shop-nav .menu-mobile-only { display: none; }

.store-preview-mode::after {
  content: 'پیش‌نمایش تنظیمات ذخیره‌نشده';
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 3000;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, .94);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(2, 6, 23, .28);
}

@media (max-width: 900px) {
  .shop-nav .menu-mobile-only { display: inline-flex; }
  .shop-nav .menu-desktop-only { display: none; }
}
