/* Global Dark/Light Theme - ItaliaSushi Robot */

/* Theme toggle button */
.isr-theme-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(128,128,128,0.3);
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: inherit;
  flex-shrink: 0;
}
.isr-theme-btn:hover {
  border-color: #F97316;
  transform: scale(1.1);
}

/* ══════ DARK MODE (default) ══════ */
[data-theme="dark"] {
  color-scheme: dark;
}
[data-theme="dark"] body {
  background: #0a0a0a !important;
  color: #f1f5f9 !important;
}
[data-theme="dark"] nav,
[data-theme="dark"] .nav-fixed {
  background: rgba(10,10,10,0.95) !important;
  border-color: #1a1a1a !important;
}
[data-theme="dark"] nav a,
[data-theme="dark"] nav span {
  color: #cbd5e1 !important;
}
[data-theme="dark"] nav a:hover,
[data-theme="dark"] nav a.text-primary {
  color: #F97316 !important;
}
[data-theme="dark"] .bg-white,
[data-theme="dark"] .bg-gray-50,
[data-theme="dark"] .bg-gray-100 {
  background: #111111 !important;
}
[data-theme="dark"] .bg-gray-200 {
  background: #1a1a1a !important;
}
[data-theme="dark"] .bg-gray-800,
[data-theme="dark"] .bg-gray-900 {
  background: #0d0d0d !important;
}
[data-theme="dark"] .text-gray-900,
[data-theme="dark"] .text-gray-800,
[data-theme="dark"] .text-gray-700 {
  color: #e2e8f0 !important;
}
[data-theme="dark"] .text-gray-600,
[data-theme="dark"] .text-gray-500 {
  color: #94a3b8 !important;
}
[data-theme="dark"] .text-gray-400,
[data-theme="dark"] .text-gray-300 {
  color: #64748b !important;
}
[data-theme="dark"] .text-white {
  color: #f1f5f9 !important;
}
[data-theme="dark"] .text-secondary {
  color: #94a3b8 !important;
}
[data-theme="dark"] .border-gray-200,
[data-theme="dark"] .border-gray-300 {
  border-color: #1e293b !important;
}
[data-theme="dark"] .shadow-lg,
[data-theme="dark"] .shadow-md,
[data-theme="dark"] .shadow-xl {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
}
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: #1a1a1a !important;
  border-color: #2d3748 !important;
  color: #f1f5f9 !important;
}
[data-theme="dark"] .italian-flag {
  opacity: 0.7;
}
/* Cards */
[data-theme="dark"] .rounded-xl,
[data-theme="dark"] .rounded-2xl {
  background-color: #111 !important;
  border-color: #1e293b !important;
}
/* Hero sections */
[data-theme="dark"] section[class*="bg-gradient"] {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%) !important;
}
/* Footer */
[data-theme="dark"] footer {
  background: #050505 !important;
  border-color: #1a1a1a !important;
}
[data-theme="dark"] footer a,
[data-theme="dark"] footer p,
[data-theme="dark"] footer span,
[data-theme="dark"] footer h3,
[data-theme="dark"] footer h4 {
  color: #94a3b8 !important;
}
/* FAQ Accordion */
[data-theme="dark"] details {
  background: #111 !important;
  border-color: #1e293b !important;
}
[data-theme="dark"] details summary {
  color: #e2e8f0 !important;
}
/* Blog cards */
[data-theme="dark"] article {
  background: #111 !important;
  border-color: #1e293b !important;
}
/* Sticky contact bar */
[data-theme="dark"] .sticky-contact-bar {
  background: linear-gradient(135deg, #d97706 0%, #c2410c 100%) !important;
}
/* Category page cards */
[data-theme="dark"] .group {
  background: #111 !important;
}

/* ══════ LIGHT MODE ══════ */
[data-theme="light"] {
  color-scheme: light;
}
[data-theme="light"] body {
  background: #fafafa !important;
  color: #0f172a !important;
}
[data-theme="light"] .isr-theme-btn {
  color: #334155;
  border-color: #cbd5e1;
}

/* Products page specific - sync with its own variable system */
[data-theme="light"] .hdr {
  background: rgba(255,255,255,0.95) !important;
}
