/* =============================================
   Shop Theme Overrides
   Applied via data-theme attribute on <html>
   ============================================= */

/* Default — Blue & Yellow (already set in :root of style.css) */
[data-theme="default"] {
  --theme-primary: #263C97;
  --theme-primary-dark: #1c3061;
  --theme-accent: #fcbe00;
  --theme-accent-rgb: 252, 190, 0;
  --theme-footer-bg: #222;
  --theme-footer-text: #fff;
}

/* Modern Tech — Dark Navy & Cyan */
[data-theme="modern-tech"] {
  --theme-primary: #1a1a2e;
  --theme-primary-dark: #0f0f1a;
  --theme-accent: #00adb5;
  --theme-accent-rgb: 0, 173, 181;
  --theme-footer-bg: #0f3460;
  --theme-footer-text: #e0e0e0;
}

/* Natural & Organic — Earthy Greens */
[data-theme="natural-organic"] {
  --theme-primary: #2d5016;
  --theme-primary-dark: #1b3409;
  --theme-accent: #7cb342;
  --theme-accent-rgb: 124, 179, 66;
  --theme-footer-bg: #1b3409;
  --theme-footer-text: #e8f5e9;
}

/* Luxury & Elegance — Black & Gold */
[data-theme="luxury-elegance"] {
  --theme-primary: #1c1c1c;
  --theme-primary-dark: #111;
  --theme-accent: #c9a84c;
  --theme-accent-rgb: 201, 168, 76;
  --theme-footer-bg: #111;
  --theme-footer-text: #d4c5a0;
}

/* Fresh & Starter — Warm Orange */
[data-theme="fresh-starter"] {
  --theme-primary: #e8590c;
  --theme-primary-dark: #c44b0a;
  --theme-accent: #ff6b35;
  --theme-accent-rgb: 255, 107, 53;
  --theme-footer-bg: #2b2b2b;
  --theme-footer-text: #f5f5f5;
}
