/* Vazir font — local copy, replaces CDN import */
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Regular.woff2') format('woff2');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Bold.woff2') format('woff2');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Thin.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Vazir;
  src: url('assets/fonts/vazir/Vazir-Black.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --deep:        #03081a;
  --navy:        #08122e;
  --navy-mid:    #0d1b45;
  --blue:        #1a3dcf;
  --blue-mid:    #2650e0;
  --blue-light:  #4e6ff0;
  --blue-pale:   #97b0ff;
  --blue-glass:  rgba(26,61,207,0.13);
  --blue-glow:   rgba(26,61,207,0.5);
  --gold:        #f5a623;
  --gold-glow:   rgba(245,166,35,0.35);
  --white:       #ffffff;
  --off-white:   #f4f6fe;
  --glass:       rgba(255,255,255,0.065);
  --glass-border:rgba(255,255,255,0.13);
  --gray:        #545d6b;
  --font:        'Vazir', sans-serif;

  --grad-hero:    linear-gradient(145deg, #03081a 0%, #08122e 35%, #0d1b45 65%, #1a3dcf 100%);
  --grad-card:    linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
  --grad-btn:     linear-gradient(135deg, #2650e0, #1a3dcf);
  --grad-gold:    linear-gradient(135deg, #f5a623, #e8920a);
  --grad-section: linear-gradient(180deg, #03081a 0%, #08122e 100%);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.12), 0 1px 4px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 56px rgba(26,61,207,0.22), 0 4px 12px rgba(0,0,0,0.12);
  --shadow-btn:   0 6px 22px rgba(26,61,207,0.45);
  --radius-card:  22px;
  --radius-sm:    12px;
}

html { direction: rtl; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  background: var(--off-white);
  color: #1a1a2e;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(3,8,26,0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s;
}
nav.scrolled {
  background: rgba(3,8,26,0.96);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-logo {
  font-size: 1.7rem; font-weight: 900; color: var(--white);
  letter-spacing: -0.5px; text-decoration: none;
}
.nav-logo span {
  background: linear-gradient(135deg, #7b9bff, #bcceff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--grad-gold); color: var(--deep);
  padding: 0.55rem 1.6rem; border-radius: 30px;
  font-weight: 800; text-decoration: none; font-size: 0.88rem;
  transition: all 0.3s; box-shadow: var(--gold-glow) 0 4px 18px;
  letter-spacing: 0.3px;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gold-glow); filter: brightness(1.08); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; inset: 72px 0 0;
  background: rgba(3,8,26,0.98); backdrop-filter: blur(24px);
  z-index: 99; padding: 2rem 5vw; flex-direction: column; gap: 0;
}
.mobile-menu a {
  color: var(--white); text-decoration: none; font-size: 1.15rem; font-weight: 600;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block; padding: 0.9rem 2.25rem; border-radius: 50px;
  font-family: var(--font); font-weight: 800; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s; border: none; text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-blue {
  background: var(--grad-btn); color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26,61,207,0.65);
  filter: brightness(1.1);
}
.btn-glass {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue); border-radius: 50px;
}
.btn-outline-blue:hover {
  background: var(--blue); color: var(--white);
  box-shadow: 0 8px 24px rgba(26,61,207,0.35);
}
.btn-white { background: var(--white); color: var(--blue); font-weight: 800; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,0.3); }
.btn-gold {
  background: var(--grad-gold); color: var(--deep); font-weight: 800;
  box-shadow: 0 6px 22px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--gold-glow); filter: brightness(1.05); }

/* ─── SECTION UTILS ─── */
.section { padding: 6rem 5vw; }
.section-dark { background: var(--grad-section); color: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.section-light { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem; display: block;
}
h1, h2, h3, h4 { font-family: var(--font); font-weight: 900; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.45rem); }
p { line-height: 1.85; }
.text-gray { color: var(--gray); }
.grad-text {
  background: linear-gradient(140deg, #fff 25%, var(--blue-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-blue {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-pale));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-gold {
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ─── ORBS ─── */
.orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(26,61,207,0.38) 0%, transparent 70%); }
.orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(78,111,240,0.28) 0%, transparent 70%); }
.orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(13,27,75,0.85) 0%, transparent 70%); }
.orb-gold { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,166,35,0.2) 0%, transparent 70%); }

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--grad-card);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  transition: all 0.38s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.glass-card:hover {
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ─── PRODUCT CARD ─── */
.product-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; border: 1.5px solid rgba(26,61,207,0.09);
  transition: all 0.38s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
}
.product-card-img {
  background: linear-gradient(150deg, #edf0fb 0%, #f4f6fe 50%, #eaedfb 100%);
  height: 250px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(26,61,207,0.1) 0%, transparent 65%);
}
.product-card-img::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(26,61,207,0.15), transparent);
}
.product-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--grad-btn); color: var(--white);
  padding: 4px 13px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(26,61,207,0.45);
  letter-spacing: 0.5px;
}
.product-card-body { padding: 1.6rem; }
.product-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; font-weight: 800; }
.product-card-body p { font-size: 0.86rem; color: var(--gray); margin-bottom: 1.1rem; line-height: 1.7; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-weight: 900; font-size: 1.05rem; color: var(--blue); }
.product-sizes { font-size: 0.76rem; color: var(--gray); background: #f0f2fc; padding: 3px 10px; border-radius: 10px; }

/* ─── STEP ─── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.step { text-align: center; position: relative; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--grad-btn); color: var(--white);
  font-size: 1.55rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 0 0 8px rgba(26,61,207,0.12), 0 10px 28px rgba(26,61,207,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative; z-index: 1;
}
.step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(26,61,207,0.16), 0 14px 36px rgba(26,61,207,0.6);
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--white); font-weight: 800; }
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.7; }
.step-connector {
  position: absolute; top: 32px; left: -50%; width: 100%; height: 1px;
  background: linear-gradient(to left, rgba(78,111,240,0.45), transparent); z-index: -1;
}

/* ─── DESIGN CARD ─── */
.design-card {
  text-align: center; padding: 2.4rem 1.75rem;
  border-radius: var(--radius-card); border: 1.5px solid rgba(26,61,207,0.1);
  background: var(--white); transition: all 0.38s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.design-card:hover, .design-card.active {
  border-color: var(--blue);
  background: linear-gradient(145deg, #f6f8ff, #edf0ff);
  box-shadow: 0 16px 48px rgba(26,61,207,0.18), 0 0 0 1px rgba(26,61,207,0.08);
  transform: translateY(-5px);
}
.design-card h3 { margin: 1.1rem 0 0.5rem; font-size: 1rem; font-weight: 800; }
.design-card p { font-size: 0.84rem; color: var(--gray); }

/* ─── CONTACT FORM ─── */
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.55rem; }
.form-group label { font-size: 0.86rem; font-weight: 800; color: rgba(255,255,255,0.82); }
.form-group label.dark { color: #1a1a2e; }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.92rem 1.15rem; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.12);
  font-family: var(--font); font-size: 0.9rem;
  background: rgba(255,255,255,0.07); color: var(--white);
  transition: all 0.25s; outline: none; direction: rtl;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue-light); background: rgba(255,255,255,0.11);
  box-shadow: 0 0 0 3.5px rgba(26,61,207,0.22);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--navy-mid); }
.form-light input, .form-light textarea, .form-light select {
  background: var(--white); color: #1a1a2e; border-color: rgba(26,61,207,0.18);
}
.form-light input::placeholder, .form-light textarea::placeholder { color: #9ca3af; }
.form-light input:focus, .form-light textarea:focus { background: var(--white); }

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  padding: 1.4rem 5vw; border-bottom: 1px solid rgba(26,61,207,0.1);
  background: var(--white); position: sticky; top: 72px; z-index: 50;
  box-shadow: 0 4px 24px rgba(26,61,207,0.07);
}
.filter-btn {
  padding: 0.5rem 1.3rem; border-radius: 25px;
  border: 1.5px solid rgba(26,61,207,0.18);
  background: var(--white); font-family: var(--font);
  font-size: 0.86rem; cursor: pointer; transition: all 0.25s;
  color: var(--gray); font-weight: 600;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--grad-btn); border-color: transparent;
  color: var(--white); box-shadow: 0 4px 16px rgba(26,61,207,0.38);
}

/* ─── BLOG CARD ─── */
.blog-card {
  border-radius: var(--radius-card); overflow: hidden;
  border: 1.5px solid rgba(26,61,207,0.09);
  transition: all 0.38s cubic-bezier(0.215, 0.61, 0.355, 1);
  text-decoration: none; color: inherit; display: block;
  background: var(--white); box-shadow: var(--shadow-card);
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); border-color: var(--blue-light); }
.blog-card-img { height: 215px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-body { padding: 1.6rem; }
.blog-tag {
  display: inline-block; background: linear-gradient(135deg, #eef2ff, #e0e8ff);
  color: var(--blue); padding: 4px 13px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 800; margin-bottom: 0.8rem; letter-spacing: 0.5px;
}
.blog-card-body h3 { font-size: 1.02rem; margin-bottom: 0.7rem; line-height: 1.55; font-weight: 800; }
.blog-card-body p { font-size: 0.86rem; color: var(--gray); margin-bottom: 1rem; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.77rem; color: var(--gray); }

/* ─── PAGE HEADER ─── */
.page-header {
  background: var(--grad-hero); padding: 8.5rem 5vw 5.5rem;
  position: relative; overflow: hidden;
}
.page-header h1 { color: var(--white); margin-bottom: 1.1rem; }
.page-header p { color: rgba(255,255,255,0.65); max-width: 540px; font-size: 1.05rem; }

/* ─── PRODUCT DETAIL ─── */
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.84rem; color: var(--gray); margin-bottom: 2.5rem; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }
.product-main-img {
  background: linear-gradient(145deg, #eef2ff 0%, #f5f7ff 100%);
  border-radius: 26px; height: 460px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; border: 1.5px solid rgba(26,61,207,0.1);
  position: relative; overflow: hidden;
}
.product-main-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 90%, rgba(26,61,207,0.1) 0%, transparent 70%); }
.product-thumb {
  width: 80px; height: 80px; background: linear-gradient(135deg, #eef2ff, #f5f7ff);
  border-radius: 14px; cursor: pointer; border: 2px solid transparent;
  transition: 0.25s; display: flex; align-items: center; justify-content: center;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(26,61,207,0.25); }
.product-price-main {
  font-size: 2.2rem; font-weight: 900;
  background: var(--grad-btn); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.size-btn {
  padding: 0.55rem 1.15rem; border-radius: 10px; border: 1.5px solid rgba(26,61,207,0.2);
  font-family: var(--font); font-size: 0.88rem; cursor: pointer;
  background: var(--white); transition: all 0.22s; color: #1a1a2e; font-weight: 600;
}
.size-btn.active, .size-btn:hover {
  border-color: var(--blue); background: linear-gradient(135deg, #eef2ff, #e8edff);
  color: var(--blue); font-weight: 800; box-shadow: 0 4px 12px rgba(26,61,207,0.18);
}
.qty-control { display: flex; align-items: center; border: 1.5px solid rgba(26,61,207,0.2); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn {
  width: 44px; height: 44px; background: linear-gradient(135deg, #f5f7ff, #eef2ff);
  border: none; font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s; color: var(--blue); font-weight: 800;
}
.qty-btn:hover { background: var(--blue); color: white; }
.qty-val { width: 70px; text-align: center; font-weight: 800; border: none; outline: none; font-family: var(--font); font-size: 1rem; background: transparent; }
.tab-btn {
  padding: 0.9rem 1.85rem; border: none; background: none; font-family: var(--font);
  font-size: 0.92rem; font-weight: 700; cursor: pointer; color: var(--gray);
  border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: all 0.22s;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; padding-top: 2rem; }
.tab-panel.active { display: block; }

/* ─── SIDEBAR ─── */
.sidebar {
  background: var(--white); border-radius: var(--radius-card);
  border: 1.5px solid rgba(26,61,207,0.09);
  padding: 1.8rem; box-shadow: var(--shadow-card);
}
.sidebar-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #f0f2f8; }
.sidebar-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-section h4 { font-size: 0.88rem; font-weight: 900; margin-bottom: 1.1rem; color: #1a1a2e; }
.check-option { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.65rem; cursor: pointer; font-size: 0.88rem; color: var(--gray); transition: color 0.2s; }
.check-option:hover { color: var(--blue); }
.check-option input { accent-color: var(--blue); width: 16px; height: 16px; cursor: pointer; }
.sidebar-btn {
  width: 100%; padding: 0.85rem; background: var(--grad-btn); color: white;
  border: none; border-radius: var(--radius-sm); font-family: var(--font);
  font-weight: 800; font-size: 0.9rem; cursor: pointer; margin-top: 1rem;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(26,61,207,0.35);
}
.sidebar-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,61,207,0.5); }

/* ─── TESTIMONIAL ─── */
.testi-card {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-card); padding: 2rem; backdrop-filter: blur(18px);
}
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-gold); display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--deep); font-size: 1.05rem;
  box-shadow: 0 4px 14px var(--gold-glow);
  flex-shrink: 0;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--navy), var(--blue-mid), var(--navy));
  overflow: hidden; padding: 1.15rem 0; white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marquee 20s linear infinite;
}
.marquee-track span { font-weight: 700; font-size: 0.88rem; color: rgba(255,255,255,0.88); letter-spacing: 0.5px; }
.marquee-dot { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── FOOTER ─── */
footer {
  background: var(--deep); color: rgba(255,255,255,0.6);
  padding: 5.5rem 5vw 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 1.1rem; }
.footer-brand h2 span {
  background: linear-gradient(135deg, #7b9bff, #bcceff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.85; color: rgba(255,255,255,0.48); }
.footer-col h4 { color: var(--white); font-size: 0.92rem; font-weight: 800; margin-bottom: 1.3rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { color: rgba(255,255,255,0.48); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.75rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: 0.86rem;
  text-decoration: none; transition: all 0.28s; font-weight: 700;
}
.social-btn:hover {
  background: var(--grad-gold); border-color: transparent; color: var(--deep);
  transform: translateY(-3px); box-shadow: 0 6px 18px var(--gold-glow);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}

/* ─── COLOR SWATCH SELECTOR ─── */
.color-options { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.color-swatch-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.color-swatch-btn:hover { transform: scale(1.12); box-shadow: 0 4px 14px rgba(0,0,0,0.28); }
.color-swatch-btn.active { transform: scale(1.15); box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--blue); }

/* ─── NAV SEARCH BUTTON ─── */
.nav-end { display: flex; align-items: center; gap: 0.65rem; }
.nav-search-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; flex-shrink: 0;
}
.nav-search-btn:hover { background: rgba(255,255,255,0.16); color: white; border-color: rgba(255,255,255,0.24); }
.nav-search-btn svg { pointer-events: none; }

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(3,8,26,0.93);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  display: none; align-items: flex-start; justify-content: center;
  padding: 130px 5vw 0;
}
.search-overlay.open { display: flex; }
.search-panel { width: 100%; max-width: 640px; }
.search-input-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 50px;
  transition: border-color 0.25s, background 0.25s;
}
.search-input-wrap:focus-within {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 4px rgba(26,61,207,0.18);
}
.search-icon-inner {
  margin: 0 1.8rem 0 0.2rem;
  padding: 0.42rem;
  border-radius: 50%;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; flex-shrink: 0;
  transition: color 0.22s, transform 0.18s, background 0.22s, box-shadow 0.22s, backdrop-filter 0.22s;
}
.search-icon-inner.active { color: rgba(255,255,255,0.9); cursor: pointer; }
.search-icon-inner.active:hover {
  color: #fff;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  transform: scale(1.1);
}
.search-icon-inner.active:active { transform: scale(0.88); }
.search-panel input {
  flex: 1; padding: 1rem 0.5rem;
  background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: 1.1rem;
  color: white; direction: rtl;
}
.search-panel input::placeholder { color: rgba(255,255,255,0.3); }
.search-close-btn {
  padding: 0 1.4rem; height: 100%; background: none; border: none;
  color: rgba(255,255,255,0.45); font-size: 1.1rem;
  cursor: pointer; transition: color 0.2s; line-height: 1;
  display: flex; align-items: center;
}
.search-close-btn:hover { color: white; }
.search-hint { text-align: center; color: rgba(255,255,255,0.25); font-size: 0.78rem; margin-top: 1.1rem; letter-spacing: 0.3px; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--navy-mid); color: var(--white);
  padding: 1rem 2rem; border-radius: 16px; font-weight: 700;
  z-index: 9999; transition: transform 0.45s cubic-bezier(0.175,0.885,0.32,1.275);
  border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 14px 48px rgba(0,0,0,0.45);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-accent { border-right: 4px solid var(--gold); }

/* ─── SUCCESS MSG ─── */
.success-msg {
  background: linear-gradient(135deg, rgba(22,163,74,0.14), rgba(22,163,74,0.05));
  border: 1.5px solid rgba(22,163,74,0.38); border-radius: 14px;
  padding: 1.25rem 1.5rem; color: #4ade80; font-weight: 700;
  margin-top: 1rem; display: none;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1.5px solid rgba(26,61,207,0.1); border-radius: 14px;
  margin-bottom: 0.75rem; overflow: hidden;
  background: var(--white); transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(26,61,207,0.1); border-color: rgba(26,61,207,0.22); }
.faq-q {
  padding: 1.25rem 1.6rem; font-weight: 800; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.92rem; user-select: none; color: #1a1a2e;
}
.faq-icon { font-size: 1.2rem; color: var(--blue); transition: transform 0.3s; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 1.6rem 1.3rem; color: var(--gray); font-size: 0.9rem; line-height: 1.85; }

/* ─── SPEC TABLE ─── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid #f0f2f8; }
.spec-table td { padding: 0.9rem 0; font-size: 0.9rem; }
.spec-table td:first-child { color: var(--gray); width: 40%; }
.spec-table td:last-child { font-weight: 700; }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(38px);
  transition: opacity 0.75s cubic-bezier(0.215,0.61,0.355,1),
              transform 0.75s cubic-bezier(0.215,0.61,0.355,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.float-anim { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(-3deg)} 50%{transform:translateY(-20px) rotate(3deg)} }
.float-anim2 { animation: float2 5s ease-in-out infinite 1s; }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(5deg)} 50%{transform:translateY(-14px) rotate(-2deg)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.pulse { animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:0.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.05)} }

/* ─── FEAT BAND ─── */
.feat-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
  transition: background 0.25s;
}

/* ─── CART BUTTON IN NAV ─── */
.nav-cart-btn {
  position: relative; background: none; border: none;
  color: rgba(255,255,255,0.75); cursor: pointer;
  padding: 6px; border-radius: 50%; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, background 0.2s; margin-left: 0.25rem;
}
.nav-cart-btn:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cart-badge {
  position: absolute; top: -4px; left: -4px;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--gold); color: var(--deep);
  font-size: 0.68rem; font-weight: 900; line-height: 1;
  display: none; align-items: center; justify-content: center;
  padding: 0 4px; font-family: var(--font);
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(3,8,26,0.55);
  z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: 420px; max-width: 100vw;
  background: var(--white); z-index: 1101;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; border-bottom: 1px solid #eef0f8;
  background: var(--navy); color: var(--white); flex-shrink: 0;
}
.cart-head-title { font-size: 1rem; font-weight: 800; margin: 0; }
.cart-close-btn {
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: 50%; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-close-btn:hover { background: rgba(255,255,255,0.25); }

.cart-body { flex: 1; overflow-y: auto; padding: 1rem; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; gap: 0.75rem; color: var(--gray); text-align: center; padding: 3rem 1rem;
}
.cart-empty svg { opacity: 0.3; }
.cart-empty p { font-size: 0.95rem; margin: 0; }

.cart-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }

.cart-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: #f9faff; border-radius: 14px; padding: 0.85rem;
  border: 1px solid #eef0f8; position: relative;
}
.cart-item-img {
  width: 64px; height: 64px; border-radius: 10px; object-fit: contain;
  background: var(--white); border: 1px solid #eef0f8; flex-shrink: 0;
}
.cart-no-img {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.35rem; }
.cart-item-price { font-size: 0.82rem; color: var(--gray); margin-bottom: 0.5rem; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.cart-item-line-total { font-size: 0.88rem; font-weight: 800; color: var(--blue); white-space: nowrap; }
.cart-qty {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--white); border: 1px solid #dde0f0; border-radius: 8px; padding: 2px 6px;
}
.cart-qty button {
  background: none; border: none; color: var(--blue); font-size: 1.1rem;
  font-weight: 900; cursor: pointer; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
  transition: background 0.15s;
}
.cart-qty button:hover { background: #eef0f8; }
.cart-qty span { font-size: 0.8rem; font-weight: 700; min-width: 44px; text-align: center; white-space: nowrap; }
.cart-rm-btn {
  position: absolute; top: 0.5rem; left: 0.5rem;
  background: #fee2e2; border: none; color: #dc2626;
  width: 22px; height: 22px; border-radius: 50%; font-size: 0.7rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; flex-shrink: 0;
}
.cart-rm-btn:hover { background: #fecaca; }

.cart-foot {
  padding: 1rem 1.4rem 1.4rem; border-top: 1px solid #eef0f8;
  flex-direction: column; gap: 0.75rem; flex-shrink: 0;
}
.cart-subtotal-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; font-weight: 700; color: #1a1a2e;
}
.cart-total-val { font-size: 1.15rem; font-weight: 900; color: var(--blue); }
.cart-checkout-btn { display: block; text-align: center; width: 100%; padding: 0.9rem; font-size: 0.95rem; border-radius: 14px; }
.cart-clear-btn {
  background: none; border: none; color: var(--gray); font-size: 0.8rem;
  cursor: pointer; text-align: center; font-family: var(--font);
  padding: 0.25rem; transition: color 0.2s; text-decoration: underline;
}
.cart-clear-btn:hover { color: #dc2626; }

/* ─── CHECKOUT & ORDER PAGES ─── */
.checkout-page, .order-page {
  max-width: 860px; margin: 0 auto; padding: 2rem 5vw 5rem;
  margin-top: 72px;
}
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.checkout-box {
  background: var(--white); border-radius: 20px; padding: 2rem;
  border: 1px solid #eef0f8; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.checkout-box h3 { margin-bottom: 1.25rem; font-size: 1.05rem; color: #1a1a2e; }
.checkout-form-field { margin-bottom: 1.1rem; }
.checkout-form-field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 0.4rem; color: #1a1a2e; }
.checkout-form-field input,
.checkout-form-field textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #dde0f0;
  border-radius: 10px; font-family: var(--font); font-size: 0.9rem;
  background: #f9faff; color: #1a1a2e; transition: border-color 0.2s;
  outline: none;
}
.checkout-form-field input:focus,
.checkout-form-field textarea:focus { border-color: var(--blue); background: var(--white); }
.checkout-form-field textarea { resize: vertical; min-height: 90px; }

.order-summary-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.65rem 0; border-bottom: 1px solid #f0f2f8; font-size: 0.88rem;
}
.order-summary-item:last-child { border-bottom: none; }
.summary-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 0 0; font-weight: 900; font-size: 1.05rem; color: var(--blue);
  border-top: 2px solid #eef0f8; margin-top: 0.5rem;
}

/* ─── ORDER STATUS TRACKER ─── */
.order-tracker { display: flex; gap: 0; margin: 2rem 0; position: relative; }
.order-tracker::before {
  content: ''; position: absolute; top: 22px; right: 44px; left: 44px;
  height: 2px; background: #eef0f8; z-index: 0;
}
.tracker-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; z-index: 1; }
.tracker-dot {
  width: 44px; height: 44px; border-radius: 50%; background: #eef0f8;
  border: 3px solid #dde0f0; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; color: var(--gray); transition: all 0.3s;
}
.tracker-step.done .tracker-dot { background: var(--blue); border-color: var(--blue); color: var(--white); }
.tracker-step.active .tracker-dot { background: var(--white); border-color: var(--blue); color: var(--blue); box-shadow: 0 0 0 4px rgba(26,61,207,0.15); }
.tracker-step.cancelled .tracker-dot { background: #fee2e2; border-color: #dc2626; color: #dc2626; }
.tracker-label { font-size: 0.75rem; font-weight: 700; color: var(--gray); text-align: center; }
.tracker-step.done .tracker-label,
.tracker-step.active .tracker-label { color: #1a1a2e; }

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 5vw; }
  h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
}
@media(max-width:700px){
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100vw; }
  .order-tracker::before { right: 22px; left: 22px; }
}
@media(max-width:600px){
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 4vw; height: 62px; }
  .nav-logo { font-size: 1.4rem; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .section { padding: 3.5rem 5vw; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .btn { padding: 0.85rem 1.9rem; font-size: 0.9rem; }
  .product-card-img { height: 210px; }
  .section-tag { font-size: 0.68rem; letter-spacing: 3px; }
  .mobile-menu { padding: 1.5rem 5vw; }
  .mobile-menu a { font-size: 1.05rem; padding: 0.85rem 0; }
  .filter-bar { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; gap: 0.5rem; padding: 1rem 4vw; }
  .filter-btn { white-space: nowrap; font-size: 0.82rem; padding: 0.45rem 1rem; flex-shrink: 0; }
  .footer-grid { gap: 2rem; }
  .footer-brand p { font-size: 0.84rem; }
  .footer-col h4 { font-size: 0.86rem; margin-bottom: 0.75rem; }
  .footer-col ul a { font-size: 0.84rem; }
  .blog-card-img { height: 185px; }
  .form-group input, .form-group textarea, .form-group select { padding: 0.82rem 1rem; font-size: 0.9rem; }
  .products-grid { grid-template-columns: 1fr !important; }
  .step-num { width: 56px; height: 56px; font-size: 1.25rem; }
}
