/* ========================================
   MODERN BLACK THEME - PROFESSIONAL & SLEEK
   ======================================== */

/* ========================================
   1. CSS VARIABLES FOR MODERN DARK DESIGN
   ======================================== */

:root {
  /* Modern Dark Palette */
  --primary-gradient: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  --primary-dark: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  
  /* Dark Colors */
  --primary: #1f2937;
  --primary-light: #374151;
  --primary-darker: #111827;
  
  /* Accent */
  --accent: #f59e0b;
  --accent-dark: #ff6b35;
  
  /* Neutral */
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-dark: #0f172a;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-light: #9ca3af;
  --border-color: #e5e7eb;
  
  /* Shadows */
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   2. LOGIN BUTTON - MODERN BLACK SLEEK
   ======================================== */

.header-login-btn a.login {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
  color: white !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.75rem !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(31, 41, 55, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.header-login-btn a.login::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent) !important;
  transition: left 600ms ease !important;
  pointer-events: none !important;
}

.header-login-btn a.login:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(31, 41, 55, 0.25) !important;
  transform: translateY(-3px) !important;
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.header-login-btn a.login:hover::before {
  left: 100% !important;
}

.header-login-btn a.login:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* ========================================
   3. GLOBAL ENHANCEMENTS
   ======================================== */

body {
  background-color: #f9fafb !important;
  color: #111827 !important;
}

/* Smooth transitions for all elements */
* {
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast) !important;
}

/* ========================================
   4. MODERN TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  color: #111827 !important;
  font-weight: 700 !important;
}
 

a:hover {
  color: #dab163 !important;
}

/* ========================================
   5. BUTTONS & CTA
   ======================================== */

.btn, button, input[type="button"], input[type="submit"] {
  border-radius: 0.5rem !important;
  font-weight: 600 !important;
  transition: all var(--transition-base) !important;
  border: none !important;
}

.btn-primary, .primary-button {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%) !important;
  color: white !important;
  box-shadow: var(--shadow-dark) !important;
}

.btn-primary:hover, .primary-button:hover {
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-2px) !important;
}

/* ========================================
   6. CARDS & CONTAINERS
   ======================================== */

.card, .product-card, .wp-block-group {
  background: white !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  transition: all var(--transition-base) !important;
}

.card:hover, .product-card:hover {
  box-shadow: var(--shadow-dark) !important;
  transform: translateY(-4px) !important;
  border-color: #1f2937 !important;
}

/* ========================================
   7. FORMS
   ======================================== */

input, textarea, select {
  border: 1px solid #e5e7eb !important;
  border-radius: 0.5rem !important;
  padding: 0.75rem 1rem !important;
  transition: all var(--transition-base) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: #1f2937 !important;
  box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1) !important;
  outline: none !important;
}

/* ========================================
   8. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .header-login-btn a.login {
    padding: 0.65rem 1.25rem !important;
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .header-login-btn a.login {
    padding: 0.6rem 1rem !important;
    font-size: 12px !important;
  }
}
