/* Theme Switcher Styles */

/* Theme Switcher Button & Panel */
.theme-switcher-container {
  position: relative;
  z-index: 999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* When in header */
.header-actions .theme-switcher-container {
  position: relative;
  display: inline-block;
}

/* Floating version (fallback) */
body > .theme-switcher-container {
  position: fixed;
  top: 100px;
  right: 20px;
}

.theme-switcher-toggle {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-color, #db2777);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}

/* Floating version styling */
body > .theme-switcher-container .theme-switcher-toggle {
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.theme-switcher-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body > .theme-switcher-container .theme-switcher-toggle:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.theme-switcher-toggle svg {
  width: 18px;
  height: 18px;
  fill: white;
}

body > .theme-switcher-container .theme-switcher-toggle svg {
  width: 22px;
  height: 22px;
}

.theme-switcher-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Floating version panel positioning */
body > .theme-switcher-container .theme-switcher-panel {
  top: 60px;
  right: 0;
}

.theme-switcher-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-switcher-header {
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.theme-switcher-header h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #1f2937;
  font-weight: 600;
}

.theme-switcher-header p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

.theme-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.theme-option {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 14px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  position: relative;
  overflow: hidden;
}

.theme-option:hover {
  border-color: var(--primary-color, #db2777);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.theme-option.active {
  border-color: var(--primary-color, #db2777);
  background: rgba(219, 39, 119, 0.03);
}

.theme-option.active::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  color: var(--primary-color, #db2777);
  font-weight: bold;
  font-size: 14px;
}

.theme-preview {
  width: 100%;
  height: 50px;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: relative;
  overflow: hidden;
  color: white;
}

.theme-name {
  font-size: 13px;
  font-weight: 600;
  color: #000000 !important;
  margin: 0;
  text-align: center;
}

/* Theme Preview Colors */
.theme-light .theme-preview {
  background: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
}

.theme-dark .theme-preview {
  background: #000000;
}

/* Light Theme - Ensure text is black */
[data-theme="light"] .theme-name {
  color: #000000 !important;
}

/* Override for theme name in theme options within light theme */
[data-theme="light"] .theme-option .theme-name {
  color: #000000 !important;
}

/* Dark Theme - Theme Switcher Panel Visibility */
[data-theme="dark"] .theme-switcher-panel {
  background: #1a0b2e !important;
  border-color: #2d1b4e !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .theme-switcher-header {
  border-bottom-color: #2d1b4e !important;
}

[data-theme="dark"] .theme-switcher-header h3 {
  color: #f9fafb !important;
}

[data-theme="dark"] .theme-switcher-header p {
  color: #d1d5db !important;
}

[data-theme="dark"] .theme-option {
  background: #240b3e !important;
  border-color: #2d1b4e !important;
}

[data-theme="dark"] .theme-option:hover {
  border-color: #a855f7 !important;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.2) !important;
}

[data-theme="dark"] .theme-option.active {
  border-color: #a855f7 !important;
  background: rgba(168, 85, 247, 0.15) !important;
}

[data-theme="dark"] .theme-name {
  color: #f9fafb !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Floating version adjustments */
  body > .theme-switcher-container {
    top: 80px;
    right: 10px;
  }

  body > .theme-switcher-container .theme-switcher-toggle {
    width: 44px;
    height: 44px;
  }

  .theme-switcher-panel {
    width: 260px;
    right: -20px;
  }
  
  /* Header version - hide on mobile, shown in mobile menu instead */
  .header-actions .theme-switcher-container {
    display: none;
  }
  
  /* Show floating version on mobile */
  body > .theme-switcher-container {
    display: block;
  }
}

/* Desktop - hide floating, show header version */
@media (min-width: 769px) {
  body > .theme-switcher-container {
    display: none;
  }
  
  .header-actions .theme-switcher-container {
    display: inline-block;
  }
}

/* ================================ */
/* THEME VARIABLES & STYLES */
/* ================================ */

/* Root transitions for smooth theme changes */
:root {
  transition: background-color 0.4s ease, color 0.4s ease;
}

body {
  transition: background 0.4s ease, color 0.4s ease;
}

.hero,
.features,
.featured-products,
.cta-section,
.product-card,
.btn,
.nav-link {
  transition: all 0.4s ease;
}

/* ========== LIGHT THEME (Default - Pink/Purple) ========== */
[data-theme="light"] {
  --primary-color: #db2777;
  --primary-dark: #be185d;
  --secondary-color: #7c3aed;
  --accent-color: #a855f7;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --background: #f9fafb;
  --background-alt: #ffffff;
  --border-color: #e5e7eb;
  --card-bg: #ffffff;
  --shadow: rgba(219, 39, 119, 0.1);
}

[data-theme="light"] body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #f9fafb;
  color: #1f2937;
}

[data-theme="light"] .hero {
  background: linear-gradient(135deg, #fce7f3 0%, #e0e7ff 100%);
}

[data-theme="light"] .hero h1,
[data-theme="light"] .hero h2,
[data-theme="light"] .hero .hero-title,
[data-theme="light"] .hero .hero-subtitle {
  color: #1f2937 !important;
}

[data-theme="light"] .hero p,
[data-theme="light"] .hero .hero-text,
[data-theme="light"] .hero-text p,
[data-theme="light"] .hero .tagline-item,
[data-theme="light"] .tagline-carousel .tagline-item {
  color: #6b7280 !important;
}

[data-theme="light"] .product-card {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  transition: all 0.3s ease;
}

[data-theme="light"] .product-card:hover {
  box-shadow: 0 4px 20px rgba(219, 39, 119, 0.15);
  border-color: #db2777;
  transform: translateY(-2px);
}

/* ========== DARK THEME (Elegant Purple) ========== */
[data-theme="dark"] {
  --primary-color: #a855f7;
  --primary-dark: #7c3aed;
  --secondary-color: #c084fc;
  --accent-color: #e9d5ff;
  --text-dark: #f3f4f6;
  --text-gray: #d1d5db;
  --background: #0f0518;
  --background-alt: #1a0b2e;
  --border-color: #2d1b4e;
  --card-bg: #1a0b2e;
  --shadow: rgba(168, 85, 247, 0.2);
}

[data-theme="dark"] body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #0f0518;
  color: #f3f4f6;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #3b0764 0%, #581c87 50%, #6b21a8 100%);
  position: relative;
}

[data-theme="dark"] .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.3), transparent 50%),
              radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.3), transparent 50%);
  pointer-events: none;
}

[data-theme="dark"] .hero-content {
  position: relative;
  z-index: 1;
}

[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h2,
[data-theme="dark"] .hero .hero-title,
[data-theme="dark"] .hero .hero-subtitle {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(168, 85, 247, 0.4);
}

[data-theme="dark"] .hero p,
[data-theme="dark"] .hero .hero-text,
[data-theme="dark"] .hero-text p,
[data-theme="dark"] .hero .tagline-item,
[data-theme="dark"] .tagline-carousel .tagline-item {
  color: #e9d5ff !important;
}

[data-theme="dark"] .product-card {
  border: 1px solid #2d1b4e;
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%);
  transition: all 0.3s ease;
}

[data-theme="dark"] .product-card:hover {
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.3);
  border-color: #a855f7;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #240b3e 0%, #2d1b4e 100%);
}

/* Dark theme additional elements */
[data-theme="dark"] .header {
  background: #0f0518 !important;
  border-bottom-color: #2d1b4e;
}

[data-theme="dark"] .header,
[data-theme="dark"] body {
  background: #0f0518 !important;
}

[data-theme="dark"] .footer {
  background: #0f0518 !important;
  background-color: #0f0518 !important;
  border-top-color: #2d1b4e;
  color: #e5e7eb;
}

[data-theme="dark"] .footer h3,
[data-theme="dark"] .footer h4 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

[data-theme="dark"] .footer a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

[data-theme="dark"] .footer a:hover {
  color: #a855f7;
}

[data-theme="dark"] .footer p,
[data-theme="dark"] .footer li {
  color: #d1d5db;
}

[data-theme="dark"] .footer-links a {
  color: #d1d5db;
}

[data-theme="dark"] .social-links a {
  color: #d1d5db;
  border-color: #2d1b4e;
}

[data-theme="dark"] .social-links a:hover {
  color: #a855f7;
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
}

[data-theme="dark"] .feature-card {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%);
  border-color: #2d1b4e;
  color: #f3f4f6;
}

[data-theme="dark"] .feature-card:hover {
  border-color: #a855f7;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

[data-theme="dark"] .feature-card h3 {
  color: #f9fafb;
}

[data-theme="dark"] .feature-card p {
  color: #d1d5db;
}

[data-theme="dark"] .feature-icon {
  color: #a855f7;
}

[data-theme="dark"] .cta-section {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%);
  color: #f3f4f6;
}

[data-theme="dark"] .cta-section h2 {
  color: #f9fafb;
}

[data-theme="dark"] .cta-section p {
  color: #d1d5db;
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #1a0b2e;
  border-color: #2d1b4e;
  color: #f3f4f6;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
  color: #9ca3af;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

[data-theme="dark"] .nav a,
[data-theme="dark"] .mobile-nav a {
  color: #e5e7eb;
}

[data-theme="dark"] .nav a:hover,
[data-theme="dark"] .mobile-nav a:hover {
  color: #a855f7;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: #f9fafb;
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li {
  color: #d1d5db;
}

[data-theme="dark"] .order-summary,
[data-theme="dark"] .cart-item {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%);
  border-color: #2d1b4e;
}

[data-theme="dark"] .cart-item h3,
[data-theme="dark"] .order-summary h3 {
  color: #f9fafb;
}

[data-theme="dark"] .price,
[data-theme="dark"] .product-price {
  color: #c084fc;
}

[data-theme="dark"] .mobile-menu {
  background: #0f0518;
  border-color: #2d1b4e;
}

[data-theme="dark"] .btn-secondary {
  border-color: #a855f7;
  color: #a855f7;
}

[data-theme="dark"] .btn-secondary:hover {
  background: #a855f7;
  color: #ffffff;
}

/* Additional dark theme improvements for better visibility */
[data-theme="dark"] label {
  color: #e5e7eb;
}

[data-theme="dark"] .section-title,
[data-theme="dark"] .page-title {
  color: #f9fafb;
}

[data-theme="dark"] strong,
[data-theme="dark"] b {
  color: #f3f4f6;
}

[data-theme="dark"] a {
  color: #c084fc;
}

[data-theme="dark"] a:hover {
  color: #a855f7;
}

[data-theme="dark"] .team-member,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .info-box {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .value-card {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .about-team {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .contact-hero {
  background: linear-gradient(135deg, #3b0764 0%, #581c87 50%, #6b21a8 100%) !important;
}

[data-theme="dark"] .contact-hero h1 {
  background: linear-gradient(135deg, #e9d5ff 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .contact-hero p {
  color: #e9d5ff !important;
}

[data-theme="dark"] .contact-info-card {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .contact-item {
  background: linear-gradient(135deg, #240b3e 0%, #2d1b4e 100%) !important;
  border-color: #3b1c57;
}

[data-theme="dark"] .contact-icon {
  color: #a855f7 !important;
}

[data-theme="dark"] .form-card {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .contact-form-wrapper {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e;
}

[data-theme="dark"] .quick-help-box {
  background: linear-gradient(135deg, #2d1b4e 0%, #3b1c57 100%) !important;
  border-color: #a855f7;
  color: #e5e7eb;
}

[data-theme="dark"] .team-member h3,
[data-theme="dark"] .contact-card h3 {
  color: #f9fafb;
}

[data-theme="dark"] .product-info h1,
[data-theme="dark"] .product-info h2 {
  color: #f9fafb;
}

[data-theme="dark"] .product-description {
  color: #d1d5db;
}

[data-theme="dark"] .features li,
[data-theme="dark"] .features p {
  color: #d1d5db;
}

[data-theme="dark"] .checkout-form,
[data-theme="dark"] .login-form,
[data-theme="dark"] .contact-form {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%);
  border-color: #2d1b4e;
}

[data-theme="dark"] .form-group label {
  color: #e5e7eb;
}

[data-theme="dark"] .alert,
[data-theme="dark"] .notification {
  background: #1a0b2e;
  border-color: #2d1b4e;
  color: #e5e7eb;
}

[data-theme="dark"] .alert-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #d1fae5;
}

[data-theme="dark"] .alert-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #fecaca;
}

[data-theme="dark"] table {
  background: #1a0b2e;
  color: #e5e7eb;
}

[data-theme="dark"] th {
  background: #240b3e;
  color: #f9fafb;
  border-color: #2d1b4e;
}

[data-theme="dark"] td {
  border-color: #2d1b4e;
  color: #d1d5db;
}

[data-theme="dark"] .badge,
[data-theme="dark"] .tag {
  background: rgba(168, 85, 247, 0.2);
  color: #e9d5ff;
  border-color: #a855f7;
}

[data-theme="dark"] .divider,
[data-theme="dark"] hr {
  border-color: #2d1b4e;
}

[data-theme="dark"] blockquote {
  border-left-color: #a855f7;
  background: rgba(168, 85, 247, 0.05);
  color: #d1d5db;
}

[data-theme="dark"] .cart-total,
[data-theme="dark"] .order-total {
  color: #f9fafb;
}

[data-theme="dark"] .empty-cart,
[data-theme="dark"] .empty-state {
  color: #9ca3af;
}

[data-theme="dark"] .quantity-selector button {
  background: #240b3e;
  border-color: #2d1b4e;
  color: #e5e7eb;
}

[data-theme="dark"] .quantity-selector button:hover {
  background: #2d1b4e;
  border-color: #a855f7;
}

[data-theme="dark"] .logo {
  color: #f9fafb;
}

[data-theme="dark"] .copyright {
  color: #9ca3af;
}

[data-theme="dark"] .about-hero {
  color: #f9fafb;
}

[data-theme="dark"] .about-hero h1 {
  color: #f9fafb !important;
}

[data-theme="dark"] .about-hero p {
  color: #d1d5db !important;
}

[data-theme="dark"] .about-story {
  color: #d1d5db;
}

[data-theme="dark"] .about-story h2 {
  color: #f9fafb;
}

[data-theme="dark"] .text-gray {
  color: #d1d5db !important;
}

[data-theme="dark"] .value-card h3 {
  color: #f9fafb !important;
}

[data-theme="dark"] .value-card p {
  color: #d1d5db !important;
}

[data-theme="dark"] .about-team h2 {
  color: #f9fafb !important;
}

[data-theme="dark"] .about-team p {
  color: #d1d5db !important;
}

[data-theme="dark"] .footer-brand {
  color: #f9fafb !important;
}

[data-theme="dark"] .footer-section h3 {
  color: #f9fafb !important;
}

[data-theme="dark"] .footer p {
  color: #d1d5db !important;
}

[data-theme="dark"] .footer-list li {
  color: #d1d5db !important;
}

[data-theme="dark"] .footer-list a {
  color: #d1d5db !important;
}

[data-theme="dark"] .footer-bottom {
  color: #9ca3af !important;
  border-top-color: #2d1b4e !important;
}

[data-theme="dark"] .toast {
  background: #1a0b2e !important;
  border-color: #2d1b4e !important;
  color: #e5e7eb !important;
}

[data-theme="dark"] .map-container {
  border-color: #2d1b4e;
}

[data-theme="dark"] .product-image {
  background-color: #1a0b2e !important;
}

[data-theme="dark"] .page-header {
  color: #f9fafb;
}

[data-theme="dark"] .page-title {
  color: #f9fafb !important;
}

[data-theme="dark"] .page-description {
  color: #d1d5db !important;
}

/* Chatbot Dark Theme Overrides */
[data-theme="dark"] .chatbot-message-content {
  background: #ffffff !important;
  color: #000000 !important;
}

[data-theme="dark"] .chatbot-message-text {
  color: #000000 !important;
}

[data-theme="dark"] .chatbot-message-time {
  color: #4b5563 !important;
}

[data-theme="dark"] .chatbot-input::placeholder {
  color: #9ca3af !important;
}

/* Rating Stars - White in Dark Theme */
[data-theme="dark"] .product-rating svg {
  fill: #ffffff !important;
  color: #ffffff !important;
}

[data-theme="dark"] .product-rating svg path {
  fill: #ffffff !important;
}

[data-theme="dark"] .product-detail-rating svg {
  fill: #ffffff !important;
  color: #ffffff !important;
}

[data-theme="dark"] .product-detail-rating svg path {
  fill: #ffffff !important;
}

[data-theme="dark"] .stars i {
  color: #ffffff !important;
}

/* Cart Empty State - Dark Theme */
[data-theme="dark"] .cart-empty {
  background: linear-gradient(135deg, #1a0b2e 0%, #240b3e 100%) !important;
  border-color: #2d1b4e !important;
}

[data-theme="dark"] .cart-empty-icon {
  color: #a855f7 !important;
  opacity: 0.7 !important;
}

[data-theme="dark"] .cart-empty h2 {
  color: #f9fafb !important;
}

[data-theme="dark"] .cart-empty p {
  color: #d1d5db !important;
}

[data-theme="dark"] .cart-empty .text-gray {
  color: #d1d5db !important;
}

/* ================================ */
/* APPLY THEME COLORS TO ELEMENTS */
/* ================================ */

/* Override primary colors */
.btn-primary,
.btn.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #ffffff !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #ffffff !important;
}

/* Make btn-secondary also have white text when filled */
.btn-secondary.btn-lg,
.btn.btn-secondary.btn-lg {
  color: #ffffff !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-secondary.btn-lg:hover,
.btn.btn-secondary.btn-lg:hover {
  color: #ffffff !important;
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}

/* ================================ */
/* ENHANCED BUTTON VISIBILITY */
/* ================================ */

/* Make primary CTA buttons visible and professional */
.hero .btn-primary.btn-lg,
.cta-section .btn-secondary.btn-lg,
.products-section .btn-secondary.btn-lg {
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
  position: relative;
  z-index: 10;
}

.hero .btn-primary.btn-lg:hover,
.cta-section .btn-secondary.btn-lg:hover,
.products-section .btn-secondary.btn-lg:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px) !important;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary-color) !important;
}

.price,
.product-price {
  color: var(--primary-color) !important;
}

.feature-card h3,
.section-title {
  color: var(--text-dark) !important;
}

.product-card {
  background-color: var(--card-bg) !important;
  border-color: var(--border-color) !important;
}

/* Badge colors */
.cart-badge {
  background: var(--primary-color) !important;
}

/* Star ratings */
.stars i {
  color: #fbbf24 !important;
}

/* Links */
a:not(.btn):not(.nav-link) {
  color: var(--primary-color) !important;
}

a:not(.btn):not(.nav-link):hover {
  color: var(--primary-dark) !important;
}

/* Footer */
footer {
  background: var(--text-dark) !important;
  color: white !important;
}

/* Footer links - ensure they're visible on dark background */
footer a,
footer a:not(.btn):not(.nav-link) {
  color: rgba(255, 255, 255, 0.8) !important;
  transition: color 0.2s ease;
}

footer a:hover,
footer a:not(.btn):not(.nav-link):hover {
  color: #ffffff !important;
}

/* Input focus */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary-color) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--shadow) !important;
}

/* Category buttons */
.category-btn.active {
  background: var(--primary-color) !important;
  color: white !important;
}

.category-btn:hover {
  background: var(--background-alt) !important;
  color: var(--primary-color) !important;
}