:root {
    --primary: #C9A84C;
    --secondary: #1E3A8A;
    --blue-accent: #2563EB;
    --background-dark: #0A0A0F;
    --background-blue: #0D1B3E;
    --secondary-bg: #1A1408;
    --text-dark-primary: #FFFFFF;
    --text-dark-secondary: #A3A3A3;
    
    --bs-body-bg: var(--background-dark);
    --bs-body-color: var(--text-dark-primary);
    
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
    
    --font-display: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", "DM Sans", sans-serif;
}

body {
    background-color: var(--background-dark);
    color: var(--text-dark-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Custom Gradients */
.bg-hero-gradient {
    background: linear-gradient(135deg, #0A0A0F 0%, #0D1B3E 45%, #1A1408 75%, #0A0A0F 100%);
}

.text-gold {
    color: var(--primary) !important;
}

.text-blue {
    color: var(--secondary) !important;
}

.bg-gold {
    background-color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #0A0A0F;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #dfbf62;
    border-color: #dfbf62;
    color: #0A0A0F;
}

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

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

/* Header Navbar Override */
.navbar-dark {
    background-color: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.navbar-dark .navbar-brand {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--primary);
}

.navbar-dark .nav-link {
    color: var(--text-dark-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.navbar-dark .nav-link:hover {
    color: var(--primary);
}

/* Footer Override */
.footer {
    background-color: var(--background-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

/* Cards */
.card-dark {
    background-color: var(--secondary-bg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card-dark:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Utilities */
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

/* ═══ CINEMATIC KEYFRAMES (ported from Next.js globals.css) ═══ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 40px rgba(201,168,76,0.5), 0 0 60px rgba(30,58,138,0.2); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ CINEMATIC GRADIENTS ═══ */
.hero-gradient {
  background: linear-gradient(135deg, #0A0A0F 0%, #0D1B3E 45%, #1A1408 75%, #0A0A0F 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}
.section-hero {
  background: linear-gradient(135deg, #0A0A0F 0%, #0D1B3E 40%, #1A1408 70%, #0A0A0F 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
}
.section-blue {
  background: linear-gradient(135deg, #0D1B3E 0%, #0A0A0F 50%, #0D1B3E 100%);
}
.gradient-bar {
  background: linear-gradient(90deg, #1E3A8A, #C9A84C, #2563EB, #C9A84C, #1E3A8A);
  background-size: 300% 100%;
  animation: gradientShift 4s ease infinite;
}
.animated-gradient-text {
  background: linear-gradient(90deg, #C9A84C, #2563EB, #C9A84C);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/* ═══ GLASSMORPHISM ═══ */
.glass-dark {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-blue {
  background: rgba(30, 58, 138, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.glass-gold {
  background: rgba(201, 168, 76, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ═══ BUTTON SYSTEM (matches original .btn-gold / .btn-blue) ═══ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: var(--primary);
  color: #000;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  transition: all 0.2s ease;
}
.btn-gold:hover {
  opacity: 0.9;
  color: #000;
  box-shadow: 0 6px 25px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.btn-blue {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  border-radius: 2px;
  border: none;
  box-shadow: 0 4px 15px rgba(30,58,138,0.3);
  transition: all 0.2s ease;
}
.btn-blue:hover {
  background: var(--blue-accent);
  color: #fff;
  box-shadow: 0 6px 25px rgba(30,58,138,0.5);
  transform: translateY(-1px);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 2px;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); color: var(--primary); }
.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-weight: 700;
  border-radius: 2px;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-outline-blue:hover { background: rgba(30,58,138,0.1); color: var(--secondary); }

/* ═══ CARD HOVER EFFECTS ═══ */
.card-cinematic {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card-cinematic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  transition: left 0.5s ease;
}
.card-cinematic:hover::before { left: 100%; }
.card-cinematic:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4) !important;
}

/* ═══ GLOW EFFECTS ═══ */
.glow-gold { box-shadow: 0 0 30px rgba(201,168,76,0.15); }
.glow-blue { box-shadow: 0 0 30px rgba(30,58,138,0.25); }

/* ═══ ANIMATION UTILITIES ═══ */
.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-float    { animation: float 3s ease-in-out infinite; }
.animate-glow-gold{ animation: glowPulse 2s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; opacity: 0; }
.delay-200 { animation-delay: 0.2s; opacity: 0; }
.delay-300 { animation-delay: 0.3s; opacity: 0; }
.delay-400 { animation-delay: 0.4s; opacity: 0; }

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
}

.product-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1408 0%, #0A0A0F 100%);
}
.product-img-fallback::after {
  content: 'VISUALLY ART';
  color: rgba(201,168,76,0.25);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
