/* ===========================
   10X SERVICE — STYLE.CSS
   Theme: #fea100 Orange
=========================== */

:root {
  --orange:       #fea100;
  --orange-dark:  #d98800;
  --orange-glow:  rgba(254, 161, 0, 0.35);
  --orange-soft:  rgba(254, 161, 0, 0.12);
  --bg:           #09080a;
  --bg2:          #0f0d11;
  --card:         rgba(18, 14, 22, 0.9);
  --border:       rgba(254, 161, 0, 0.14);
  --border-dim:   rgba(255, 255, 255, 0.07);
  --text:         #ffffff;
  --text-muted:   #9a8fb0;
  --green:        #22c55e;
  --red:          #ef4444;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100%;
  overflow-x: hidden;
  cursor: none; /* hide default for custom cursor */
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  box-shadow: 0 0 12px var(--orange);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-dot.hover {
  width: 14px; height: 14px;
  background: var(--orange);
}
.cursor-ring.hover {
  width: 54px; height: 54px;
  opacity: 0.3;
  border-color: var(--orange);
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
  html, body { cursor: auto; }
}

/* ===== GLOBAL BACKGROUND ===== */
html, body {
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(254,161,0,0.09), transparent),
    radial-gradient(circle at 15% 20%, rgba(254,161,0,0.05), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(180,100,0,0.04), transparent 40%),
    #09080a;
  background-attachment: fixed;
}
section, .hero, header { background: transparent !important; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0;
  background: #09080a;
  z-index: 999999;
  overflow: hidden;
}
#loader canvas { position: absolute; width: 100%; height: 100%; opacity: 0.10; }
#loader .loader-content {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#loader .loader-logo {
  width: 64px; display: block; margin: 0 auto;
  animation: breathe 1.2s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}
#loader .loader-percent { margin-top: 12px; color: var(--orange); font-size: 15px; font-family: 'Syne', sans-serif; font-weight: 700; }
#loader .loader-bar { width: 240px; height: 4px; margin: 12px auto; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
#loader .loader-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--orange-dark), var(--orange)); border-radius: 999px; transition: width 0.1s; }
#loader .loader-text { margin-top: 14px; font-family: monospace; color: var(--text-muted); font-size: 12px; }
#loader.hide { opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }

/* ===== POPUP ===== */
#popup-obaid {
  position: fixed;
  top: 100px; right: 20px;
  z-index: 999999;
  opacity: 0; pointer-events: none;
  transition: all 0.25s ease;
}
#popup-obaid.active { opacity: 1; pointer-events: all; }
.popup-card-obaid {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  background: rgba(10,8,14,0.97);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 280px; max-width: 380px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  overflow: hidden;
}
.popup-icon-obaid {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-soft); color: var(--orange);
  font-size: 16px; font-weight: 700;
}
.popup-title-obaid { font-size: 14px; font-weight: 700; color: white; font-family: 'Syne', sans-serif; }
.popup-message-obaid { font-size: 13px; color: var(--text-muted); }
.popup-progress-obaid {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; display: flex; justify-content: center;
  padding: 16px 0; background: none !important;
}
.header-container {
  width: 94%;
  max-width: 1300px;
  background: rgba(9, 8, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(254,161,0,0.06), inset 0 0 8px rgba(254,161,0,0.03);
}

/* LOGO */
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--orange); letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: #ffffff; }

/* NAV */
.nav {
  display: flex; gap: 4px; padding: 4px;
  border-radius: 999px;
  background: rgba(20, 16, 26, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  color: var(--text-muted); font-size: 13.5px;
  font-weight: 500; transition: 0.22s;
}
.nav-link.active {
  color: #000;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 16px var(--orange-glow);
}
.nav-link:hover:not(.active) { color: var(--orange); }
.nav-link svg { width: 14px; height: 14px; }

/* HEADER RIGHT */
.header-right { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  color: var(--text-muted); font-size: 13px; transition: 0.2s;
}
.cart-btn:hover { color: var(--orange); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  position: absolute; top: 50%; left: -12px;
  transform: translateY(-50%);
  background: var(--orange); color: #000;
  font-size: 11px; font-weight: 800;
  padding: 3px 7px; border-radius: 999px;
  min-width: 18px; text-align: center; display: none;
}
.cta-btn {
  padding: 8px 18px; border-radius: 999px;
  color: #000; font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 4px 14px var(--orange-glow);
  transition: 0.22s;
}
.cta-btn:hover { box-shadow: 0 6px 22px var(--orange-glow); transform: translateY(-1px); }
.cta-svg { display: none; }

/* ===== MOBILE HEADER ===== */
.mobile-logo-row { display: flex; align-items: center; gap: 10px; }
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.04);
  color: white; align-items: center; justify-content: center;
  cursor: none; transition: 0.22s;
}
.mobile-menu-btn svg { width: 18px; height: 18px; }
.mobile-menu-btn:hover { background: var(--orange-soft); border-color: var(--orange); }

.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 1998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: 0.25s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-nav-drawer {
  position: fixed; top: 0; left: 0; z-index: 1999;
  width: 82%; max-width: 320px; height: 100vh;
  padding: 22px;
  background: radial-gradient(circle at 20% 0%, rgba(254,161,0,0.12), transparent 40%), rgba(9,8,10,0.98);
  border-right: 1px solid var(--border);
  box-shadow: 18px 0 50px rgba(0,0,0,0.5);
  transform: translateX(-105%);
  transition: 0.32s cubic-bezier(0.22,1,0.36,1);
}
.mobile-nav-drawer.active { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05); color: white; cursor: pointer;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 13px 14px; margin-bottom: 8px;
  border-radius: 12px; color: var(--text-muted);
  font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  transition: 0.22s;
}
.mobile-nav-link:hover { color: var(--orange); border-color: var(--border); background: var(--orange-soft); }
.mobile-nav-link svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--orange); }
.mobile-nav-primary { color: #000 !important; background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important; border-color: transparent !important; }
.mobile-nav-primary svg { color: #000 !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
  opacity: 0; transform: scale(1.03);
  transition: all 1.2s cubic-bezier(0.22,1,0.36,1);
}
.hero.loaded { opacity: 1; transform: scale(1); }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(254,161,0,0.13), transparent),
    radial-gradient(circle at 80% 20%, rgba(254,100,0,0.06), transparent 40%);
  pointer-events: none; z-index: 1;
}
.hero::after {
  content: "";
  position: absolute; bottom: 0; left: 0; width: 100%; height: 260px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 1;
}
#snow { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-content { position: relative; z-index: 3; max-width: 900px; padding: 20px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-content > * { opacity: 0; transform: translateY(30px); }
.hero.loaded .hero-content > * { opacity: 1; transform: translateY(0); transition: all 0.8s cubic-bezier(0.22,1,0.36,1); }
.hero.loaded .badge { transition-delay: 0.2s; }
.hero.loaded h1 { transition-delay: 0.38s; }
.hero.loaded p { transition-delay: 0.55s; }
.hero.loaded .hero-buttons { transition-delay: 0.7s; }
.hero.loaded .hero-stats { transition-delay: 0.85s; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 18px; border-radius: 999px; margin-bottom: 28px;
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.3);
  font-size: 13px; font-weight: 600; color: var(--orange);
  font-family: 'Syne', sans-serif;
}
.hero-main h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 800; line-height: 1.0; letter-spacing: -3px;
  color: #ffffff;
}
.hero-main h1 span {
  background: linear-gradient(90deg, var(--orange), #ffcc60);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-main p {
  margin-top: 22px; font-size: clamp(15px, 2vw, 20px);
  color: var(--text-muted); line-height: 1.65; max-width: 640px;
}
.hero-buttons {
  margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 12px;
  font-size: 16px; font-weight: 700; font-family: 'Syne', sans-serif;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #000; box-shadow: 0 8px 28px var(--orange-glow);
  transition: 0.22s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--orange-glow); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 12px; font-size: 16px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: white;
  transition: 0.22s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--orange); color: var(--orange); }
.btn-secondary svg { width: 18px; height: 18px; }

/* HERO STATS BAR */
.hero-stats {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 0;
  margin-top: 80px; margin-bottom: 40px;
  background: rgba(18,14,22,0.8);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 40px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 20px 36px;
}
.stat-num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 50px; background: var(--border-dim); flex-shrink: 0; }

/* ===== TRENDING ===== */
.trending {
  position: relative;
  padding: 100px 40px;
}
.trending::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(254,161,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,161,0,0.018) 1px, transparent 1px);
  background-size: 24px 24px;
}
.trending-container { max-width: 1380px; margin: 0 auto; }
.trending-header { text-align: center; margin-bottom: 64px; }
.trending-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; padding: 5px 14px; border-radius: 999px;
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.3);
  color: var(--orange); margin-bottom: 16px;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.badge-icon { width: 12px; height: 12px; }
.trending-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 58px); font-weight: 800;
  letter-spacing: -1.5px; margin-bottom: 12px;
}
.trending-header p { color: var(--text-muted); font-size: 16px; }

/* PRODUCT GRID */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* PRODUCT CARD */
.product-card {
  display: block;
  border-radius: 20px; overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-dim);
  transition: 0.35s cubic-bezier(0.22,1,0.36,1);
  text-decoration: none; color: var(--text);
  position: relative;
}
.product-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(254,161,0,0.08), transparent);
  opacity: 0; transition: 0.35s;
  pointer-events: none; z-index: 0;
}
.product-card:hover { transform: translateY(-8px); border-color: rgba(254,161,0,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(254,161,0,0.12); }
.product-card:hover::before { opacity: 1; }

.product-top {
  position: relative; height: 230px; overflow: hidden;
  background: linear-gradient(180deg, rgba(35,25,5,0.8), rgba(12,9,3,0.9));
  border-top-left-radius: 20px; border-top-right-radius: 20px;
}
.product-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }

.product-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 5; }
.tag {
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
  font-family: 'Syne', sans-serif;
}
.tag.popular { background: var(--orange); color: #000; }
.tag.stock { color: var(--green); background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); }
.tag.stock.out { color: var(--red); background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); }

.product-bottom { padding: 18px; position: relative; z-index: 1; }
.product-header-line { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.product-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; transition: 0.22s; }
.product-card:hover .product-title { color: var(--orange); }
.product-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4);
  color: var(--green); white-space: nowrap;
}
.product-status.offline { color: var(--red); background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.4); }
.status-dot { font-size: 8px; }
.product-desc { margin-top: 10px; font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
.product-footer { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14px; }
.price span { font-size: 11px; color: var(--text-muted); display: block; }
.price b {
  display: block; margin-top: 4px; font-size: 15px; font-weight: 800;
  color: var(--orange); font-family: 'Syne', sans-serif;
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.35);
  padding: 4px 10px; border-radius: 8px;
}
.buy-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 15px; border-radius: 10px; border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #000; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: 0.22s; font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.buy-btn:hover { transform: scale(1.05); box-shadow: 0 6px 18px var(--orange-glow); }
.buy-btn svg { width: 16px; height: 16px; }

/* ===== CATEGORIES ===== */
.categories { padding: 80px 20px; position: relative; }
.categories::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(254,161,0,0.2), transparent);
}
.categories-container { max-width: 1100px; margin: 0 auto; }
.categories-header { text-align: center; margin-bottom: 50px; }
.categories-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(34px,4.5vw,52px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px; }
.categories-header p { color: var(--text-muted); font-size: 16px; }
.categories-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.category-card {
  border-radius: 18px; overflow: hidden; height: 340px;
  position: relative; display: block; transition: 0.35s;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px var(--orange-glow); }
.category-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,8,10,0.85) 0%, rgba(9,8,10,0.2) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 22px;
}
.cat-label { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: white; }
/* Category animation */
#categoriesSection .category-card { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
#categoriesSection .category-card.show { opacity: 1; transform: translateY(0); }
#categoriesSection .category-card:nth-child(1) { transition-delay: 0.1s; }
#categoriesSection .category-card:nth-child(2) { transition-delay: 0.22s; }
.categories-btn { margin-top: 50px; text-align: center; }
.view-btn {
  display: inline-block; padding: 13px 28px; border-radius: 12px;
  font-size: 16px; font-weight: 700; font-family: 'Syne', sans-serif;
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.3);
  color: var(--orange); transition: 0.22s;
}
.view-btn:hover { background: var(--orange); color: #000; }

/* ===== ANNOUNCEMENT BANNER ===== */
.announce-section { padding: 0 20px 60px; }
.announce-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  background: var(--orange-soft);
  border: 1px solid rgba(254,161,0,0.35);
  border-radius: 16px; padding: 18px 26px;
}
.announce-icon { font-size: 22px; flex-shrink: 0; }
.announce-text { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.announce-text strong { color: var(--orange); font-family: 'Syne', sans-serif; }
.announce-text a { color: var(--orange); font-weight: 700; border-bottom: 1px solid var(--orange-glow); }
.announce-text a:hover { border-bottom-color: var(--orange); }

/* ===== WHY SECTION ===== */
.why { position: relative; padding: 110px 0; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(254,161,0,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,161,0,0.018) 1px, transparent 1px);
  background-size: 24px 24px;
}
.why-container { max-width: 1380px; margin: 0 auto; padding: 0 60px; }
.why-header { text-align: center; margin-bottom: 80px; }
.why-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(38px,5vw,60px); font-weight: 800; letter-spacing: -2px; margin-bottom: 12px; }
.why-header p { color: var(--text-muted); font-size: 16px; max-width: 640px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 24px; }
.why-card {
  background: var(--card);
  border: 1px solid var(--border-dim);
  border-radius: 20px; padding: 34px;
  position: relative; overflow: hidden;
  transition: 0.3s;
}
.why-card:hover { border-color: var(--border); }

/* LARGE CARD */
.large { grid-row: span 2; }
.large img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.06; }
.why-content { position: absolute; bottom: 34px; left: 34px; right: 34px; }
.badge-small {
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.4);
  color: var(--orange); padding: 6px 14px; border-radius: 999px; font-size: 13px;
  font-family: 'Syne', sans-serif; font-weight: 700;
}
.large h3 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; margin: 16px 0; letter-spacing: -1px; }
.large p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; line-height: 1.6; }
.btn-primary.small { padding: 11px 20px; font-size: 14px; }

/* TRUST CARD */
.trust { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.trust-circle { width: 70px; height: 70px; margin-bottom: 18px; position: relative; }
.icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: radial-gradient(circle, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  animation: glowPulseOrange 2.5s ease-in-out infinite;
  box-shadow: 0 0 24px var(--orange-glow);
}
.icon svg { width: 26px; height: 26px; display: block; }
.ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(254,161,0,0.3); animation: ringPulse 3s infinite; }
.ring2 { animation-delay: 1.5s; }
@keyframes ringPulse { 0% { transform: scale(0.8); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes glowPulseOrange { 0%,100% { box-shadow: 0 0 12px var(--orange-glow); } 50% { box-shadow: 0 0 30px rgba(254,161,0,0.6); } }
.trust h4 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.trust p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* DELIVERY CARD */
.delivery { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.delivery-top { background: rgba(255,255,255,0.025); padding: 26px 32px; }
.delivery-top h4 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.delivery-top p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.divider { width: 100%; height: 1px; background: rgba(255,255,255,0.07); }
.delivery-line {
  background: rgba(0,0,0,0.3); padding: 28px 32px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.d-step {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(30,20,5,0.6); border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.d-step img { width: 18px; height: 18px; object-fit: contain; }
.d-step.blue img { filter: brightness(0) saturate(100%) invert(70%) sepia(80%) saturate(1000%) hue-rotate(5deg) brightness(110%); }
.d-step.green { border-color: var(--green); animation: glowGreen 2.5s ease-in-out infinite; }
.d-step.green img { filter: brightness(0) saturate(100%) invert(72%) sepia(21%) saturate(1500%) hue-rotate(75deg); }
@keyframes glowGreen { 0%,100% { box-shadow: 0 0 8px rgba(34,197,94,0.3); } 50% { box-shadow: 0 0 22px rgba(34,197,94,0.8); } }
.line {
  flex: 1; height: 2px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(254,161,0,0.15), rgba(254,161,0,0.5), rgba(254,161,0,0.15));
  position: relative; overflow: hidden;
}
.line::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(254,161,0,0.9), transparent);
  background-size: 200% 100%;
  animation: flowLine 3s linear infinite;
}
@keyframes flowLine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* PAYMENTS CARD */
.payments { grid-column: 2 / 4; padding: 36px; }
.payments h4 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.payments p { color: var(--text-muted); margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
.icons { display: flex; gap: 14px; flex-wrap: wrap; }
.icons img { height: 32px; }

/* ===== REVIEWS ===== */
.reviews { padding: 120px 0; overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 64px; }
.reviews-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(36px,5vw,60px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px; }
.reviews-header p { color: var(--text-muted); font-size: 17px; }
.review-row { display: flex; justify-content: center; overflow: hidden; margin-bottom: 22px; }
.review-track { display: flex; gap: 16px; width: max-content; }
.review-track.left { animation: scrollLeft linear infinite; }
.review-track.right { animation: scrollRight linear infinite; }
.review-track.slow { animation-duration: 70s; }
.review-track.medium { animation-duration: 50s; }
.review-track.fast { animation-duration: 35s; }
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.review-card {
  min-width: 270px; max-width: 270px;
  background: var(--card);
  border: 1px solid var(--border-dim); border-radius: 16px;
  padding: 18px; transition: 0.3s;
}
.review-card:hover { border-color: var(--border); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pfp {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #000;
}
.name { font-size: 13px; font-weight: 600; }
.time { margin-left: auto; font-size: 11px; color: #6b7280; }
.stars { color: var(--orange); margin-bottom: 8px; font-size: 13px; }
.review-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== FAQ ===== */
.faq { padding: 120px 20px; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 { font-family: 'Syne', sans-serif; font-size: clamp(38px,5vw,60px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 10px; }
.faq-header p { color: var(--text-muted); font-size: 17px; }
.faq-container { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-dim);
  background: var(--card); transition: 0.3s;
}
.faq-item:hover { border-color: var(--border); }
.faq-item.active { border-color: var(--orange); box-shadow: 0 0 24px rgba(254,161,0,0.12); animation: faqGlow 3s ease-in-out infinite alternate; }
@keyframes faqGlow { 0% { box-shadow: 0 0 12px rgba(254,161,0,0.15); } 100% { box-shadow: 0 0 28px rgba(254,161,0,0.3); } }
.faq-question {
  width: 100%; padding: 22px 24px;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; font-weight: 600; font-family: 'Syne', sans-serif;
  color: white; background: transparent; border: none; cursor: pointer;
}
.faq-question .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.faq-question .arrow { margin-left: auto; font-size: 16px; transition: transform 0.3s; }
.faq-item.active .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 24px 0; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-answer p { padding: 0 24px 20px; }

/* ===== FOOTER ===== */
.footer { padding: 100px 0 40px; position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1200px, 100%); height: 1px;
  background: linear-gradient(to right, transparent, rgba(254,161,0,0.2), transparent);
}
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; gap: 60px; }
.footer-left { max-width: 360px; }
.footer-logo { width: 38px; margin-bottom: 18px; }
.footer-left p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 22px; }

/* Discord card */
.discord-btn {
  width: 100%; min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px; border-radius: 14px;
  background: rgba(8,8,16,0.9); border: 1px solid rgba(88,101,242,0.45);
  color: white; text-decoration: none; transition: 0.25s;
}
.discord-btn:hover { border-color: rgba(88,101,242,0.8); transform: translateY(-2px); }
.discord-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.discord-icon {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #6b6cff, #4855f5);
  box-shadow: 0 0 16px rgba(88,101,242,0.4);
}
.discord-icon svg { width: 22px; height: 22px; color: white; }
.discord-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.discord-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; color: white; }
.members { position: relative; color: var(--text-muted); font-size: 12px; padding-left: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.members::before { content: ""; position: absolute; left: 0; top: 50%; width: 7px; height: 7px; border-radius: 50%; background: var(--green); transform: translateY(-50%); box-shadow: 0 0 10px rgba(34,197,94,0.8); }
.discord-join {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 16px; border-radius: 9px;
  background: linear-gradient(135deg, #6670ff, #4f5af5);
  color: white; font-size: 13px; font-weight: 800; font-family: 'Syne', sans-serif; flex: 0 0 auto;
}

/* Footer links */
.footer-links { display: flex; gap: 70px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 12px; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 16px; font-weight: 800; }
.footer-col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: 0.2s; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }

/* Footer bottom */
.footer-bottom { margin-top: 60px; padding-top: 24px; position: relative; border-top: none; }
.footer-bottom::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px)); height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.status { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13px; }
.status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: statusPulse 1.5s infinite; }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); } 100% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } }
.copyright { color: #6b7280; font-size: 13px; }
.payments { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.ssl-badge {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
  background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.25); color: var(--orange); font-size: 12px;
}
.payments img { height: 22px; }

/* ===== SCROLL ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(30px); transition: all 0.65s cubic-bezier(0.22,1,0.36,1); }
.anim.show { opacity: 1; transform: translateY(0); }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  body { cursor: auto; }
  * { max-width: 100%; box-sizing: border-box; }
  html, body { overflow-x: hidden; }
  section { padding: 70px 16px !important; }

  /* header */
  .header { padding: 10px 0; }
  .header-container { width: 94%; padding: 10px 14px; }
  .nav { display: none !important; }
  .mobile-menu-btn { display: flex; }
  .cart-btn span:not(.cart-count) { display: none; }
  .cta-text { display: none; }
  .cta-svg { display: block; }
  .cta-btn { width: 38px; height: 38px; padding: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

  /* hero */
  .hero { min-height: auto; padding: 120px 16px 60px; background: none !important; }
  .hero-main h1 { font-size: 38px; letter-spacing: -1.5px; }
  .hero-main p { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 320px; }
  .hero-stats { flex-wrap: wrap; margin-top: 40px; border-radius: 14px; }
  .stat-item { padding: 14px 18px; }
  .stat-num { font-size: 20px; }
  .stat-divider { height: 30px; }

  /* trending */
  .trending { padding: 60px 16px !important; }
  .trending-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; gap: 22px; }
  .product-top { height: 220px !important; }

  /* categories */
  .categories-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .category-card { height: 200px; }
  .cat-label { font-size: 17px; }

  /* why */
  .why-container { padding: 0 16px; }
  .why-grid { display: flex !important; flex-direction: column !important; gap: 14px; }
  .large { grid-row: unset !important; min-height: 260px; }
  .large img { display: none; }
  .why-content { position: relative; bottom: auto; left: auto; right: auto; }
  .large h3 { font-size: 26px; }
  .payments { flex-direction: column; align-items: flex-start; }
  .icons { justify-content: flex-start; }

  /* footer */
  .footer-container { flex-direction: column; gap: 30px; padding: 0 16px; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 14px; }
  .ssl-badge { display: none; }
  .payments { flex-direction: row !important; justify-content: center; }
  .payments img { height: 18px !important; display: inline-block !important; }
  .mobile-nav-overlay, .mobile-nav-drawer { display: block; }
}
@media (min-width: 769px) {
  .mobile-nav-overlay, .mobile-nav-drawer { display: none !important; }
}

/* ===== PRODUCT PAGE (inherited styles from original) ===== */
/* Keep all product page, cart, checkout, status styles working */
.products-section { padding: 140px 20px 100px; }
.products-header { text-align: center; margin-bottom: 60px; }
.products-header h1 { font-family: 'Syne', sans-serif; font-size: clamp(38px,5vw,58px); font-weight: 800; letter-spacing: -1.5px; }
.products-header p { color: var(--text-muted); font-size: 18px; margin-top: 8px; }
.status-section { padding: 140px 20px 100px; }
.status-header { text-align: center; margin-bottom: 60px; }
.status-header h1 { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; margin-bottom: 10px; }
.status-header p { color: var(--text-muted); }
.status-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.status-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-radius: 16px;
  background: var(--card); border: 1px solid var(--border-dim); transition: 0.3s;
}
.status-card:hover { border-color: var(--border); transform: translateY(-3px); }
.status-left { display: flex; align-items: center; gap: 12px; }
.status-img { width: 42px; height: 42px; border-radius: 10px; background-size: cover; background-position: center; }
.status-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; }
.status-badge { font-size: 12px; padding: 6px 14px; border-radius: 999px; display: flex; align-items: center; gap: 6px; }
.status-badge.online { color: var(--green); background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); }
.status-badge.offline { color: var(--red); background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.4); }

/* Product page detail */
#productPage-obaid { margin-top: 80px; }
.product-page-obaid { width: 94%; max-width: 1300px; margin: 0 auto; padding: 60px 0; }
.product-container-obaid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.breadcrumbs-obaid { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumbs-obaid a { color: var(--text-muted); }
.breadcrumbs-obaid .active-obaid { color: white; }
.product-main-image-wrap-obaid {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.product-main-image-wrap-obaid > img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.product-gallery-thumbs-obaid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.product-thumb-obaid { height: 80px; border: 1px solid var(--border-dim); border-radius: 14px; overflow: hidden; cursor: pointer; transition: 0.25s; }
.product-thumb-obaid img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: 0.25s; }
.product-thumb-obaid:hover, .product-thumb-obaid.active-thumb-obaid { border-color: var(--orange); box-shadow: 0 0 20px var(--orange-glow); }
.product-thumb-obaid:hover img, .product-thumb-obaid.active-thumb-obaid img { opacity: 1; }
.top-row-obaid { display: flex; justify-content: space-between; align-items: center; }
.price-obaid { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--orange); }
.online-obaid { display: flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.1); padding: 6px 12px; border-radius: 999px; color: var(--green); font-size: 13px; }
.dot-obaid { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.variants-obaid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.variant-obaid { border: 1px solid var(--border-dim); border-radius: 12px; padding: 14px; cursor: pointer; transition: 0.2s; background: rgba(255,255,255,0.03); }
.variant-obaid:hover { border-color: var(--orange); }
.variant-obaid.active-obaid { background: var(--orange-soft); border: 1px solid rgba(254,161,0,0.5); }
.variant-obaid.full-obaid { grid-column: span 2; }
.buttons-obaid { display: flex; gap: 10px; margin-top: 22px; }
.buy-obaid {
  flex: 2; height: 54px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #000; font-weight: 800; font-family: 'Syne', sans-serif; font-size: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px; transition: 0.22s;
}
.buy-obaid:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--orange-glow); }
.cart-obaid {
  flex: 1; height: 54px; border-radius: 12px;
  border: 1px solid var(--border-dim); background: rgba(255,255,255,0.03);
  color: white; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.22s;
}
.cart-obaid:hover { border-color: var(--border); background: rgba(255,255,255,0.06); }
.requirements-section-obaid, .features-section-obaid { margin-top: 70px; }
.requirements-section-obaid h2, .features-section-obaid h2 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 24px; text-align: center; }
.requirements-grid-obaid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.req-card-obaid { background: var(--card); border: 1px solid var(--border-dim); border-radius: 16px; padding: 20px; transition: 0.25s; }
.req-card-obaid:hover { border-color: var(--border); transform: translateY(-3px); }
.req-card-obaid .icon-obaid { width: 42px; height: 42px; border-radius: 10px; background: var(--orange-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.req-card-obaid svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; }
.label-obaid { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.value-obaid { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.features-grid-obaid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-card-obaid { background: var(--card); border: 1px solid var(--border-dim); border-radius: 18px; padding: 24px; transition: 0.3s; }
.feature-card-obaid:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.feature-title-obaid { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; margin-bottom: 14px; font-size: 16px; }
.check-obaid { width: 24px; height: 24px; border-radius: 8px; background: var(--orange-soft); display: inline-block; position: relative; flex-shrink: 0; }
.check-obaid::after { content: "✓"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--orange); font-size: 13px; }
.feature-card-obaid ul { list-style: none; padding: 0; margin-top: 10px; }
.feature-card-obaid li { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: var(--text-muted); font-size: 14px; }
.feature-card-obaid li::before { content: ""; width: 8px; height: 8px; border: 1.5px solid var(--orange); display: inline-block; flex-shrink: 0; }
.section-divider-obaid { width: 60%; height: 1px; margin: 60px auto; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); }
.video-box-obaid { max-width: 900px; margin: 0 auto; border-radius: 18px; overflow: hidden; border: 1px solid var(--border-dim); }
.video-box-obaid iframe { width: 100%; height: 500px; display: block; }
.container-obaid { width: 94%; max-width: 1300px; margin: 0 auto; }
.features-wrapper-obaid { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.badge-obaid { position: absolute; top: 14px; left: 14px; background: rgba(34,197,94,0.12); color: var(--green); padding: 6px 12px; border-radius: 999px; font-size: 12px; display: flex; align-items: center; gap: 6px; }
.select-row-obaid { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.qty-obaid { display: flex; align-items: center; background: rgba(2,6,18,0.7); border: 1px solid var(--border-dim); border-radius: 10px; }
.qty-obaid button { background: none; border: none; color: white; padding: 8px 12px; cursor: pointer; }
.qty-obaid span { width: 32px; display: flex; align-items: center; justify-content: center; }
.status-row-obaid { display: flex; gap: 10px; margin: 14px 0 22px; }

/* Cart & Checkout */
.cart-obaid { width: 100%; max-width: 1000px; padding: 20px; margin-bottom: 50px; }
.cart-layout-obaid { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.cart-box-obaid, .summary-obaid { width: 100%; max-width: 700px; border: 1px solid var(--border-dim); border-radius: 16px; padding: 20px; background: var(--card); }
.cart-box-head-obaid { display: flex; justify-content: space-between; color: var(--text-muted); margin-bottom: 14px; font-size: 13px; }
.cart-divider-obaid { height: 1px; background: var(--border-dim); margin-bottom: 18px; }
.cart-item-obaid { display: flex; justify-content: space-between; padding: 14px; border-radius: 12px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-dim); margin-bottom: 14px; }
.cart-left-obaid { display: flex; gap: 12px; width: 70%; }
.cart-img-obaid { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; }
.cart-img-obaid img { width: 100%; height: 100%; object-fit: cover; }
.cart-left-obaid h3 { font-family: 'Syne', sans-serif; font-size: 14px; margin-bottom: 4px; }
.variant-box-obaid { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.qty-obaid { display: flex; gap: 6px; }
.qty-obaid button { width: 28px; height: 28px; border: 1px solid var(--border-dim); background: transparent; color: white; border-radius: 6px; cursor: pointer; }
.qty-obaid span { width: 32px; display: flex; align-items: center; justify-content: center; }
.cart-right-obaid { width: 30%; display: flex; flex-direction: column; align-items: flex-end; }
.cart-price-obaid { font-family: 'Syne', sans-serif; font-weight: 800; color: var(--orange); margin-bottom: 8px; }
.trash-obaid { cursor: pointer; color: var(--text-muted); }
.trash-obaid:hover { color: var(--red); }
.summary-row-obaid { display: flex; justify-content: space-between; margin-bottom: 10px; color: var(--text-muted); font-size: 14px; }
.summary-total-obaid { color: white; font-weight: 700; }
.checkout-obaid { width: 100%; height: 50px; margin-top: 18px; border-radius: 10px; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #000; border: none; font-family: 'Syne', sans-serif; font-weight: 800; cursor: pointer; font-size: 15px; transition: 0.22s; }
.checkout-obaid:hover { box-shadow: 0 8px 24px var(--orange-glow); }
.payments-obaid { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.payments-obaid img { height: 18px; }

/* Global h1, h2, h3 */
h1, h2, h3 { font-family: 'Syne', sans-serif; }
p { font-family: 'DM Sans', sans-serif; color: var(--text-muted); }
