/* ================================================================
   AURA — Ultra-Modern E-Commerce
   Apple-level design · Light + Dark mode
================================================================ */

:root {
  --sh-accent:        #FF4D29;
  --sh-accent-d:      #E63E1F;
  --sh-accent-soft:   #FFE8E2;

  --sh-bg:            #FAFAFA;
  --sh-surface:       #FFFFFF;
  --sh-surface-2:     #F4F4F5;
  --sh-text:          #18181B;
  --sh-text-soft:     #3F3F46;
  --sh-muted:         #71717A;
  --sh-light:         #A1A1AA;
  --sh-border:        #E4E4E7;
  --sh-border-d:      #D4D4D8;

  --sh-success:       #16A34A;
  --sh-success-l:     #DCFCE7;
  --sh-warning:       #F59E0B;
  --sh-info:          #0EA5E9;

  --sh-shadow-sm:     0 1px 2px rgba(0,0,0,.04);
  --sh-shadow:        0 4px 16px rgba(0,0,0,.06);
  --sh-shadow-lg:     0 20px 60px rgba(0,0,0,.12);
  --sh-shadow-xl:     0 30px 80px rgba(0,0,0,.18);

  --sh-radius-sm:     6px;
  --sh-radius:        10px;
  --sh-radius-lg:     16px;
  --sh-radius-xl:     22px;

  --sh-container:     1280px;
  --sh-gutter:        2rem;

  --sh-font:          'Inter', system-ui, -apple-system, sans-serif;
  --sh-font-ar:       'Cairo', 'Tajawal', system-ui, sans-serif;

  --sh-transition:    200ms cubic-bezier(.4, 0, .2, 1);
}

[data-theme="dark"] {
  --sh-bg:        #0A0A0B;
  --sh-surface:   #18181B;
  --sh-surface-2: #27272A;
  --sh-text:      #FAFAFA;
  --sh-text-soft: #E4E4E7;
  --sh-muted:     #A1A1AA;
  --sh-light:     #71717A;
  --sh-border:    #27272A;
  --sh-border-d:  #3F3F46;
  --sh-shadow:    0 4px 16px rgba(0,0,0,.4);
  --sh-shadow-lg: 0 20px 60px rgba(0,0,0,.6);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sh-font);
  background: var(--sh-bg);
  color: var(--sh-text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
}
body[dir="rtl"] { font-family: var(--sh-font-ar); }
a { color: inherit; text-decoration: none; transition: color var(--sh-transition); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
.sh-i { stroke-width: 1.8; flex-shrink: 0; vertical-align: middle; }

.sh-container {
  max-width: var(--sh-container);
  margin: 0 auto;
  padding: 0 var(--sh-gutter);
  width: 100%;
}

/* ── Demo Banner ────────────────────────────────────────────────── */
.sh-banner {
  background: linear-gradient(90deg, var(--sh-accent), #FF8A65);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.sh-banner code {
  background: rgba(0,0,0,.18);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: .75rem;
}
.sh-banner .reset { opacity: .85; margin-inline-start: 1rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.sh-header {
  background: var(--sh-surface);
  border-bottom: 1px solid var(--sh-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--sh-surface) 92%, transparent);
}
.sh-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  height: 72px;
}
.sh-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.sh-logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #18181B, #3F3F46);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
[data-theme="dark"] .sh-logo-mark { background: linear-gradient(135deg, #FAFAFA, #A1A1AA); color: #18181B; }
.sh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.sh-logo-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sh-text);
  letter-spacing: -.04em;
}
.sh-logo-text small {
  font-size: .65rem;
  color: var(--sh-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Search bar */
.sh-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.sh-search-input-wrap {
  position: relative;
}
.sh-search input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--sh-border);
  border-radius: 50px;
  padding: 0 1.25rem 0 3rem;
  font-size: .9rem;
  font-family: inherit;
  background: var(--sh-bg);
  color: var(--sh-text);
  transition: all var(--sh-transition);
}
[dir="rtl"] .sh-search input { padding: 0 3rem 0 1.25rem; }
.sh-search input:focus {
  outline: none;
  background: var(--sh-surface);
  border-color: var(--sh-text);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sh-text) 8%, transparent);
}
.sh-search .icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 1rem;
  transform: translateY(-50%);
  color: var(--sh-muted);
  pointer-events: none;
}
.sh-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  box-shadow: var(--sh-shadow-lg);
  max-height: 480px;
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: 99;
  display: none;
}
.sh-search-results.show { display: block; }
.sh-search-results .head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sh-muted);
  padding: .85rem 1rem .5rem;
}
.sh-search-results a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--sh-border);
  transition: background var(--sh-transition);
}
.sh-search-results a:hover { background: var(--sh-bg); }
.sh-search-results img { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; }
.sh-search-results .info { flex: 1; min-width: 0; }
.sh-search-results .name { font-weight: 600; font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--sh-text); }
.sh-search-results .price { font-size: .82rem; color: var(--sh-accent); font-weight: 700; }

.sh-header-actions { display: flex; gap: .25rem; align-items: center; }
.sh-icon-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: transparent;
  border: none;
  color: var(--sh-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--sh-transition);
}
.sh-icon-btn:hover { background: var(--sh-surface-2); }
.sh-icon-btn .badge {
  position: absolute;
  top: 6px; inset-inline-end: 6px;
  min-width: 18px; height: 18px;
  border-radius: 50px;
  background: var(--sh-accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--sh-surface);
}

/* Language switcher dropdown */
.sh-lang-switch { position: relative; }
.sh-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 150px;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius);
  box-shadow: var(--sh-shadow-lg);
  padding: .35rem;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--sh-transition), transform var(--sh-transition), visibility var(--sh-transition);
}
.sh-lang-switch:hover .sh-lang-menu,
.sh-lang-switch:focus-within .sh-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sh-lang-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: var(--sh-radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--sh-text-soft);
}
.sh-lang-menu a:hover { background: var(--sh-surface-2); color: var(--sh-text); }
.sh-lang-menu a.active { color: var(--sh-accent); }

/* Category bar */
.sh-cat-bar {
  border-top: 1px solid var(--sh-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.sh-cat-bar::-webkit-scrollbar { display: none; }
.sh-cat-bar-inner {
  display: flex;
  gap: .25rem;
  padding: .35rem 0;
}
.sh-cat-link {
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--sh-text-soft);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--sh-transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.sh-cat-link:hover { background: var(--sh-surface-2); color: var(--sh-text); }
.sh-cat-link.active { background: var(--sh-text); color: var(--sh-surface); }

/* ── Buttons ────────────────────────────────────────────────────── */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--sh-transition);
  line-height: 1;
  letter-spacing: -.01em;
}
.sh-btn-primary {
  background: var(--sh-text);
  color: var(--sh-surface) !important;
  border-color: var(--sh-text);
}
.sh-btn-primary:hover { transform: translateY(-1px); box-shadow: var(--sh-shadow); }
.sh-btn-accent {
  background: var(--sh-accent);
  color: #fff !important;
  border-color: var(--sh-accent);
}
.sh-btn-accent:hover { background: var(--sh-accent-d); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,77,41,.35); }
.sh-btn-outline {
  background: transparent;
  color: var(--sh-text) !important;
  border-color: var(--sh-border-d);
}
.sh-btn-outline:hover { border-color: var(--sh-text); background: var(--sh-surface-2); }
.sh-btn-ghost {
  background: var(--sh-surface-2);
  color: var(--sh-text) !important;
  border-color: transparent;
}
.sh-btn-ghost:hover { background: var(--sh-border); }
.sh-btn-lg { padding: 1rem 2rem; font-size: .95rem; }
.sh-btn-sm { padding: .55rem 1.1rem; font-size: .82rem; }
.sh-btn-block { width: 100%; }
.sh-btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ── Hero ───────────────────────────────────────────────────────── */
.sh-hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.sh-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--sh-accent-soft);
  color: var(--sh-accent-d);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .sh-hero-eyebrow { background: rgba(255,77,41,.15); color: #FF8A65; }
.sh-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 1.5rem;
  letter-spacing: -.04em;
  color: var(--sh-text);
}
.sh-hero h1 .accent {
  background: linear-gradient(135deg, var(--sh-accent), #FF8A65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sh-hero .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--sh-muted);
  max-width: 520px;
  margin: 0 0 2.5rem;
}
.sh-hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.sh-hero-visual {
  position: relative;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF2EF, #FFE8E2);
}
[data-theme="dark"] .sh-hero-visual { background: linear-gradient(135deg, #27272A, #18181B); }
.sh-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .sh-hero-visual img { mix-blend-mode: normal; opacity: .85; }

.sh-hero-stat-pill {
  position: absolute;
  background: var(--sh-surface);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--sh-shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}
.sh-hero-stat-pill .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--sh-accent-soft);
  color: var(--sh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-hero-stat-pill .num { font-weight: 800; color: var(--sh-text); }
.sh-hero-stat-pill .lbl { font-size: .72rem; color: var(--sh-muted); }
.sh-hero-stat-1 { top: 24px; inset-inline-start: -16px; animation: floatY 4s ease-in-out infinite; }
.sh-hero-stat-2 { bottom: 24px; inset-inline-end: -16px; animation: floatY 4s ease-in-out infinite 1.5s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── Sections ───────────────────────────────────────────────────── */
.sh-section { padding: 70px 0; }
.sh-section.bg-soft { background: var(--sh-surface-2); }
.sh-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.sh-section-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -.025em;
  color: var(--sh-text);
}
.sh-section-head p {
  font-size: .95rem;
  color: var(--sh-muted);
  margin: .5rem 0 0;
}
.sh-section-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--sh-text);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
}
.sh-section-link:hover { color: var(--sh-accent); }

/* ── Categories ─────────────────────────────────────────────────── */
.sh-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sh-cat-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  text-align: start;
  transition: all var(--sh-transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.sh-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-lg);
  border-color: var(--sh-text);
}
.sh-cat-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sh-accent-soft);
  color: var(--sh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sh-cat-card h4 { font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; color: var(--sh-text); }
.sh-cat-card .count { font-size: .8rem; color: var(--sh-muted); }
.sh-cat-card .arrow {
  position: absolute;
  bottom: 1.25rem;
  inset-inline-end: 1.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--sh-transition);
  color: var(--sh-text);
}
[dir="rtl"] .sh-cat-card .arrow { transform: translateX(8px); }
.sh-cat-card:hover .arrow { opacity: 1; transform: translateX(0); }

/* ── Product cards ──────────────────────────────────────────────── */
.sh-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem 1.25rem;
}
.sh-prod {
  position: relative;
  background: var(--sh-surface);
  border-radius: var(--sh-radius-lg);
  overflow: hidden;
  transition: all var(--sh-transition);
  border: 1px solid var(--sh-border);
}
.sh-prod:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-shadow-lg);
}
.sh-prod-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--sh-surface-2);
  overflow: hidden;
}
.sh-prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.sh-prod:hover .sh-prod-img img { transform: scale(1.06); }
.sh-prod-img .cover-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.sh-prod-badges {
  position: absolute;
  top: .75rem;
  inset-inline-start: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  z-index: 2;
}
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
}
.sh-badge-new      { background: var(--sh-text); color: var(--sh-surface); }
.sh-badge-sale     { background: var(--sh-accent); color: #fff; }
.sh-badge-featured { background: #18181B; color: #FFD700; }
[data-theme="dark"] .sh-badge-new { background: #fff; color: #18181B; }

.sh-prod-wishlist {
  position: absolute;
  top: .75rem;
  inset-inline-end: .75rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sh-surface);
  border: none;
  color: var(--sh-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-shadow-sm);
  transition: all var(--sh-transition);
  z-index: 2;
}
.sh-prod-wishlist:hover { color: var(--sh-accent); transform: scale(1.1); }
.sh-prod-wishlist.active { color: var(--sh-accent); background: var(--sh-accent-soft); }
.sh-prod-wishlist.active svg { fill: currentColor; }

.sh-prod-info { padding: 1.25rem; }
.sh-prod-info .brand {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sh-muted);
  margin-bottom: .35rem;
  font-weight: 600;
}
.sh-prod-info .title {
  font-size: .92rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  line-height: 1.4;
  color: var(--sh-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.sh-prod-info .title a { color: inherit; }
.sh-prod-info .title a:hover { color: var(--sh-accent); }
.sh-prod-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--sh-muted);
  margin-bottom: .65rem;
}
.sh-prod-meta .star { color: #F59E0B; }
.sh-prod-meta strong { color: var(--sh-text); font-weight: 600; }

.sh-prod-price-row { display: flex; justify-content: space-between; align-items: center; }
.sh-prod-price .new {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sh-text);
  letter-spacing: -.02em;
}
.sh-prod-price .old {
  font-size: .85rem;
  text-decoration: line-through;
  color: var(--sh-light);
  margin-inline-start: 6px;
}
.sh-prod-add {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sh-text);
  color: var(--sh-surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all var(--sh-transition);
}
.sh-prod-add:hover { background: var(--sh-accent); transform: scale(1.1); }

/* ── Product Detail ─────────────────────────────────────────────── */
.sh-breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--sh-muted);
  padding: 1.5rem 0;
}
.sh-breadcrumb a { color: inherit; }
.sh-breadcrumb a:hover { color: var(--sh-text); }
.sh-breadcrumb .sep { opacity: .5; }

.sh-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin: 1rem 0 4rem;
}
.sh-detail-gallery {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sh-detail-main-img {
  background: var(--sh-surface-2);
  border-radius: 20px;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.sh-detail-main-img img { width: 100%; height: 100%; object-fit: cover; }
.sh-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.sh-detail-thumb {
  background: var(--sh-surface-2);
  border: 2px solid transparent;
  border-radius: 12px;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.sh-detail-thumb.active { border-color: var(--sh-text); }
.sh-detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sh-detail-info .brand-tag {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sh-accent);
  margin-bottom: .5rem;
}
.sh-detail-info h1 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 .75rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.sh-detail-rating { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.sh-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #F59E0B;
}
.sh-stars .sh-i { width: 16px; height: 16px; }
.sh-stars-empty { color: var(--sh-border); }
.sh-detail-price-box {
  background: var(--sh-surface-2);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.sh-detail-price-box .big {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--sh-text);
  line-height: 1;
  letter-spacing: -.03em;
}
.sh-detail-price-box .old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--sh-muted);
  margin-inline-start: .75rem;
}
.sh-detail-price-box .save {
  display: inline-block;
  background: var(--sh-accent);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: .65rem;
}
.sh-detail-desc {
  font-size: .98rem;
  line-height: 1.8;
  color: var(--sh-text-soft);
  margin: 1.5rem 0;
}
.sh-detail-actions { display: flex; gap: .75rem; margin: 1.5rem 0; }
.sh-qty {
  display: inline-flex;
  border: 1px solid var(--sh-border-d);
  border-radius: 50px;
  overflow: hidden;
  background: var(--sh-surface);
}
.sh-qty button { border: none; background: transparent; width: 42px; height: 42px; color: var(--sh-text); display:flex; align-items:center; justify-content:center; }
.sh-qty button:hover { background: var(--sh-surface-2); }
.sh-qty input { border: none; width: 50px; text-align: center; font-weight: 700; font-family: inherit; font-size: .95rem; background: transparent; color: var(--sh-text); }
.sh-qty input:focus { outline: none; }
.sh-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sh-border);
}
.sh-trust-item { display: flex; align-items: center; gap: .65rem; font-size: .82rem; color: var(--sh-text-soft); }
.sh-trust-item .sh-i { color: var(--sh-success); flex-shrink: 0; }

/* ── Filters sidebar ────────────────────────────────────────────── */
.sh-listing {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  margin: 2rem 0;
}
.sh-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-inline-end: 6px;
  scrollbar-width: thin;
}
.sh-sidebar::-webkit-scrollbar { width: 6px; }
.sh-sidebar::-webkit-scrollbar-thumb { background: var(--sh-border-d); border-radius: 50px; }
.sh-filter-group {
  border-bottom: 1px solid var(--sh-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.sh-filter-group:last-child { border-bottom: none; }
.sh-filter-group h6 {
  font-size: .85rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--sh-text);
}
.sh-filter-list li a {
  display: flex;
  justify-content: space-between;
  padding: .45rem 0;
  font-size: .88rem;
  color: var(--sh-text-soft);
}
.sh-filter-list li a:hover { color: var(--sh-text); }
.sh-filter-list li a.active { color: var(--sh-text); font-weight: 700; }
.sh-filter-list .count { color: var(--sh-muted); font-size: .78rem; }

.sh-range {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}
.sh-range input {
  width: 100%;
  border: 1px solid var(--sh-border);
  border-radius: 8px;
  padding: .5rem .75rem;
  font-family: inherit;
  font-size: .82rem;
  background: var(--sh-surface);
  color: var(--sh-text);
}

.sh-listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.sh-count-text { font-size: .9rem; color: var(--sh-muted); }
.sh-sort select {
  border: 1px solid var(--sh-border-d);
  background: var(--sh-surface);
  color: var(--sh-text);
  border-radius: 8px;
  padding: .55rem 2.5rem .55rem 1rem;
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2371717A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 14px;
}
[dir="rtl"] .sh-sort select { background-position: left .75rem center; padding: .55rem 1rem .55rem 2.5rem; }

/* ── Cart ───────────────────────────────────────────────────────── */
.sh-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
}
.sh-cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--sh-border);
  align-items: center;
}
.sh-cart-item img { width: 100px; aspect-ratio: 1; object-fit: cover; border-radius: 12px; }
.sh-cart-item .info h4 { font-size: .95rem; margin: 0 0 .25rem; }
.sh-cart-item .info .brand { font-size: .75rem; color: var(--sh-muted); letter-spacing: .06em; text-transform: uppercase; }
.sh-cart-item .info .price { font-size: 1rem; font-weight: 700; margin-top: .35rem; }
.sh-cart-item .controls { display: flex; flex-direction: column; gap: .65rem; align-items: end; }

.sh-cart-summary {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 20px;
  padding: 2rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}
.sh-cart-summary h5 { font-size: 1.1rem; font-weight: 800; margin: 0 0 1.5rem; }
.sh-cart-row { display: flex; justify-content: space-between; padding: .55rem 0; font-size: .95rem; }
.sh-cart-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--sh-border);
  color: var(--sh-text);
  letter-spacing: -.02em;
}

.sh-empty {
  text-align: center;
  padding: 5rem 1rem;
}
.sh-empty .icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--sh-surface-2);
  color: var(--sh-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── App download section ───────────────────────────────────────── */
.sh-app {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  background: linear-gradient(135deg, #18181B, #3F3F46);
  border-radius: var(--sh-radius-xl);
  padding: 3rem;
  overflow: hidden;
}
[data-theme="dark"] .sh-app { background: linear-gradient(135deg, #27272A, #18181B); border: 1px solid var(--sh-border); }
.sh-app-text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin: .75rem 0 .5rem; letter-spacing: -.02em; }
.sh-app-text p { color: rgba(255,255,255,.72); margin: 0 0 1.75rem; max-width: 46ch; }
.sh-app .sh-hero-eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.sh-app-badges { display: flex; flex-wrap: wrap; gap: .85rem; }
.sh-store-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  color: #18181B;
  padding: .6rem 1.2rem;
  border-radius: 12px;
  transition: transform var(--sh-transition), box-shadow var(--sh-transition);
}
.sh-store-badge:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.sh-store-badge span { display: flex; flex-direction: column; line-height: 1.15; text-align: start; }
.sh-store-badge small { font-size: .62rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.sh-store-badge strong { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; }
.sh-app-visual { display: flex; align-items: center; justify-content: center; }
.sh-app-phone {
  width: 150px; height: 200px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--sh-accent), #FF8A65);
  box-shadow: 0 20px 50px rgba(255,77,41,.35), inset 0 0 0 6px rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.sh-app-phone-mark {
  width: 66px; height: 66px; border-radius: 18px;
  background: rgba(255,255,255,.95); color: var(--sh-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900; letter-spacing: -.05em;
}

/* ── Pagination ─────────────────────────────────────────────────── */
.sh-pagination {
  display: flex;
  gap: .35rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.sh-pagination a, .sh-pagination span {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .85rem;
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  font-weight: 600;
  font-size: .88rem;
  color: var(--sh-text);
  transition: all var(--sh-transition);
}
.sh-pagination a:hover { border-color: var(--sh-text); }
.sh-pagination .current { background: var(--sh-text); color: var(--sh-surface); border-color: var(--sh-text); }
.sh-pagination .disabled { opacity: .35; pointer-events: none; }

/* ── Alerts ─────────────────────────────────────────────────────── */
.sh-alert {
  padding: .75rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid;
}
.sh-alert-success { background: var(--sh-success-l); color: #15803d; border-color: rgba(22,163,74,.3); }
.sh-alert-error   { background: #FEE2E2; color: #991b1b; border-color: rgba(239,68,68,.3); }

/* ── Footer ─────────────────────────────────────────────────────── */
.sh-footer {
  background: var(--sh-text);
  color: rgba(255,255,255,.65);
  padding: 70px 0 30px;
  margin-top: 0;
}
[data-theme="dark"] .sh-footer { background: var(--sh-surface); border-top: 1px solid var(--sh-border); }
.sh-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
.sh-footer h6 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.sh-footer .logo-wrap strong { color: #fff; font-size: 1.25rem; }
.sh-footer p { margin: 1rem 0; line-height: 1.7; font-size: .9rem; max-width: 320px; color: rgba(255,255,255,.55); }
.sh-footer ul li { margin-bottom: .55rem; font-size: .88rem; }
.sh-footer a { color: rgba(255,255,255,.6); }
.sh-footer a:hover { color: var(--sh-accent); }
.sh-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.sh-footer-bottom a { color: var(--sh-accent); }

/* ── Forms ──────────────────────────────────────────────────────── */
.sh-field { margin-bottom: 1rem; }
.sh-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sh-text);
  margin-bottom: .4rem;
}
.sh-input, .sh-select, .sh-textarea {
  width: 100%;
  border: 1px solid var(--sh-border-d);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .92rem;
  color: var(--sh-text);
  background: var(--sh-surface);
  transition: all var(--sh-transition);
}
.sh-input:focus, .sh-select:focus, .sh-textarea:focus {
  outline: none;
  border-color: var(--sh-text);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--sh-text) 8%, transparent);
}
.sh-textarea { resize: vertical; min-height: 100px; }

/* ── Admin ──────────────────────────────────────────────────────── */
.sh-admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.sh-admin-sidebar {
  background: var(--sh-text);
  color: #fff;
  padding: 1.5rem 0;
}
.sh-admin-sidebar .brand { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1rem; }
.sh-admin-sidebar .brand strong { color: #fff; font-size: 1.1rem; }
.sh-admin-sidebar a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.5rem;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  border-inline-start: 3px solid transparent;
  transition: all var(--sh-transition);
}
.sh-admin-sidebar a:hover, .sh-admin-sidebar a.active {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-inline-start-color: var(--sh-accent);
}
.sh-admin-main { padding: 2rem; background: var(--sh-bg); }
.sh-admin-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.sh-admin-stat {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: var(--sh-radius-lg);
  padding: 1.5rem;
}
.sh-admin-stat .head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.sh-admin-stat .lbl { font-size: .82rem; color: var(--sh-muted); font-weight: 500; }
.sh-admin-stat .icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sh-admin-stat .num { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }

.sh-admin-table { width: 100%; border-collapse: collapse; }
.sh-admin-table th {
  text-align: start;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sh-muted);
  padding: .85rem 1rem;
  background: var(--sh-bg);
  border-bottom: 1px solid var(--sh-border);
}
.sh-admin-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--sh-border); font-size: .88rem; }
.sh-admin-table tr:hover td { background: var(--sh-bg); }
.sh-admin-table .prod-cell { display: flex; align-items: center; gap: .75rem; }
.sh-admin-table .prod-cell img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }

.sh-status {
  display: inline-flex;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}
.sh-status-pending { background: #FEF3C7; color: #92400E; }
.sh-status-completed { background: var(--sh-success-l); color: #15803d; }
.sh-status-cancelled { background: #FEE2E2; color: #991b1b; }
.sh-status-shipped { background: #DBEAFE; color: #1E40AF; }
.sh-status-processing { background: #EDE9FE; color: #5B21B6; }

/* ── Login ──────────────────────────────────────────────────────── */
.sh-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--sh-bg);
}
.sh-login-card {
  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--sh-shadow-xl);
}
.sh-login-card .sh-logo-mark { width: 56px; height: 56px; font-size: 1.5rem; margin: 0 auto 1.5rem; }
.sh-login-card h1 { text-align: center; font-size: 1.5rem; font-weight: 800; margin: 0 0 .35rem; letter-spacing: -.02em; }
.sh-login-card .sub { text-align: center; color: var(--sh-muted); margin: 0 0 2rem; font-size: .9rem; }
.sh-login-help {
  background: var(--sh-surface-2);
  border-radius: 12px;
  padding: .85rem 1rem;
  margin-top: 1.25rem;
  font-size: .82rem;
}
.sh-login-help code {
  background: var(--sh-surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: ui-monospace, monospace;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sh-accent);
}

/* ── Mobile menu toggle ─────────────────────────────────────────── */
.sh-mobile-toggle { display: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sh-cats { grid-template-columns: repeat(3, 1fr); }
  .sh-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sh-hero-visual { max-width: 480px; margin: 0 auto; }
  .sh-detail { grid-template-columns: 1fr; gap: 2.5rem; }
  .sh-detail-gallery { position: static; }
  .sh-listing { grid-template-columns: 1fr; }
  .sh-sidebar { position: static; max-height: none; overflow: visible; }
  .sh-cart-layout { grid-template-columns: 1fr; }
  .sh-cart-summary { position: static; }
  .sh-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  :root { --sh-gutter: 1rem; }
  .sh-header-inner { grid-template-columns: auto auto; gap: 1rem; }
  .sh-search { order: 3; grid-column: 1 / -1; }
  .sh-mobile-toggle { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--sh-border); border-radius: 10px; color: var(--sh-text); }
  .sh-cats { grid-template-columns: repeat(2, 1fr); }
  .sh-section { padding: 50px 0; }
  .sh-hero { padding: 40px 0; }
  .sh-products { grid-template-columns: repeat(2, 1fr); gap: 1rem .75rem; }
  .sh-cart-item { grid-template-columns: 70px 1fr; }
  .sh-cart-item .controls { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
  .sh-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sh-admin-layout { grid-template-columns: 1fr; }
  .sh-admin-sidebar { display: none; }
  .sh-detail-thumbs { grid-template-columns: repeat(4, 1fr); }
  .sh-app { grid-template-columns: 1fr; text-align: center; padding: 2.25rem 1.5rem; }
  .sh-app-text p { margin-inline: auto; }
  .sh-app-badges { justify-content: center; }
  .sh-app .sh-hero-eyebrow { display: inline-flex; }
  .sh-app-visual { order: -1; }
  .sh-app-phone { width: 120px; height: 160px; }
}
@media (max-width: 480px) {
  .sh-cats { grid-template-columns: 1fr 1fr; }
  .sh-products { grid-template-columns: 1fr 1fr; }
}
