/* ===================================================
   Sporty Zone - Premium Ecommerce Stylesheet
   RTL Arabic Layout • Mobile-First Responsive
   =================================================== */

/* CSS VARIABLES - Brand Colors & System */
:root {
  /* Brand Colors */
  --sz-black: #0b0b0b;
  --sz-dark: #111827;
  --sz-text: #111827;
  --sz-white: #ffffff;
  --sz-light-gray: #f7f7f7;
  --sz-border: #e5e7eb;
  --sz-muted: #6b7280;
  --sz-gold: #f4c430;
  --sz-gold-dark: #c89b16;
  --sz-red: #ef3340;
  
  /* Spacing */
  --sz-space-xs: 4px;
  --sz-space-sm: 8px;
  --sz-space-md: 16px;
  --sz-space-lg: 24px;
  --sz-space-xl: 32px;
  --sz-space-2xl: 48px;
  --sz-space-3xl: 64px;
  
  /* Typography */
  --sz-font-body: Arial, Tahoma, sans-serif;
  --sz-font-serif: Georgia, serif;
  
  /* Shadows */
  --sz-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --sz-shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
  --sz-shadow-lg: 0 20px 44px rgba(0, 0, 0, 0.12);
  --sz-shadow-xl: 0 28px 50px rgba(0, 0, 0, 0.15);
  
  /* Transitions */
  --sz-transition-fast: 0.15s ease;
  --sz-transition-normal: 0.3s ease;
  --sz-transition-slow: 0.5s ease;
}

/* ===================================================
   GENERAL / BASE STYLES
   =================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sz-font-body);
  background: var(--sz-white);
  color: var(--sz-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--sz-transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sz-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================================
   TOP ANNOUNCEMENT BAR
   =================================================== */

.sz-top {
  background: var(--sz-black);
  color: var(--sz-white);
  font-size: 13px;
  padding: 12px 20px;
  font-weight: 700;
}

.sz-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sz-social {
  display: flex;
  gap: 20px;
}

.sz-social span,
.sz-social a {
  opacity: 0.9;
  transition: opacity var(--sz-transition-fast);
}

.sz-social span:hover,
.sz-social a:hover {
  opacity: 1;
}

/* ===================================================
   HEADER
   =================================================== */

.sz-header {
  background: var(--sz-white);
  border-bottom: 1px solid var(--sz-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sz-header .wrap {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 16px 20px;
}

.sz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
  transition: opacity var(--sz-transition-fast);
}

.sz-brand:hover {
  opacity: 0.8;
}

.sz-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--sz-black);
  border-radius: 4px;
  padding: 4px;
}

.sz-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.sz-nav a {
  position: relative;
  padding: 8px 0;
  transition: color var(--sz-transition-fast);
}

.sz-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--sz-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--sz-transition-normal);
}

.sz-nav a:hover::after,
.sz-nav a.active::after {
  transform: scaleX(1);
}

.sz-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sz-lang-switch {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--sz-border);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--sz-transition-fast);
}

.sz-lang-switch:hover {
  background: var(--sz-light-gray);
}

.sz-lang-switch span {
  cursor: pointer;
}

.sz-lang-switch span.active {
  font-weight: 900;
  color: var(--sz-black);
}

.sz-icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 22px;
  cursor: pointer;
}

.sz-icons span {
  transition: opacity var(--sz-transition-fast);
  opacity: 0.8;
}

.sz-icons span:hover {
  opacity: 1;
}

.sz-cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--sz-transition-fast);
}

.sz-cart-toggle:hover {
  background: var(--sz-light-gray);
}

.sz-cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--sz-gold);
  color: var(--sz-black);
  font-size: 11px;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.sz-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--sz-transition-fast), visibility var(--sz-transition-fast);
  z-index: 10000;
}

.sz-cart-overlay:not(.sz-hidden) {
  opacity: 1;
  visibility: visible;
}

/* Always slides from physical right (LTR + RTL) */
.sz-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: min(420px, 95vw);
  max-width: 420px;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--sz-white);
  box-shadow: -24px 0 80px rgba(15, 23, 42, 0.22);
  transform: translate3d(100%, 0, 0);
  transition: transform var(--sz-transition-normal);
  z-index: 10001;
  overflow: hidden;
}

.sz-cart-drawer.open {
  transform: translate3d(0, 0, 0);
}

.sz-cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.sz-cart-drawer-header h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.sz-cart-drawer-sub {
  color: var(--sz-muted);
  font-size: 13px;
}

.sz-cart-items {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.sz-cart-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: var(--sz-light-gray);
}

.sz-cart-item-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.sz-cart-item-summary strong {
  font-size: 14px;
}

.sz-cart-item-summary span {
  color: var(--sz-muted);
  font-size: 13px;
}

.sz-cart-item-quantity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sz-cart-qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--sz-black);
  color: var(--sz-white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.sz-cart-remove {
  width: 34px;
  height: 34px;
  border: none;
  background: #f8d7da;
  color: #7c131c;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

.sz-cart-empty {
  padding: 26px;
  border-radius: 14px;
  text-align: center;
  background: var(--sz-light-gray);
  color: var(--sz-muted);
  font-weight: 700;
}

.sz-cart-summary {
  margin-top: auto;
  display: grid;
  gap: 16px;
}

.sz-cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--sz-black);
}

.sz-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--sz-transition-fast), visibility var(--sz-transition-fast);
  z-index: 10004;
  padding: 24px;
}

.sz-modal.open {
  opacity: 1;
  visibility: visible;
}

.sz-order-detail-modal.open {
  opacity: 1;
  visibility: visible;
}

.sz-modal-overlay {
  position: absolute;
  inset: 0;
}

.sz-modal-container {
  position: relative;
  z-index: 1;
  max-height: min(90vh, 900px);
  overflow: auto;
}

#sz-order-detail-modal .sz-modal-content {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.sz-modal-content {
  position: relative;
  width: min(920px, 100%);
  background: var(--sz-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
}

.sz-modal-close {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-start: 18px;
  border: none;
  background: var(--sz-black);
  color: var(--sz-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
}

.sz-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 40px;
}

.sz-modal-image {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.sz-modal-image-preview {
  width: 100%;
  display: flex;
  justify-content: center;
}

.sz-modal-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sz-modal-category {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sz-modal-prices {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.sz-modal-regular {
  color: var(--sz-muted);
  text-decoration: line-through;
}

.sz-modal-sale {
  font-size: 24px;
  font-weight: 900;
}

.sz-modal-sizes,
.sz-modal-colors {
  display: grid;
  gap: 10px;
}

.sz-modal-size-list,
.sz-modal-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sz-quick-view-size {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--sz-border);
  background: #f8fafc;
  font-weight: 700;
}

.sz-quick-view-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--sz-border);
}

.sz-modal-add-to-cart {
  width: fit-content;
  padding: 14px 24px;
  font-size: 15px;
}

@media (max-width: 900px) {
  .sz-modal-body {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  .sz-cart-drawer {
    width: 100%;
    max-width: 100%;
  }

  .sz-cart-item {
    grid-template-columns: 1fr;
  }

  .sz-modal-body {
    padding: 18px;
  }

  .sz-modal-close {
    inset-inline-end: 12px;
    inset-block-start: 12px;
  }
}

.sz-menu-btn {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--sz-transition-fast);
}

.sz-menu-btn:hover {
  background: var(--sz-light-gray);
}

.sz-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--sz-transition-fast), visibility var(--sz-transition-fast);
  z-index: 9998;
}

.sz-mobile-menu-overlay:not(.sz-hidden) {
  opacity: 1;
  visibility: visible;
}

.sz-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  background: var(--sz-white);
  box-shadow: -24px 0 80px rgba(15, 23, 42, 0.22);
  transform: translate3d(100%, 0, 0);
  transition: transform var(--sz-transition-normal);
  z-index: 9999;
}

.sz-mobile-menu.open {
  transform: translate3d(0, 0, 0);
}

.sz-mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sz-border);
}

.sz-mobile-menu-header strong {
  font-size: 18px;
}

.sz-mobile-menu-close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--sz-black);
  color: var(--sz-white);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.sz-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sz-mobile-menu-nav a {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  transition: background var(--sz-transition-fast);
}

.sz-mobile-menu-nav a:hover {
  background: var(--sz-light-gray);
}

.sz-mobile-menu-lang {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--sz-border);
}

.sz-mobile-menu-lang > span {
  font-size: 13px;
  font-weight: 700;
  color: var(--sz-muted);
}

.sz-lang-switch-menu {
  justify-content: flex-start;
}

.sz-page-anchor {
  scroll-margin-top: 100px;
  height: 0;
  overflow: hidden;
}

/* ===================================================
   HERO SECTION
   =================================================== */

.sz-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.sz-hero .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.sz-hero-content h1 {
  font-size: clamp(48px, 7vw, 82px);
  line-height: 1.05;
  margin: 0 0 20px 0;
  font-family: var(--sz-font-serif);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.sz-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 32px 0;
  max-width: 550px;
}

.sz-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sz-hero-art {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sz-hero-art::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.sz-hero-logo {
  position: relative;
  width: min(360px, 80%);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* ===================================================
   BUTTONS
   =================================================== */

.sz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 900;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--sz-transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sz-btn-primary {
  background: var(--sz-black);
  color: var(--sz-white);
}

.sz-btn-primary:hover {
  background: var(--sz-gold);
  color: var(--sz-black);
}

.sz-btn-secondary {
  background: var(--sz-white);
  color: var(--sz-black);
  border: 2px solid var(--sz-black);
}

.sz-btn-secondary:hover {
  background: var(--sz-black);
  color: var(--sz-white);
}

.sz-btn-large {
  padding: 18px 48px;
  font-size: 16px;
}

.sz-btn-outline {
  background: var(--sz-white);
  color: var(--sz-black);
  border: 1px solid var(--sz-black);
}

.sz-btn-outline:hover {
  background: var(--sz-black);
  color: var(--sz-white);
}

/* ===================================================
   TRUST STRIP SECTION
   =================================================== */

.sz-trust-strip {
  background: var(--sz-light-gray);
  padding: 60px 20px;
  border-top: 1px solid var(--sz-border);
  border-bottom: 1px solid var(--sz-border);
}

.sz-trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sz-trust-item {
  text-align: center;
}

.sz-trust-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.sz-trust-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 900;
}

.sz-trust-item p {
  color: var(--sz-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================================
   SECTIONS - General
   =================================================== */

.sz-section {
  padding: 80px 20px;
}

.sz-section-title {
  font-size: clamp(36px, 5vw, 56px);
  text-align: center;
  margin-bottom: 60px;
  font-family: var(--sz-font-serif);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.sz-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 48px;
}

.sz-title-row > div:first-child {
  flex: 1;
}

.sz-kicker {
  color: var(--sz-muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.sz-title {
  font-size: clamp(34px, 4.5vw, 56px);
  font-family: var(--sz-font-serif);
  font-weight: 950;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.sz-sub {
  color: var(--sz-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===================================================
   COLLECTIONS SECTION
   =================================================== */

.sz-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sz-collection {
  position: relative;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  cursor: pointer;
  transition: all var(--sz-transition-normal);
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.sz-collection:nth-child(1) {
  background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 100%);
}

.sz-collection:nth-child(2) {
  background: linear-gradient(135deg, #3d3d1f 0%, #5a4707 100%);
}

.sz-collection:nth-child(3) {
  background: linear-gradient(135deg, #1f3d2a 0%, #2a5a3d 100%);
}

.sz-collection:nth-child(4) {
  background: linear-gradient(135deg, #3d1f1f 0%, #5a2a2a 100%);
}

.sz-collection:hover {
  transform: translateY(-8px);
  box-shadow: var(--sz-shadow-lg);
}

.sz-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.sz-collection-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sz-collection-number {
  display: block;
  color: var(--sz-gold);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 8px;
}

.sz-collection h3 {
  color: var(--sz-white);
  font-size: 24px;
  margin-bottom: 4px;
}

.sz-collection p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ===================================================
   PRODUCTS GRID
   =================================================== */

.sz-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sz-card {
  background: var(--sz-white);
  border: 1px solid var(--sz-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--sz-transition-normal);
  box-shadow: var(--sz-shadow-sm);
}

.sz-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sz-shadow-lg);
  border-color: var(--sz-gold);
}

.sz-product-img {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(145deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sz-product-img.sz-img-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f8fafc 0%, #e5e7eb 55%, #d1d5db 100%);
}

.sz-product-img.sz-img-fallback::after {
  content: 'SZ';
  position: relative;
  z-index: 1;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.sz-badge-sale,
.sz-badge-new,
.sz-badge-bestseller {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 12px;
  border-radius: 4px;
  text-transform: uppercase;
}

.sz-badge-sale {
  background: var(--sz-red);
  color: var(--sz-white);
}

.sz-badge-new {
  background: var(--sz-gold);
  color: var(--sz-black);
}

.sz-badge-bestseller {
  background: #10b981;
  color: var(--sz-white);
}

/* Product Mockups */
.mock-shirt {
  width: 210px;
  height: 245px;
  background: var(--color, #1f2937);
  border-radius: 60px 60px 22px 22px;
  position: relative;
  box-shadow: inset 0 -30px 70px rgba(0, 0, 0, 0.2);
}

.mock-shirt::before,
.mock-shirt::after {
  content: '';
  position: absolute;
  top: 35px;
  width: 68px;
  height: 145px;
  background: inherit;
  border-radius: 50px 25px 25px 50px;
}

.mock-shirt::before {
  right: -46px;
  transform: rotate(-16deg);
}

.mock-shirt::after {
  left: -46px;
  transform: rotate(16deg);
}

.mock-pants {
  width: 180px;
  height: 260px;
  position: relative;
}

.mock-pants::before,
.mock-pants::after {
  content: '';
  position: absolute;
  top: 0;
  width: 78px;
  height: 260px;
  background: var(--color, #111);
  border-radius: 25px 25px 35px 35px;
}

.mock-pants::before {
  left: 0;
  transform: rotate(4deg);
}

.mock-pants::after {
  right: 0;
  transform: rotate(-4deg);
}

/* Product Card Body */
.sz-card-body {
  padding: 20px;
}

.sz-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sz-cat-label {
  font-size: 11px;
  color: var(--sz-muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.sz-card-description {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--sz-muted);
  min-height: 42px;
}

.sz-price {
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 12px;
}

.sz-price del {
  color: #9ca3af;
  font-size: 14px;
  margin-inline-end: 8px;
  opacity: 0.7;
}

.sz-price span {
  color: var(--sz-black);
}

.sz-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.sz-sizes {
  margin-bottom: 8px;
}

.sz-colors {
  margin-bottom: 16px;
}

.sz-size {
  border: 1px solid var(--sz-border);
  min-width: 36px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: var(--sz-white);
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--sz-transition-fast);
}

.sz-size:hover {
  border-color: var(--sz-black);
  background: var(--sz-black);
  color: var(--sz-white);
}

.sz-size-selected,
.sz-size-selected:hover {
  border-color: var(--sz-gold);
  background: var(--sz-black);
  color: var(--sz-white);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.sz-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--sz-border);
  display: inline-flex;
  background: var(--dot, #111);
  cursor: pointer;
  padding: 0;
  transition: all var(--sz-transition-fast);
}

.sz-dot:hover {
  border-color: var(--sz-black);
  transform: scale(1.1);
}

.sz-dot-selected,
.sz-dot-selected:hover {
  border-color: var(--sz-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.28);
  transform: scale(1.08);
}

.sz-search-hidden {
  display: none !important;
}

.sz-search-empty {
  grid-column: 1 / -1;
  color: var(--sz-muted);
  font-weight: 800;
  text-align: center;
  padding: 34px 0;
}

.sz-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sz-btn-add {
  flex: 1;
  padding: 11px 16px !important;
  font-size: 13px !important;
}

.sz-quick-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--sz-border);
  background: var(--sz-white);
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: all var(--sz-transition-fast);
}

.sz-quick-view-icon {
  font-size: 16px;
  line-height: 1;
}

.sz-quick-view:hover {
  border-color: var(--sz-black);
  background: var(--sz-light-gray);
}

/* ===================================================
   BEST SELLERS SECTION
   =================================================== */

.sz-best-sellers-section {
  background: #fafafa;
  border-top: 1px solid var(--sz-border);
}

.sz-card-bestseller {
  border-color: var(--sz-gold);
}

.sz-card-bestseller:hover {
  border-color: var(--sz-gold-dark);
}

/* ===================================================
   FEATURES / WHY SPORTY ZONE SECTION
   =================================================== */

.sz-why-section {
  background: var(--sz-white);
}

.sz-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.sz-feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--sz-light-gray);
  border-radius: 8px;
  transition: all var(--sz-transition-normal);
}

.sz-feature-card:hover {
  background: var(--sz-white);
  border: 1px solid var(--sz-gold);
  box-shadow: var(--sz-shadow-md);
}

.sz-feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.sz-feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.sz-feature-card p {
  color: var(--sz-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===================================================
   CTA SECTION
   =================================================== */

.sz-cta-section {
  background: linear-gradient(135deg, var(--sz-black) 0%, #2a2a2a 100%);
  color: var(--sz-white);
  text-align: center;
}

.sz-cta-content {
  padding: 80px 40px;
}

.sz-cta-content h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
  font-family: var(--sz-font-serif);
}

.sz-cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   POLICY SECTIONS
   =================================================== */

.sz-policy-section {
  position: relative;
  overflow: hidden;
  padding: 86px 20px;
  background:
    radial-gradient(circle at 16% 20%, rgba(244, 196, 48, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(135deg, #101010 0%, #181818 52%, #0e0e0e 100%);
  color: var(--sz-dark-text, #f9fafb);
  scroll-margin-top: 96px;
}

.sz-policy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 196, 48, 0.055), transparent 34%, rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 50% 100%, rgba(244, 196, 48, 0.08), transparent 34%);
}

.sz-shipping-policy {
  background:
    radial-gradient(circle at 80% 12%, rgba(244, 196, 48, 0.12), transparent 29%),
    radial-gradient(circle at 14% 78%, rgba(255, 255, 255, 0.055), transparent 32%),
    linear-gradient(135deg, #0e0e0e 0%, #171717 48%, #101010 100%);
}

.sz-policy-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sz-policy-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.sz-policy-section .sz-kicker {
  color: var(--sz-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: none;
}

.sz-policy-heading .sz-section-title {
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-align: start;
}

.sz-policy-intro {
  color: rgba(249, 250, 251, 0.84);
  font-size: 18px;
  line-height: 1.9;
  max-width: 860px;
}

.sz-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sz-policy-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 196, 48, 0.08), transparent 34%),
    rgba(31, 31, 31, 0.88);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}

.sz-policy-card::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sz-gold), rgba(244, 196, 48, 0.12));
}

.sz-policy-card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 5px 11px;
  border: 1px solid rgba(244, 196, 48, 0.36);
  border-radius: 999px;
  background: rgba(244, 196, 48, 0.11);
  color: var(--sz-gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.sz-policy-card h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.sz-policy-card p {
  color: rgba(249, 250, 251, 0.8);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 12px;
}

.sz-policy-list {
  display: grid;
  gap: 9px;
  margin: 12px 0 18px;
  padding: 0;
  list-style: none;
}

.sz-policy-list:last-child {
  margin-bottom: 0;
}

.sz-policy-list li {
  position: relative;
  padding-inline-start: 24px;
  color: rgba(249, 250, 251, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

.sz-policy-list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sz-gold);
  box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.12);
}

.sz-policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.sz-policy-actions .sz-btn {
  min-height: 48px;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.sz-policy-actions .sz-btn-primary {
  background: var(--sz-gold);
  color: #101010;
  border: 1px solid var(--sz-gold);
}

.sz-policy-actions .sz-btn-primary:hover {
  background: #ffd84a;
  color: #101010;
}

.sz-policy-actions .sz-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sz-policy-actions .sz-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(244, 196, 48, 0.5);
  color: #fff;
}

.sz-policy-note {
  display: inline-block;
  max-width: 900px;
  margin-top: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(244, 196, 48, 0.26);
  border-radius: 8px;
  background: rgba(244, 196, 48, 0.08);
  color: rgba(249, 250, 251, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.8;
}

.sz-shipping-table-wrap {
  width: 100%;
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(21, 21, 21, 0.9);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  -webkit-overflow-scrolling: touch;
}

.sz-shipping-table-wrap:focus {
  outline: 2px solid rgba(244, 196, 48, 0.65);
  outline-offset: 3px;
}

.sz-shipping-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  direction: rtl;
  color: rgba(249, 250, 251, 0.86);
}

.sz-shipping-table th,
.sz-shipping-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
  vertical-align: top;
}

.sz-shipping-table th {
  background:
    linear-gradient(180deg, rgba(244, 196, 48, 0.17), rgba(244, 196, 48, 0.07)),
    #191919;
  color: #fff;
  font-weight: 900;
}

.sz-shipping-table tbody tr {
  transition: background var(--sz-transition-fast);
}

.sz-shipping-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.sz-shipping-table tbody tr:last-child td {
  border-bottom: 0;
}

.sz-shipping-table th:nth-child(1),
.sz-shipping-table td:nth-child(1) {
  width: 130px;
  white-space: nowrap;
}

.sz-shipping-table th:nth-child(2),
.sz-shipping-table td:nth-child(2) {
  width: 190px;
  color: #fff;
  font-weight: 800;
}

.sz-shipping-table th:nth-child(3),
.sz-shipping-table td:nth-child(3) {
  width: 210px;
  text-align: center;
  font-weight: 900;
}

.sz-shipping-table th:nth-child(4),
.sz-shipping-table td:nth-child(4) {
  min-width: 390px;
}

.sz-zone-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sz-gold), #d7a915);
  color: #111;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.12);
}

@media (max-width: 900px) {
  .sz-policy-grid {
    grid-template-columns: 1fr;
  }

  .sz-shipping-table {
    min-width: 840px;
  }
}

@media (max-width: 620px) {
  .sz-policy-section {
    padding: 56px 16px;
  }

  .sz-policy-container {
    padding: 0;
  }

  .sz-policy-heading {
    margin-bottom: 26px;
  }

  .sz-policy-heading .sz-section-title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .sz-policy-intro {
    font-size: 15px;
    line-height: 1.85;
  }

  .sz-policy-card {
    padding: 22px 18px;
  }

  .sz-policy-card h3 {
    font-size: 19px;
  }

  .sz-policy-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sz-policy-actions .sz-btn {
    width: 100%;
    padding: 13px 18px;
  }

  .sz-policy-note {
    display: block;
    font-size: 13px;
  }

  .sz-shipping-table-wrap {
    margin-top: 20px;
    border-radius: 8px;
  }

  .sz-shipping-table {
    min-width: 760px;
  }

  .sz-shipping-table th,
  .sz-shipping-table td {
    padding: 14px 12px;
    font-size: 13px;
  }
}

/* ===================================================
   FOOTER
   =================================================== */

.sz-footer {
  background: #0a0a0a;
  color: #ddd;
  padding: 60px 20px 30px;
}

.sz-footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.sz-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.sz-footer-col h4 {
  color: var(--sz-white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 900;
}

.sz-footer-col p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #999;
}

.sz-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sz-footer-col li {
  margin-bottom: 10px;
}

.sz-footer-col a {
  color: #999;
  font-size: 14px;
  transition: color var(--sz-transition-fast);
}

.sz-footer-col a:hover {
  color: var(--sz-gold);
}

.sz-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.sz-footer-social a {
  color: #999;
  font-size: 13px;
}

.sz-footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.sz-footer-bottom p {
  margin-bottom: 8px;
}

/* ===================================================
   ADMIN SECTION STYLES
   =================================================== */

.sz-admin-body {
  background: #f3f4f6;
}

.sz-admin-wrapper {
  display: flex;
  min-height: 100vh;
}

.sz-admin-body.sz-admin-locked {
  overflow: hidden;
}

.sz-admin-body.sz-admin-locked .sz-admin-wrapper {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
}

.sz-admin-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(244, 196, 48, 0.16), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(18px);
}

.sz-admin-auth-overlay.sz-hidden {
  display: none;
}

.sz-admin-auth-card {
  width: min(520px, 100%);
  background: rgba(17, 17, 17, 0.96);
  color: var(--sz-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.sz-admin-auth-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sz-admin-auth-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--sz-gold);
}

.sz-admin-auth-kicker {
  margin-bottom: 4px;
  font-size: 12px;
  color: #f4c430;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sz-admin-auth-card h2 {
  margin: 0;
  font-size: 26px;
}

.sz-admin-auth-note {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 14px;
}

.sz-admin-auth-form {
  display: grid;
  gap: 14px;
}

.sz-admin-auth-field {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
}

.sz-admin-auth-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--sz-white);
  border-radius: 12px;
  padding: 14px 16px;
}

.sz-admin-auth-error {
  min-height: 20px;
  color: #fca5a5;
  font-size: 13px;
  margin: 0;
}

/* Admin Sidebar */
.sz-admin-sidebar {
  width: 260px;
  background: var(--sz-black);
  color: var(--sz-white);
  padding: 24px 20px;
  overflow-y: auto;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1000;
}

.sz-admin-sidebar-close {
  display: none;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sz-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 16px;
}

.sz-admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-weight: 900;
  font-size: 18px;
}

.sz-admin-logo {
  width: 40px;
  height: 40px;
  background: var(--sz-gold);
  border-radius: 4px;
  padding: 2px;
  object-fit: contain;
}

.sz-admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.sz-admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  color: #d1d5db;
  transition: all var(--sz-transition-fast);
  cursor: pointer;
  font-weight: 600;
}

.sz-admin-nav-link:hover,
.sz-admin-nav-link.active {
  background: var(--sz-gold);
  color: var(--sz-black);
  font-weight: 900;
}

.sz-nav-icon {
  font-size: 18px;
}

.sz-admin-footer-sidebar {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #444;
}

.sz-admin-view-frontend {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #333;
  border-radius: 6px;
  color: #d1d5db;
  transition: all var(--sz-transition-fast);
  font-size: 14px;
}

.sz-admin-view-frontend:hover {
  background: var(--sz-gold);
  color: var(--sz-black);
}

/* Admin Main Wrapper */
.sz-admin-main-wrapper {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Admin Top Bar */
.sz-admin-topbar {
  background: var(--sz-white);
  border-bottom: 1px solid var(--sz-border);
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--sz-shadow-sm);
}

.sz-admin-page-title {
  font-size: 24px;
  font-weight: 900;
}

.sz-admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sz-admin-user {
  font-size: 14px;
  color: var(--sz-muted);
}

.sz-admin-logout {
  padding: 8px 16px;
  background: var(--sz-red);
  color: var(--sz-white);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--sz-transition-fast);
  font-size: 13px;
}

.sz-admin-logout:hover {
  background: #d32a35;
}

/* Admin Main Content */
.sz-admin-main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.sz-admin-section-box {
  overflow-x: auto;
}

.sz-admin-section {
  display: none;
}

.sz-admin-section.active {
  display: block;
}

.sz-admin-header {
  margin-bottom: 32px;
}

.sz-admin-header h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.sz-admin-subtext {
  color: var(--sz-muted);
  font-size: 14px;
}

/* Dashboard Stats */
.sz-admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.sz-stat-card {
  background: var(--sz-white);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--sz-shadow-sm);
}

.sz-stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 28px;
}

.sz-stat-content {
  flex: 1;
}

.sz-stat-label {
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sz-stat-value {
  font-size: 28px;
  font-weight: 900;
}

/* Quick Products Overview */
.sz-admin-section-box {
  background: var(--sz-white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--sz-shadow-sm);
}

.sz-admin-section-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.sz-admin-quick-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sz-quick-product {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--sz-light-gray);
  border-radius: 6px;
}

.sz-quick-product-img {
  flex-shrink: 0;
}

.sz-quick-product-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.sz-quick-product-info p {
  font-size: 12px;
  color: var(--sz-muted);
  margin-bottom: 8px;
}

/* Table Styles */
.sz-table-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.sz-table-search {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--sz-border);
  border-radius: 4px;
  font-size: 14px;
}

.sz-admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.sz-admin-table th {
  background: var(--sz-light-gray);
  padding: 14px;
  text-align: start;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid var(--sz-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sz-admin-table td {
  padding: 14px;
  border-bottom: 1px solid var(--sz-border);
  font-size: 14px;
}

.sz-table-img {
  text-align: center;
}

.sz-table-name {
  font-weight: 700;
}

.sz-table-sku {
  font-size: 12px;
}

.sz-table-sku code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}

.sz-table-actions {
  font-size: 13px;
}

.sz-action-link {
  color: #0066cc;
  cursor: pointer;
  margin-inline-end: 12px;
  transition: color var(--sz-transition-fast);
}

.sz-action-link:hover {
  color: #0052a3;
  text-decoration: underline;
}

.sz-action-danger {
  color: var(--sz-red);
}

.sz-action-danger:hover {
  color: #d32a35;
}

/* Admin Forms */
.sz-admin-form {
  margin-top: 24px;
}

.sz-form-fieldset {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sz-border);
}

.sz-form-fieldset:last-child {
  border-bottom: none;
}

.sz-form-fieldset legend {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--sz-gold);
  display: block;
  width: 100%;
}

.sz-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sz-form-field {
  display: flex;
  flex-direction: column;
}

.sz-form-field-full {
  grid-column: 1 / -1;
}

.sz-form-field label {
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 14px;
}

.sz-form-field input,
.sz-form-field select,
.sz-form-field textarea {
  padding: 12px;
  border: 1px solid var(--sz-border);
  border-radius: 4px;
  font-family: var(--sz-font-body);
  font-size: 14px;
  transition: border-color var(--sz-transition-fast);
}

.sz-form-field input:focus,
.sz-form-field select:focus,
.sz-form-field textarea:focus {
  outline: none;
  border-color: var(--sz-black);
  background: #f9fafb;
}

.sz-input-with-currency {
  position: relative;
  display: flex;
}

.sz-input-with-currency input {
  flex: 1;
  border-radius: 4px 0 0 4px;
}

.sz-input-with-currency span {
  padding: 12px 12px;
  background: var(--sz-light-gray);
  border: 1px solid var(--sz-border);
  border-left: none;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  color: var(--sz-muted);
}

/* File Upload */
.sz-file-upload-area {
  position: relative;
  border: 2px dashed var(--sz-border);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--sz-transition-fast);
}

.sz-file-upload-area:hover {
  border-color: var(--sz-black);
  background: #f9fafb;
}

.sz-file-upload-area input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sz-file-upload-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.sz-file-upload-content p {
  font-weight: 700;
  margin-bottom: 6px;
}

.sz-file-upload-content small {
  color: var(--sz-muted);
  font-size: 12px;
}

/* Gallery upload (admin) */
.sz-gallery-upload input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px dashed var(--sz-border);
  border-radius: 8px;
  background: #fafafa;
  cursor: pointer;
  font-size: 13px;
}

.sz-gallery-upload input[type="file"]:hover {
  border-color: var(--sz-black);
  background: #f9fafb;
}

.sz-gallery-preview {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  background: #fafafa;
}

.sz-gallery-preview-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sz-muted);
  margin-bottom: 10px;
}

.sz-gallery-preview-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.sz-gallery-preview-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sz-border);
  background: #fff;
  flex-shrink: 0;
}

.sz-gallery-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sz-btn-small {
  padding: 8px 14px;
  font-size: 13px;
}

/* Checkboxes */
.sz-form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sz-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
}

.sz-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.sz-form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* Status Badges */
.sz-status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sz-status-ready {
  background: #d1fae5;
  color: #065f46;
}

.sz-status-draft {
  background: #f3f4f6;
  color: #374151;
}

.sz-status-new {
  background: #e8f5ff;
  color: #1e88e5;
}

.sz-status-processing {
  background: #fff3e8;
  color: #b45309;
}

.sz-status-completed {
  background: #d1fae5;
  color: #065f46;
}

.sz-status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.sz-status-danger {
  background: #fee2e2;
  color: #991b1b;
}

.sz-form-error,
.sz-form-success {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.sz-form-error {
  color: #991b1b;
}

.sz-form-success {
  color: #065f46;
}

.sz-cat-count {
  color: var(--sz-muted);
  font-size: 12px;
  margin-inline-start: 8px;
}

/* Flextock Section */
.sz-flextock-overview {
  background: var(--sz-light-gray);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.sz-flextock-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sz-flextock-stat-value {
  font-size: 32px;
  font-weight: 900;
}

.sz-flextock-stat-label {
  font-size: 14px;
  color: var(--sz-muted);
}

.sz-progress-bar {
  height: 8px;
  background: #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}

.sz-flextock-progress {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.sz-progress-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: #10b981;
  width: 100%;
  border-radius: 4px;
}

.sz-flextock-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sz-flextock-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--sz-light-gray);
  border-radius: 6px;
  border-left: 4px solid transparent;
}

.sz-flextock-check {
  font-weight: 900;
  font-size: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.sz-check-passed {
  background: #d1fae5;
  color: #065f46;
}

.sz-check-failed {
  background: #fee2e2;
  color: #991b1b;
}

.sz-flextock-item-content h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.sz-flextock-item-content p {
  font-size: 13px;
  color: var(--sz-muted);
}

.sz-flextock-actions {
  display: flex;
  gap: 16px;
}

.sz-admin-placeholder {
  text-align: center;
  padding: 60px 40px;
  background: var(--sz-light-gray);
  border-radius: 8px;
}

.sz-admin-placeholder p {
  color: var(--sz-muted);
  font-size: 14px;
}

.sz-admin-security-note {
  margin-top: 12px;
  background: #fff7e6;
  border-left: 4px solid var(--sz-gold);
  color: #38312d;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 13px;
  max-width: 760px;
  line-height: 1.6;
}

.sz-admin-categories-grid {
  grid-template-columns: repeat(2, 1fr);
}

.sz-select-with-link {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.sz-select-with-link select {
  flex: 1 1 240px;
}

.sz-add-category-link {
  color: var(--sz-gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.sz-add-category-link:hover {
  text-decoration: underline;
}

.sz-category-table th,
.sz-category-table td {
  vertical-align: middle;
}

.sz-category-table .sz-action-link {
  margin-inline-end: 10px;
}

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */

/* Tablet (900px and below) */
@media (max-width: 900px) {
  /* Header */
  .sz-header .wrap {
    grid-template-columns: 1fr auto;
  }

  .sz-nav {
    display: none;
  }

  .sz-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sz-header .sz-lang-switch {
    display: none;
  }

  /* Hero */
  .sz-hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sz-hero-art {
    min-height: 320px;
  }

  /* Trust Strip */
  .sz-trust-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Collections */
  .sz-collections {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Products */
  .sz-products {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Features */
  .sz-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Admin */
  .sz-admin-sidebar {
    width: 220px;
  }

  .sz-admin-main-wrapper {
    margin-left: 220px;
  }

  .sz-admin-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sz-admin-quick-products {
    grid-template-columns: 1fr;
  }

  .sz-form-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (620px and below) */
@media (max-width: 620px) {
  /* Top Bar */
  .sz-top .wrap {
    display: block;
    text-align: center;
  }

  .sz-social {
    justify-content: center;
    margin-top: 12px;
  }

  /* Header */
  .sz-header .wrap {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 16px;
  }

  .sz-brand {
    font-size: 18px;
  }

  .sz-brand img {
    width: 42px;
    height: 42px;
  }

  .sz-header-right {
    width: 100%;
    justify-content: space-between;
  }

  /* Hero */
  .sz-hero {
    padding: 50px 16px;
  }

  .sz-hero .wrap {
    min-height: auto;
    padding: 0;
  }

  .sz-hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .sz-hero-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .sz-hero-buttons {
    flex-direction: column;
  }

  .sz-hero-art {
    min-height: 240px;
  }

  .sz-hero-logo {
    width: 60%;
  }

  /* Sections */
  .sz-section {
    padding: 50px 16px;
  }

  .sz-section-title {
    margin-bottom: 40px;
  }

  .sz-title-row {
    display: block;
    margin-bottom: 32px;
  }

  .sz-title-row .sz-btn {
    display: none;
  }

  /* Trust Strip */
  .sz-trust-strip {
    padding: 40px 16px;
  }

  .sz-trust-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sz-trust-icon {
    font-size: 36px;
  }

  .sz-trust-item h3 {
    font-size: 15px;
  }

  .sz-trust-item p {
    font-size: 13px;
  }

  /* Collections */
  .sz-collections {
    grid-template-columns: 1fr;
  }

  .sz-collection {
    height: 180px;
  }

  /* Products */
  .sz-products {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Features */
  .sz-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sz-feature-card {
    padding: 24px 16px;
  }

  /* CTA */
  .sz-cta-section {
    padding: 40px 16px;
  }

  .sz-cta-content {
    padding: 40px 20px;
  }

  .sz-cta-content h2 {
    font-size: 28px;
  }

  .sz-cta-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Footer */
  .sz-footer {
    padding: 40px 16px 20px;
  }

  .sz-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Admin Sidebar */
  .sz-admin-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .sz-admin-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sz-admin-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: min(280px, 88vw);
    height: 100vh;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transform: translateX(-100%);
    transition: transform var(--sz-transition-normal);
    border-bottom: none;
    box-shadow: var(--sz-shadow-xl);
  }

  html[dir="rtl"] .sz-admin-sidebar {
    left: auto;
    right: 0;
    transform: translateX(100%);
  }

  .sz-admin-sidebar.sz-admin-sidebar-open {
    transform: translateX(0);
  }

  .sz-admin-brand {
    margin-bottom: 20px;
  }

  .sz-admin-nav {
    display: flex;
  }

  .sz-admin-footer-sidebar {
    display: block;
  }

  .sz-admin-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 999;
  }

  .sz-admin-sidebar-backdrop.sz-hidden {
    display: none;
  }

  .sz-admin-main-wrapper {
    margin-left: 0;
  }

  .sz-admin-topbar {
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sz-admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .sz-admin-main {
    padding: 16px;
  }

  .sz-admin-section-box {
    padding: 16px;
    margin-bottom: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sz-admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sz-stat-card {
    flex-direction: column;
  }

  .sz-admin-page-title {
    font-size: 20px;
  }

  .sz-admin-auth-card {
    padding: 22px 18px;
  }

  .sz-admin-auth-card h2 {
    font-size: 22px;
  }

  .sz-form-grid {
    grid-template-columns: 1fr;
  }

  .sz-form-field input,
  .sz-form-field select,
  .sz-form-field textarea,
  .sz-admin-auth-field input {
    width: 100%;
  }

  .sz-admin-table {
    font-size: 12px;
    min-width: 720px;
    width: 100%;
  }

  .sz-admin-table th,
  .sz-admin-table td {
    padding: 10px;
  }
}

/* ===================================================
   UTILITIES
   =================================================== */

.sz-dark {
  background: var(--sz-black);
  color: var(--sz-white);
}

.sz-dark .sz-title {
  color: var(--sz-white);
}

.sz-dark .sz-sub {
  color: rgba(255, 255, 255, 0.8);
}

.sz-order-detail-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.sz-order-detail-summary > div,
.sz-order-detail-grid > div,
.sz-order-detail-notes {
  border: 1px solid var(--sz-border);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.sz-order-detail-summary span {
  display: block;
  color: var(--sz-muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.sz-order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.sz-order-detail-grid h4,
.sz-order-detail-section h4 {
  margin: 0 0 10px;
  font-size: 15px;
}

.sz-order-detail-grid p,
.sz-order-detail-notes {
  font-size: 13px;
}

.sz-order-detail-grid p + p {
  margin-top: 6px;
}

.sz-order-detail-section {
  margin-top: 16px;
}

.sz-order-table-wrap {
  overflow-x: auto;
}

.sz-order-items-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.sz-order-items-table th,
.sz-order-items-table td {
  border-bottom: 1px solid var(--sz-border);
  padding: 10px;
  text-align: start;
  font-size: 13px;
}

.sz-order-items-table th {
  background: var(--sz-light-gray);
  font-weight: 800;
}

.sz-empty-table-cell {
  text-align: center;
  color: var(--sz-muted);
}

.sz-order-total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px solid var(--sz-border);
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .sz-order-detail-summary,
  .sz-order-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sz-admin-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .sz-admin-sidebar-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .sz-admin-sidebar {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: 0;
    width: min(320px, 88vw);
    height: 100vh;
    padding: 18px 16px;
    transform: translateX(100%);
    box-shadow: var(--sz-shadow-xl);
  }

  html[dir="rtl"] .sz-admin-sidebar {
    inset-inline-start: 0;
    inset-inline-end: auto;
    transform: translateX(-100%);
  }

  .sz-admin-sidebar.sz-admin-sidebar-open {
    transform: translateX(0);
  }

  .sz-admin-main-wrapper {
    margin-left: 0;
  }

  .sz-admin-topbar {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sz-admin-topbar-left {
    width: 100%;
  }

  .sz-admin-main {
    padding: 16px;
  }

  .sz-admin-section-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sz-admin-table {
    min-width: 720px;
    width: 100%;
  }

  .sz-form-grid {
    grid-template-columns: 1fr;
  }

  .sz-admin-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sz-admin-auth-card {
    width: min(520px, 100%);
  }
}

/* Hidden by default for mobile menu, etc */
.sz-hidden {
  display: none;
}

body.sz-scroll-lock {
  overflow: hidden;
}

.sz-cart-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sz-cart-variant-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 6px 0;
  color: var(--sz-muted);
  font-size: 12px;
  line-height: 1.45;
}

.sz-cart-variant-details code {
  width: fit-content;
  background: #f3f4f6;
  color: #374151;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
}

.sz-product-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.sz-modal-product-photo {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--sz-light-gray);
}

/* Quick View product gallery */
.sz-qv-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sz-qv-main-image {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sz-light-gray);
  border: 1px solid var(--sz-border);
}

.sz-qv-main-image .sz-modal-product-photo {
  max-height: 400px;
}

.sz-qv-main-image .sz-qv-fallback {
  max-width: 360px;
}

.sz-qv-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.sz-qv-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid var(--sz-border);
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--sz-transition-fast), box-shadow var(--sz-transition-fast), transform var(--sz-transition-fast);
}

.sz-qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.sz-qv-thumb:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.sz-qv-thumb.active {
  border-color: var(--sz-gold);
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.25);
}

.sz-qv-thumb.sz-qv-thumb-broken {
  opacity: 0.45;
  cursor: not-allowed;
}

body:not(.sz-admin-body) .sz-qv-main-image {
  background: var(--sz-panel-dark-2);
  border-color: var(--sz-dark-border);
}

body:not(.sz-admin-body) .sz-qv-thumb {
  background: #0f0f0f;
  border-color: var(--sz-dark-border);
}

body:not(.sz-admin-body) .sz-qv-thumb:hover {
  border-color: rgba(244, 196, 48, 0.45);
}

body:not(.sz-admin-body) .sz-qv-thumb.active {
  border-color: var(--sz-gold);
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.2);
}

body:not(.sz-admin-body) .sz-modal-product-photo {
  background: var(--sz-panel-dark-2);
}

.sz-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--sz-black);
  color: var(--sz-white);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  z-index: 10005;
  box-shadow: var(--sz-shadow-lg);
  transition: transform var(--sz-transition-normal);
  max-width: min(420px, 92vw);
  text-align: center;
}

.sz-toast.show {
  transform: translateX(-50%) translateY(0);
}

.sz-checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--sz-transition-fast), visibility var(--sz-transition-fast);
}

.sz-checkout-overlay:not(.sz-hidden) {
  opacity: 1;
  visibility: visible;
}

.sz-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--sz-transition-fast), visibility var(--sz-transition-fast);
}

.sz-checkout-modal:not(.sz-hidden) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sz-checkout-content {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--sz-white);
  border-radius: 20px;
  box-shadow: var(--sz-shadow-xl);
  padding: 28px;
}

.sz-checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--sz-black);
  color: var(--sz-white);
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}

.sz-checkout-title {
  font-size: 22px;
  margin-bottom: 6px;
}

.sz-checkout-preview-note {
  color: var(--sz-muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.sz-checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.sz-checkout-form {
  display: grid;
  gap: 14px;
}

.sz-checkout-field label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.sz-checkout-field input,
.sz-checkout-field select,
.sz-checkout-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  font: inherit;
}

.sz-field-invalid input,
.sz-field-invalid select,
.sz-field-invalid textarea {
  border-color: #991b1b;
  background: #fff7f7;
}

.sz-field-error {
  margin-top: 6px;
  color: #991b1b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.sz-checkout-field textarea {
  min-height: 88px;
  resize: vertical;
}

.sz-checkout-payment {
  padding: 14px;
  border-radius: 12px;
  background: var(--sz-light-gray);
  border: 1px solid var(--sz-border);
}

.sz-checkout-payment legend {
  font-weight: 800;
  font-size: 13px;
  padding: 0 6px;
}

.sz-checkout-payment label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
}

.sz-checkout-summary {
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--sz-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: start;
  position: sticky;
  top: 0;
}

.sz-checkout-summary h3 {
  font-size: 17px;
}

.sz-checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
}

.sz-checkout-order-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.sz-checkout-order-item strong {
  font-size: 14px;
}

.sz-checkout-order-item small {
  display: block;
  color: var(--sz-muted);
  font-size: 11px;
  margin-top: 3px;
}

.sz-checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 900;
  padding-top: 10px;
  border-top: 1px solid var(--sz-border);
}

.sz-checkout-total-final {
  border-top-width: 2px;
  font-size: 16px;
}

.sz-checkout-submit {
  width: 100%;
  margin-top: 8px;
}

.sz-checkout-success {
  text-align: center;
  padding: 40px 24px;
}

.sz-checkout-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.sz-checkout-success p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--sz-text);
  margin-bottom: 24px;
}

.sz-admin-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--sz-light-gray);
  border: 1px solid var(--sz-border);
  display: block;
}

.sz-admin-thumb-wrap {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: #9ca3af;
}

@media (max-width: 820px) {
  .sz-checkout-grid {
    grid-template-columns: 1fr;
  }

  .sz-checkout-summary {
    position: static;
  }
}

.sz-admin-mobile-toggle {
  display: none;
  border: 1px solid var(--sz-border);
  background: var(--sz-white);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.sz-admin-sidebar.sz-admin-sidebar-open {
  transform: translateX(0);
}

/* Text alignment utilities */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

/* Margin utilities */
.mt-lg {
  margin-top: 40px;
}

.mb-lg {
  margin-bottom: 40px;
}

/* ===================================================
   FINAL CLEANUP PASS - dark storefront, readable panels,
   admin presets, Flextock readiness, and premium depth
   =================================================== */
:root {
  --sz-page-dark: #121212;
  --sz-panel-dark: #171717;
  --sz-panel-dark-2: #1f1f1f;
  --sz-dark-border: rgba(255, 255, 255, 0.12);
  --sz-dark-text: #f9fafb;
  --sz-dark-muted: #9ca3af;
  --hero-scale: 0.92;
  --hero-y: 20px;
  --hero-rotate: -2deg;
}

body:not(.sz-admin-body) {
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 196, 48, 0.08), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 28%),
    var(--sz-page-dark);
  color: var(--sz-dark-text);
}

body:not(.sz-admin-body) .sz-header,
body:not(.sz-admin-body) .sz-top {
  background: rgba(12, 12, 12, 0.92);
  color: var(--sz-dark-text);
  border-color: var(--sz-dark-border);
  backdrop-filter: blur(14px);
}

body:not(.sz-admin-body) .sz-nav a,
body:not(.sz-admin-body) .sz-brand,
body:not(.sz-admin-body) .sz-lang-switch,
body:not(.sz-admin-body) .sz-icons span,
body:not(.sz-admin-body) .sz-menu-btn {
  color: var(--sz-dark-text);
}

body:not(.sz-admin-body) .sz-section,
body:not(.sz-admin-body) .sz-trust-strip,
body:not(.sz-admin-body) .sz-why-section,
body:not(.sz-admin-body) .sz-cta-section {
  position: relative;
  background: transparent;
  overflow: hidden;
}

body:not(.sz-admin-body) .sz-section::before,
body:not(.sz-admin-body) .sz-trust-strip::before,
body:not(.sz-admin-body) .sz-why-section::before,
body:not(.sz-admin-body) .sz-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(244, 196, 48, 0.075), transparent 30%),
    radial-gradient(circle at 88% 40%, rgba(255, 255, 255, 0.045), transparent 32%);
  z-index: 0;
}

body:not(.sz-admin-body) .sz-section > *,
body:not(.sz-admin-body) .sz-trust-strip > *,
body:not(.sz-admin-body) .sz-why-section > *,
body:not(.sz-admin-body) .sz-cta-section > * {
  position: relative;
  z-index: 1;
}

body:not(.sz-admin-body) .sz-hero {
  background:
    radial-gradient(circle at 67% 48%, rgba(244, 196, 48, 0.11), transparent 27%),
    radial-gradient(circle at 74% 25%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(135deg, #0d0d0d, #191919 54%, #111111);
  color: var(--sz-dark-text);
  overflow: hidden;
}

.sz-hero-depth {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.sz-hero-glow {
  position: absolute;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(244, 196, 48, 0.20), transparent 38%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 56%);
  filter: blur(14px);
  opacity: 0.75;
  z-index: -1;
}

.sz-hero-model {
  width: min(460px, 85vw);
  max-height: 620px;
  object-fit: contain;
  transform: translate3d(0, var(--hero-y), 0) scale(var(--hero-scale)) rotate(var(--hero-rotate));
  transition: transform 0.22s ease-out, filter 0.3s ease;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.38));
  will-change: transform;
}

.sz-hero-model:hover {
  transform: translate3d(0, calc(var(--hero-y) - 8px), 0) scale(calc(var(--hero-scale) + 0.035)) rotate(calc(var(--hero-rotate) + 0.5deg));
}

.sz-hero-logo-fallback {
  width: min(300px, 68vw);
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .sz-hero-model { transform: none !important; transition: none !important; }
}

body:not(.sz-admin-body) .sz-card,
body:not(.sz-admin-body) .sz-collection,
body:not(.sz-admin-body) .sz-trust-item,
body:not(.sz-admin-body) .sz-feature-card,
body:not(.sz-admin-body) .sz-cta-box {
  background: rgba(31, 31, 31, 0.84);
  border: 1px solid var(--sz-dark-border);
  color: var(--sz-dark-text);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

body:not(.sz-admin-body) .sz-sub,
body:not(.sz-admin-body) .sz-cat-label,
body:not(.sz-admin-body) .sz-card-body,
body:not(.sz-admin-body) .sz-feature-card p,
body:not(.sz-admin-body) .sz-trust-item p,
body:not(.sz-admin-body) .sz-footer,
body:not(.sz-admin-body) .sz-footer a {
  color: var(--sz-dark-muted);
}

body:not(.sz-admin-body) .sz-card h3,
body:not(.sz-admin-body) .sz-title,
body:not(.sz-admin-body) .sz-section-title,
body:not(.sz-admin-body) .sz-price span,
body:not(.sz-admin-body) .sz-footer h4,
body:not(.sz-admin-body) .sz-footer-brand p:first-child {
  color: var(--sz-dark-text);
}

.sz-product-detail,
.sz-modal-product-detail,
.sz-product-stock,
.sz-cart-variant-line {
  color: var(--sz-muted);
  font-size: 13px;
  line-height: 1.6;
}

body:not(.sz-admin-body) .sz-product-detail,
body:not(.sz-admin-body) .sz-modal-product-detail,
body:not(.sz-admin-body) .sz-product-stock,
body:not(.sz-admin-body) .sz-cart-variant-line {
  color: var(--sz-dark-muted);
}

body:not(.sz-admin-body) .sz-checkout-content,
body:not(.sz-admin-body) .sz-modal-content,
body:not(.sz-admin-body) .sz-cart-drawer,
body:not(.sz-admin-body) #sz-header-search-panel {
  background: var(--sz-panel-dark);
  color: var(--sz-dark-text);
  border-color: var(--sz-dark-border);
}

body:not(.sz-admin-body) .sz-checkout-summary,
body:not(.sz-admin-body) .sz-checkout-payment,
body:not(.sz-admin-body) .sz-checkout-order-item,
body:not(.sz-admin-body) .sz-cart-summary,
body:not(.sz-admin-body) .sz-cart-item,
body:not(.sz-admin-body) .sz-modal-details {
  background: var(--sz-panel-dark-2);
  border-color: var(--sz-dark-border);
  color: var(--sz-dark-text);
}

body:not(.sz-admin-body) .sz-checkout-field label,
body:not(.sz-admin-body) .sz-checkout-title,
body:not(.sz-admin-body) .sz-checkout-summary h3,
body:not(.sz-admin-body) .sz-checkout-payment legend,
body:not(.sz-admin-body) .sz-modal-details h3,
body:not(.sz-admin-body) .sz-cart-drawer h2 {
  color: var(--sz-dark-text);
}

body:not(.sz-admin-body) .sz-checkout-field input,
body:not(.sz-admin-body) .sz-checkout-field select,
body:not(.sz-admin-body) .sz-checkout-field textarea,
body:not(.sz-admin-body) #sz-search-input {
  background: #0f0f0f;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

body:not(.sz-admin-body) .sz-checkout-field input::placeholder,
body:not(.sz-admin-body) .sz-checkout-field textarea::placeholder,
body:not(.sz-admin-body) #sz-search-input::placeholder {
  color: #8d96a5;
}

body:not(.sz-admin-body) .sz-checkout-field input:focus,
body:not(.sz-admin-body) .sz-checkout-field select:focus,
body:not(.sz-admin-body) .sz-checkout-field textarea:focus,
body:not(.sz-admin-body) #sz-search-input:focus {
  outline: none;
  border-color: var(--sz-gold);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.14);
}

.sz-field-error,
.sz-admin-field-error {
  display: block;
  margin-top: 6px;
  color: #ef4444;
  font-size: 12px;
  font-weight: 800;
}

.sz-input-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.sz-size.active,
.sz-size.is-selected,
.sz-dot.active,
.sz-dot.is-selected {
  outline: 2px solid var(--sz-gold);
  outline-offset: 3px;
  transform: translateY(-1px);
}

.sz-admin-helper,
.sz-stat-helper,
.sz-form-helper {
  display: block;
  margin-top: 6px;
  color: var(--sz-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.sz-size-presets,
.sz-color-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.sz-size-chip,
.sz-color-chip {
  border: 1px solid var(--sz-border);
  background: #fff;
  color: var(--sz-text);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.18s ease;
  min-height: 36px;
}

.sz-size-chip.active,
.sz-color-chip.active {
  background: var(--sz-black);
  color: #fff;
  border-color: var(--sz-gold);
  box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.14);
}

.sz-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sz-color-chip::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--chip-color, #111);
  border: 1px solid rgba(0, 0, 0, 0.18);
  flex: 0 0 16px;
}

.sz-color-chip.active::before {
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.26);
}

.sz-custom-color-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.sz-custom-color-row input { flex: 1; }

.sz-custom-color-row input[type="color"] {
  flex: 0 0 46px;
  width: 46px;
  min-height: 42px;
  padding: 4px;
}

.sz-custom-color-list:empty {
  display: none;
}

#sz-custom-color-error {
  min-height: 18px;
}

.sz-sku-preview {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--sz-border);
  border-radius: 10px;
  background: #fafafa;
}

.sz-sku-preview h4 {
  margin: 0 0 10px;
  font-size: 14px;
}

.sz-sku-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sz-sku-chip {
  background: #111827;
  color: #fff;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.sz-variation-counter {
  margin: -4px 0 12px;
  color: #374151;
  font-size: 13px;
  font-weight: 900;
}

.sz-future-disabled,
.sz-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed !important;
}

.sz-flextock-warning-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
}

.sz-flextock-warning {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(244, 196, 48, 0.32);
  background: rgba(244, 196, 48, 0.08);
  color: #6b4d00;
  font-weight: 800;
}

.sz-readiness-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
}

.sz-readiness-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.sz-readiness-badge.ready {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.sz-readiness-badge.not-ready {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.sz-missing-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.sz-missing-reason {
  padding: 4px 7px;
  border-radius: 8px;
  background: #fff1f2;
  color: #be123c;
  font-size: 11px;
  font-weight: 800;
}

.sz-placeholder-product {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--sz-dark-muted);
  background:
    radial-gradient(circle at 50% 30%, rgba(244,196,48,0.14), transparent 35%),
    linear-gradient(145deg, #1b1b1b, #111);
  border: 1px solid var(--sz-dark-border);
}

.sz-placeholder-product strong {
  display: block;
  color: var(--sz-gold);
  font-size: 38px;
  line-height: 1;
}

.sz-placeholder-product span {
  display: block;
  margin-top: 8px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .sz-hero-depth { min-height: 340px; }
  .sz-hero-model { width: min(330px, 90vw); }
  .sz-custom-color-row { flex-direction: column; align-items: stretch; }
}
