/* ===================================
   OilMarket - Main Stylesheet v1.0
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* === CSS VARIABLES — Gold/Silver Brand Theme === */
:root {
  /* ── Page Backgrounds ── */
  --clr-bg:           #ffffff;
  --clr-bg-2:         #F5F5F2;
  --clr-bg-3:         #EBEBEA;
  --clr-card:         #ffffff;
  --clr-card-hover:   #FAFAF8;

  /* ── Brand Colors (OilMarket logo — Gold + Dark) ── */
  --clr-accent:       #C9A227;          /* Logo gold */
  --clr-accent-dark:  #A07E18;
  --clr-accent-glow:  rgba(201,162,39,0.09);
  --clr-blue:         #1A1A1A;          /* Near-black charcoal */
  --clr-blue-dark:    #0D0D0D;
  --clr-blue-light:   #FAF5E4;          /* Warm gold tint */
  --clr-blue-glow:    rgba(201,162,39,0.07);
  --grad-brand:       linear-gradient(90deg, #C9A227 0%, #1A1A1A 100%);
  --grad-brand-135:   linear-gradient(135deg, #C9A227 0%, #1A1A1A 100%);

  /* ── Grey / Silver ── */
  --clr-silver:       #8A8E94;
  --clr-silver-dark:  #4A4E54;

  /* ── Text ── */
  --clr-white:        #ffffff;
  --clr-text:         #1A1A1A;          /* Pure dark — headings & body */
  --clr-text-muted:   #4A4A4A;          /* Medium grey — secondary */
  --clr-text-dim:     #8A8A8A;          /* Light grey — placeholders */

  /* ── Borders ── */
  --clr-border:       #E5E5E5;
  --clr-border-light: #D0D0D0;

  /* ── Dark Surface (footer / CTA / sidebar) ── */
  --clr-dark-surface:   #1A1A1A;
  --clr-dark-surface-2: #252525;

  --font-display: 'Bebas Neue', 'Rajdhani', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  --section-py:    110px;
  --hero-top-padding: clamp(112px, 14vh, 152px);
  --container-max: 1320px;

  --trans-fast:   0.2s ease;
  --trans-normal: 0.35s ease;
  --trans-slow:   0.55s ease;

  --shadow-sm:     0 1px 4px rgba(26,26,26,0.07);
  --shadow-md:     0 4px 18px rgba(26,26,26,0.10);
  --shadow-lg:     0 12px 44px rgba(26,26,26,0.13);
  --shadow-accent: 0 6px 24px rgba(201,162,39,0.22);
  --shadow-blue:   0 6px 24px rgba(26,26,26,0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg-2); }
::-webkit-scrollbar-thumb { background: var(--clr-blue); border-radius: 3px; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--clr-text-muted); line-height: 1.75; }

.display-font { font-family: var(--font-display); letter-spacing: 2px; }

/* === UTILITIES === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}
.section-py { padding: var(--section-py) 0; }

.text-accent  { color: var(--clr-accent); }
.text-blue    { color: var(--clr-blue); }
.text-silver  { color: var(--clr-silver); }
.text-muted   { color: var(--clr-text-muted); }
.text-center  { text-align: center; }
.text-white   { color: var(--clr-white); }
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-dark-surface { background: var(--clr-dark-surface) !important; }

.bg-dark-2    { background: var(--clr-bg-2); }
.bg-dark-3    { background: var(--clr-bg-3); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { flex-direction: column; }
.gap-1        { gap: 8px; }
.gap-2        { gap: 16px; }
.gap-3        { gap: 24px; }
.gap-4        { gap: 32px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.divider {
  width: 60px; height: 3px;
  background: var(--grad-brand);
  margin: 16px 0;
  border-radius: 2px;
}
.divider-center { margin: 16px auto; }

/* === SECTION HEADER === */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--clr-blue);
}
.section-label::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: var(--clr-accent);
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  justify-content: center;
  text-align: center;
  min-width: 0;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--trans-normal);
  position: relative; overflow: visible;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity var(--trans-fast);
  border-radius: inherit;
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.32);
}
.btn-blue {
  background: var(--clr-blue);
  color: var(--clr-white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover {
  background: var(--clr-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,26,26,0.32);
}
.btn-brand {
  background: var(--grad-brand);
  color: var(--clr-white);
  box-shadow: var(--shadow-accent);
}
.btn-brand:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--clr-blue);
  color: var(--clr-blue);
}
.btn-outline:hover {
  background: var(--clr-blue);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid var(--clr-border-light);
  color: var(--clr-text-muted);
}
.btn-ghost:hover {
  border-color: var(--clr-blue);
  color: var(--clr-blue);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

.btn-icon {
  width: 44px; height: 44px;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  border: 1.5px solid var(--clr-border-light);
  color: var(--clr-text-muted);
  transition: all var(--trans-normal);
}
.btn-icon:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
}

/* === BADGE === */
.badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 2px;
}
.badge-accent { background: var(--clr-accent); color: #fff; }
.badge-silver { background: var(--clr-border-light); color: var(--clr-silver); }
.badge-outline { border: 1px solid var(--clr-border-light); color: var(--clr-text-muted); }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center;
  padding: 0 40px;
  transition: all var(--trans-normal);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-md);
  height: 64px;
}
.navbar.scrolled .navbar-logo img.logo-img { height: 40px; }

.navbar-inner {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 40px;
  position: relative;
}

.navbar-logo img.logo-img {
  height: 52px; width: auto;
  object-fit: contain;
  transition: height var(--trans-normal), filter var(--trans-normal);
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.25));
}
.navbar.scrolled .navbar-logo img.logo-img { height: 44px; }
.navbar-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 3px;
  color: var(--clr-blue);
  display: flex; align-items: center; gap: 4px;
}
.navbar-logo .logo-text span { color: var(--clr-accent); }

.navbar-nav {
  display: flex; align-items: center; gap: 8px;
}
@media (min-width: 901px) {
  .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: color var(--trans-fast);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--clr-blue);
  transform: scaleX(0);
  transition: transform var(--trans-normal);
}
.nav-link:hover, .nav-link.active {
  color: var(--clr-blue);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-actions { display: flex; align-items: center; gap: 12px; }
.shop-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-nav-btn {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--clr-border-light);
  border-radius: 50%;
  color: var(--clr-blue);
  background: var(--clr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--trans-fast);
}
.shop-nav-btn:hover {
  border-color: var(--clr-accent);
  background: var(--clr-accent-glow);
  color: var(--clr-accent-dark);
  transform: translateY(-2px);
}
.shop-nav-count,
.inline-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}
.shop-nav-count {
  position: absolute;
  top: -5px;
  right: -5px;
}
.mobile-shop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.mobile-shop-actions .btn {
  justify-content: center;
  padding: 11px 14px;
}

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: all var(--trans-normal);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.99);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--clr-border);
  padding: 20px 24px 30px;
  transform: translateY(-110%);
  opacity: 0;
  transition: all var(--trans-normal);
  z-index: 999;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav .nav-link { padding: 12px 8px; font-size: 1rem; }
.mobile-nav .nav-link::after { left: 8px; right: 8px; }
.mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--hero-top-padding);
  overflow: hidden;
  background: var(--clr-bg);
}
.hero > .container { position: relative; z-index: 1; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, #fafaf5 0%, #ffffff 45%, #fdf8ec 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 5%  70%, rgba(201,162,39,0.08) 0%, transparent 45%),
    radial-gradient(circle at 95% 20%, rgba(201,162,39,0.05) 0%, transparent 45%);
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 75%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 750px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
  padding-bottom: 32px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--clr-silver-dark);
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 40px; height: 2px;
  background: var(--grad-brand);
  border-radius: 1px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .line-accent { color: var(--clr-accent); }
.hero h1 .line-silver {
  -webkit-text-stroke: 2px var(--clr-blue);
  color: transparent;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-silver-dark);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-stat {
  padding: 20px 28px;
  border-left: 1px solid var(--clr-border);
  text-align: center;
}
.hero-stat:first-child { border-left: none; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 2px;
  color: var(--clr-text);
}
.hero-stat-value span { color: var(--clr-accent); }
.hero-stat-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-top: 4px;
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.scroll-label {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-text-dim);
}
.scroll-label { color: var(--clr-text-dim); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--clr-blue), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === TICKER / MARQUEE === */
.ticker-wrap {
  background: var(--grad-brand);
  padding: 10px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 0;
  width: max-content;
  white-space: nowrap;
  --marquee-offset: -50%;
  animation: ticker 25s linear infinite;
  animation-play-state: paused;
  direction: ltr;
  unicode-bidi: isolate;
  will-change: transform;
}
body.marquees-ready .ticker {
  animation-play-state: running;
}
.ticker-item {
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: flex; align-items: center; gap: 24px;
  margin-inline-end: 60px;
  direction: auto;
  flex-shrink: 0;
}
.ticker-item::after {
  content: "";
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  display: none;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(var(--marquee-offset),0,0); }
}

/* === BRAND LOGOS === */
.brands-section { padding: 60px 0; border-bottom: 1px solid var(--clr-border); overflow: hidden; }
.brands-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--clr-text-dim);
  margin-bottom: 32px; text-align: center;
}
.brands-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 48px);
  flex-wrap: nowrap;
  overflow: visible;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.brand-logo-item {
  padding: 10px 8px;
  border-right: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans-normal);
  cursor: default;
  flex: 0 1 140px;
  min-width: 0;
}
.brand-logo-item:last-child { border-right: none; }
.brand-logo-item:hover { background: var(--clr-card); }
.brand-logo-item img {
  height: 38px; max-width:130px; width:100%; object-fit:contain;
  filter: none;
  transition: transform var(--trans-normal);
}
.brand-logo-item:hover img { transform: scale(1.02); }
.brand-name-text {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 2px;
  color: var(--clr-border-light);
  transition: color var(--trans-normal);
}
.brand-logo-item:hover .brand-name-text { color: var(--clr-blue); }

.partners-strip { padding: 20px; }
.partners-strip .partners-inner { display:flex; justify-content:center; align-items:stretch; gap:48px; flex-wrap:nowrap; width:100%; max-width:1100px; margin:0 auto; }
.partners-strip .partner-logo-item { flex: 1 1 0; display:flex; align-items:center; justify-content:center; padding: 0 12px; border-right: 1px solid var(--clr-border); min-width: 0; height:120px; box-sizing:border-box; }
.partners-strip .partner-logo-item:last-child { border-right: none; }
.partners-strip img { max-height:80px; max-width:80%; width:100%; height:auto; object-fit:contain; display:block; margin:auto; }
.partner-name { display:none; }
.partners-strip-scroll {
  overflow: hidden;
}
.partners-strip-scroll .partners-inner {
  width: max-content;
  max-width: none;
  justify-content: flex-start;
  gap: 0;
  --marquee-offset: -50%;
  animation: partnersMarquee 28s linear infinite;
  animation-play-state: paused;
  direction: ltr;
  unicode-bidi: isolate;
  will-change: transform;
}
body.marquees-ready .partners-strip-scroll .partners-inner {
  animation-play-state: running;
}
body.marquees-ready .partners-strip-scroll:hover .partners-inner {
  animation-play-state: paused;
}
.partners-strip-scroll .partner-logo-item {
  flex: 0 0 clamp(140px, 16vw, 190px);
  height: 118px;
  padding: 0 22px;
  border-right: 1px solid var(--clr-border);
  margin-inline-end: 24px;
}
.partners-strip-scroll .partner-logo-item:nth-child(5),
.partners-strip-scroll .partner-logo-item:last-child {
  border-right: 1px solid var(--clr-border);
}
.partners-strip-scroll img {
  max-width: 100%;
}
@keyframes partnersMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(var(--marquee-offset),0,0); }
}
@media (max-width:1000px) {
  .partners-strip img { max-height:64px; }
  .partners-strip .partners-inner { gap:32px; }
  .partners-strip-scroll .partners-inner { gap: 0; }
  .partners-strip-scroll .partner-logo-item { margin-inline-end: 20px; }
  .brands-track {
    flex-wrap: wrap;
    gap: 18px 28px;
  }
  .brand-logo-item {
    flex-basis: 132px;
  }
}
@media (max-width:600px) {
  .partners-strip img { max-height:40px; }
  .partners-strip .partners-inner { gap:16px; }
  .partners-strip-scroll {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .partners-strip-scroll .partner-logo-item {
    flex-basis: 136px;
    height: 96px;
    padding: 0 14px;
  }
  .brands-track {
    gap: 14px 18px;
  }
  .brand-logo-item {
    flex: 0 1 118px;
  }
}

/* === ABOUT INTRO === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-intro-visual {
  position: relative;
}
.about-intro-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-intro-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--clr-bg-3), var(--clr-card));
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  border: 1px solid var(--clr-border);
}
.about-intro-img-placeholder i {
  font-size: 3rem; color: var(--clr-text-dim);
}
.about-badge-float {
  position: absolute; bottom: 30px; right: -20px;
  background: var(--grad-brand-135);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-accent), var(--shadow-blue);
}
.about-badge-float .num {
  font-family: var(--font-display);
  font-size: 2.2rem; color: #fff;
}
.about-badge-float .lbl {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.about-intro-content { display: flex; flex-direction: column; gap: 24px; }
.about-intro-content p { font-size: 1.05rem; line-height: 1.85; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: var(--clr-bg-2);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--clr-blue);
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--clr-blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-blue); font-size: 1rem;
  flex-shrink: 0;
}
.about-feature-text h5 {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 4px;
}
.about-feature-text p {
  font-size: 0.85rem; line-height: 1.6; margin: 0;
}

/* === STATS SECTION === */
.stats-section {
  background: var(--clr-dark-surface);
  border-top: none;
  border-bottom: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--clr-border);
}
.stat-card {
  padding: 50px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: background var(--trans-normal);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--clr-dark-surface-2); }
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform var(--trans-normal);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-value {
  font-family: var(--font-display);
  font-size: 3.5rem; letter-spacing: 3px;
  color: #ffffff;
  line-height: 1;
}
.stat-value .accent { color: var(--clr-accent); }
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
}
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  font-size: 1.8rem; color: rgba(255,255,255,0.15);
  margin-bottom: 16px;
  line-height: 1;
}

/* === PRODUCTS (HOMEPAGE FEATURED) === */
.product-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--trans-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  border-color: var(--clr-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--clr-blue-glow);
}
.product-card-img {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-bg-2));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img img {
    width: 100%; height: 100%;
    object-fit: contain; padding: clamp(18px, 7%, 34px);
    filter: drop-shadow(0 12px 13px rgba(25, 28, 34, .18));
    transition: transform var(--trans-slow);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-image-open-area { position:absolute; inset:0; z-index:1; border:0; background:transparent; cursor:pointer; }
.product-image-zoom-trigger { position:absolute; right:14px; bottom:14px; z-index:3; width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.9); background:rgba(17,17,17,.82); color:#fff; display:grid; place-items:center; cursor:zoom-in; box-shadow:0 8px 24px rgba(0,0,0,.22); opacity:0; transform:translateY(6px); transition:opacity .2s ease,transform .2s ease,background .2s ease; }
.product-card:hover .product-image-zoom-trigger,.product-image-zoom-trigger:focus-visible { opacity:1; transform:none; }
.product-image-zoom-trigger:hover { background:var(--clr-accent); color:#111; }
.product-variant-chevron { position:absolute; top:50%; z-index:5; width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.92); background:rgba(255,255,255,.9); color:#222; display:grid; place-items:center; transform:translateY(-50%); box-shadow:0 5px 18px rgba(0,0,0,.16); opacity:0; transition:opacity .18s ease,background .18s ease,color .18s ease,transform .18s ease; }
.product-variant-prev { left:12px; }
.product-variant-next { right:12px; }
.product-card:hover .product-variant-chevron,.product-variant-chevron:focus-visible { opacity:1; }
.product-variant-chevron:hover { background:var(--clr-accent); color:#111; transform:translateY(-50%) scale(1.06); }
.product-variant-size { position:absolute; left:50%; bottom:14px; z-index:4; transform:translateX(-50%); min-width:42px; padding:4px 9px; border-radius:999px; background:rgba(17,17,17,.82); color:#fff; font-size:.72rem; font-weight:800; text-align:center; box-shadow:0 5px 16px rgba(0,0,0,.17); }
.product-image-zoom-trigger:focus-visible,.product-image-open-area:focus-visible { outline:3px solid var(--clr-accent); outline-offset:-4px; }
.product-card-badge,.product-wishlist-floating { z-index:4; }
.product-image-error .product-image-open-area,.product-image-error .product-image-zoom-trigger { display:none; }
.product-card-img-placeholder {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--clr-blue-light), var(--clr-bg-2));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.product-card-img-placeholder i { font-size: 2.5rem; color: var(--clr-blue); opacity: 0.4; }
.product-card-badge {
  position: absolute; top: 14px; left: 14px;
}
.product-card-body { padding: 22px 24px 24px; }
.product-card-brand {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--clr-blue);
  margin-bottom: 8px;
}
.product-card-name {
  font-size: 1.05rem; font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-card-grade {
  display: inline-block;
  padding: 3px 9px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  font-size: 0.72rem; font-weight: 600;
  color: var(--clr-silver-dark);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.product-card-desc {
  font-size: 0.85rem; color: var(--clr-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.product-card-actions .btn {
  justify-content: center;
  width: 100%;
}
.product-cart-btn.active {
  background: var(--clr-accent-dark);
  box-shadow: none;
}
.product-wishlist-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--clr-border-light);
  background: rgba(255,255,255,0.92);
  color: var(--clr-text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
  box-shadow: var(--shadow-sm);
}
.product-wishlist-btn:hover,
.product-wishlist-btn.active {
  border-color: var(--clr-accent);
  color: var(--clr-accent-dark);
  background: var(--clr-accent-glow);
}
.product-wishlist-floating {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.why-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--trans-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--trans-normal);
}
.why-card:hover {
  border-color: var(--clr-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px; height: 56px;
  background: var(--clr-blue-light);
  border: 1px solid rgba(201,162,39,0.20);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--clr-blue);
  margin-bottom: 20px;
  transition: all var(--trans-normal);
}
.why-card:hover .why-icon {
  background: var(--clr-blue);
  color: #ffffff;
  border-color: var(--clr-blue);
}
.why-card h4 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; line-height: 1.7; }

/* === RETAILER CTA === */
.retailer-cta {
  background: var(--clr-dark-surface);
  position: relative; overflow: hidden;
}
.retailer-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 5%  50%, rgba(201,162,39,0.22) 0%, transparent 50%),
    radial-gradient(circle at 95% 50%, rgba(201,162,39,0.10) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 60px,
      rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px
    );
}
.retailer-cta::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
/* Force text white in CTA section */
.retailer-cta .cta-text h2,
.retailer-cta .cta-text h3 { color: #ffffff !important; }
.retailer-cta .cta-text p   { color: rgba(255,255,255,0.70) !important; }
.retailer-cta .section-label { color: rgba(255,255,255,0.55) !important; }
.cta-content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.cta-text h2 { margin-bottom: 16px; }
.cta-text p { font-size: 1.05rem; max-width: 550px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.cta-note {
  font-size: 0.78rem; color: var(--clr-text-dim);
  display: flex; align-items: center; gap: 6px;
}

/* === FOOTER === */
footer {
  background: var(--clr-dark-surface);
  border-top: none;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
/* White text overrides inside dark footer */
footer h5, footer .footer-brand p,
footer .footer-contact-text { color: rgba(255,255,255,0.65) !important; }
footer h5 { color: rgba(255,255,255,0.9) !important; }
footer .footer-copy, footer .footer-legal a { color: rgba(255,255,255,0.35) !important; }
footer .footer-copy span { color: var(--clr-accent) !important; }
footer .footer-legal a:hover { color: rgba(255,255,255,0.7) !important; }
footer .footer-contact-icon { color: var(--clr-accent) !important; }
.footer-brand p {
  font-size: 0.9rem; line-height: 1.75;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-dim); font-size: 0.9rem;
  transition: all var(--trans-fast);
}
.social-link:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  background: var(--clr-accent-glow);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color var(--trans-fast);
  display: flex; align-items: center; gap: 6px;
}
.footer-link::before {
  content: '›'; color: var(--clr-accent);
  font-size: 1rem; line-height: 1;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-icon {
  color: var(--clr-accent); font-size: 0.9rem;
  margin-top: 3px; flex-shrink: 0;
}
.footer-contact-text {
  font-size: 0.88rem; color: var(--clr-text-dim);
  line-height: 1.6;
}
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-size: 0.82rem; color: var(--clr-text-dim);
}
.footer-copy span { color: var(--clr-accent); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.8rem; color: var(--clr-text-dim);
  transition: color var(--trans-fast);
}
.footer-legal a:hover { color: var(--clr-text); }

/* === PAGE HERO (Inner pages) === */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--clr-blue-light) 0%, #ffffff 60%);
  border-bottom: 1px solid var(--clr-border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--clr-text-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--clr-text-dim); transition: color var(--trans-fast); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb-sep { color: var(--clr-text-dim); }
.breadcrumb-current { color: var(--clr-accent); }

/* === ANIMATIONS === */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* === MODAL === */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(14,28,63,0.70);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: all var(--trans-normal);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.92);
  transition: transform var(--trans-normal);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-muted); font-size: 1rem;
  transition: all var(--trans-fast);
}
.modal-close:hover { background: var(--clr-accent); color: #fff; }
.modal-body { padding: 28px 32px; }
.modal-footer {
  padding: 20px 32px 28px;
  border-top: 1px solid var(--clr-border);
  display: flex; gap: 12px; justify-content: flex-end;
}
.modal-footer .btn.active {
  border-color: var(--clr-accent);
  color: var(--clr-accent-dark);
  background: var(--clr-accent-glow);
}

/* === PUBLIC CART / WISHLIST DRAWER === */
.shop-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  background: rgba(26,26,26,0.48);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-normal);
}
.shop-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.shop-drawer {
  width: min(460px, 100%);
  height: 100%;
  margin-left: auto;
  background: var(--clr-white);
  box-shadow: var(--shadow-lg);
  border-left: 1px solid var(--clr-border);
  transform: translateX(100%);
  transition: transform var(--trans-normal);
  display: flex;
  flex-direction: column;
}
.shop-drawer-overlay.open .shop-drawer { transform: translateX(0); }
.shop-drawer-header {
  padding: 28px;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.shop-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--clr-border);
}
.shop-tab {
  padding: 14px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clr-text-muted);
  border-bottom: 3px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--trans-fast);
}
.shop-tab.active {
  color: var(--clr-blue);
  border-bottom-color: var(--clr-accent);
  background: var(--clr-accent-glow);
}
.shop-tab span {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--clr-blue);
  color: var(--clr-white);
  font-size: 0.68rem;
  line-height: 18px;
}
.shop-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.shop-line-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.shop-line-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-card);
}
.shop-line-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--clr-blue-light);
  color: var(--clr-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.shop-line-image {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-white);
}
.shop-line-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.shop-line-image i {
  color: var(--clr-blue);
  font-size: 1.25rem;
}
.shop-line-price {
  margin-top: 4px;
  color: var(--clr-text);
  font-size: .82rem;
  font-weight: 800;
}
.shop-line-brand {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
}
.shop-line-name {
  font-weight: 800;
  line-height: 1.3;
  color: var(--clr-text);
}
.shop-line-meta {
  font-size: 0.78rem;
  color: var(--clr-text-dim);
  margin-top: 3px;
}
.shop-line-controls,
.shop-line-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.shop-line-controls button:not(.shop-remove) {
  width: 30px;
  height: 30px;
  border: 1px solid var(--clr-border-light);
  border-radius: 50%;
  color: var(--clr-blue);
  background: var(--clr-white);
  font-weight: 800;
}
.shop-line-controls span {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
}
.shop-remove {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text-dim);
  padding: 4px 0;
}
.shop-remove:hover { color: var(--clr-accent-dark); }
.shop-summary {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-bg-2);
}
.shop-summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--clr-text);
  margin-bottom: 10px;
}
.shop-summary p {
  font-size: 0.84rem;
  margin-bottom: 16px;
}
.shop-cost-breakdown {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 14px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.shop-cost-breakdown > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: var(--clr-text-muted);
  font-size: .86rem;
}
.shop-cost-breakdown strong {
  color: var(--clr-text);
  text-align: right;
  font-size: .82rem;
}
.shop-cost-breakdown .shop-cost-total {
  margin-top: 5px;
  padding-top: 11px;
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}
.shop-cost-breakdown .shop-cost-total strong { color: var(--clr-accent-dark); font-size: .95rem; }
.shop-price-note { display: block; margin: -6px 0 12px; color: var(--clr-text-dim); font-size: .7rem; }
.shop-checkout-form {
  display: grid;
  gap: 12px;
}
.shop-payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.shop-payment-option {
  display: block;
  cursor: pointer;
}
.shop-payment-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  clip-path: inset(50%);
  pointer-events: none;
}
.shop-payment-option span {
  min-height: 116px;
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  row-gap: 6px;
  align-items: start;
  padding: 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-white);
  color: var(--clr-text);
  transition: border-color var(--trans-fast), background var(--trans-fast), box-shadow var(--trans-fast);
}
.shop-payment-option i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-blue-light);
  color: var(--clr-blue);
  font-size: 1.05rem;
  grid-row: 1 / 3;
}
.shop-payment-option strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--clr-text);
  grid-column: 2;
}
.shop-payment-option small {
  display: block;
  margin-top: 3px;
  color: var(--clr-text-dim);
  font-size: 0.82rem;
  line-height: 1.55;
  grid-column: 2;
}
.shop-payment-option input:checked + span {
  border-color: var(--clr-accent);
  background: var(--clr-accent-glow);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}
.shop-checkout-field {
  display: grid;
  gap: 6px;
}
.shop-checkout-field span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.shop-checkout-field .form-control {
  padding: 11px 13px;
  font-size: 0.88rem;
}
.btn:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}
.shop-empty {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 28px 12px;
}
.shop-empty i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--clr-accent-glow);
  color: var(--clr-accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.shop-empty p {
  max-width: 290px;
  font-size: 0.9rem;
}

/* === PRODUCT MODAL === */
.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px; align-items: start;
}
.product-modal-img {
  aspect-ratio: 1/1;
  background: var(--clr-bg-2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.product-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.product-modal-img.zoom-enabled {
  cursor: zoom-in;
}
.product-modal-zoom-lens {
  position: absolute;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 2px solid rgba(201,162,39,0.82);
  background-color: #ffffff;
  background-repeat: no-repeat;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22), inset 0 0 0 1px rgba(255,255,255,0.9);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
  transition: opacity var(--trans-fast), transform var(--trans-fast);
  z-index: 3;
}
.product-modal-img.zoom-active .product-modal-zoom-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.product-modal-img.zoom-active::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,162,39,0.28);
  pointer-events: none;
}
.product-modal-img > i { font-size: 4rem; color: var(--clr-text-dim); }
.product-modal-img > img { filter:drop-shadow(0 16px 18px rgba(25,28,34,.2)); }
.product-modal-zoom-hint { position:absolute; right:8px; top:8px; z-index:4; display:inline-flex; align-items:center; gap:4px; min-height:28px; padding:4px 7px; border:1px solid var(--clr-border); border-radius:7px; background:rgba(255,255,255,.95); color:var(--clr-blue); font:inherit; font-size:.62rem; line-height:1; font-weight:700; cursor:zoom-in; box-shadow:0 3px 10px rgba(0,0,0,.1); transition:color .15s ease,border-color .15s ease,transform .15s ease; }
.product-modal-zoom-hint i { font-size:.72rem; color:inherit; }
.product-modal-zoom-hint:hover,.product-modal-zoom-hint:focus-visible { color:var(--clr-accent-dark); border-color:var(--clr-accent); transform:translateY(-1px); outline:none; }
body.product-image-viewer-open { overflow:hidden !important; }
.product-image-viewer { position:fixed; inset:0; z-index:10000; display:grid; grid-template-rows:auto 1fr; background:rgba(7,9,12,.94); opacity:0; visibility:hidden; transition:opacity .2s ease,visibility .2s ease; backdrop-filter:blur(10px); }
.product-image-viewer.open { opacity:1; visibility:visible; }
.product-image-viewer-toolbar { min-height:68px; padding:10px clamp(12px,3vw,36px); display:flex; align-items:center; justify-content:space-between; gap:18px; color:#fff; border-bottom:1px solid rgba(255,255,255,.14); background:rgba(10,12,15,.88); }
.product-image-viewer-title { font-weight:700; line-height:1.3; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.product-image-viewer-controls { display:flex; align-items:center; gap:8px; flex:0 0 auto; }
.product-image-viewer-controls button { width:42px; height:42px; border-radius:50%; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.08); color:#fff; display:grid; place-items:center; cursor:pointer; }
.product-image-viewer-controls button:hover { background:var(--clr-accent); color:#111; }
.product-image-viewer-controls button:focus-visible { outline:3px solid var(--clr-accent); outline-offset:2px; }
#productImageViewerLevel { min-width:54px; text-align:center; font-variant-numeric:tabular-nums; font-size:.82rem; }
.product-image-viewer-stage { position:relative; overflow:hidden; display:grid; place-items:center; touch-action:none; cursor:zoom-in; user-select:none; background:radial-gradient(circle at 50% 45%,#fff 0%,#f5f2eb 64%,#e6e0d6 100%); }
.product-image-viewer.is-zoomed .product-image-viewer-stage { cursor:grab; }
.product-image-viewer.is-zoomed .product-image-viewer-stage:active { cursor:grabbing; }
.product-image-viewer-stage img { width:min(88vw,1100px); height:min(82vh,1100px); object-fit:contain; filter:drop-shadow(0 22px 24px rgba(25,28,34,.24)); transform-origin:center; will-change:transform; transition:transform .09s linear; -webkit-user-drag:none; }
.product-image-viewer-loading { display:none; position:absolute; z-index:2; color:#fff; gap:9px; align-items:center; }
.product-image-viewer.loading .product-image-viewer-loading { display:flex; }
.product-image-viewer.loading .product-image-viewer-stage img { opacity:0; }
html[dir="rtl"] .product-modal-zoom-hint { right:auto; left:8px; }
.product-specs { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.spec-row {
  display: flex; justify-content: space-between;
  padding: 10px 14px;
  background: var(--clr-bg-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border);
}
#modalName,
#modalDesc { unicode-bidi:plaintext; }
#modalDesc[dir="rtl"] { text-align:right; }
#modalDesc[dir="ltr"] { text-align:left; }
.product-specs,
.product-specs .spec-row { direction:ltr; }
.product-specs .spec-key { text-align:left; }
.product-specs .spec-val { text-align:right; unicode-bidi:isolate; }
.spec-key {
  font-size: 0.8rem; color: var(--clr-text-muted);
  font-weight: 500;
}
.spec-val {
  font-size: 0.8rem; color: var(--clr-blue);
  font-weight: 700;
}
.product-datasheet-action { margin-top:12px; display:inline-flex; align-items:center; justify-content:center; gap:7px; min-height:38px; padding:9px 13px; border:1px solid var(--clr-blue); border-radius:var(--radius-sm); color:var(--clr-blue); background:#fff; font-size:.78rem; font-weight:700; text-decoration:none; transition:background .15s ease,color .15s ease,transform .15s ease; }
.product-datasheet-action:hover,.product-datasheet-action:focus-visible { background:var(--clr-blue); color:#fff; transform:translateY(-1px); }
.product-datasheet-action i { color:inherit; }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: var(--clr-text);
  font-size: 0.95rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--clr-blue);
  box-shadow: 0 0 0 3px var(--clr-blue-glow);
}
.form-control::placeholder { color: var(--clr-text-dim); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* === TAGS / FILTER CHIPS === */
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 7px 16px;
  border: 1.5px solid var(--clr-border);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--trans-fast);
  background: var(--clr-white);
}
.chip:hover { border-color: var(--clr-blue); color: var(--clr-blue); }
.chip.active {
  background: var(--clr-blue);
  border-color: var(--clr-blue);
  color: #fff;
}

/* === CARD BASE === */
.card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .hero-stat {
    min-width: 0;
    padding: 18px 20px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-py: 70px;
    --hero-top-padding: clamp(96px, 12vh, 128px);
  }
  .navbar { padding: 0 20px; }
  .navbar-nav, .navbar-actions .btn { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-visual { order: -1; }
  .about-badge-float { right: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-content { grid-template-columns: 1fr; }
  .cta-actions { align-items: flex-start; }
  .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stat { border-left: 1px solid var(--clr-border); border-top: 1px solid var(--clr-border); }
  .hero-stat:nth-child(odd) { border-left: none; }
  .hero-stat:nth-child(-n+2) { border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-img.zoom-enabled {
    cursor: default;
  }
  .product-modal-zoom-lens {
    display: none;
  }
  .shop-nav-btn {
    width: 40px;
    height: 40px;
  }
  #galleryPreview {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .product-image-zoom-trigger { opacity:1; transform:none; width:40px; height:40px; }
  .product-variant-chevron { opacity:1; width:36px; height:36px; }
  .product-image-viewer-toolbar { align-items:flex-start; }
  .product-image-viewer-title { font-size:.78rem; padding-top:12px; max-width:30vw; }
  .product-image-viewer-controls { gap:4px; }
  .product-image-viewer-controls button { width:38px; height:38px; }
  #productImageViewerLevel { min-width:42px; font-size:.7rem; }
  .product-image-viewer-stage img { width:94vw; height:78vh; }
  :root {
    --section-py: 56px;
    --hero-top-padding: 88px;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card {
    padding: 32px 16px;
  }
  .stat-value {
    font-size: 2.5rem;
  }
  .brand-logo-item { padding: 8px 6px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 2.8rem; }
  .hero {
    min-height: auto;
    padding-bottom: 44px;
  }
  .hero-content,
  .hero-desc {
    max-width: 100%;
  }
  .hero-actions,
  .hero-actions .btn,
  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }
  .hero-stats {
    width: 100%;
  }
  .hero-stat {
    padding: 16px 10px;
  }
  .hero-stat-value {
    font-size: 1.65rem;
  }
  .hero-stat-label {
    font-size: 0.66rem;
    letter-spacing: 1.2px;
  }
  .page-hero {
    padding: 112px 0 56px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-label {
    letter-spacing: 2px;
  }
  .section-label::before,
  .section-label::after {
    width: 18px;
  }
  [data-aos],
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translateY(18px);
  }
  [data-aos].aos-animate,
  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate {
    transform: translateY(0);
  }
  #galleryPreview {
    grid-template-columns: 1fr !important;
  }
  .ticker-wrap { display: none; }
  .modal-footer {
    flex-direction: column;
  }
  .modal-footer .btn,
  .modal-footer a {
    width: 100%;
    justify-content: center;
  }
  .shop-drawer-header,
  .shop-drawer-body {
    padding: 20px;
  }
  .shop-line-item {
    grid-template-columns: 48px 1fr;
    padding: 12px;
  }
  .shop-line-icon {
    width: 48px;
    height: 48px;
  }
  .shop-payment-options {
    grid-template-columns: 1fr;
  }
}

/* === NOTIFICATION === */
.notification {
  position: fixed; bottom: 24px; right: 24px; z-index: 3000;
  background: var(--clr-card);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: all var(--trans-normal);
  max-width: 340px;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification-icon { font-size: 1.1rem; }
.notification-icon.success { color: #4ade80; }
.notification-icon.error { color: var(--clr-accent); }
.notification-text { font-size: 0.88rem; color: var(--clr-text); }

/* === LANGUAGE / RTL SUPPORT === */
.language-toggle {
  min-height: 36px;
  padding: 7px 12px;
  border: 1.5px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  background: var(--clr-white);
  color: var(--clr-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--trans-fast);
}
.language-toggle:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent-dark);
  background: var(--clr-accent-glow);
  transform: translateY(-1px);
}
.mobile-actions .language-toggle {
  width: 100%;
}
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .navbar-inner,
html[dir="rtl"] .navbar-nav,
html[dir="rtl"] .navbar-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .cta-actions,
html[dir="rtl"] .footer-social,
html[dir="rtl"] .admin-actions,
html[dir="rtl"] .header-actions {
  direction: rtl;
}
html[dir="rtl"] .navbar-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-social,
html[dir="rtl"] .admin-actions,
html[dir="rtl"] .header-actions {
  flex-direction: row-reverse;
}
html[dir="rtl"] .mobile-nav,
html[dir="rtl"] .mobile-actions,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .about-features,
html[dir="rtl"] .order-items,
html[dir="rtl"] .shop-line-list {
  direction: rtl;
}
html[dir="rtl"] .nav-link::after {
  left: 14px;
  right: 14px;
}
html[dir="rtl"] .section-label::before,
html[dir="rtl"] .hero-eyebrow::before {
  order: 2;
}
html[dir="rtl"] .section-label::after {
  order: -1;
}
html[dir="rtl"] .hero-content,
html[dir="rtl"] .page-hero-content,
html[dir="rtl"] .section-header,
html[dir="rtl"] .cta-text,
html[dir="rtl"] .contact-info-card,
html[dir="rtl"] .contact-form-card,
html[dir="rtl"] .dash-section,
html[dir="rtl"] .admin-panel {
  text-align: right;
}
html[dir="rtl"] .hero-bottom {
  direction: rtl;
}
html[dir="rtl"] .hero h1 {
  line-height: 1.16;
  padding-block: 4px 8px;
}
html[dir="rtl"] .hero h1 span {
  display: inline-block;
  padding-block: 0.04em;
}
html[dir="rtl"] .hero-desc {
  max-width: 620px;
}
[data-ar-only] {
  display: none;
}
html[dir="rtl"] [data-ar-only] {
  display: block;
}
html[dir="rtl"] .section-separator {
  padding: 6px 0;
  background: var(--clr-bg);
}
html[dir="rtl"] .section-separator span {
  display: block;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.78), rgba(15,23,42,0.28), transparent);
}
html[dir="rtl"] .about-intro-grid,
html[dir="rtl"] .cta-content,
html[dir="rtl"] .footer-top,
html[dir="rtl"] .product-modal-grid,
html[dir="rtl"] .spec-row,
html[dir="rtl"] .shop-line-item,
html[dir="rtl"] .shop-payment-option span,
html[dir="rtl"] .checkout-shell,
html[dir="rtl"] .checkout-grid {
  direction: rtl;
}
html[dir="rtl"] .about-feature,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .contact-item,
html[dir="rtl"] .map-header,
html[dir="rtl"] .breadcrumb,
html[dir="rtl"] .ticker-item,
html[dir="rtl"] .shop-line-controls,
html[dir="rtl"] .shop-line-actions,
html[dir="rtl"] .checkout-cart-item,
html[dir="rtl"] .checkout-title-row,
html[dir="rtl"] .form-check,
html[dir="rtl"] .egypt-map-point {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer-link::before {
  content: '‹';
}
html[dir="rtl"] select.form-control {
  background-position: left 16px center;
}
html[dir="rtl"] .form-password-wrap .form-control {
  padding-right: 16px;
  padding-left: 44px;
}
html[dir="rtl"] .password-toggle {
  right: auto;
  left: 14px;
}
html[dir="rtl"] .modal-header,
html[dir="rtl"] .modal-footer,
html[dir="rtl"] .dash-section-header,
html[dir="rtl"] .admin-panel-header,
html[dir="rtl"] .admin-header,
html[dir="rtl"] .dashboard-header,
html[dir="rtl"] .hours-row,
html[dir="rtl"] .shop-summary-total,
html[dir="rtl"] .admin-setting-row {
  direction: rtl;
}
html[dir="rtl"] .data-table th,
html[dir="rtl"] .data-table td,
html[dir="rtl"] .admin-table th,
html[dir="rtl"] .admin-table td {
  text-align: right;
}
html[dir="rtl"] .products-layout,
html[dir="rtl"] .contact-layout,
html[dir="rtl"] .egypt-map-layout,
html[dir="rtl"] .journey-grid,
html[dir="rtl"] .admin-grid-2,
html[dir="rtl"] .dash-grid,
html[dir="rtl"] .order-form-grid,
html[dir="rtl"] .form-row {
  direction: rtl;
}
html[dir="rtl"] .brand-filter-row {
  direction: rtl;
  justify-content: flex-start;
}
html[dir="rtl"] .brand-filter-row > span:first-child {
  margin-right: 0 !important;
  margin-left: 8px;
}
html[dir="rtl"] .about-badge-float {
  right: auto;
  left: -10px;
}
html[dir="rtl"] .partners-strip-scroll .partners-inner,
html[dir="rtl"] .ticker {
  direction: rtl;
  animation-direction: normal;
  animation-name: ticker-rtl;
}
@keyframes ticker-rtl {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(calc(var(--marquee-offset) * -1),0,0); }
}
html[dir="rtl"] .ticker-item {
  direction: rtl;
  text-align: right;
  letter-spacing: 1px;
}
html[dir="rtl"] .notification {
  right: auto;
  left: 24px;
  direction: rtl;
}
html[dir="rtl"] .portal-page {
  flex-direction: row-reverse;
}
html[dir="rtl"] .portal-form-panel {
  border-left: none;
  border-right: 1px solid var(--clr-border);
}
html[dir="rtl"] .portal-feature,
html[dir="rtl"] .portal-visual-note,
html[dir="rtl"] .form-meta,
html[dir="rtl"] .sidebar-nav-item,
html[dir="rtl"] .sidebar-user,
html[dir="rtl"] .kpi-card,
html[dir="rtl"] .account-photo-editor {
  flex-direction: row-reverse;
}
html[dir="rtl"] .dashboard-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.06);
}
html[dir="rtl"] .dashboard-main {
  margin-left: 0;
  margin-right: 260px;
}
html[dir="rtl"] .sidebar-nav-badge {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .admin-sidebar {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.08);
}
html[dir="rtl"] .admin-main {
  margin-left: 0;
  margin-right: 280px;
}
html[dir="rtl"] .admin-nav-item {
  text-align: right;
  flex-direction: row-reverse;
}
html[dir="rtl"] .admin-receipt-brand {
  direction: rtl;
}
html[dir="rtl"] .admin-receipt-brand strong,
html[dir="rtl"] .admin-receipt-brand span {
  text-align: left;
}

@media (max-width: 900px) {
  html[dir="rtl"] .dashboard-main,
  html[dir="rtl"] .admin-main {
    margin-right: 0;
  }
}

@media (max-width: 800px) {
  html[dir="rtl"] .portal-page {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker,
  .partners-strip-scroll .partners-inner {
    animation: none !important;
    transform: none !important;
  }
}

/* Extra desktop navigation */
.navbar-actions > .btn { order: 1; }
.navbar-actions > .language-toggle { order: 2; }
.nav-more { position: relative; order: 3; display: flex; }
.navbar-actions > .hamburger { order: 4; }
.nav-more-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: #fff;
  color: var(--clr-blue);
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.nav-more-toggle:hover,
.nav-more.open .nav-more-toggle { border-color: var(--clr-accent); color: var(--clr-accent-dark); background: var(--clr-bg-2); }
.nav-more-menu {
  position: absolute;
  z-index: 1200;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(10,34,67,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.nav-more.open .nav-more-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-more-link { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 7px; color: var(--clr-blue); font-size: .78rem; font-weight: 700; white-space: nowrap; }
.nav-more-link:hover,
.nav-more-link.active { background: var(--clr-bg-2); color: var(--clr-accent-dark); }
html[dir="rtl"] .nav-more-menu { right: auto; left: 0; }
@media (max-width: 900px) { .nav-more { display: none; } }
