/* Rayy Enterprise - Standard Design System CSS (rayy-design.css) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Myanmar:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========================================
   1. COLOR PALETTE & CSS VARIABLES
   ========================================== */
:root {
  /* Light Mode Palette - Premium Red Accent */
  --bg: #f8f9fa;
  --surface: #ffffff;
  --surface2: #f1f3f5;
  --text: #1a1a24;
  --muted: #6c757d;
  --primary: #d62828;
  --primary-dark: #b01c1c;
  --primary-light: #fdf2f2;
  --secondary: #212529;
  --accent: #c7a33a;
  --border: #e9ecef;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --glow: rgba(214, 40, 40, 0.15);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --font-main: 'Poppins', 'Noto Sans Myanmar', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-speed: 0.3s;
}

/* Dark Mode Scope - Premium Purple & Gold Palette */
:root[data-theme="dark"],
[data-theme="dark"] {
  --bg: #121212;
  --surface: #1E1E1E;
  --surface2: #282828;
  --text: #FFFFFF;
  --muted: #B0B0B0;
  --primary: #7B2CF7;
  --primary-dark: #6A0DAD;
  --primary-light: rgba(123, 44, 247, 0.2);
  --secondary: #FFD700;
  --accent: #FFD700;
  --border: #333333;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --glow: rgba(123, 44, 247, 0.25);
}

/* ==========================================
   2. GLOBAL BASE & TYPOGRAPHY
   ========================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for bottom nav on mobile */
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* Form Controls - Responsive Touch Targets */
input, select, textarea {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-height: 44px;
  outline: none;
  transition: all 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--glow);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

th {
  background-color: var(--surface2);
  color: var(--text);
  font-weight: 700;
}

[data-theme="dark"] table th {
  background-color: var(--surface2);
  color: #FFFFFF;
}

[data-theme="dark"] table td {
  color: #B0B0B0;
  border-color: #333333;
}

/* ==========================================
   3. HEADER & NAVIGATION
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

[data-theme="dark"] .brand-logo {
  filter: hue-rotate(50deg) brightness(1.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--text);
}

.brand-text small {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 600;
}

/* Search Bar Header */
.header-search {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.header-search input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  font-size: 0.88rem;
  min-height: 44px;
  outline: none;
  transition: all 0.2s ease;
}

.header-search input:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--glow);
}

.header-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 10px 4px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
}

.desktop-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

.theme-btn, .cart-btn, .menu-btn, .icon-btn, .lang-select {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-sm);
  height: 44px;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  padding: 0 12px;
}

.theme-btn:hover, .cart-btn:hover, .menu-btn:hover, .icon-btn:hover, .lang-select:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.lang-select {
  outline: none;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0 8px;
}

.cart-btn {
  position: relative;
  font-weight: 600;
  gap: 6px;
}

.cart-btn .badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--surface);
}

.menu-btn {
  display: none;
  font-size: 1.2rem;
  width: 44px;
  padding: 0;
}

/* Mobile Nav Dropdown */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  gap: 8px;
  transition: background-color var(--transition-speed) ease;
}

/* === PREMIUM NAV ICON TOGGLES === */
.nav-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  min-width: 42px;
  padding: 0 10px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 12px;
  background: var(--surface, #fff);
  color: var(--text, #222);
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
}
.nav-icon-btn:hover {
  border-color: var(--primary, #c8102e);
  color: var(--primary, #c8102e);
  box-shadow: 0 2px 8px rgba(200, 16, 46, .1);
  transform: translateY(-1px);
}
.nav-icon-btn:active {
  transform: translateY(0);
}
[data-theme="dark"] .nav-icon-btn {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: #e0e0e0;
}
[data-theme="dark"] .nav-icon-btn:hover {
  border-color: #7B2CF7;
  color: #FFD700;
  box-shadow: 0 2px 8px rgba(123, 44, 247, .2);
}

/* Theme Toggle — sun/moon crossfade */
.theme-toggle .theme-icon-sun,
.theme-toggle .theme-icon-moon {
  position: absolute;
  transition: opacity .3s ease, transform .3s ease;
}
.theme-toggle .theme-icon-sun {
  opacity: 0;
  transform: rotate(180deg) scale(.5);
}
.theme-toggle .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}
[data-theme="dark"] .theme-toggle .theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}
[data-theme="dark"] .theme-toggle .theme-icon-moon {
  opacity: 0;
  transform: rotate(-180deg) scale(.5);
}

/* Language dropdown */
.lang-trigger {
  position: relative;
}
.lang-current-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 14px;
  background: var(--surface, #fff);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  z-index: 200;
  min-width: 150px;
  animation: langFade .2s ease;
}
.lang-dropdown-menu.open {
  display: flex;
}
.lang-option {
  border: 0;
  background: transparent;
  color: var(--text, #222);
  padding: 10px 14px;
  border-radius: 10px;
  font: 600 13px Poppins, "Noto Sans Myanmar", sans-serif;
  cursor: pointer;
  text-align: left;
  transition: .18s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-option:hover {
  background: var(--surface2, #f4f4f4);
}
[data-theme="dark"] .lang-dropdown-menu {
  background: rgba(18, 18, 18, .98);
  border-color: rgba(123, 44, 247, .2);
}
[data-theme="dark"] .lang-option {
  color: #e0e0e0;
}
[data-theme="dark"] .lang-option:hover {
  background: rgba(123, 44, 247, .1);
}
@keyframes langFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cart badge */
.cart-icon-btn .badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--primary, #c8102e);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--surface, #fff);
}
[data-theme="dark"] .cart-icon-btn .badge-count {
  background: #7B2CF7;
  border-color: rgba(18, 18, 18, 1);
  color: #FFD700;
}

/* Header search icon as SVG */
.header-search .header-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted, #888);
  pointer-events: none;
}
.header-search {
  display: flex;
  align-items: center;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 10px 12px 10px 38px;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 12px;
  background: var(--surface, #fff);
  color: var(--text, #222);
  font-size: .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.header-search input:focus {
  outline: none;
  border-color: var(--primary, #c8102e);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, .1);
}
[data-theme="dark"] .header-search input {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: #e0e0e0;
}
[data-theme="dark"] .header-search input:focus {
  border-color: #7B2CF7;
  box-shadow: 0 0 0 3px rgba(123, 44, 247, .15);
}


.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 500;
  border-bottom: 1px dashed var(--border);
}

/* Bottom Fixed Nav for Mobile */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  gap: 2px;
  position: relative;
  flex: 1;
  min-height: 44px;
  min-width: 44px;
}

.bottom-nav-item.active, .bottom-nav-item:hover {
  color: var(--primary);
}

.bottom-nav-item span.icon {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .bottom-nav {
    display: flex;
  }
  .header-search {
    max-width: 160px;
  }
}

/* ==========================================
   4. BUTTONS & INTERACTIVE ELEMENTS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-align: center;
  box-sizing: border-box;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: var(--surface2);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--border);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
}

.btn-sm {
  padding: 6px 14px;
  min-height: 38px;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Dark Mode Button Specific Overrides */
[data-theme="dark"] .btn-primary {
  background: #7B2CF7;
  border-color: #7B2CF7;
  color: #FFFFFF;
}

[data-theme="dark"] .btn-primary:hover {
  background: #6A0DAD;
  border-color: #6A0DAD;
}

[data-theme="dark"] .btn-secondary {
  background: #282828;
  color: #FFFFFF;
  border-color: #333333;
}

[data-theme="dark"] .btn-outline {
  color: #FFD700;
  border-color: #7B2CF7;
}

[data-theme="dark"] .btn-outline:hover {
  background: #7B2CF7;
  color: #FFFFFF;
}

/* ==========================================
   5. CARDS & BADGES
   ========================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color var(--transition-speed) ease;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .card {
  background: #1E1E1E;
  border-color: #333333;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.badge-gold {
  background: #fff3cd;
  color: #856404;
}

[data-theme="dark"] .badge-gold {
  background: rgba(255, 215, 0, 0.15);
  color: #FFD700;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-grade {
  background: #000;
  color: #fff;
  font-weight: 800;
}

[data-theme="dark"] .badge-grade {
  background: var(--primary);
  color: #fff;
}

/* Second-Hand Product Badge */
.secondhand-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1.5px solid #d62828;
  color: #d62828;
  background: rgba(214, 40, 40, 0.08);
  transition: all 0.3s ease;
}

[data-theme="dark"] .secondhand-badge {
  border-color: #FFD700;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.12);
}

/* Price Tag */
.price-tag {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.3px;
  transition: color var(--transition-speed) ease;
}

.price-tag .currency {
  font-size: 0.82em;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
}

[data-theme="dark"] .price-tag {
  color: #FFD700;
}

[data-theme="dark"] .price-tag .currency {
  color: #FFD700;
  opacity: 0.85;
}

/* ==========================================
   6. HERO BANNER & HERO SECTION
   ========================================== */
.hero-banner {
  position: relative;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, var(--glow), transparent 60%),
              linear-gradient(135deg, rgba(214, 40, 40, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

[data-theme="dark"] .hero-banner::before {
  background: radial-gradient(circle at 85% 20%, rgba(123, 44, 247, 0.25), transparent 60%),
              radial-gradient(circle at 15% 80%, rgba(255, 215, 0, 0.08), transparent 50%);
}

.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, var(--glow), transparent 40%), linear-gradient(180deg, var(--bg), var(--surface2));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 580px;
}

@media (max-width: 900px) {
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}

.trust-badges-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .trust-badges-row {
    justify-content: center;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px;
}

.hero-panel img.hero-logo-large {
  width: 180px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

[data-theme="dark"] .hero-panel img.hero-logo-large {
  filter: hue-rotate(50deg) brightness(1.2) drop-shadow(0 10px 20px rgba(123, 44, 247, 0.4));
}

.hero-floating-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-badge.badge-1 {
  top: 20px;
  left: -20px;
}

.hero-floating-badge.badge-2 {
  bottom: 30px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ==========================================
   7. SECTIONS & SECTION TITLES
   ========================================== */
.section {
  padding: 64px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 16px;
}

.section-head.centered {
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: var(--text);
}

/* Premium Accent Line */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.3s ease, background-color var(--transition-speed) ease;
}

.section-title:hover::after {
  width: 68px;
}

.section-head.centered .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

[data-theme="dark"] .section-title::after {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(123, 44, 247, 0.5);
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

.section-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.section-link:hover {
  text-decoration: underline;
}

/* ==========================================
   8. CATEGORY CARDS & GRID
   ========================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color var(--transition-speed) ease;
  cursor: pointer;
  box-sizing: border-box;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Image Background Category Card Support */
.category-card .category-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}

.category-card:hover .category-bg-img {
  transform: scale(1.08);
}

.category-card .category-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.category-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.category-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.category-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.category-count {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 99px;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .category-card {
  background: #1E1E1E;
  border-color: #333333;
}

[data-theme="dark"] .category-count {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

/* ==========================================
   9. PRODUCT CARDS & PRODUCT GRID
   ========================================== */
/* Mobile-First Responsive Product Grid: 2 cols mobile, 3 tablet, 4 desktop */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color var(--transition-speed) ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

[data-theme="dark"] .product-card {
  background: #1E1E1E;
  border-color: #333333;
}

[data-theme="dark"] .product-card:hover {
  border-color: #7B2CF7;
  box-shadow: 0 10px 30px rgba(123, 44, 247, 0.25);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

/* Add-To-Cart Overlay on Hover */
.product-card-overlay,
.add-to-cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.product-card:hover .product-card-overlay,
.product-card:hover .add-to-cart-overlay {
  opacity: 1;
}

.product-emoji-fallback {
  font-size: 4rem;
}

.product-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

[data-theme="dark"] .product-category {
  color: #FFD700;
}

.product-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

[data-theme="dark"] .product-title {
  color: #FFFFFF;
}

.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #f39c12;
  margin-bottom: 12px;
}

[data-theme="dark"] .rating {
  color: #FFD700;
}

.rating span.reviews {
  color: var(--muted);
  font-size: 0.75rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 12px;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

[data-theme="dark"] .current-price {
  color: #FFD700;
}

.old-price {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.stock-indicator {
  font-size: 0.75rem;
  margin-bottom: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.stock-indicator.in-stock {
  color: #2e7d32;
}

.stock-indicator.low-stock {
  color: #d97706;
}

[data-theme="dark"] .stock-indicator.in-stock {
  color: #4caf50;
}

[data-theme="dark"] .stock-indicator.low-stock {
  color: #FFD700;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-actions .btn {
  padding: 8px 12px;
  font-size: 0.85rem;
  min-height: 44px;
}

/* ==========================================
   10. PROMOTION BANNER & SECOND-HAND ZONE
   ========================================== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #d4af37);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

[data-theme="dark"] .promo-banner {
  background: linear-gradient(135deg, #6A0DAD, #7B2CF7, #FFD700);
}

@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
}

.promo-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.promo-content p {
  opacity: 0.9;
  font-size: 1.05rem;
}

.promo-btn {
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
  white-space: nowrap;
  padding: 12px 28px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Second Hand Zone */
.secondhand-zone {
  background: var(--surface2);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  border: 1px solid var(--border);
  transition: background-color var(--transition-speed) ease;
}

.secondhand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .secondhand-grid {
    grid-template-columns: 1fr;
  }
}

.secondhand-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background-color var(--transition-speed) ease, border-color 0.3s ease;
}

[data-theme="dark"] .secondhand-card {
  background: #1E1E1E;
  border-color: #333333;
}

.secondhand-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imei-tag {
  font-family: monospace;
  font-size: 0.78rem;
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--muted);
}

.secondhand-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 0.8rem;
  background: var(--surface2);
  padding: 10px;
  border-radius: var(--radius-sm);
}

.secondhand-meta-item strong {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
}

/* ==========================================
   11. ORDER TIMELINE COMPONENT
   ========================================== */
.order-timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border);
  transition: background-color var(--transition-speed) ease;
}

.timeline-step {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--border);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-step.completed .timeline-dot,
.timeline-step.active .timeline-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--glow);
}

[data-theme="dark"] .timeline-step.completed .timeline-dot,
[data-theme="dark"] .timeline-step.active .timeline-dot {
  border-color: #7B2CF7;
  background: #7B2CF7;
  box-shadow: 0 0 0 4px rgba(123, 44, 247, 0.3);
}

.timeline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.timeline-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.timeline-time {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ==========================================
   12. TELEGRAM CTA SUPPORT BANNER
   ========================================== */
.telegram-cta {
  background: linear-gradient(135deg, #0088cc 0%, #24A1DE 50%, #006699 100%);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-wrap: wrap;
  margin: 32px 0;
}

.telegram-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 136, 204, 0.4);
}

.telegram-cta-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.telegram-cta-content p {
  font-size: 0.9rem;
  opacity: 0.92;
}

.telegram-btn,
.btn-telegram {
  background: #ffffff;
  color: #0088cc;
  font-weight: 700;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.telegram-btn:hover,
.btn-telegram:hover {
  background: #f0f8ff;
  transform: scale(1.03);
}

/* ==========================================
   13. FEATURES, HOW IT WORKS & SUPPORT
   ========================================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .feature-card {
  background: #1E1E1E;
  border-color: #333333;
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  position: relative;
  transition: background-color var(--transition-speed) ease;
}

[data-theme="dark"] .step-card {
  background: #1E1E1E;
  border-color: #333333;
}

.step-number {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="dark"] .step-number {
  color: #FFD700;
  background: rgba(255, 215, 0, 0.15);
}

.step-icon {
  font-size: 2rem;
  margin: 8px 0 10px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
}

/* Customer Support Section */
.support-card {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: background-color var(--transition-speed) ease;
}

[data-theme="dark"] .support-card {
  background: linear-gradient(135deg, #1E1E1E, #282828);
  border-color: #333333;
}

@media (max-width: 768px) {
  .support-card {
    flex-direction: column;
    text-align: center;
  }
}

.support-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .support-options {
    justify-content: center;
  }
}

/* ==========================================
   14. FOOTER & UTILITIES
   ========================================== */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  margin-top: 60px;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

[data-theme="dark"] .site-footer {
  background: #121212;
  border-color: #333333;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--secondary);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toastIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

[data-theme="dark"] .toast {
  background: #282828;
  color: #FFFFFF;
  border: 1px solid #333333;
}

@keyframes toastIn {
  from { transform: translateY(100%) scale(0.9); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Skeleton Loading & Empty State */
.skeleton-loader,
.skeleton {
  background: linear-gradient(90deg, var(--surface2) 25%, var(--border) 50%, var(--surface2) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite ease-in-out;
  border-radius: var(--radius-sm);
  min-height: 20px;
  display: block;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
  color: var(--muted);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface2);
  margin: 24px 0;
  transition: background-color var(--transition-speed) ease;
}

[data-theme="dark"] .empty-state {
  background: #1E1E1E;
  border-color: #333333;
}

.empty-state-icon {
  font-size: 3.5rem;
  margin-bottom: 12px;
  opacity: 0.8;
  line-height: 1;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.empty-state-text {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 400px;
  margin-bottom: 16px;
}

/* MOBILE VIEWPORT STABILITY */
html, body { width: 100%; max-width: 100%; min-width: 0; }
body { margin: 0; }
.container, .site-header, main, .site-footer { width: 100%; max-width: 100vw; min-width: 0; }
.container { margin-left: auto; margin-right: auto; }
img, video, svg, canvas, iframe { max-width: 100%; }
.nav > *, .nav-actions > *, .hero-grid > *, .listing-layout > *, .product-grid > *, .footer-grid > *, .cart-layout > *, .checkout-layout > *, .account-layout > * { min-width: 0; }
@media (max-width: 768px) {
  html, body { width: 100%; max-width: 100vw; }
  .container { width: 100%; max-width: 100vw; padding-left: 16px; padding-right: 16px; }
  .nav { width: 100%; max-width: 100%; gap: 8px; }
  .brand { min-width: 0; flex: 1 1 auto; }
  .brand-text { min-width: 0; overflow: hidden; }
  .brand-text strong, .brand-text small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .header-search { min-width: 0; max-width: none; }
  .header-search input { min-width: 0; }
  .desktop-nav { display: none; }
  .hero, .section, .site-footer, .hero-grid, .listing-layout, .cart-layout, .checkout-layout, .account-layout { width: 100%; max-width: 100vw; min-width: 0; }
  .listing-layout { grid-template-columns: minmax(0, 1fr); }
  .search-box-wide, .input-search { width: 100%; min-width: 0; max-width: 100%; }
  .product-grid { width: 100%; max-width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card, .category-card, .feature, .card, .table-container { min-width: 0; max-width: 100%; }
  .btn, button, select, input, textarea { max-width: 100%; }
}
@media (max-width: 360px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .brand { gap: 6px; }
  .brand-logo { height: 36px; }
  .brand-text strong { font-size: .84rem; }
  .brand-text small { font-size: .52rem; letter-spacing: 1px; }
  .product-grid { gap: 10px; }
}

/* ===== Multi-Channel Support Hub ===== */
.rayy-support-hub { background: linear-gradient(135deg, #fff 0%, #fafafa 100%); border-radius: 20px; padding: 40px 32px; box-shadow: 0 4px 24px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.06); }
.rayy-support-header { text-align: center; margin-bottom: 28px; }
.rayy-support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.rayy-channel-card { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px; text-decoration: none; color: #1a1a1a; background: #fff; border: 1px solid rgba(0,0,0,.08); transition: all .25s ease; position: relative; overflow: hidden; }
.rayy-channel-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; transition: opacity .25s; border-radius: 14px; }
.rayy-channel-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.12); border-color: transparent; }
.rayy-channel-card:hover::before { opacity: .08; }
.rayy-ch-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.rayy-ch-info { flex: 1; min-width: 0; }
.rayy-ch-info strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.rayy-ch-info span { display: block; font-size: 12px; color: #666; }
.rayy-ch-arrow { font-size: 18px; color: #ccc; transition: all .25s; }
.rayy-channel-card:hover .rayy-ch-arrow { color: #d62828; transform: translateX(4px); }
/* Channel colors */
.rayy-ch-telegram-owner .rayy-ch-icon { background: #229ED9; }
.rayy-ch-telegram-owner::before { background: #229ED9; }
.rayy-ch-telegram-channel .rayy-ch-icon { background: #2AABEE; }
.rayy-ch-telegram-channel::before { background: #2AABEE; }
.rayy-ch-viber .rayy-ch-icon { background: #7360F2; }
.rayy-ch-viber::before { background: #7360F2; }
.rayy-ch-messenger .rayy-ch-icon { background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%); }
.rayy-ch-messenger::before { background: #006AFF; }
.rayy-ch-facebook .rayy-ch-icon { background: #1877F2; }
.rayy-ch-facebook::before { background: #1877F2; }
.rayy-ch-phone .rayy-ch-icon { background: #34D399; }
.rayy-ch-phone::before { background: #34D399; }
/* Footer social icons */
.rayy-footer-social { display: flex; gap: 10px; }
.rayy-footer-social a { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; transition: all .25s ease; }
.rayy-footer-social a:hover { transform: translateY(-2px); }
.rayy-soc-tg { background: #229ED9; }
.rayy-soc-vb { background: #7360F2; }
.rayy-soc-fb { background: #1877F2; }
.rayy-soc-ms { background: linear-gradient(135deg, #00B2FF 0%, #006AFF 100%); }
.rayy-soc-ph { background: #34D399; }
/* Dark mode */
[data-theme="dark"] .rayy-support-hub { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-color: rgba(255,255,255,.08); }
[data-theme="dark"] .rayy-channel-card { background: #1e1e2e; border-color: rgba(255,255,255,.08); color: #e0e0e0; }
[data-theme="dark"] .rayy-ch-info span { color: #999; }
[data-theme="dark"] .rayy-ch-arrow { color: #555; }
/* Mobile */
@media (max-width: 600px) {
  .rayy-support-grid { grid-template-columns: 1fr; }
  .rayy-support-hub { padding: 28px 18px; }
}
