@charset "UTF-8";
/* ══════════════════════════════════════════════════════════
   GuinRank Store — Landing Page Stylesheet
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #08090A;
  --paper: #F4F1EC;
  --accent: #E8572A;
  --accent2: #F2A65A;
  --text: #1A1A1A;
  --muted: #666666;
  --border: rgba(0,0,0,0.08);
  --font-display: 'Cairo', sans-serif;
  --font-body: 'Tajawal', sans-serif;
  --phone-scale: 1.15;
}

@media (min-width: 1700px) {
  :root {
    --phone-scale: 1.38;
  }
}
@media (min-width: 1400px) and (max-width: 1699px) {
  :root {
    --phone-scale: 1.25;
  }
}
@media (min-width: 1150px) and (max-width: 1399px) {
  :root {
    --phone-scale: 1.15;
  }
}
@media (min-width: 961px) and (max-width: 1149px) {
  :root {
    --phone-scale: 1.0;
  }
}
[data-theme=dark] {
  --ink: #F1F5F9;
  --paper: #0B0E14;
  --accent: #FF5E2B;
  --accent2: #F6A355;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
}

html[lang=en] {
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font-display);
  background: var(--paper);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ════════════ NOTIFICATIONS ════════════ */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateX(120%);
  animation: slideInToast 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  border-right: 4px solid var(--ink);
  font-family: var(--font-body);
}

html[lang=en] .toast-notification {
  right: auto;
  left: 24px;
  border-right: none;
  border-left: 4px solid var(--ink);
  transform: translateX(-120%);
}

@keyframes slideInToast {
  to {
    transform: translateX(0);
  }
}
.toast-icon {
  font-size: 20px;
}

.toast-content {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.toast-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  margin-right: 12px;
}

html[lang=en] .toast-close {
  margin-right: 0;
  margin-left: 12px;
}

.toast-success {
  border-color: #34A853;
}

.toast-warning {
  border-color: #FBBC05;
}

.toast-error {
  border-color: #EA4335;
}

/* ════════════ LAYOUT ════════════ */
.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ════════════ LEFT PHONE ════════════ */
.preview-col {
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: drift 8s ease-in-out infinite alternate;
}

.blob-1 {
  width: 350px;
  height: 350px;
  background: #E8572A;
  top: -80px;
  left: -80px;
  animation-delay: 0s;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: #F2A65A;
  bottom: -60px;
  right: -60px;
  animation-delay: 2s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: #C9A84C;
  top: 40%;
  left: 40%;
  animation-delay: 4s;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -20px) scale(1.08);
  }
}
.phone-wrap {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 520px;
  transform-origin: center center;
  animation: floatPhone 4s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes floatPhone {
  0%, 100% {
    transform: scale(var(--phone-scale, 1)) translateY(0px) rotate(-1.5deg);
  }
  50% {
    transform: scale(var(--phone-scale, 1)) translateY(-10px) rotate(-1.5deg);
  }
}
.phone {
  width: 260px;
  height: 520px;
  background: #0B0D12;
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
}

/* Dynamic Island / Top Sensor Notch */
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 14px;
  background: #000000;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

.phone-speaker {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.phone-camera {
  width: 6px;
  height: 6px;
  background: #111827;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 2px rgba(59, 130, 246, 0.5);
}

.phone-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #09090D;
  color: #FFFFFF;
  font-family: "Cairo", sans-serif;
  position: relative;
  user-select: none;
}

/* ══ REAL STORE COVER ══ */
.p-cover {
  height: 98px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 15%, rgba(201, 168, 76, 0.3) 0%, transparent 80%), linear-gradient(135deg, #1C1408 0%, #2A1D08 50%, #09090D 100%);
}

.p-cover-mesh {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 87, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 50%);
}

.p-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(10, 10, 14, 0.1) 30%, rgba(10, 10, 14, 0.7) 75%, #09090D 100%);
}

.p-live-pill {
  position: absolute;
  top: 24px;
  inset-inline-start: 10px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2.5px 7px;
  border-radius: 50px;
  background: rgba(10, 10, 14, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 7.5px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Tajawal", sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.p-live-dot {
  width: 4.5px;
  height: 4.5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: liveDotPulse 1.4s ease-in-out infinite;
}

@keyframes liveDotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}
.p-cover-actions {
  position: absolute;
  top: 24px;
  inset-inline-end: 10px;
  z-index: 10;
  display: flex;
  gap: 4px;
}

.p-cov-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: default;
}

.p-cover-text {
  position: absolute;
  bottom: 6px;
  inset-inline-start: 58px;
  inset-inline-end: 8px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.p-store-name {
  font-size: 11px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFFFFF 20%, #E8C97A 75%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.25;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.p-skel-tagline {
  width: 65px;
  height: 3.5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 2px;
  margin-top: 3px;
}

/* ══ STORE PROFILE & INFO BAR ══ */
.p-profile-bar {
  position: relative;
  padding: 0 10px;
  margin-top: -20px;
  z-index: 15;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.p-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.p-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #C9A84C;
  background: radial-gradient(circle, #1F1709 0%, #120D04 100%);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.35);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-verified {
  position: absolute;
  bottom: -2px;
  inset-inline-end: -2px;
  width: 13px;
  height: 13px;
  background: #C9A84C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #09090D;
  color: #FFFFFF;
}

.p-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 2px;
}

.p-stats-pill {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 7px;
  color: #F4F4F5;
  font-family: "Tajawal", sans-serif;
  white-space: nowrap;
  font-weight: 700;
}

.p-type-badge {
  padding: 2px 6px;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 7px;
  color: #4ade80;
  white-space: nowrap;
  font-weight: 700;
}

/* ══ CATEGORIES PILLS BAR ══ */
.p-cats-bar {
  display: flex;
  gap: 4px;
  padding: 5px 10px 3px;
  overflow-x: hidden;
  margin-top: 1px;
}

.p-cat {
  padding: 2.5px 8px;
  border-radius: 50px;
  font-size: 7px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A1A1AA;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.p-cat.active {
  background: #C9A84C;
  color: #09090D;
  border-color: #C9A84C;
  font-weight: 800;
}

/* ══ SEARCH BAR MINI ══ */
.p-search-box {
  margin: 1px 10px 5px;
  padding: 3.5px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 7px;
  color: #71717A;
}

.p-search-placeholder {
  font-family: "Tajawal", sans-serif;
}

/* ══ PROMO BANNER (LUXURY MICRO-BANNER) ══ */
.p-promo-banner {
  margin: 1px 10px 5px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.16) 0%, rgba(26, 20, 10, 0.95) 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.p-banner-accent-top {
  height: 1.5px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #E8C97A, #C9A84C, transparent);
}

.p-banner-inner {
  padding: 4px 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-banner-icon-box {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-sparkle-dot {
  position: absolute;
  top: -2px;
  inset-inline-end: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #E8572A;
  box-shadow: 0 0 5px #E8572A;
  animation: liveDotPulse 1.2s infinite ease-in-out;
}

.p-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.p-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 6px;
  font-weight: 800;
  color: #E8C97A;
  font-family: "Tajawal", sans-serif;
  line-height: 1;
}

.p-bb-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #E8C97A;
}

.p-banner-title {
  font-size: 7.5px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Tajawal", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.p-banner-arrow {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
  flex-shrink: 0;
}

/* ══ 4 PRODUCT CARDS GRID (2x2) ══ */
.p-products-grid {
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  flex: 1;
  min-height: 0;
}

.p-card {
  background: #121319;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  height: 100%;
}

.p-card-thumb {
  height: 48px;
  flex-shrink: 0;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.12) 0%, #161720 85%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-prod-svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.45));
}

.p-skel-badge {
  position: absolute;
  top: 3.5px;
  inset-inline-end: 3.5px;
  width: 12px;
  height: 3.5px;
  border-radius: 2px;
}

.p-skel-badge.hot {
  background: #C9A84C;
  box-shadow: 0 0 4px rgba(201, 168, 76, 0.4);
}

.p-skel-badge.offer {
  background: #EF4444;
  box-shadow: 0 0 4px rgba(239, 68, 68, 0.4);
}

.p-wish-btn {
  position: absolute;
  bottom: 3px;
  inset-inline-end: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
}

.p-card-body {
  padding: 4px 6px 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

/* خطوط صماء تعبر عن النصوص (Solid Placeholder Text Lines) */
.p-skel-title {
  height: 5px;
  width: 72%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.18));
  border-radius: 3px;
}

.p-skel-sub {
  height: 3.5px;
  width: 44%;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 2px;
}

.p-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 3px;
}

.p-skel-price {
  height: 6.5px;
  width: 32px;
  background: linear-gradient(90deg, #C9A84C, #E8C97A);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(201, 168, 76, 0.35);
}

.p-add-cart-btn {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: #C9A84C;
  color: #09090D;
  border: none;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  line-height: 1;
}

/* ══ FLOATING CHECKOUT BAR ══ */
.p-checkout-bar {
  margin: 5px 10px 8px;
  padding: 5px 9px;
  border-radius: 11px;
  background: linear-gradient(135deg, #1A1B22, #111217);
  border: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-cart-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-cart-ico-wrap {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;
}

.p-cart-badge {
  position: absolute;
  top: -3px;
  inset-inline-end: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 5.5px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111217;
}

.p-cart-text {
  font-size: 7.5px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Tajawal", sans-serif;
}

.p-cart-cta {
  padding: 3px 7px;
  border-radius: 6px;
  background: #C9A84C;
  color: #09090D;
  font-size: 7px;
  font-weight: 800;
  white-space: nowrap;
}

/* ══ ORDER LIFECYCLE SIMULATOR ══ */
.sim-cursor {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, top 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), left 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate(-50%, -50%);
}
.sim-cursor.active {
  opacity: 1;
}
.sim-cursor.step-1 {
  top: 255px;
  left: 65px;
}
.sim-cursor.step-2 {
  top: 485px;
  left: 50%;
}
.sim-cursor.step-4 {
  top: 485px;
  left: 50%;
}

.sim-touch-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E8C97A;
  box-shadow: 0 0 10px rgba(232, 201, 122, 0.95);
}

.sim-touch-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 201, 122, 0.8);
  background: rgba(201, 168, 76, 0.15);
  opacity: 0;
}

.sim-cursor.tap .sim-touch-ring {
  animation: touchRipple 0.6s ease-out;
}

@keyframes touchRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}
/* Simulator Overlays & Sheets */
.sim-overlay {
  position: absolute;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sim-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.sim-overlay.active .sim-modal-sheet {
  transform: translateY(0);
}
.sim-overlay.active .sim-modal-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sim-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 10, 0.86);
}

.sim-modal-sheet {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #181922 0%, #0E0F14 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.7);
  border-radius: 18px 18px 0 0;
  padding: 8px 12px 14px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sim-sheet-handle {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin: 0 auto 8px;
}

/* Step 2: Product Sheet */
.sim-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sim-prod-badge {
  font-size: 8px;
  font-weight: 800;
  color: #E8C97A;
  font-family: "Tajawal", sans-serif;
}

.sim-close-x {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}

.sim-prod-preview {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-prod-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.2) 0%, #161720 90%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sim-prod-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-skel-line {
  height: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
  border-radius: 3px;
}

.sim-prod-price-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.sim-price-val {
  font-size: 9px;
  font-weight: 900;
  color: #E8C97A;
  font-family: "Tajawal", sans-serif;
}

.sim-discount-pill {
  font-size: 6px;
  font-weight: 700;
  padding: 1.5px 5px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.sim-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.sim-opt-pill {
  padding: 2.5px 7px;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A1A1AA;
}
.sim-opt-pill.active {
  background: rgba(201, 168, 76, 0.15);
  border-color: #C9A84C;
  color: #E8C97A;
}

.sim-qty-selector {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 7.5px;
  font-weight: 800;
  color: #E8C97A;
}

.sim-cta-btn {
  width: 100%;
  padding: 7px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #E8C97A 0%, #C9A84C 100%);
  border: none;
  color: #09090D;
  font-size: 8px;
  font-weight: 900;
  font-family: "Tajawal", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
  cursor: default;
}

/* Step 3 & 4: Fast Checkout */
.sim-checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.sim-co-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 900;
  color: #FFFFFF;
  font-family: "Tajawal", sans-serif;
}

.sim-co-step {
  font-size: 6.5px;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.15);
  padding: 1.5px 5px;
  border-radius: 4px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.sim-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}

.sim-input-box {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4.5px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 7px;
  color: #D1D5DB;
  font-family: "Tajawal", sans-serif;
  position: relative;
  overflow: hidden;
}
.sim-input-box.filled {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
}
.sim-input-box.filled::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
  animation: inputShimmer 1.8s ease-in-out infinite;
}

@keyframes inputShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Shipping Calculation Box */
.sim-shipping-calc {
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}
.sim-shipping-calc.calc-active {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
}

.sim-ship-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 6.5px;
  font-weight: 800;
  color: #10B981;
  margin-bottom: 3px;
  font-family: "Tajawal", sans-serif;
}

.sim-invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 7px;
  color: #A1A1AA;
  font-family: "Tajawal", sans-serif;
}

.sim-invoice-total {
  font-weight: 900;
  color: #E8C97A;
  font-size: 8.5px;
}

/* Step 5: Success Celebration Modal */
.sim-modal-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 210px;
  background: linear-gradient(145deg, #1C1D26, #12131A);
  border: 1px solid rgba(201, 168, 76, 0.45);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.75);
  border-radius: 18px;
  padding: 16px 12px;
  text-align: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.sim-success-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-success-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.25);
  animation: successPulse 1.6s infinite ease-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0.85);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.sim-success-circle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #251D0A 0%, #151105 100%);
  border: 2px solid #C9A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
}

.sim-success-title {
  font-size: 9.5px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 6px;
  font-family: "Cairo", sans-serif;
}

.sim-order-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2.5px 8px;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.35);
  font-size: 7px;
  color: #E8C97A;
  margin-bottom: 6px;
}

.sim-code-val {
  letter-spacing: 0.5px;
  font-weight: 900;
}

.sim-success-hint {
  font-size: 6.5px;
  color: #A1A1AA;
  line-height: 1.35;
  font-family: "Tajawal", sans-serif;
}

/* Step 6: Live Tracking Sheet */
.sim-sheet-track {
  padding-bottom: 16px;
}

.sim-track-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sim-track-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 7.5px;
  font-weight: 900;
  color: #FFFFFF;
  font-family: "Tajawal", sans-serif;
}

.sim-live-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: liveDotPulse 1.2s infinite ease-in-out;
}

.sim-track-code {
  font-size: 7px;
  color: #E8C97A;
  font-weight: 800;
}

.sim-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-inline-start: 16px;
}
.sim-timeline::before {
  content: "";
  position: absolute;
  inset-inline-start: 6px;
  top: 6px;
  bottom: 6px;
  width: 1.5px;
  background: linear-gradient(180deg, #10B981 0%, #10B981 65%, rgba(255, 255, 255, 0.1) 100%);
}

.sim-tl-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sim-tl-dot {
  position: absolute;
  inset-inline-start: -16px;
  top: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #10B981;
  color: #FFFFFF;
  font-size: 7px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}
.sim-tl-dot.pulse {
  background: #C9A84C;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.7);
  animation: activeStepPulse 1.4s infinite ease-in-out;
}

@keyframes activeStepPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 14px rgba(201, 168, 76, 0.9);
  }
}
.sim-tl-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sim-tl-title {
  font-size: 7.5px;
  font-weight: 700;
  color: #E4E4E7;
  font-family: "Tajawal", sans-serif;
}
.sim-tl-title.active {
  color: #E8C97A;
  font-weight: 900;
}

.sim-tl-time {
  font-size: 6px;
  color: #71717A;
  font-family: "Tajawal", sans-serif;
}
.sim-tl-time.highlight {
  color: #34D399;
  font-weight: 700;
}

/* Card 1 Highlight when clicked */
.p-card.sim-highlight {
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 0 14px rgba(201, 168, 76, 0.25);
}

.p-cart-badge.sim-bounce {
  animation: cartBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes cartBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.6);
    background: #10B981;
  }
}
/* ══ CONTROLLER PROGRESS BAR (BELOW PHONE) ══ */
.phone-sim-bar {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #0E1017;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 3px 5.5px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.75);
  z-index: 26;
  white-space: nowrap;
  max-width: calc(100% + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Play / Pause Toggle Button */
.sim-play-btn {
  background: #181B26;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 3.5px;
  padding: 2.5px 6.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #E2E8F0;
  flex-shrink: 0;
}
.sim-play-btn:hover {
  background: #242838;
  color: #FFFFFF;
}
.sim-play-btn.is-auto {
  background: #064E3B;
  border-color: #10B981;
  color: #34D399;
}
.sim-play-btn.is-auto .sim-play-icon {
  color: #34D399;
}
.sim-play-btn.is-paused {
  background: #451A03;
  border-color: #D97706;
  color: #FDE047;
  animation: playBtnPulse 1.8s infinite ease-in-out;
}
.sim-play-btn.is-paused .sim-play-icon {
  color: #FDE047;
}

@keyframes playBtnPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(201, 168, 76, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
  }
}
.sim-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sim-play-text {
  font-size: 8px;
  font-weight: 800;
  font-family: "Tajawal", sans-serif;
  line-height: 1;
}

.sim-step-sep.main-sep {
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 1px;
  flex-shrink: 0;
}

.sim-step-dot {
  background: transparent;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 2.5px 3.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  color: #CBD5E1;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sim-step-dot .sim-dot-txt {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 8px;
  font-weight: 700;
  font-family: "Tajawal", sans-serif;
  color: #CBD5E1;
  transition: max-width 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, margin 0.25s ease;
  margin-inline-start: 0;
}
.sim-step-dot:hover:not(.active) {
  color: #FFFFFF;
  background: #1C202C;
}
.sim-step-dot:hover:not(.active) .sim-dot-txt {
  max-width: 65px;
  opacity: 1;
  margin-inline-start: 3.5px;
}
.sim-step-dot.active {
  background: #231E12;
  border-color: #C9A84C;
  color: #FDE047;
  padding: 2.5px 6.5px;
}
.sim-step-dot.active .sim-dot-num {
  background: #C9A84C;
  color: #09090D;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.6);
}
.sim-step-dot.active .sim-dot-txt {
  max-width: 75px;
  opacity: 1;
  color: #FDE047;
  font-weight: 800;
  margin-inline-start: 3.5px;
}
.sim-step-dot.running-prog .sim-dot-prog {
  animation: dotStepProgress 4.2s linear forwards;
}

.sim-dot-prog {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1.5px;
  width: 0%;
  background: linear-gradient(90deg, #E8C97A, #C9A84C);
  border-radius: 1px;
  pointer-events: none;
}

@keyframes dotStepProgress {
  0% {
    width: 0%;
    opacity: 0.8;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.sim-dot-num {
  width: 13.5px;
  height: 13.5px;
  border-radius: 50%;
  background: #1C202C;
  font-size: 7.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #CBD5E1;
  flex-shrink: 0;
}

.sim-step-sep {
  width: 1px;
  height: 8px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ══ PHONE LABEL & ANNOTATIONS ══ */
.phone-label {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: #0E1017;
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 3.5px 14px;
  border-radius: 50px;
  font-size: 10px;
  color: #FDE047;
  white-space: nowrap;
  font-weight: 800;
  font-family: "Tajawal", sans-serif;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  z-index: 26;
  transition: all 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.phone-annotation {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  z-index: 25;
  pointer-events: none;
  direction: ltr !important;
  white-space: nowrap;
}

.ann-text {
  line-height: 1.35;
  font-family: var(--font-body);
}

.ann-line {
  width: 30px;
  height: 1px;
  flex-shrink: 0;
}

.ann-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8572A;
  box-shadow: 0 0 8px #E8572A;
  flex-shrink: 0;
}

.ann-left {
  right: calc(100% + 12px);
  top: 60px;
}
.ann-left .ann-line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(232, 87, 42, 0.85));
}
.ann-left .ann-text {
  text-align: right;
  direction: rtl;
}

html[lang=en] .ann-left .ann-text {
  direction: ltr;
  text-align: right;
}

.ann-right {
  left: calc(100% + 12px);
  bottom: 26px;
}
.ann-right .ann-line {
  background: linear-gradient(90deg, rgba(232, 87, 42, 0.85), rgba(255, 255, 255, 0.15));
}
.ann-right .ann-text {
  text-align: left;
  direction: rtl;
}

html[lang=en] .ann-right .ann-text {
  direction: ltr;
  text-align: left;
}

/* ════════════ RIGHT CONTENT ════════════ */
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 48px 32px;
  position: relative;
  overflow: hidden;
}

.content-col::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 87, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════ NAVBAR ════════════ */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  z-index: 100;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.brand-link:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.brand-logo {
  height: 100px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── زر الوضع الليلي / النهاري ── */
.nav-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  padding: 0;
}
.nav-action-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease;
}
.nav-action-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.nav-action-btn:hover svg {
  transform: rotate(25deg);
}
.nav-action-btn:active {
  transform: scale(0.95);
}

.nav-login-btn {
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(8px);
}
.nav-login-btn .nav-btn-icon {
  display: flex;
  align-items: center;
}
.nav-login-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.free-badge {
  padding: 6px 14px;
  background: rgba(232, 87, 42, 0.1);
  border: 1px solid rgba(232, 87, 42, 0.25);
  border-radius: 50px;
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.3px;
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--ink);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
  user-select: none;
}

.lang-opt {
  position: relative;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
  font-family: "DM Sans", "Cairo", sans-serif;
  letter-spacing: 0.3px;
}

.lang-opt.active {
  color: var(--ink);
}

.lang-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  border-radius: 50px;
  background: var(--paper);
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

/* HERO */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
  transition: opacity 0.18s ease;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(232, 87, 42, 0.08);
  border: 1px solid rgba(232, 87, 42, 0.22);
  margin-bottom: 14px;
  align-self: flex-start;
}
.eyebrow-badge .beacon-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 87, 42, 0.7);
  animation: beaconPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}
.eyebrow-badge .eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

@keyframes beaconPulse {
  to {
    box-shadow: 0 0 0 8px rgba(232, 87, 42, 0);
  }
}
.headline {
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-family: var(--font-display);
}
.headline em {
  font-style: normal;
  position: relative;
  background: linear-gradient(135deg, #e8572a 0%, #f2a65a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.headline em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  opacity: 0.5;
}

.subline {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 440px;
  margin-bottom: 20px;
}

/* ── شرائح أنواع المتاجر المتعددة ── */
.store-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.type-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  font-family: var(--font-body);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  cursor: default;
  user-select: none;
}
.type-pill .type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.type-pill:hover {
  background: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(232, 87, 42, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  font-family: var(--font-body);
}

.feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(8, 9, 10, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.feat:hover .feat-icon {
  transform: scale(1.1);
}

/* ═════════ BUTTONS & ACTION ROW ═════════ */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* ── زر أسود فخم: أنشئ متجرك الآن في دقيقة ── */
.btn-create-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 16px 36px;
  background: #090a0c;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 32px rgba(9, 10, 12, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  animation: ctaMotionPulse 3.5s ease-in-out infinite;
}
.btn-create-store::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.6s ease;
}
.btn-create-store:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 46px rgba(9, 10, 12, 0.5), 0 0 24px rgba(232, 87, 42, 0.4);
  color: #ffffff !important;
  border-color: rgba(232, 87, 42, 0.55);
}
.btn-create-store:hover::after {
  left: 140%;
}
.btn-create-store:hover .btn-arrow {
  transform: translateX(5px);
}
.btn-create-store:hover .btn-icon-sparkle,
.btn-create-store:hover .btn-icon-store {
  transform: scale(1.18);
}
.btn-create-store:active {
  transform: scale(0.98);
}
.btn-create-store .btn-icon-sparkle,
.btn-create-store .btn-icon-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff7a45;
  filter: drop-shadow(0 0 8px rgba(255, 122, 69, 0.75));
  transition: transform 0.25s ease;
}
.btn-create-store .btn-arrow {
  display: inline-flex;
  transition: transform 0.2s;
}

@keyframes ctaMotionPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 30px rgba(9, 10, 12, 0.35), 0 0 0 0 rgba(232, 87, 42, 0.4);
  }
  45% {
    transform: translateY(-5px) scale(1.025);
    box-shadow: 0 18px 44px rgba(9, 10, 12, 0.45), 0 0 22px 2px rgba(232, 87, 42, 0.35);
    border-color: rgba(232, 87, 42, 0.45);
  }
  75% {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 36px rgba(9, 10, 12, 0.4), 0 0 12px 1px rgba(232, 87, 42, 0.2);
  }
}
html[lang=ar] .btn-create-store:hover .btn-arrow {
  transform: translateX(-5px);
}

.cta-login-hint {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-login-hint a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.cta-login-hint a:hover {
  color: var(--accent);
}

/* زر لوحة البائع عند تسجيل الدخول مسبقاً */
.btn-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 87, 42, 0.3);
}
.btn-dashboard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 87, 42, 0.4);
  color: #fff !important;
}

.btn-stores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-stores:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  color: var(--ink);
}

.cta-note {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  line-height: 1.6;
}
.cta-note strong {
  color: var(--accent);
}

/* ── إشارات الثقة أسفل الزر ── */
.trust-signals {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #555;
  font-family: var(--font-body);
  margin-top: 4px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.trust-signals .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.trust-signals .trust-item .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-signals .trust-dot {
  color: rgba(0, 0, 0, 0.2);
  font-size: 10px;
}

/* STATS */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  text-align: start;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-color: rgba(232, 87, 42, 0.25);
}
.stat .stat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.stat .stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.03);
}
.stat .stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.stat .stat-num .unit {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.stat .stat-lbl {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 600;
}

/* FADE-IN */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-up:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-up:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-up:nth-child(4) {
  animation-delay: 0.4s;
}

.fade-up:nth-child(5) {
  animation-delay: 0.5s;
}

.fade-up:nth-child(6) {
  animation-delay: 0.6s;
}

.count {
  display: inline-block;
}

@media (max-width: 768px) {
  html, body {
    overflow: auto;
  }
  .page {
    grid-template-columns: 1fr;
    height: auto;
  }
  .preview-col {
    height: 48vh;
  }
  .content-col {
    padding: 24px 20px 32px;
  }
  .headline {
    font-size: 28px;
  }
  .eyebrow-badge {
    align-self: center;
  }
  .store-types {
    justify-content: center;
    gap: 6px;
  }
  .features {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .trust-signals {
    justify-content: center;
  }
  .ann-left, .ann-right {
    display: none;
  }
  .phone-label {
    display: none;
  }
  .cta-row {
    align-items: center;
    text-align: center;
  }
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .stat {
    padding: 10px 8px;
    text-align: center;
  }
  .stat .stat-top {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .stat .stat-icon {
    display: none;
  }
  .stat .stat-num {
    font-size: 17px;
  }
  .stat .stat-lbl {
    font-size: 10px;
  }
}
/* ══════════════════════════════════════════════════════════
   DARK MODE COMPREHENSIVE OVERRIDES
   ══════════════════════════════════════════════════════════ */
[data-theme=dark] {
  background: #0B0E14;
  color: #F1F5F9;
}
[data-theme=dark] body {
  background: #0B0E14;
  color: #F1F5F9;
}
[data-theme=dark] .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
[data-theme=dark] .nav-action-btn {
  background: rgba(22, 28, 40, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  color: #F1F5F9;
}
[data-theme=dark] .nav-action-btn:hover {
  background: rgba(30, 38, 54, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .lang-toggle {
  background: #151A24;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
[data-theme=dark] .lang-pill {
  background: #242D3D;
}
[data-theme=dark] .lang-opt {
  color: rgba(255, 255, 255, 0.5);
}
[data-theme=dark] .lang-opt.active {
  color: #FFFFFF;
}
[data-theme=dark] .nav-login-btn {
  background: rgba(22, 28, 40, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  color: #F1F5F9;
}
[data-theme=dark] .nav-login-btn:hover {
  background: #FFFFFF;
  color: #090B0E;
  border-color: #FFFFFF;
}
[data-theme=dark] .content-col::before {
  background: radial-gradient(circle, rgba(232, 87, 42, 0.14) 0%, transparent 70%);
}
[data-theme=dark] .headline {
  color: #FFFFFF;
}
[data-theme=dark] .subline {
  color: #94A3B8;
}
[data-theme=dark] .type-pill {
  background: rgba(19, 24, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
}
[data-theme=dark] .type-pill:hover {
  background: rgba(26, 33, 47, 0.95);
  color: #FFFFFF;
  border-color: rgba(255, 94, 43, 0.4);
}
[data-theme=dark] .feat {
  color: #CBD5E1;
}
[data-theme=dark] .feat-icon {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme=dark] .trust-signals {
  color: #94A3B8;
}
[data-theme=dark] .trust-signals .trust-dot {
  color: rgba(255, 255, 255, 0.2);
}
[data-theme=dark] .cta-login-hint {
  color: #94A3B8;
}
[data-theme=dark] .cta-login-hint a {
  color: #F1F5F9;
}
[data-theme=dark] .cta-login-hint a:hover {
  color: var(--accent);
}
[data-theme=dark] .btn-create-store {
  background: #11151F;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
[data-theme=dark] .btn-create-store:hover {
  border-color: rgba(255, 94, 43, 0.5);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
[data-theme=dark] .stat {
  background: rgba(19, 24, 34, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
[data-theme=dark] .stat:hover {
  border-color: rgba(255, 94, 43, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
[data-theme=dark] .stat .stat-icon {
  background: rgba(255, 255, 255, 0.06);
}
[data-theme=dark] .stat .stat-num {
  color: #F1F5F9;
}
[data-theme=dark] .stat .stat-lbl {
  color: #94A3B8;
}
[data-theme=dark] .btn-stores {
  color: #F1F5F9;
  border-color: rgba(255, 255, 255, 0.25);
}
[data-theme=dark] .btn-stores:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
[data-theme=dark] .toast-notification {
  background: #141822;
  color: #F1F5F9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}
[data-theme=dark] .toast-content {
  color: #F1F5F9;
}

/* ════════════ RESPONSIVE (MOBILE FIRST COLUMN ORDER & SCALING) ════════════ */
@media (max-width: 960px) {
  html, body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .page {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
  }
  /* جانب المعلومات يظهر أولاً في أعلى الصفحة في كلا اللغتين */
  .content-col {
    order: 1 !important;
    padding: 24px 20px 36px;
    min-height: auto;
    overflow: visible;
    width: 100%;
  }
  .content-col::before {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -60px;
  }
  .nav-bar {
    margin-bottom: 24px;
  }
  .hero {
    max-width: 100%;
  }
  .headline {
    font-size: clamp(26px, 6vw, 38px);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .subline {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .store-types {
    margin-bottom: 18px;
  }
  .features {
    margin-bottom: 22px;
  }
  .cta-row {
    margin-bottom: 20px;
  }
  .btn-create-store {
    width: 100%;
    max-width: 380px;
    justify-content: center;
  }
  .cta-login-hint {
    justify-content: center;
  }
  .stats-bar {
    margin-top: 24px;
    padding-top: 20px;
  }
  /* جانب المعاينة يظهر أسفل جانب المعلومات */
  .preview-col {
    order: 2 !important;
    width: 100%;
    padding: 65px 16px 85px;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  /* إخفاء الشروح الجانبية في الموبايل لمنع أي خروج أفقي */
  .phone-annotation {
    display: none !important;
  }
  :root {
    --phone-scale: 1.05;
  }
}
@media (max-width: 768px) {
  .brand-logo {
    height: 65px;
    max-width: 180px;
  }
}
@media (max-width: 540px) {
  .free-badge {
    display: none;
  }
  .brand-logo {
    height: 48px;
    max-width: 140px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-login-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  :root {
    --phone-scale: 0.98;
  }
  .content-col {
    padding: 18px 14px 26px;
  }
  .preview-col {
    padding: 55px 10px 75px;
    min-height: 590px;
  }
  .phone-sim-bar {
    bottom: -32px;
    padding: 2.5px 4px;
    gap: 2px;
    max-width: calc(100% + 10px);
  }
  .sim-play-btn {
    padding: 2px 4.5px;
  }
  .sim-play-text {
    display: none;
  }
  .sim-step-dot {
    padding: 2px 2.5px;
  }
  .sim-step-dot.active {
    padding: 2px 5px;
  }
}
@media (max-width: 360px) {
  :root {
    --phone-scale: 0.88;
  }
  .preview-col {
    min-height: 530px;
  }
  .phone-sim-bar {
    gap: 1.5px;
    padding: 2px 3px;
  }
}
