/*
Theme Name:   National Tech
Theme URI:    http://national-technology.local
Description:  National Technology Child Theme for Elementor implementation.
Author:       National Technology
Author URI:   http://national-technology.local
Template:     hello-elementor
Version:      1.0.0
Text Domain:  national-tech
*/

/* ═══════════════════════════════════════
   1. RESET & DESIGN TOKENS
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  color-scheme: light;
  --bg: #F7F2E8;
  --bg2: #EDE2D2;
  --bg3: rgba(255, 251, 245, 0.94);
  --bg-rgb: 247, 242, 232;
  --bg2-rgb: 237, 226, 210;
  --surface-rgb: 255, 251, 245;
  --gold: #0F8D86;
  --gold-lt: #19B7AE;
  --gold-dk: #0A6862;
  --accent-rgb: 15, 141, 134;
  --accent-contrast: #F7FBFA;
  --blue: #2F6FED;
  --blue-rgb: 47, 111, 237;
  --green: #22C55E;
  --red: #EF4444;
  --text: #15263A;
  --text-rgb: 21, 38, 58;
  --muted: #617284;
  --muted-rgb: 97, 114, 132;
  --border: rgba(21,38,58,.12);
  --bdr-gold: rgba(var(--accent-rgb),.26);
  --grid-line: rgba(21,38,58,.07);
  --header-bg: rgba(247,242,232,.88);
  --header-bg-strong: rgba(255,251,245,.96);
  --header-border: rgba(21,38,58,.09);
  --header-shadow: 0 18px 42px rgba(21,38,58,.12);
  --header-card-start: rgba(247,242,232,.92);
  --header-card-end: rgba(255,251,245,.98);
  --header-card-border: rgba(21,38,58,.10);
  --header-card-shadow: 0 14px 30px rgba(21,38,58,.10), inset 0 1px 0 rgba(255,255,255,.34);
  --header-card-start-strong: rgba(255,251,245,.96);
  --header-card-end-strong: rgba(255,251,245,.995);
  --header-card-border-strong: rgba(21,38,58,.12);
  --header-card-shadow-strong: 0 18px 38px rgba(21,38,58,.12), inset 0 1px 0 rgba(255,255,255,.28);
  --footer-start: #EFE4D4;
  --footer-end: #F8F3EA;
  --mobile-menu-start: #FBF5EC;
  --mobile-menu-end: #F0E5D6;
  --surface-elevated: rgba(255,251,245,.96);
  --surface-panel: rgba(255,245,232,.92);
  --overlay: rgba(16,22,32,.35);
  --shadow: 0 20px 60px rgba(21,38,58,.14);
  --shadow-soft: 0 12px 30px rgba(21,38,58,.10);
  --card-shadow: 0 18px 40px rgba(21,38,58,.10);
  --r: 14px;
  --r-lg: 20px;
  --ff: 'Cairo', sans-serif;

  /* Legacy/Duplicate tokens - mapping for compatibility */
  --primary-dark: var(--bg);
  --secondary-dark: var(--bg2);
  --gold-accent: var(--gold);
  --gold-hover: var(--gold-lt);
  --text-light: var(--text);
  --text-muted: var(--muted);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06080F;
  --bg2: #0A0E17;
  --bg3: rgba(17, 24, 39, 0.68);
  --bg-rgb: 6, 8, 15;
  --bg2-rgb: 10, 14, 23;
  --surface-rgb: 17, 24, 39;
  --gold: #C8943E;
  --gold-lt: #E5B96B;
  --gold-dk: #A07230;
  --accent-rgb: 200, 148, 62;
  --accent-contrast: #06080F;
  --blue: #2563EB;
  --blue-rgb: 37, 99, 235;
  --text: #EEF2FF;
  --text-rgb: 238, 242, 255;
  --muted: #B0B5C9;
  --muted-rgb: 176, 181, 201;
  --border: rgba(238,242,255,.07);
  --bdr-gold: rgba(var(--accent-rgb),.25);
  --grid-line: rgba(255,255,255,.025);
  --header-bg: rgba(6,8,15,.82);
  --header-bg-strong: rgba(6,8,15,.92);
  --header-border: rgba(var(--accent-rgb),.08);
  --header-shadow: 0 4px 30px rgba(0,0,0,.4);
  --header-card-start: rgba(8,11,19,.92);
  --header-card-end: rgba(10,14,23,.97);
  --header-card-border: rgba(27,36,53,.96);
  --header-card-shadow: 0 18px 34px rgba(0,0,0,.34), inset 0 1px 0 rgba(30,39,55,.72);
  --header-card-start-strong: rgba(8,11,19,.96);
  --header-card-end-strong: rgba(10,14,23,.99);
  --header-card-border-strong: rgba(34,43,62,.98);
  --header-card-shadow-strong: 0 22px 42px rgba(0,0,0,.40), inset 0 1px 0 rgba(32,42,60,.70);
  --footer-start: #0C1120;
  --footer-end: #06080F;
  --mobile-menu-start: #0C1120;
  --mobile-menu-end: #06080F;
  --surface-elevated: rgba(12,17,32,.97);
  --surface-panel: rgba(17,24,39,.45);
  --overlay: rgba(0,0,0,.6);
  --shadow: 0 20px 60px rgba(0,0,0,.5);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.3);
  --card-shadow: 0 18px 44px rgba(0,0,0,.3);
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════
   2. LAYOUT HELPERS
   ═══════════════════════════════════════ */
.r-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════════════════════════════════
   3. ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp   { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes floatY   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes spin     { to { transform:rotate(360deg) } }
@keyframes spinRev  { to { transform:rotate(-360deg) } }
@keyframes pulse    { 0%,100%{box-shadow:0 0 0 0 rgba(var(--accent-rgb),.5)} 50%{box-shadow:0 0 0 10px rgba(var(--accent-rgb),0)} }
@keyframes shimmer  { 0%{background-position:-400px 0} 100%{background-position:400px 0} }

.r-fade { opacity:0; transform:translateY(24px); transition:opacity .65s ease, transform .65s ease; }
.r-fade.in { opacity:1; transform:translateY(0); }
.r-d1 { transition-delay:.08s }
.r-d2 { transition-delay:.16s }
.r-d3 { transition-delay:.24s }
.r-d4 { transition-delay:.32s }
.r-d5 { transition-delay:.40s }
.r-d6 { transition-delay:.48s }

/* ═══════════════════════════════════════
   4. REUSABLE COMPONENTS
   ═══════════════════════════════════════ */

/* Badge pill */
.r-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(var(--accent-rgb),.08);
  border: 1px solid rgba(var(--accent-rgb),.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.r-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Section headings */
.r-htitle {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.r-hgold { color: var(--gold); }
.r-hsub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  line-height: 1.95;
  max-width: 600px;
}
.r-header-center { text-align: center; margin-bottom: 56px; }
.r-header-center .r-hsub { margin: 0 auto; }

/* Buttons */
.r-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  border-radius: var(--r);
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 800;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}
.r-btn-gold {
  background: var(--gold);
  color: var(--accent-contrast);
}
.r-btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(var(--accent-rgb),.35);
}
.r-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.r-btn-ghost:hover {
  border-color: var(--bdr-gold);
  background: rgba(var(--accent-rgb),.06);
  transform: translateY(-2px);
}
.r-btn-wa {
  background: #25D366;
  color: #fff;
}
.r-btn-wa:hover {
  background: #1dbc5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.3);
}
.r-btn-red {
  background: var(--red);
  color: #fff;
}
.r-btn-red:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(239,68,68,.35);
}

/* Divider line */
.r-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 20px;
}
.r-line-center { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   5. DIAGONAL SEPARATOR
   ═══════════════════════════════════════ */
.r-diag {
  height: 72px;
  position: relative;
  overflow: hidden;
}
.r-diag-a { background: var(--bg2); clip-path: polygon(0 0, 100% 50%, 100% 100%, 0 100%); }
.r-diag-b { background: var(--bg);  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); }

/* ═══════════════════════════════════════
   6. PAGE HERO (Inner Pages)
   ═══════════════════════════════════════ */
.r-page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.r-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.r-page-hero-glow-a {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.08) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.r-page-hero-glow-b {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--blue-rgb),.06) 0%, transparent 65%);
  bottom: -150px; left: -100px;
  pointer-events: none;
}

/* Breadcrumbs */
.r-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 14px;
  animation: fadeUp .6s ease both;
}
.r-breadcrumb a {
  color: var(--muted);
  transition: color .3s;
}
.r-breadcrumb a:hover { color: var(--text); }
.r-breadcrumb-sep { color: rgba(var(--text-rgb),.25); }
.r-breadcrumb-current { color: var(--gold-lt); font-weight: 700; }

.r-page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  animation: fadeUp .6s ease .12s both;
}
.r-page-hero p {
  font-size: clamp(14px, 1.7vw, 17px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 2;
  animation: fadeUp .6s ease .24s both;
}

/* ═══════════════════════════════════════
   7. ORBITAL VISUAL (Reusable)
   ═══════════════════════════════════════ */
.r-orbital {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .9s ease .4s both;
}
.r-orbital-ring {
  position: relative;
  width: 320px; height: 320px;
  border-radius: 50%;
}
.r-orbital-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.r-orbital-orbit-1 {
  width: 320px; height: 320px;
  border-color: rgba(var(--accent-rgb),.1);
}
.r-orbital-orbit-2 {
  width: 240px; height: 240px;
  border-color: rgba(37,99,235,.12);
}
.r-orbital-orbit-3 {
  width: 160px; height: 160px;
  border-color: rgba(var(--accent-rgb),.15);
  border-style: dashed;
  animation: spin 22s linear infinite;
}
.r-orbital-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  border: 1px solid rgba(var(--accent-rgb),.22);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 0 0 10px rgba(var(--accent-rgb),.04), var(--shadow);
  animation: floatY 5s ease-in-out infinite;
  z-index: 3;
}
.r-orbital-node {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg2);
  border: 1px solid var(--bdr-gold);
}
.r-orbital-node-1 {
  width: 40px; height: 40px;
  font-size: 16px;
  top: -20px; left: calc(50% - 20px);
  animation: spinRev 10s linear infinite;
  transform-origin: center calc(160px + 20px);
}
.r-orbital-node-2 {
  width: 34px; height: 34px;
  font-size: 13px;
  border-color: rgba(37,99,235,.3);
  bottom: -17px; left: calc(50% - 17px);
  animation: spinRev 14s linear infinite reverse;
  transform-origin: center calc(-143px + 17px);
}
.r-orbital-chip {
  position: absolute;
  background: var(--surface-elevated);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 12px;
  padding: 10px 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 4;
}
.r-orbital-chip-lbl { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.r-orbital-chip-val { font-size: 13px; font-weight: 800; color: var(--text); }

/* ═══════════════════════════════════════
   8. FORM STYLES
   ═══════════════════════════════════════ */
.r-input,
.r-select,
.r-textarea {
  width: 100%;
  padding: 13px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--ff);
  font-size: 14px;
  outline: none;
  transition: all .3s;
  direction: rtl;
}
.r-input:focus,
.r-select:focus,
.r-textarea:focus {
  border-color: var(--bdr-gold);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.08);
}
.r-input::placeholder,
.r-textarea::placeholder {
  color: var(--muted);
}
.r-textarea { min-height: 100px; resize: vertical; }
.r-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════
   9. TABLE STYLES
   ═══════════════════════════════════════ */
.r-table-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.r-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.r-table th {
  background: var(--bg3);
  padding: 16px 20px;
  font-weight: 800;
  color: var(--gold-lt);
  border-bottom: 1px solid var(--border);
  text-align: right;
}
.r-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.r-table tr:last-child td { border-bottom: none; }
.r-table tr:hover td { background: rgba(var(--accent-rgb),.03); }

/* ═══════════════════════════════════════
   10. RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .r-orbital { display: none; }
}
@media (max-width: 768px) {
  .r-page-hero { padding: 110px 0 60px; }
  .r-wrap { padding: 0 18px; }
}
@media (max-width: 576px) {
  .r-page-hero { padding: 100px 0 50px; }
  .r-btn { justify-content: center; }
}

/* ═══════════════════════════════════════
   11. ELEMENTOR OVERRIDE — إزالة المسافات البيضاء
   ═══════════════════════════════════════ */

/* خلفية الصفحة كلها تكون داكنة */
body,
body.elementor-page,
body.elementor-default {
  background: var(--bg) !important;
}

/* إزالة padding و margin من كل Elementor containers */
.elementor-section,
.elementor-element,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
.elementor-widget,
.elementor-widget-html,
.e-con,
.e-con-inner,
.e-child {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  gap: 0 !important;
}

/* الحفاظ على عرض كامل */
.elementor-section > .elementor-container,
.e-con {
  max-width: 100% !important;
  width: 100% !important;
}

/* إزالة أي فجوات بين الأقسام */
.elementor-section-wrap,
.elementor > .elementor-inner,
.elementor-inner > .elementor-section-wrap {
  gap: 0 !important;
}

/* تأكد إن الـ Custom HTML Widget ياخد العرض كامل */
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* === PREMIUM REDESIGN OVERRIDES === */
/* 1. Global Background & Ambient Glow */
body, body.elementor-page, body.elementor-default {
  background-color: var(--bg) !important;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(var(--accent-rgb), 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(var(--blue-rgb), 0.05) 0%, transparent 42%) !important;
  background-attachment: fixed !important;
}

/* 2. Unified surfaces for all Cards & Elements */
.r-about-card, .r-srv-card, .r-prod-card, .r-why-card, .r-art-card,
.r-story-vcard, .r-tl-item, .r-vmg-card, .r-cnt-form-box, .r-cnt-info-card, .r-table-wrap,
.r-pc-card, .r-fp-card, .r-sg-scard, .r-sg-product, .r-so-card, .r-so-banner, .r-shop-hero-stats {
  background: var(--surface-elevated) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-soft) !important;
  transition: all 0.35s ease !important;
}

/* Comfortable Hover States */
.r-about-card:hover, .r-srv-card:hover, .r-prod-card:hover, .r-why-card:hover,
.r-art-card:hover, .r-tl-item:hover, .r-vmg-card:hover, .r-cnt-info-card:hover,
.r-pc-card:hover, .r-fp-card:hover, .r-sg-product:hover, .r-so-card:hover {
  background: rgba(var(--surface-rgb), 0.99) !important;
  border-color: rgba(var(--accent-rgb), 0.24) !important;
  transform: translateY(-6px) !important;
  box-shadow: var(--card-shadow) !important;
}

/* Icons & Graphic accents glow */
.r-srv-icon, .r-prod-thumb, .r-why-icon, .r-art-thumb, .r-vmg-icon, .r-cnt-info-icon,
.r-pc-card-icon, .r-fp-img, .r-so-card-img {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-rgb), 0.02)) !important;
  box-shadow: inset 0 2px 2px rgba(255,255,255,0.05);
}

/* Shop Sidebar Hover Overrides */
.r-sg-scard:hover {
  border-color: rgba(var(--accent-rgb), 0.3) !important;
}

/* 3. Modernize Buttons */
.r-btn {
  border-radius: 999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}
.r-btn-gold, .r-so-banner-btn, .r-sg-price-btn, .r-sg-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt)) !important;
  color: #000 !important;
  font-weight: 900 !important;
  border: none !important;
}
.r-btn-gold:hover, .r-so-banner-btn:hover, .r-sg-price-btn:hover, .r-sg-cart-btn:hover {
  box-shadow: 0 10px 30px rgba(var(--accent-rgb),0.4) !important;
  transform: translateY(-2px) !important;
}

/* 4. Hero Visual Responsiveness & Fixes */
.r-hero-vis {
  perspective: 1000px;
}
.r-img-card {
  box-shadow: 0 20px 42px rgba(var(--text-rgb),0.16), 0 0 0 1px rgba(var(--accent-rgb),.14) !important;
}

/* Clamping Hero Image constraints for better tablet rendering */
@media (max-width: 1300px) and (min-width: 1101px) {
  .r-img-main { right: -40px !important; transform: scale(0.9); }
  .r-img-sub1 { left: -20px !important; transform: scale(0.9); }
  .r-img-sub2 { left: -40px !important; transform: scale(0.9); }
}

/* Badges & Pills */
.r-badge {
  background: rgba(var(--accent-rgb), 0.12) !important;
  border-color: rgba(var(--accent-rgb), 0.3) !important;
  backdrop-filter: blur(8px) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Lines */
.r-line {
  height: 4px !important;
  border-radius: 4px !important;
  background: linear-gradient(90deg, #E5B96B, #A07230, transparent) !important;
}

/* Diagonal separators with glass effect */
.r-diag-a { background: linear-gradient(to right, rgba(var(--bg2-rgb),0.98), rgba(var(--bg-rgb),0.98)) !important; backdrop-filter: blur(2px); }
.r-diag-b { background: linear-gradient(to right, rgba(var(--bg-rgb),0.98), rgba(var(--bg2-rgb),0.98)) !important; backdrop-filter: blur(2px); }

/* Remove harsh borders from header */
.r-header.r-scrolled {
  border-bottom: 1px solid var(--header-border) !important;
  background: var(--header-bg-strong) !important;
}

/* ═══════════════════════════════════════
   HEADER STYLES
   ═══════════════════════════════════════ */
.r-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all .4s ease;
  font-family: 'Cairo', sans-serif; direction: rtl;
}
.r-header.r-scrolled {
  background: rgba(6,8,15,.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(var(--accent-rgb),.08);
}
.r-header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.r-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.r-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #06080F;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb),.3);
}
.r-logo-text { display: flex; flex-direction: column; }
.r-logo-name { font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.2; }
.r-logo-tag { font-size: 11px; color: var(--muted); font-weight: 600; }
.r-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.r-nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; color: rgba(238,242,255,.75);
  text-decoration: none; font-size: 14px; font-weight: 600;
  font-family: 'Cairo', sans-serif; border-radius: 10px;
  transition: all .3s; white-space: nowrap;
}
.r-nav a:hover { background: rgba(238,242,255,.06); color: var(--text); }
.r-nav a.r-nav-active { background: rgba(var(--accent-rgb),.1); color: var(--gold-lt); }
.r-nav-cta { margin-right: 8px; }
.r-nav-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
  color: #06080F !important; padding: 10px 22px !important;
  border-radius: 999px !important; font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb),.3);
}
.r-nav-cta a:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(var(--accent-rgb),.4) !important; }
.r-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none; z-index: 1002;
}
.r-hamburger span { display: block; width: 26px; height: 3px; background: var(--text); border-radius: 3px; transition: all .3s; }
.r-hamburger.r-ham-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.r-hamburger.r-ham-open span:nth-child(2) { opacity: 0; }
.r-hamburger.r-ham-open span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }
.r-mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.6); z-index: 999;
  opacity: 0; transition: opacity .3s, visibility .3s;
  visibility: hidden;
}
.r-mob-overlay.r-mob-open { opacity: 1; visibility: visible; }
.r-mob-menu {
  display: none; position: fixed; top: 0; right: -300px;
  width: 280px; height: 100vh;
  background: linear-gradient(180deg, #0C1120, #06080F);
  border-left: 1px solid var(--border);
  z-index: 1001; padding: 80px 24px 32px;
  transition: right .3s; overflow-y: auto;
}
.r-mob-menu.r-mob-open { right: 0; }
.r-mob-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; color: rgba(238,242,255,.8);
  text-decoration: none; font-size: 15px; font-weight: 600;
  font-family: 'Cairo', sans-serif; border-radius: 12px;
  margin-bottom: 4px; transition: all .3s;
}
.r-mob-menu a:hover, .r-mob-menu a.r-nav-active { background: rgba(var(--accent-rgb),.08); color: var(--gold-lt); }
.r-mob-cta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.r-mob-cta a {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #06080F; text-align: center; justify-content: center;
  border-radius: 999px; font-weight: 700;
}
@media (max-width:992px) { .r-nav, .r-nav-cta { display: none; } .r-hamburger { display: flex; } .r-mob-overlay, .r-mob-menu { display: block; } }
@media (max-width:576px) { .r-logo-tag { display: none; } }

/* ═══════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════ */
.r-footer { background: linear-gradient(180deg, #0C1120, #06080F); color: rgba(238,242,255,.7); font-family: 'Cairo', sans-serif; direction: rtl; text-align: right; }
.r-footer-main { max-width: 1240px; margin: 0 auto; padding: 70px 28px 40px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.r-footer-col h4 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 20px; padding-bottom: 12px; position: relative; }
.r-footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }
.r-footer-about .r-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.r-footer-about .r-flogo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-dk)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 900; color: #06080F; }
.r-footer-about .r-flogo-name { font-size: 18px; font-weight: 800; color: var(--text); }
.r-footer-about p { font-size: 14px; line-height: 1.9; color: rgba(238,242,255,.5); margin-bottom: 20px; }
.r-footer-social { display: flex; gap: 10px; }
.r-footer-social a { width: 40px; height: 40px; background: rgba(238,242,255,.05); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .3s; text-decoration: none; }
.r-footer-social a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.r-footer-links { list-style: none; margin: 0; padding: 0; }
.r-footer-links li { margin-bottom: 10px; }
.r-footer-links a { display: inline-flex; align-items: center; gap: 8px; color: rgba(238,242,255,.5); text-decoration: none; font-size: 14px; font-weight: 500; font-family: 'Cairo', sans-serif; transition: all .3s; }
.r-footer-links a::before { content: '←'; font-size: 11px; opacity: 0; transform: translateX(5px); transition: all .3s; }
.r-footer-links a:hover { color: var(--gold); padding-right: 5px; }
.r-footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.r-footer-ci { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.r-footer-ci-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(238,242,255,.04); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.r-footer-ci-text { font-size: 14px; color: rgba(238,242,255,.5); line-height: 1.6; }
.r-footer-ci-text strong { display: block; color: rgba(238,242,255,.8); font-weight: 700; margin-bottom: 2px; }
.r-footer-bottom { max-width: 1240px; margin: 0 auto; padding: 20px 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.r-footer-copy { font-size: 13px; color: rgba(238,242,255,.3); }
.r-footer-copy a { color: var(--gold); text-decoration: none; }
.r-footer-blinks { display: flex; gap: 20px; }
.r-footer-blinks a { font-size: 13px; color: rgba(238,242,255,.3); text-decoration: none; font-family: 'Cairo', sans-serif; transition: color .3s; }
.r-footer-blinks a:hover { color: rgba(238,242,255,.7); }
.r-back-top { position: fixed; bottom: 100px; left: 24px; width: 48px; height: 48px; background: linear-gradient(135deg, var(--bg3), var(--bg2)); border: 1px solid var(--border); border-radius: 14px; color: var(--gold); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all .3s; z-index: 998; opacity: 0; pointer-events: none; transform: translateY(10px); }
.r-back-top.r-btt-vis { opacity: 1; pointer-events: auto; transform: translateY(0); }
.r-back-top:hover { transform: translateY(-3px); border-color: var(--bdr-gold); }
@media (max-width:992px) { .r-footer-main { grid-template-columns: repeat(2,1fr); gap: 32px; } }
@media (max-width:576px) { .r-footer-main { grid-template-columns: 1fr; gap: 28px; padding: 50px 18px 30px; } .r-footer-bottom { flex-direction: column; text-align: center; } }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT STYLES
   ═══════════════════════════════════════ */
.r-wa-float { position: fixed; bottom: 28px; left: 28px; z-index: 997; font-family: 'Cairo', sans-serif; direction: rtl; }
.r-wa-btn {
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #1da851);
  border-radius: 50%; text-decoration: none; color: #fff;
  font-size: 30px; position: relative;
  box-shadow: 0 6px 25px rgba(37,211,102,.4);
  transition: all .3s;
}
.r-wa-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 35px rgba(37,211,102,.5); }
.r-wa-btn::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 3px solid rgba(37,211,102,.3);
  animation: rWaPulse 2s ease-in-out infinite;
}
@keyframes rWaPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.15);opacity:.4} }
.r-wa-tooltip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--bg3); color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 12px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none; transition: all .3s;
}
.r-wa-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--bg3);
}
.r-wa-float:hover .r-wa-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.r-wa-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #06080F; font-weight: 700;
  animation: rWaBounce 2s ease infinite;
}
@keyframes rWaBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.r-wa-phone {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px; padding: 8px 16px;
  background: rgba(12, 17, 32, 0.95); border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 999px; color: var(--gold-lt);
  font-family: 'Cairo', sans-serif; font-size: 13px; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: all .3s; box-shadow: 0 4px 15px rgba(0,0,0,.3);
}
.r-wa-phone:hover { background: rgba(var(--accent-rgb),.15); border-color: var(--gold); color: var(--text); transform: translateY(-2px); }
@media (max-width:576px) { .r-wa-float { bottom: 20px; left: 16px; } .r-wa-btn { width: 52px; height: 52px; font-size: 26px; } .r-wa-tooltip { display: none; } .r-wa-phone { font-size: 11px; padding: 6px 12px; } }

/* ═══════════════════════════════════════
   FLOATING CART ICON (Shop/Products only)
   ═══════════════════════════════════════ */
.r-floating-cart {
  position: fixed;
  bottom: 100px; /* Positioned ABOVE WhatsApp icon (bottom:28px) */
  left: 28px;
  z-index: 9999;
}
.r-floating-cart a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--accent-contrast);
  border-radius: 50%;
  box-shadow: 0 6px 25px rgba(var(--accent-rgb),.4), inset 0 0 0 2px rgba(255,255,255,0.1);
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}
.r-floating-cart a:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 35px rgba(var(--accent-rgb),.5);
  color: #000;
}
.r-floating-cart a::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb),.25);
  animation: rCartPulse 2.5s ease-in-out infinite;
}
@keyframes rCartPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.12);opacity:.3} }
.r-floating-cart svg {
  width: 22px;
  height: 22px;
}
.r-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  font-family: 'Cairo', sans-serif;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #06080F;
  box-shadow: 0 2px 8px rgba(231,76,60,.4);
}
@media (max-width:576px) {
  .r-floating-cart { bottom: 84px; left: 16px; }
  .r-floating-cart a { width: 48px; height: 48px; }
  .r-floating-cart svg { width: 18px; height: 18px; }
}

/* ═══════════════════════════════════════
   SERVICES PAGE STYLES
   ═══════════════════════════════════════ */
.r-srv-overview { padding: 80px 0; background: var(--bg2); }
.r-so-header { text-align: center; margin-bottom: 50px; }
.r-so-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(var(--accent-rgb),.1); border: 1px solid rgba(var(--accent-rgb),.2); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--gold-lt); margin-bottom: 16px; }
.r-so-title { font-size: clamp(26px, 4vw, 36px); font-weight: 900; color: var(--text); margin-bottom: 14px; }
.r-so-sub { font-size: 16px; color: var(--muted); max-width: 680px; margin: 0 auto; line-height: 1.8; }
.r-so-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.r-so-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 24px; transition: all .35s; position: relative; overflow: hidden; }
.r-so-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dk)); transform: scaleX(0); transform-origin: right; transition: transform .4s; }
.r-so-card:hover { transform: translateY(-7px); box-shadow: 0 14px 35px rgba(0,0,0,.3); border-color: rgba(var(--accent-rgb),.25); }
.r-so-card:hover::before { transform: scaleX(1); }
.r-so-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; background: rgba(var(--accent-rgb),.08); transition: transform .3s; }
.r-so-card:hover .r-so-icon { transform: scale(1.1) rotate(-5deg); background: rgba(var(--accent-rgb),.15); }
.r-so-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin: 0; line-height: 1.6; }
.r-so-num { position: absolute; top: 16px; left: 16px; font-size: 34px; font-weight: 900; color: rgba(var(--text-rgb),.06); line-height: 1; transition: color .3s; }
.r-so-card:hover .r-so-num { color: rgba(var(--accent-rgb),.1); }
@media (max-width: 992px) { .r-so-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .r-so-grid { grid-template-columns: 1fr; } }

.r-sd-sec { padding: 90px 0; background: var(--bg); overflow: hidden; }
.r-sd-sec.alt { background: var(--bg2); }
.r-sd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.r-sd-grid.rev { direction: ltr; }
.r-sd-grid.rev .r-sd-text, .r-sd-grid.rev .r-sd-vis { direction: rtl; }
.r-sd-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(var(--accent-rgb),.1); border: 1px solid rgba(var(--accent-rgb),.2); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--gold-lt); margin-bottom: 16px; }
.r-sd-text h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; color: var(--text); margin-bottom: 20px; line-height: 1.3; }
.r-sd-text p { font-size: 15px; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.r-sd-list { list-style: none; padding: 0; margin: 0; }
.r-sd-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 18px; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; transition: all .3s; font-size: 14px; font-weight: 700; color: var(--text); }
.r-sd-list li:hover { transform: translateX(-5px); border-color: var(--bdr-gold); }
.r-sd-li-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(var(--accent-rgb),.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex: 0 0 32px; }
.r-sd-vis-card { background: var(--bg3); border-radius: 20px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.3); text-align: center; position: relative; }
.r-sd-visual-gallery { position: relative; height: 250px; margin: 0 auto 24px; max-width: 340px; }
.r-sd-visual-item { position: absolute; width: 154px; height: 154px; border-radius: 22px; overflow: hidden; background: linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(255,255,255,.06)); border: 1px solid rgba(var(--accent-rgb), .16); box-shadow: 0 22px 40px rgba(0,0,0,.2); }
.r-sd-visual-item img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 12px; }
.r-sd-visual-item-1 { top: 0; right: 14px; animation: floatY 6s ease-in-out infinite; }
.r-sd-visual-item-2 { left: 0; top: 42px; animation: floatY 7s ease-in-out infinite 1s; }
.r-sd-visual-item-3 { right: 0; bottom: 0; animation: floatY 5.5s ease-in-out infinite 1.8s; }
.r-sd-big-icon { font-size: 70px; display: block; margin-bottom: 20px; text-shadow: 0 10px 20px rgba(var(--accent-rgb),.2); }
.r-sd-vis-card h3 { font-size: 22px; font-weight: 800; color: var(--gold-lt); margin-bottom: 10px; }
.r-sd-vis-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 0; }
.r-sd-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 24px; }
.r-sd-stat { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.r-sd-snum { font-size: 24px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.r-sd-slbl { font-size: 12px; color: var(--muted); font-weight: 600; }
@media (max-width: 992px) { .r-sd-grid, .r-sd-grid.rev { grid-template-columns: 1fr; direction: rtl; } }
@media (max-width: 576px) { .r-sd-sec { padding: 60px 0; } .r-sd-vis-card { padding: 24px; } .r-sd-visual-gallery { height: 208px; max-width: 280px; } .r-sd-visual-item { width: 122px; height: 122px; } }

/* ═══════════════════════════════════════
   ABOUT PAGE STYLES
   ═══════════════════════════════════════ */
.r-story { padding: 100px 0; background: var(--bg2); overflow: hidden; }
.r-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.r-story-text h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 900; color: var(--text); margin-bottom: 16px; line-height: 1.35; }
.r-story-text p { font-size: 15px; color: var(--muted); line-height: 2; margin-bottom: 14px; }
.r-story-vcards { display: flex; flex-direction: column; gap: 14px; }
.r-story-vcard {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; transition: all .3s;
}
.r-story-vcard:hover { transform: translateY(-4px); border-color: var(--bdr-gold); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.r-story-vcard h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.r-story-vcard p { font-size: 14px; color: var(--muted); line-height: 1.8; }
.r-timeline { margin-top: 70px; }
.r-tl-title { text-align: center; font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 36px; }
.r-tl-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.r-tl-item {
  text-align: center; padding: 24px 16px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: all .3s;
}
.r-tl-item:hover { transform: translateY(-4px); border-color: var(--bdr-gold); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.r-tl-year { font-size: 28px; font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.r-tl-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 600; }
@media (max-width:992px) { .r-story-grid { grid-template-columns: 1fr; } .r-tl-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:576px) { .r-story { padding: 60px 0; } .r-tl-grid { grid-template-columns: 1fr; } }

.r-vmg { padding: 100px 0; background: var(--bg); }
.r-vmg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.r-vmg-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 26px; text-align: center; position: relative; overflow: hidden;
  transition: all .4s;
}
.r-vmg-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: right; transition: transform .4s; }
.r-vmg-card:hover::after { transform: scaleX(1); }
.r-vmg-card:hover { border-color: var(--bdr-gold); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.25); }
.r-vmg-icon { width: 70px; height: 70px; border-radius: 18px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 30px; background: rgba(var(--accent-rgb),.08); transition: transform .3s; }
.r-vmg-card:hover .r-vmg-icon { transform: scale(1.1) rotate(-5deg); }
.r-vmg-card h3 { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 12px; }
.r-vmg-card p { font-size: 14px; color: var(--muted); line-height: 2; }
@media (max-width:768px) { .r-vmg-grid { grid-template-columns: 1fr; } }

.r-about-why { padding: 100px 0; background: var(--bg2); }
.r-aw-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.r-aw-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: all .3s;
}
.r-aw-card:hover { border-color: var(--bdr-gold); transform: translateX(-4px); background: rgba(var(--accent-rgb),.03); }
.r-aw-ico {
  width: 50px; height: 50px; min-width: 50px; border-radius: 14px;
  background: rgba(var(--accent-rgb),.08); display: flex; align-items: center;
  justify-content: center; font-size: 22px; transition: transform .3s;
}
.r-aw-card:hover .r-aw-ico { transform: scale(1.1) rotate(-5deg); }
.r-aw-card h3 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.r-aw-card p { font-size: 13px; color: var(--muted); line-height: 1.85; }
@media (max-width:992px) { .r-aw-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:576px) { .r-about-why { padding: 60px 0; } .r-aw-grid { grid-template-columns: 1fr; } }

.r-about-stats { padding: 80px 0; background: var(--bg); position: relative; overflow: hidden; }
.r-about-stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--accent-rgb),.04) 0%, transparent 70%); pointer-events: none; }
.r-as-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; position: relative; z-index: 2; }
.r-as-card {
  text-align: center; padding: 36px 20px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: var(--r-lg); transition: all .3s;
}
.r-as-card:hover { border-color: var(--bdr-gold); transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.r-as-num { font-size: 42px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.r-as-lbl { font-size: 14px; color: var(--muted); font-weight: 600; }
@media (max-width:768px) { .r-as-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:576px) { .r-as-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   PRODUCTS PAGE STYLES
   ═══════════════════════════════════════ */
.r-prod-cats { padding: 100px 0; background: var(--bg2); }
.r-pc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.r-pc-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all .4s; text-align: center; text-decoration: none; display: block;
}
.r-pc-card:hover { transform: translateY(-7px); box-shadow: 0 20px 48px rgba(0,0,0,.3); border-color: rgba(var(--accent-rgb),.2); }
.r-pc-card-icon {
  width: 100%; padding: 40px 20px 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb),.06), transparent);
}
.r-pc-card-icon-image { min-height: 210px; background-size: cover; background-position: center; padding: 0; }
.r-pc-card-no-image .r-pc-card-body { min-height: 200px; display: flex; flex-direction: column; justify-content: center; }
.r-pc-card-body { padding: 22px 20px 28px; }
.r-pc-card h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.r-pc-card p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.r-pc-card-count {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; background: rgba(var(--accent-rgb),.08);
  border: 1px solid rgba(var(--accent-rgb),.15);
  border-radius: 999px; font-size: 12px; font-weight: 700; color: var(--gold-lt);
  transition: all .3s;
}
.r-pc-card:hover .r-pc-card-count { background: var(--gold); color: #06080F; border-color: var(--gold); }
@media (max-width:992px) { .r-pc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:576px) { .r-prod-cats { padding: 60px 0; } .r-pc-grid { grid-template-columns: 1fr; } }

.r-feat-prods { padding: 100px 0; background: var(--bg); }
.r-fp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.r-fp-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all .4s; text-align: center; position: relative;
}
.r-fp-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.3); border-color: rgba(var(--accent-rgb),.2); }
.r-fp-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue)); transform: scaleX(0); transition: transform .4s; z-index: 5; }
.r-fp-card:hover::before { transform: scaleX(1); }
.r-fp-img { padding: 32px 16px 20px; font-size: 48px; background: linear-gradient(180deg, rgba(var(--accent-rgb),.06), transparent); position: relative; }
.r-fp-badge { position: absolute; top: 10px; right: 10px; padding: 4px 12px; border-radius: 10px; font-size: 11px; font-weight: 700; backdrop-filter: blur(8px); background: rgba(var(--accent-rgb),.85); color: #fff; }
.r-fp-body { padding: 16px 18px 24px; }
.r-fp-card h3 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.r-fp-card h3 a { color: inherit; transition: color .3s; text-decoration: none; }
.r-fp-card h3 a:hover { color: var(--gold); }
.r-fp-price { font-size: 18px; font-weight: 900; color: var(--gold); margin-bottom: 12px; }
.r-fp-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: rgba(var(--accent-rgb),.09);
  border: 1px solid rgba(var(--accent-rgb),.18); color: var(--gold-lt);
  font-family: var(--ff); font-size: 12px; font-weight: 700;
  border-radius: 999px; transition: all .3s; cursor: pointer;
}
.r-fp-btn:hover { background: var(--gold); border-color: var(--gold); color: #06080F; }
@media (max-width:992px) { .r-fp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:576px) { .r-feat-prods { padding: 60px 0; } .r-fp-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════ */
.r-contact { padding: 60px 0 100px; background: var(--bg2); }
.r-cnt-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.r-cnt-form-box {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px; transition: all .3s;
}
.r-cnt-form-box h3 { font-size: 20px; font-weight: 900; color: var(--text); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.r-cnt-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.r-cnt-field { margin-bottom: 18px; }
.r-cnt-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #06080F; font-family: var(--ff); font-size: 16px; font-weight: 800;
  border: none; border-radius: var(--r); cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 15px rgba(var(--accent-rgb),.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.r-cnt-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--accent-rgb),.4); }
.r-cnt-note { margin-top: 12px; font-size: 12px; color: var(--muted); text-align: center; }
.r-cnt-info { display: flex; flex-direction: column; gap: 14px; }
.r-cnt-info-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px; transition: all .3s;
}
.r-cnt-info-card:hover { border-color: var(--bdr-gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.r-cnt-info-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 12px; background: rgba(var(--accent-rgb),.08);
}
.r-cnt-info-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.r-cnt-info-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.r-cnt-wa {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; background: linear-gradient(135deg, #25d366, #1da851);
  border-radius: var(--r-lg); color: #fff; font-weight: 700; font-size: 16px;
  transition: all .3s; box-shadow: 0 6px 20px rgba(37,211,102,.3); text-decoration: none;
}
.r-cnt-wa:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.4); }
.r-cnt-wa-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,255,255,.2); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.r-cnt-wa small { display: block; font-size: 12px; font-weight: 400; opacity: .85; margin-top: 4px; }
@media (max-width:768px) { .r-cnt-grid { grid-template-columns: 1fr; } .r-cnt-form-box { padding: 24px 20px; } .r-cnt-row { grid-template-columns: 1fr; } }

.r-contact-map { padding: 0 0 100px; background: var(--bg2); }
.r-map-wrap {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; height: 380px;
}
.r-map-wrap iframe { width: 100%; height: 100%; border: none; filter: brightness(.8) contrast(1.1) saturate(.5); }
.r-map-note { text-align: center; margin-top: 16px; font-size: 13px; color: var(--muted); }
.r-map-note code { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 4px 10px; font-size: 12px; color: var(--gold-lt); direction: ltr; }

/* ═══════════════════════════════════════
   ARTICLES PAGE STYLES
   ═══════════════════════════════════════ */
.r-art-filter { padding: 40px 0 20px; background: var(--bg2); }
.r-art-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.r-art-cat-chip {
  padding: 8px 20px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 999px;
  font-family: var(--ff); font-size: 13px; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: all .3s;
}
.r-art-cat-chip:hover, .r-art-cat-chip.active {
  background: rgba(var(--accent-rgb),.1); border-color: var(--bdr-gold); color: var(--gold-lt);
}

.r-art-grid-sec { padding: 30px 0 100px; background: var(--bg2); }
.r-ag-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.r-ag-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .35s; }
.r-ag-card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(0,0,0,.3); border-color: rgba(var(--accent-rgb),.2); }
.r-ag-img { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 50px; position: relative; background: linear-gradient(135deg, rgba(var(--accent-rgb),.06), rgba(37,99,235,.06)); }
.r-ag-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(var(--text-rgb),.14)); }
.r-ag-cat { position: absolute; top: 14px; right: 14px; padding: 5px 14px; background: rgba(var(--accent-rgb),.85); backdrop-filter: blur(6px); border-radius: 999px; font-size: 11px; font-weight: 700; color: #fff; z-index: 2; }
.r-ag-body { padding: 24px 22px 28px; }
.r-ag-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-size: 12px; color: var(--muted); font-weight: 600; }
.r-ag-card h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.5; }
.r-ag-card h3 a { color: inherit; text-decoration: none; transition: color .3s; }
.r-ag-card h3 a:hover { color: var(--gold); }
.r-ag-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.r-ag-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 14px; font-weight: 700; text-decoration: none; transition: gap .3s; }
.r-ag-link:hover { gap: 10px; }
.r-ag-note { margin-top: 40px; padding: 24px; background: var(--bg3); border: 2px dashed rgba(var(--accent-rgb),.2); border-radius: var(--r-lg); text-align: center; }
.r-ag-note h3 { font-size: 18px; font-weight: 800; color: var(--gold-lt); margin-bottom: 10px; }
.r-ag-note p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
.r-ag-note code { display: block; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 13px; color: var(--red); direction: ltr; text-align: left; }
@media (max-width:992px) { .r-ag-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:576px) { .r-art-grid-sec { padding: 20px 0 60px; } .r-ag-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════
   SINGLE POST PAGE STYLES
   ═══════════════════════════════════════ */
.r-single-content { padding: 60px 0 100px; background: var(--bg2); }
.r-single-wrap { max-width: 960px; margin: 0 auto; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 46px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.r-single-thumb { width: 100%; height: 480px; object-fit: cover; border-radius: var(--r); margin-bottom: 40px; border: 1px solid var(--border); }
.r-single-body { font-size: 16px; line-height: 2.1; color: var(--text); }
.r-single-body h2, .r-single-body h3, .r-single-body h4 { color: var(--gold-lt); margin: 36px 0 18px; line-height: 1.4; font-weight: 800; }
.r-single-body p { margin-bottom: 24px; }
.r-single-body ul, .r-single-body ol { margin: 0 24px 24px 0; padding: 0; }
.r-single-body li { margin-bottom: 10px; }
.r-single-body img { max-width: 100%; height: auto; border-radius: var(--r); margin: 32px 0; display: block; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.r-single-body blockquote { border-right: 4px solid var(--gold); padding: 18px 24px 18px 0; margin: 32px 0; background: rgba(var(--accent-rgb),.06); border-radius: 12px 0 0 12px; font-size: 19px; font-style: italic; font-weight: 700; color: var(--gold-lt); }
.r-single-nav { display: flex; justify-content: space-between; align-items: stretch; gap: 20px; margin-top: 60px; padding-top: 36px; border-top: 1px solid var(--border); }
.r-single-nav > div { width: 48%; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); display: flex; }
.r-single-nav a { display: block; padding: 20px; width: 100%; transition: all .3s; }
.r-single-nav a:hover { background: rgba(var(--accent-rgb),.06); border-color: var(--bdr-gold); }
.r-single-nav strong { display: block; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.r-single-nav .prev-post { text-align: right; }
.r-single-nav .next-post { text-align: left; }
@media(max-width: 768px) { 
  .r-single-wrap { padding: 24px; } 
  .r-single-thumb { height: 250px; margin-bottom: 24px; } 
  .r-single-nav { flex-direction: column; } 
  .r-single-nav > div { width: 100%; } 
}

/* ═══════════════════════════════════════
   WOOCOMMERCE ARCHIVE PAGE STYLES
   ═══════════════════════════════════════ */
.r-shop-hero { position: relative; padding: 140px 0 90px; background: var(--bg); overflow: hidden; }
.r-shop-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.r-shop-hero-glow-a { position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb),.1) 0%, transparent 65%); top: -250px; right: -150px; pointer-events: none; }
.r-shop-hero-glow-b { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 65%); bottom: -150px; left: -100px; pointer-events: none; }
.r-shop-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: center; }
.r-shop-hero-text { animation: fadeUp .6s ease both; }
.r-shop-hero h1 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; color: var(--text); line-height: 1.2; margin-bottom: 18px; }
.r-shop-hero p { font-size: clamp(14px, 1.6vw, 16px); color: var(--muted); line-height: 2; max-width: 560px; margin-bottom: 30px; }
.r-shop-hero-stats { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); background: linear-gradient(135deg, rgba(var(--surface-rgb), .96), rgba(var(--surface-rgb), .82)); backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; animation: fadeUp .6s ease .3s both; box-shadow: var(--shadow-soft); margin-top: 24px; }
.r-shop-stat { padding: 18px 18px; text-align: right; border-left: 1px solid var(--border); transition: background .3s; display: flex; align-items: center; gap: 14px; min-height: 96px; }
.r-shop-stat:last-child { border-left: none; }
.r-shop-stat:hover { background: rgba(var(--accent-rgb),.05); }
.r-shop-stat-ico { width: 46px; height: 46px; border-radius: 14px; background: rgba(var(--accent-rgb), .08); border: 1px solid rgba(var(--accent-rgb), .14); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.r-shop-stat-copy { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.r-shop-stat-num { font-size: 24px; font-weight: 900; color: var(--gold); line-height: 1.1; margin-bottom: 0; }
.r-shop-stat-lbl { font-size: 12px; color: var(--muted); font-weight: 700; line-height: 1.6; }

.r-shop-orbital { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeIn .9s ease .4s both; }
.r-shop-ring { position: relative; width: 320px; height: 320px; border-radius: 50%; }
.r-shop-orbit { position: absolute; border-radius: 50%; border: 1px solid; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.r-shop-orbit-1 { width: 320px; height: 320px; border-color: rgba(var(--accent-rgb),.1); }
.r-shop-orbit-2 { width: 240px; height: 240px; border-color: rgba(37,99,235,.1); }
.r-shop-orbit-3 { width: 160px; height: 160px; border-color: rgba(var(--accent-rgb),.15); border-style: dashed; animation: spin 20s linear infinite; }
.r-shop-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 90px; height: 90px; background: linear-gradient(135deg, var(--bg3), var(--bg2)); border: 1px solid rgba(var(--accent-rgb),.22); border-radius: 22px; display: flex; align-items: center; justify-content: center; font-size: 40px; box-shadow: 0 0 0 10px rgba(var(--accent-rgb),.04), var(--shadow); animation: floatY 5s ease-in-out infinite; z-index: 3; }
.r-shop-node { position: absolute; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--bg2); width: 38px; height: 38px; font-size: 15px; }
.r-shop-node-img { width: 26px; height: 26px; object-fit: contain; display: block; }
.r-shop-center-img { width: 56px; height: 56px; object-fit: contain; display: block; }
.r-shop-node-1 { border: 1px solid var(--bdr-gold); top: -19px; left: calc(50% - 19px); animation: spinRev 12s linear infinite; transform-origin: center calc(160px + 19px); }
.r-shop-node-2 { border: 1px solid rgba(37,99,235,.3); bottom: -19px; left: calc(50% - 19px); animation: spinRev 16s linear infinite reverse; transform-origin: center calc(-141px + 19px); }
.r-shop-node-3 { border: 1px solid rgba(var(--accent-rgb),.2); left: -19px; top: calc(50% - 19px); animation: spinRev 14s linear infinite; transform-origin: calc(160px + 19px) center; }
.r-shop-chip { position: absolute; background: var(--surface-elevated); border: 1px solid rgba(var(--accent-rgb),.2); border-radius: 12px; padding: 10px 14px; white-space: nowrap; box-shadow: var(--shadow-soft); z-index: 4; }
.r-shop-chip-lbl { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 2px; }
.r-shop-chip-val { font-size: 13px; font-weight: 800; color: var(--text); }
.r-shop-chip-a { top: 20px; left: -30px; animation: floatY 6s ease-in-out infinite 1s; }
.r-shop-chip-b { bottom: 30px; right: -30px; animation: floatY 7s ease-in-out infinite 2s; }

.r-shop-search { padding: 40px 0 20px; background: var(--bg2); }
.r-shop-search-bar { display: flex; gap: 12px; align-items: center; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px 22px; margin-bottom: 22px; transition: border-color .3s; }
.r-shop-search-bar:focus-within { border-color: var(--bdr-gold); }
.r-shop-search-bar svg { color: var(--muted); flex-shrink: 0; }
.r-shop-search-input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-family: var(--ff); font-size: 15px; direction: rtl; }
.r-shop-search-input::placeholder { color: var(--muted); }
.r-shop-search-btn { padding: 10px 24px; background: var(--gold); color: #06080F; border: none; border-radius: var(--r); font-family: var(--ff); font-size: 13px; font-weight: 800; cursor: pointer; transition: all .3s; }
.r-shop-search-btn:hover { background: var(--gold-lt); }
.r-shop-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.r-shop-cat-chip { padding: 8px 20px; background: var(--bg3); border: 1px solid var(--border); border-radius: 999px; font-family: var(--ff); font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .3s; text-decoration: none; }
.r-shop-cat-chip:hover, .r-shop-cat-chip.active { background: rgba(var(--accent-rgb),.1); border-color: var(--bdr-gold); color: var(--gold-lt); }
.r-shop-sort { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; flex-wrap: wrap; gap: 12px; }
.r-shop-results { font-size: 14px; color: var(--muted); font-weight: 600; }

.r-shop-grid { padding: 20px 0 100px; background: var(--bg2); }
.r-sg-layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.r-sg-sidebar { position: sticky; top: 100px; }
.r-sg-scard { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin-bottom: 14px; transition: all .3s; }
.r-sg-scard:hover { border-color: rgba(var(--accent-rgb),.12); }
.r-sg-scard h3 { font-size: 14px; font-weight: 800; color: var(--gold-lt); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.r-sg-flist { list-style: none; padding:0; margin:0;}
.r-sg-flist li { margin-bottom: 4px; }
.r-sg-flist li a { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); text-decoration: none; padding: 7px 8px; border-radius: 10px; transition: all .3s; }
.r-sg-flist li a:hover { background: rgba(var(--accent-rgb),.05); }
.r-sg-flist label { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); cursor: pointer; padding: 7px 8px; border-radius: 10px; transition: all .3s; }
.r-sg-flist label:hover { background: rgba(var(--accent-rgb),.05); }
.r-sg-flist input[type="checkbox"], .r-sg-flist input[type="radio"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
.r-sg-fcount { margin-right: auto; font-size: 11px; color: var(--muted); font-weight: 700; background: var(--bg); padding: 2px 8px; border-radius: 999px; }
.r-sg-price-row { display: flex; gap: 8px; margin-bottom: 12px; }
.r-sg-price-inp { flex: 1; padding: 9px 10px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; color: var(--text); font-family: var(--ff); font-size: 13px; text-align: center; outline: none; direction: ltr; width:100%; }
.r-sg-price-btn { width: 100%; padding: 10px; background: var(--gold); color: #06080F; font-family: var(--ff); font-size: 13px; font-weight: 700; border: none; border-radius: 10px; cursor: pointer; transition: all .3s; }
.r-sg-rating { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 10px; cursor: pointer; transition: all .3s; margin-bottom: 4px; }
.r-sg-rating:hover { background: rgba(var(--accent-rgb),.05); }
.r-sg-stars { font-size: 14px; letter-spacing: 2px; color: var(--gold); }
.r-sg-rlabel { font-size: 12px; color: var(--muted); }

.r-sg-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin:0; padding:0; }
.r-sg-product { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all .4s cubic-bezier(.4,0,.2,1); position: relative; display: flex; flex-direction: column; width: 100%; clear: none; margin: 0; }
.r-sg-product:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.35); border-color: rgba(var(--accent-rgb),.2); }
.r-sg-product::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue)); transform: scaleX(0); transform-origin: right; transition: transform .5s; z-index: 5; }
.r-sg-product:hover::before { transform: scaleX(1); }
.r-sg-pimg { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(var(--accent-rgb),.05), transparent); font-size: 56px; overflow: hidden; }
.r-sg-pimg img { object-fit: contain; width: 100%; height: 100%; padding:20px; }
.r-sg-pbadge { position: absolute; top: 12px; right: 12px; padding: 5px 12px; border-radius: 10px; font-size: 11px; font-weight: 700; z-index: 3; backdrop-filter: blur(8px); }
.r-sg-pbadge-new { background: rgba(37,99,235,.85); color: #fff; }
.r-sg-pbadge-sale { background: rgba(239,68,68,.85); color: #fff; }
.r-sg-pbody { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.r-sg-pcat { font-size: 11px; font-weight: 700; color: var(--gold); margin-bottom: 6px; display: inline-flex; align-items: center; gap: 4px; background: rgba(var(--accent-rgb),.08); padding: 3px 9px; border-radius: 8px; width: fit-content; text-decoration:none; }
.r-sg-pname { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.r-sg-pname a { color: inherit; transition: color .3s; text-decoration:none; }
.r-sg-pname a:hover { color: var(--gold); }
.r-sg-pdesc { font-size: 12px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.r-sg-prating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.r-sg-prating-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.r-sg-pfooter { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.r-sg-pprice { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; color:var(--gold); }
.r-sg-pprice ins { text-decoration:none; }
.r-sg-pprice del { font-size: 13px; color: var(--muted); }
.r-sg-cart-btn { width: 100%; padding: 12px; background: var(--gold); color: #06080F; font-family: var(--ff); font-size: 13px; font-weight: 800; border: none; border-radius: var(--r); cursor: pointer; transition: all .3s; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration:none; }
.r-sg-cart-btn:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(var(--accent-rgb),.3); }

.woocommerce-pagination { margin-top: 40px; display: flex; justify-content: center; }
.woocommerce-pagination .page-numbers { display: flex; align-items: center; justify-content: center; gap: 8px; list-style:none; padding:0; margin:0; }
.woocommerce-pagination .page-numbers li { display:inline-block; }
.woocommerce-pagination .page-numbers a, .woocommerce-pagination .page-numbers span { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg3); font-family: var(--ff); font-size: 14px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; text-decoration: none; }
.woocommerce-pagination .page-numbers .current { background: var(--gold); color: #06080F; border-color: var(--gold); transform: translateY(-2px); }
.woocommerce-pagination .page-numbers a.next, .woocommerce-pagination .page-numbers a.prev { width:auto; padding: 0 14px; }

.r-shop-offers { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.r-so-header { text-align: center; margin-bottom: 50px; }
.r-so-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; padding:20px; transition: all .4s; }
.r-shop-features { padding: 80px 0; background: var(--bg2); }
.r-sf-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.r-sf-card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 22px; text-align: center; transition: all .4s; }
.r-sf-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: rgba(var(--accent-rgb),.08); }
.r-shop-cta { padding: 100px 0; background: var(--bg); text-align: center; }

@media (max-width:1100px) { .r-shop-hero-inner { grid-template-columns: 1fr; text-align: center; } .r-shop-orbital { display: none; } }
@media (max-width:992px) { .r-sg-layout { grid-template-columns: 1fr; } .r-sg-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; } .r-so-grid { grid-template-columns: repeat(2,1fr); } .r-sf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:992px) { .r-shop-hero-stats { grid-template-columns: 1fr; } .r-shop-stat { border-left: none; border-bottom: 1px solid var(--border); } .r-shop-stat:last-child { border-bottom: none; } }
@media (max-width:768px) { .r-sg-products { grid-template-columns: repeat(2,1fr); } .r-sg-sidebar { grid-template-columns: 1fr; } }
@media (max-width:576px) { .r-shop-hero-stats, .r-so-grid, .r-sf-grid, .r-sg-products { grid-template-columns: 1fr; } .r-shop-stat { padding: 16px; } }

/* ═══════════════════════════════════════
   WOOCOMMERCE STYLES
   ═══════════════════════════════════════ */
.woocommerce,
.woocommerce-page {
  color: var(--text);
}

.woocommerce a,
.woocommerce-page a {
  color: inherit;
}

.woocommerce .woocommerce-breadcrumb {
  display: none;
}

.woocommerce div.product,
.woocommerce ul.products li.product,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  color: var(--text);
}

.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce-cart table.shop_table,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--text);
  font-weight: 800;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--gold);
  font-weight: 900;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit {
  background: var(--gold);
  color: #06080F;
  border-radius: 999px;
  font-weight: 800;
  border: none;
  padding: 12px 18px;
  transition: transform .2s ease, filter .2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
  background: var(--gold);
  color: #06080F;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
}

.woocommerce form .form-row label {
  color: var(--text);
  font-weight: 700;
}

.woocommerce table.shop_table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--border);
  color: var(--text);
}

.woocommerce table.shop_table th {
  background: var(--bg2);
  font-weight: 800;
}

.woocommerce-cart table.cart img {
  width: 68px;
  border-radius: 10px;
}

.woocommerce .quantity .qty {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  min-height: 38px;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}

.woocommerce-checkout #payment {
  background: var(--bg2) !important;
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom: 1px solid var(--border);
}

.woocommerce-checkout #payment div.payment_box {
  background: rgba(var(--accent-rgb),.08);
  color: var(--text);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(var(--accent-rgb),.08);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(var(--accent-rgb),.1);
  border-color: var(--bdr-gold);
  color: var(--gold-lt);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: rgba(var(--accent-rgb),.08);
  border: 1px solid rgba(var(--accent-rgb),.22);
  border-radius: var(--r);
  color: var(--text);
}

/* Shop archive/single custom layout */
.r-shop-sec { background: var(--bg2); padding: 60px 0 100px; }
.r-shop-head { margin-bottom: 24px; }
.r-shop-grid.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 !important;
  padding: 0 !important;
}
.r-shop-card.product {
  list-style: none;
  margin: 0 !important;
  width: auto !important;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.r-shop-thumb {
  position: relative;
  display: block;
  background: var(--bg2);
  aspect-ratio: 1 / 1;
}
.r-shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.r-shop-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--gold); color: #06080F; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 800;
}
.r-shop-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 42px; }
.r-shop-body { padding: 14px; }
.r-shop-title { font-size: 15px !important; min-height: 44px; margin: 0 0 8px !important; }
.r-shop-price { color: var(--gold); font-weight: 900; margin-bottom: 10px; }
.r-shop-actions .button { width: 100%; text-align: center; }

.r-single-sec { background: var(--bg2); padding: 60px 0 100px; }
.single-product div.product .product_title { color: var(--text); font-weight: 900; }
.single-product div.product .woocommerce-product-gallery img { border-radius: var(--r-lg); }
.single-product div.product .summary .price { font-size: 26px; }
.single-product .woocommerce-tabs ul.tabs li {
  background: var(--bg3);
  border-color: var(--border);
}
.single-product .woocommerce-tabs ul.tabs li a { color: var(--text); }
.single-product .woocommerce-tabs .panel {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}

/* Contact Form 7 */
.wpcf7 form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: var(--r);
  border: 1px solid rgba(var(--accent-rgb),.22);
  color: var(--text);
}

/* Select2 dark mode (WooCommerce drop-downs) */
.select2-container--default .select2-selection--single {
  background-color: var(--bg3) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r) !important;
  height: auto !important;
  padding: 10px 14px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text) !important;
  line-height: 1.6 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 44px !important;
}
.select2-dropdown {
  background-color: var(--bg3) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(var(--accent-rgb),.1) !important;
  color: var(--gold-lt) !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--bg2) !important;
  color: var(--text) !important;
}
.select2-search--dropdown .select2-search__field {
  background-color: var(--bg2) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}

/* Fix cart return to shop button margin */
.return-to-shop { margin-top: 30px; }

@media (max-width: 1024px) {
  .r-shop-grid.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .r-shop-grid.products { grid-template-columns: 1fr; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
    float: none;
  }
}

/* === ADDED HOME SECTIONS CSS === */


/* === From r-01-hero.html === */

.r-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 90px;
  background: var(--bg);
}
.r-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.r-hero-glow-a {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 65%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.r-hero-glow-b {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.08) 0%, transparent 65%);
  bottom: -150px; left: -150px;
  pointer-events: none;
}
.r-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}
.r-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(var(--accent-rgb),.07);
  border: 1px solid rgba(var(--accent-rgb),.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: 26px;
  animation: fadeUp .6s ease both;
}
.r-hero-pulse {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.r-hero-title {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 22px;
  animation: fadeUp .6s ease .12s both;
}
.r-hero-desc {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--muted);
  line-height: 2;
  max-width: 580px;
  margin-bottom: 38px;
  animation: fadeUp .6s ease .24s both;
}
.r-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 54px;
  animation: fadeUp .6s ease .36s both;
}
.r-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface-elevated);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  animation: fadeUp .6s ease .48s both;
}
.r-stat {
  padding: 20px 14px;
  text-align: center;
  border-left: 1px solid var(--border);
  transition: background .3s;
}
.r-stat:last-child { border-left: none; }
.r-stat:hover { background: rgba(var(--accent-rgb),.05); }
.r-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.r-stat-lbl {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

/* Hero Visual (Floating Images) */
.r-hero-vis {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .9s ease .4s both;
}
.r-hero-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
}
.r-img-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(var(--accent-rgb),.15);
  background: var(--bg2);
}
.r-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.r-img-card:hover img {
  transform: scale(1.05);
}

/* الصورة الرئيسية (اليمين) */
.r-img-main {
  width: 320px;
  height: 420px;
  top: 50px;
  right: 0px; 
  z-index: 2;
  animation: floatY 6s ease-in-out infinite;
}

/* الصورة الفرعية الأولى (أعلى اليسار) */
.r-img-sub1 {
  width: 240px;
  height: 240px;
  top: 0px;
  left: 20px;
  z-index: 1;
  animation: floatY 7s ease-in-out infinite 1s;
}

/* الصورة الفرعية الثانية (أسفل اليسار) */
.r-img-sub2 {
  width: 260px;
  height: 200px;
  bottom: 0px;
  left: 0px;
  z-index: 3;
  animation: floatY 5s ease-in-out infinite 2s;
}

.r-chip {
  position: absolute;
  background: var(--surface-elevated);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 12px;
  padding: 12px 16px;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 4;
}
.r-chip-lbl { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.r-chip-val { font-size: 14px; font-weight: 800; color: var(--text); }
.r-chip-a { top: 40px; right: -20px; animation: floatY 6s ease-in-out infinite 1.5s; }
.r-chip-b { bottom: 40px; left: -10px; animation: floatY 7s ease-in-out infinite 2.5s; }

@media (max-width: 1100px) {
  .r-hero-inner { grid-template-columns: 1fr; }
  .r-hero-vis   { display: none; }
}
@media (max-width: 768px) {
  .r-stats-strip { grid-template-columns: 1fr 1fr; }
  .r-stat { border-top: 1px solid var(--border); }
  .r-stat:nth-child(-n+2) { border-top: none; }
  .r-stat:nth-child(2) { border-left: none; }
}
@media (max-width: 576px) {
  .r-hero { padding: 100px 0 70px; }
  .r-hero-btns { flex-direction: column; align-items: stretch; }
  .r-btn { justify-content: center; }
}

/* === From r-02-about.html === */

.r-about {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.r-about::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),.04) 0%, transparent 70%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.r-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.r-about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.r-about-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(var(--accent-rgb),.04) 0%, transparent 55%);
  pointer-events: none;
}
.r-about-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.r-about-card-icon {
  width: 40px; height: 40px;
  background: rgba(var(--accent-rgb),.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.r-about-card-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.r-about-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 2;
}
.r-about-card-body p + p { margin-top: 12px; }
.r-about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.r-about-float {
  position: relative;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #06080F;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb),.25);
  animation: floatY 6s ease-in-out infinite;
  max-width: fit-content;
}
.r-about-float-num { font-size: 28px; font-weight: 900; line-height: 1; }
.r-about-float-txt { font-size: 12px; font-weight: 700; line-height: 1.4; }
.r-features { display: flex; flex-direction: column; gap: 10px; margin: 26px 0; }
.r-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: all .3s;
}
.r-feature:hover {
  border-color: var(--bdr-gold);
  background: rgba(var(--accent-rgb),.04);
  transform: translateX(-4px);
}
.r-feature-ico {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(var(--accent-rgb),.09);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.r-feature-txt { font-size: 14px; font-weight: 600; color: var(--text); }

@media (max-width: 1100px) {
  .r-about-grid { grid-template-columns: 1fr; gap: 36px; }
  .r-about-visual { display: flex; flex-direction: column; align-items: center; }
  .r-about-card { width: 100%; }
  .r-about-float { margin: 18px auto 0; }
  .r-about-copy { text-align: center; }
  .r-about-copy .r-features { align-items: center; }
}
@media (max-width: 576px) {
  .r-about { padding: 60px 0; }
  .r-about-grid { gap: 28px; }
  .r-about-card { padding: 24px; }
  .r-about-float { padding: 12px 20px; gap: 10px; }
  .r-about-float-num { font-size: 24px; }
  .r-about-float-txt { font-size: 11px; }
  .r-feature { padding: 12px 14px; }
  .r-feature-txt { font-size: 13px; }
}

/* === From r-03-services.html === */

.r-services { padding: 100px 0; background: var(--bg); }
.r-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.r-srv-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}
.r-srv-bar {
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  border-radius: 0 var(--r-lg) 0 0;
  transition: height .4s ease;
}
.r-srv-card:hover .r-srv-bar { height: 100%; }
.r-srv-card:hover {
  border-color: rgba(var(--accent-rgb),.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
}
.r-srv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.04) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .4s;
}
.r-srv-card:hover::before { opacity: 1; }
.r-srv-icon {
  width: 62px; height: 62px;
  background: rgba(var(--accent-rgb),.07);
  border: 1px solid rgba(var(--accent-rgb),.12);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: transform .3s;
}
.r-srv-card:hover .r-srv-icon { transform: scale(1.08) rotate(-5deg); }
.r-srv-card h3 { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.r-srv-card p { font-size: 13px; color: var(--muted); line-height: 1.95; margin-bottom: 18px; }
.r-srv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.r-srv-tag {
  padding: 4px 11px;
  background: rgba(var(--accent-rgb),.06);
  border: 1px solid rgba(var(--accent-rgb),.14);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-lt);
}
.r-srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: gap .3s;
}
.r-srv-link:hover { gap: 10px; }

@media (max-width: 1100px) { .r-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .r-services-grid { grid-template-columns: 1fr; } }

/* === From r-04-products.html === */

.r-products { padding: 100px 0; background: var(--bg2); }
.r-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.r-prod-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  transition: all .35s ease;
}
.r-prod-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb),.2);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}
.r-prod-thumb {
  padding: 36px 16px 22px;
  font-size: 52px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb),.07) 0%, transparent 100%);
  position: relative;
}
.r-prod-cat {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  background: rgba(var(--accent-rgb),.12);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.r-prod-body { padding: 16px 20px 28px; }
.r-prod-card h3 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.r-prod-card p { font-size: 12px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.r-prod-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(var(--accent-rgb),.09);
  border: 1px solid rgba(var(--accent-rgb),.18);
  color: var(--gold-lt);
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  transition: all .3s;
}
.r-prod-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #06080F;
}

@media (max-width: 768px) { .r-products-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .r-products-grid { grid-template-columns: 1fr; } }

/* === From r-05-why-us.html === */

.r-why {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.r-why::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 70%);
  top: -250px; right: -250px;
  pointer-events: none;
}
.r-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.r-why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .4s ease;
}
.r-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s;
}
.r-why-card:hover::after { transform: scaleX(1); }
.r-why-card:hover {
  border-color: var(--bdr-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,.28);
}
.r-why-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: rgba(var(--accent-rgb),.08);
  transition: transform .3s;
}
.r-why-card:hover .r-why-icon { transform: scale(1.1) rotate(-5deg); }
.r-why-card h3 { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.r-why-card p { font-size: 13px; color: var(--muted); line-height: 1.85; }

@media (max-width: 1100px) { .r-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .r-why-grid { grid-template-columns: 1fr; } }

/* === From r-06-articles.html === */

.r-articles { padding: 100px 0; background: var(--bg2); }
.r-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.r-art-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s ease;
}
.r-art-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb),.2);
  box-shadow: 0 18px 48px rgba(0,0,0,.3);
}
.r-art-thumb {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; position: relative; overflow: hidden;
  background: var(--bg);
}
.r-art-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),.07), rgba(37,99,235,.07));
}
.r-art-cat-pill {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 11px;
  background: rgba(var(--accent-rgb),.14);
  border: 1px solid rgba(var(--accent-rgb),.24);
  border-radius: 999px; font-size: 11px; font-weight: 700;
  color: var(--gold-lt);
}
.r-art-body { padding: 22px; }
.r-art-meta { display: flex; gap: 12px; font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.r-art-body h3 { font-size: 15px; font-weight: 800; color: var(--text); line-height: 1.55; margin-bottom: 10px; }
.r-art-body h3 a { color: inherit; transition: color .3s; }
.r-art-body h3 a:hover { color: var(--gold); }
.r-art-body p { font-size: 12px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.r-art-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--gold); transition: gap .3s; }
.r-art-link:hover { gap: 9px; }
@media (max-width:768px) { .r-articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:576px) { .r-articles-grid { grid-template-columns: 1fr; } }

/* === From r-07-cta.html === */

.r-cta {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.r-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--accent-rgb),.06) 0%, transparent 70%);
  pointer-events: none;
}
.r-cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.r-cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.r-cta-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(var(--accent-rgb),.09);
  border: 1px solid rgba(var(--accent-rgb),.2);
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 28px;
  animation: floatY 4s ease-in-out infinite;
}
.r-cta-title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900; color: var(--text);
  margin-bottom: 16px; line-height: 1.25;
}
.r-cta-desc {
  font-size: clamp(14px, 1.7vw, 16px);
  color: var(--muted); line-height: 1.95;
  max-width: 520px; margin: 0 auto 36px;
}
.r-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (max-width:576px) { .r-cta-btns { flex-direction: column; align-items: stretch; } }

/* ========================================
   THEME SYSTEM OVERRIDES
   ======================================== */

.r-btn-gold,
.r-so-banner-btn,
.r-sg-price-btn,
.r-sg-cart-btn,
.r-nav-cta a,
.r-mob-cta a,
.r-floating-cart a,
.r-cnt-submit,
.r-shop-search-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk)) !important;
  color: var(--accent-contrast) !important;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), .18);
}

.r-btn-gold:hover,
.r-so-banner-btn:hover,
.r-sg-price-btn:hover,
.r-sg-cart-btn:hover,
.r-nav-cta a:hover,
.r-mob-cta a:hover,
.r-floating-cart a:hover,
.r-cnt-submit:hover,
.r-shop-search-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover {
  box-shadow: 0 12px 28px rgba(var(--accent-rgb), .28) !important;
}

.r-diag-a { background: linear-gradient(to right, rgba(var(--bg2-rgb), .98), rgba(var(--bg-rgb), .98)) !important; }
.r-diag-b { background: linear-gradient(to right, rgba(var(--bg-rgb), .98), rgba(var(--bg2-rgb), .98)) !important; }

.r-header {
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.r-header.r-scrolled {
  background: var(--header-bg-strong) !important;
  border-bottom: 1px solid var(--header-border) !important;
  box-shadow: var(--header-shadow);
}

.r-header-inner { gap: 14px; }
.r-header-actions { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.r-logo { color: var(--text); }
.r-logo-icon,
.r-footer-about .r-flogo-icon { color: var(--accent-contrast); box-shadow: 0 4px 15px rgba(var(--accent-rgb), .24); }
.r-nav a { color: rgba(var(--text-rgb), .75); }
.r-nav a:hover { background: rgba(var(--text-rgb), .06); }
.r-nav a.r-nav-active { background: rgba(var(--accent-rgb), .1); }

.r-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  color: var(--text);
  cursor: pointer;
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, border-color .3s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.r-theme-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--bdr-gold);
  background: rgba(var(--text-rgb), .04);
}

.r-theme-toggle:focus-visible {
  outline: 2px solid rgba(var(--accent-rgb), .35);
  outline-offset: 3px;
}

.r-theme-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), .1);
  color: var(--gold);
  font-size: 15px;
}

.r-theme-toggle-label { white-space: nowrap; }

.r-theme-toggle--mobile {
  width: 100%;
  margin-bottom: 18px;
  justify-content: center;
  background: var(--bg3);
  box-shadow: none;
}

.r-mob-overlay { background: var(--overlay); }
.r-mob-menu {
  background: linear-gradient(180deg, var(--mobile-menu-start), var(--mobile-menu-end));
  box-shadow: -20px 0 45px rgba(0, 0, 0, .12);
}
.r-mob-menu a { color: rgba(var(--text-rgb), .82); }
.r-mob-menu a:hover,
.r-mob-menu a.r-nav-active { background: rgba(var(--accent-rgb), .08); }

.r-footer {
  background: linear-gradient(180deg, var(--footer-start), var(--footer-end));
  color: rgba(var(--text-rgb), .72);
}

.r-footer-about p,
.r-footer-links a,
.r-footer-ci-text { color: rgba(var(--text-rgb), .56); }

.r-footer-ci-text strong { color: rgba(var(--text-rgb), .82); }

.r-footer-social a,
.r-footer-ci-icon { background: rgba(var(--text-rgb), .05); }

.r-footer-copy,
.r-footer-blinks a { color: rgba(var(--text-rgb), .38); }

.r-footer-blinks a:hover { color: rgba(var(--text-rgb), .75); }

.r-wa-tooltip { box-shadow: var(--shadow-soft); }
.r-wa-badge { color: var(--accent-contrast); }
.r-wa-phone {
  background: var(--surface-elevated);
  border-color: rgba(var(--accent-rgb), .2);
  box-shadow: var(--shadow-soft);
}
.r-wa-phone:hover { background: rgba(var(--accent-rgb), .15); }

.r-page-hero::before,
.r-shop-hero::before,
.r-hero::before,
.r-cta::after {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
}

.r-page-hero-glow-a,
.r-shop-hero-glow-a,
.r-hero-glow-a,
.r-cta::before,
.r-about-stats::before {
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--accent-rgb), .08) 0%, transparent 70%);
}

.r-page-hero-glow-b,
.r-shop-hero-glow-b,
.r-hero-glow-b {
  background: radial-gradient(circle, rgba(var(--blue-rgb), .07) 0%, transparent 65%);
}

.r-badge,
.r-so-badge,
.r-sd-badge,
.r-pc-card-count,
.r-sg-pcat,
.r-sp-cat,
.r-art-cat-pill,
.r-cta-icon-wrap,
.r-sf-icon,
.r-why-icon,
.r-cnt-info-icon,
.r-sd-li-icon,
.r-vmg-icon,
.r-sp-feature-icon {
  background: rgba(var(--accent-rgb), .09);
  border-color: rgba(var(--accent-rgb), .2);
}

.r-fp-badge,
.r-ag-cat,
.r-shop-badge {
  background: rgba(var(--accent-rgb), .86);
  color: var(--accent-contrast);
}

.r-line { background: linear-gradient(90deg, var(--gold-lt), var(--gold-dk), transparent) !important; }

.r-pc-card:hover .r-pc-card-count,
.r-fp-btn:hover,
.woocommerce-pagination .page-numbers .current {
  color: var(--accent-contrast);
}

.r-single-body blockquote,
.woocommerce-checkout #payment div.payment_box,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.wpcf7 form .wpcf7-response-output {
  background: rgba(var(--accent-rgb), .08);
  border-color: rgba(var(--accent-rgb), .22);
}

.r-sp-gallery,
.r-sp-tabs-wrap,
.r-single-wrap,
.r-shop-chip,
.r-shop-center,
.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce-cart table.shop_table,
.woocommerce-checkout form.checkout,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  box-shadow: var(--shadow-soft);
}

.r-so-card:hover,
.r-ag-card:hover,
.r-fp-card:hover,
.r-pc-card:hover,
.r-story-vcard:hover,
.r-tl-item:hover,
.r-vmg-card:hover,
.r-aw-card:hover,
.r-as-card:hover,
.r-sg-product:hover,
.r-art-card:hover,
.r-why-card:hover {
  box-shadow: var(--card-shadow);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.r-shop-cat-chip:hover,
.r-shop-cat-chip.active {
  background: rgba(var(--accent-rgb), .1);
}

@media (max-width: 992px) {
  .r-nav,
  .r-nav-cta,
  .r-theme-toggle--desktop { display: none; }

  .r-header-actions { margin-right: 0; }
}

/* Final fix for section separators: use a thin divider line instead of a band */
.r-diag {
  height: 18px !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  background: transparent !important;
}

.r-diag::before {
  content: '' !important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(220px, calc(100% - 48px));
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--accent-rgb), .14) 18%,
    rgba(var(--accent-rgb), .34) 50%,
    rgba(var(--accent-rgb), .14) 82%,
    transparent 100%
  ) !important;
}

.r-diag-a,
.r-diag-b {
  background: transparent !important;
  clip-path: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
}

.r-diag-a {
  background: transparent !important;
}

.r-diag-b {
  background: transparent !important;
}

@media (max-width: 768px) {
  .r-diag {
    height: 14px !important;
  }

  .r-diag::before {
    width: min(160px, calc(100% - 32px));
  }
}

/* Final polish for header separation */
.r-header {
  top: 10px;
  padding: 0 !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.r-header::before {
  content: none !important;
}

.r-header::after {
  content: none !important;
}

.r-header.r-scrolled {
  top: 8px;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.r-header-inner {
  max-width: min(1240px, calc(100% - 28px));
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--header-card-start) 0%, var(--header-card-end) 100%);
  border: 1px solid var(--header-card-border);
  box-shadow: var(--header-card-shadow);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.r-header-inner > nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.r-logo {
  flex: 0 0 auto;
}

.r-nav {
  justify-content: center;
  flex-wrap: nowrap;
}

.r-header-actions {
  flex: 0 0 auto;
  margin-right: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.r-nav-cta {
  margin-right: 0 !important;
  flex: 0 0 auto;
}

.r-nav-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}

.r-header.r-scrolled .r-header-inner {
  background: linear-gradient(180deg, var(--header-card-start-strong) 0%, var(--header-card-end-strong) 100%);
  border-color: var(--header-card-border-strong);
  box-shadow: var(--header-card-shadow-strong);
}

.r-hero::after,
.r-page-hero::after,
.r-shop-hero::after {
  content: none !important;
}

@media (max-width: 992px) {
  .r-header {
    top: 8px;
  }

  .r-header-inner {
    max-width: calc(100% - 18px);
    min-height: 68px;
    padding: 0 18px;
    border-radius: 20px;
    justify-content: space-between;
  }

  .r-header-inner > nav {
    display: none;
  }

  .r-header-actions {
    display: none;
  }

  .r-hamburger {
    display: flex !important;
    margin-inline-start: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: rgba(var(--accent-rgb), .08);
    border: 1px solid rgba(var(--accent-rgb), .18);
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: background .3s;
  }

  .r-hamburger:hover {
    background: rgba(var(--accent-rgb), .14);
  }

  .r-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--text);
    border-radius: 3px;
    transition: all .3s;
  }
}
