/* ============================================
   Progatis Shop - Custom Styles
   Dark Theme Default, CoreUI/Bootstrap 5
   ============================================ */

/* Override CoreUI defaults to use our theme */
:root,
[data-coreui-theme="dark"] {
  --cui-body-bg: var(--pg-bg, #0a0a0a);
  --cui-body-color: var(--pg-text, #f0f0f0);
  --cui-tertiary-bg: var(--pg-bg-secondary, #141414);
  color-scheme: dark;
}

[data-coreui-theme="light"],
[data-theme="light"] {
  --cui-body-bg: var(--pg-bg, #f5f5f5);
  --cui-body-color: var(--pg-text, #0a0a0a);
  --cui-tertiary-bg: var(--pg-bg-secondary, #ffffff);
  color-scheme: light;
}

:root {
  --pg-accent: #3b82f6;
  --pg-accent-dark: #2563eb;
  --pg-accent-light: #60a5fa;
  --pg-bg: #0a0a0a;
  --pg-bg-secondary: #141414;
  --pg-bg-card: #1a1a1a;
  --pg-bg-input: #222222;
  --pg-border: #2a2a2a;
  --pg-text: #f0f0f0;
  --pg-text-muted: #888888;
  --pg-text-secondary: #cccccc;
  --pg-success: #22c55e;
  --pg-warning: #f59e0b;
  --pg-danger: #ef4444;
  --pg-navbar-h: 64px;
}

[data-theme="light"] {
  --pg-bg: #f5f5f5;
  --pg-bg-secondary: #ffffff;
  --pg-bg-card: #ffffff;
  --pg-bg-input: #f9f9f9;
  --pg-border: #e0e0e0;
  --pg-text: #0a0a0a;
  --pg-text-muted: #666666;
  --pg-text-secondary: #444444;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--pg-bg);
  color: var(--pg-text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  transition: background-color 0.3s, color 0.3s;
}

/* ---- Test Banner ---- */
.test-banner {
  background: #b91c1c;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 9999;
  letter-spacing: 0.02em;
}

/* ---- Navbar ---- */
.pg-navbar {
  background: var(--pg-bg-secondary) !important;
  border-bottom: 1px solid var(--pg-border);
  height: auto;
  min-height: var(--pg-navbar-h);
  position: sticky;
  top: 36px;
  z-index: 1000;
}

.pg-navbar .navbar-brand img,
.pg-navbar .navbar-brand svg {
  height: 38px;
}

/* Mobile navbar collapse */
.pg-navbar .navbar-collapse {
  background: var(--pg-bg-secondary);
}

@media (max-width: 991px) {
  .pg-navbar .navbar-collapse {
    padding: 1rem 0;
    border-top: 1px solid var(--pg-border);
    margin-top: 0.5rem;
  }
  .pg-navbar .navbar-collapse .d-flex {
    margin-top: 0.75rem;
  }
}

/* Override CoreUI navbar toggler for dark/light */
.pg-navbar .navbar-toggler {
  border-color: var(--pg-border);
}
.pg-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(240,240,240,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
[data-theme="light"] .pg-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(10,10,10,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.pg-navbar .nav-link {
  color: var(--pg-text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.pg-navbar .nav-link:hover,
.pg-navbar .nav-link.active {
  color: var(--pg-accent) !important;
  background: rgba(59, 130, 246, 0.08);
}

.cart-btn {
  position: relative;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  color: var(--pg-accent) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  transition: all 0.2s;
}

.cart-btn:hover {
  background: var(--pg-accent);
  color: #fff !important;
  border-color: var(--pg-accent);
}

.cart-count {
  background: var(--pg-danger);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.theme-toggle-btn {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.theme-toggle-btn:hover {
  border-color: var(--pg-accent);
  color: var(--pg-accent);
}

/* ---- Hero Slider ---- */
.hero-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
}

.hero-slide {
  padding: 5rem 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--pg-accent-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title .accent { color: var(--pg-accent); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--pg-text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-primary-pg {
  background: var(--pg-accent);
  border: none;
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-pg:hover {
  background: var(--pg-accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline-pg {
  background: transparent;
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-pg:hover {
  border-color: var(--pg-accent);
  color: var(--pg-accent);
  background: rgba(59, 130, 246, 0.05);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-emoji-box {
  font-size: 7rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2rem 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pg-text-muted);
}

.carousel-indicators button.active {
  background: var(--pg-accent);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--pg-bg-secondary);
  border-top: 1px solid var(--pg-border);
  border-bottom: 1px solid var(--pg-border);
  padding: 1.2rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  border-right: 1px solid var(--pg-border);
}

.trust-item:last-child { border-right: none; }

.trust-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--pg-accent);
}
.trust-icon i {
  font-size: 1.6rem;
}

.trust-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--pg-text-muted);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.trust-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--pg-text);
  line-height: 1.2;
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--pg-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--pg-text-muted);
  font-size: 0.95rem;
}

/* ---- Category Cards ---- */
.cat-card {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--pg-text);
  display: block;
}

.cat-card:hover {
  border-color: var(--pg-accent);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  color: var(--pg-text);
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
  color: var(--pg-accent);
}
.cat-icon i {
  font-size: 2.2rem;
}

.cat-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.cat-count {
  font-size: 0.75rem;
  color: var(--pg-text-muted);
}

/* ---- Product Cards ---- */
.prod-card {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s;
  position: relative;
}

.prod-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.prod-emoji {
  font-size: 3.5rem;
  text-align: center;
  padding: 1rem 0;
  background: var(--pg-bg-secondary);
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
  color: var(--pg-accent);
}
.prod-emoji i {
  font-size: 2.8rem;
}

.prod-brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pg-accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.prod-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.prod-specs {
  font-size: 0.75rem;
  color: var(--pg-text-muted);
  margin-bottom: 0.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

.prod-avail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avail-dot.green { background: var(--pg-success); box-shadow: 0 0 6px rgba(34,197,94,0.5); }
.avail-dot.yellow { background: var(--pg-warning); box-shadow: 0 0 6px rgba(245,158,11,0.5); }
.avail-dot.red { background: var(--pg-danger); box-shadow: 0 0 6px rgba(239,68,68,0.5); }

.prod-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pg-text);
  margin-bottom: 0.25rem;
}

.prod-price-vat {
  font-size: 0.7rem;
  color: var(--pg-text-muted);
  margin-bottom: 1rem;
}

.btn-add-cart {
  background: var(--pg-accent);
  border: none;
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.82rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-add-cart:hover {
  background: var(--pg-accent-dark);
  transform: translateY(-1px);
}

.btn-add-cart.added {
  background: var(--pg-success);
}

/* ---- License Badge ---- */
.license-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.license-subscription { background: rgba(59,130,246,0.15); color: #60a5fa; }
.license-perpetual { background: rgba(34,197,94,0.15); color: #4ade80; }
.license-volume { background: rgba(245,158,11,0.15); color: #fbbf24; }

/* ---- Shop Layout ---- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar { display: none; }
  .shop-sidebar.open { display: block; }
}

.shop-sidebar {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--pg-navbar-h) + 36px + 20px);
}

.sidebar-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pg-border);
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pg-text-muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--pg-text-secondary);
  transition: color 0.15s;
}

.filter-check:hover { color: var(--pg-accent); }

.filter-check input[type="checkbox"] {
  accent-color: var(--pg-accent);
  width: 14px;
  height: 14px;
}

.price-range {
  width: 100%;
  accent-color: var(--pg-accent);
  margin: 0.5rem 0;
}

/* ---- Search & Sort Bar ---- */
.shop-toolbar {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.search-input {
  background: var(--pg-bg-input);
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  border-radius: 7px;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  flex: 1;
  min-width: 160px;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: var(--pg-accent);
}

.search-input::placeholder { color: var(--pg-text-muted); }

.sort-select {
  background: var(--pg-bg-input);
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  border-radius: 7px;
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.sort-select:focus { outline: none; border-color: var(--pg-accent); }

.result-count {
  font-size: 0.8rem;
  color: var(--pg-text-muted);
  margin-left: auto;
  white-space: nowrap;
}

/* ---- Cart ---- */
.cart-table-wrap {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  overflow: hidden;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  background: var(--pg-bg-secondary);
  padding: 0.875rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--pg-text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--pg-border);
  text-align: left;
}

.cart-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--pg-border);
  vertical-align: middle;
}

.cart-table tr:last-child td { border-bottom: none; }

.qty-input {
  background: var(--pg-bg-input);
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  width: 60px;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  font-size: 0.875rem;
}

.qty-input:focus { outline: none; border-color: var(--pg-accent); }

.btn-remove {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--pg-danger);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.btn-remove:hover {
  background: var(--pg-danger);
  color: #fff;
}

.cart-summary {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--pg-text-secondary);
  border-bottom: 1px solid var(--pg-border);
}

.summary-row:last-child { border-bottom: none; }

.summary-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pg-text);
}

.btn-anfragen {
  background: var(--pg-accent);
  border: none;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 9px;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
  margin-top: 1.25rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-anfragen:hover {
  background: var(--pg-accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}

/* ---- Footer ---- */
.pg-footer {
  background: var(--pg-bg-secondary);
  border-top: 1px solid var(--pg-border);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-logo-area {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--pg-text-muted);
  margin-top: 0.5rem;
}

.footer-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pg-text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  color: var(--pg-text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pg-accent); }

.footer-contact p {
  font-size: 0.875rem;
  color: var(--pg-text-secondary);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pay-badge {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 5px;
  padding: 0.3rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--pg-text-muted);
  letter-spacing: 0.03em;
}

.footer-bottom {
  border-top: 1px solid var(--pg-border);
  padding-top: 1.25rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--pg-text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--pg-accent); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--pg-text-muted);
}

/* ---- Legal Pages ---- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}

.legal-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.legal-page .lead {
  color: var(--pg-text-muted);
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--pg-accent-light);
}

.legal-page p, .legal-page li {
  font-size: 0.9rem;
  color: var(--pg-text-secondary);
  line-height: 1.75;
}

.legal-page ul { padding-left: 1.25rem; }

.legal-card {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
}

/* ---- Cart Empty State ---- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--pg-text-muted);
}

.empty-state .empty-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
  display: block;
}

.empty-state h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--pg-text-secondary);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.4s ease forwards; }

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .hero-title { font-size: 1.8rem; }
  .hero-emoji-box { font-size: 4rem; padding: 1rem 2rem; }
  .trust-item { padding: 0.5rem 0.75rem; }
  .trust-value { font-size: 0.9rem; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .result-count { margin-left: 0; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom-links { flex-direction: column; gap: 0.5rem; }
}

/* ---- Light mode overrides ---- */
[data-theme="light"] .hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
}

[data-theme="light"] .hero-emoji-box {
  background: rgba(255,255,255,0.7);
  border-color: rgba(59,130,246,0.3);
}

[data-theme="light"] .hero-desc {
  color: #555;
}

[data-theme="light"] .pg-navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ---- Inline SVG Logo ---- */
.pg-logo-svg { display: block; }
.pg-logo-svg .logo-prog { fill: var(--pg-text); transition: fill 0.3s; }
.pg-logo-svg .logo-atis { fill: var(--pg-accent); }

/* ---- Language Toggle ---- */
.lang-toggle-btn {
  background: var(--pg-bg-card);
  border: 1px solid var(--pg-border);
  color: var(--pg-text);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  line-height: 1;
}

.lang-toggle-btn:hover {
  border-color: var(--pg-accent);
  color: var(--pg-accent);
}

/* ---- Misc ---- */
.section-pad { padding: 4rem 0; }
.section-pad-sm { padding: 2rem 0; }

.text-accent { color: var(--pg-accent); }

.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--pg-text-muted);
  font-size: 0.95rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--pg-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--pg-text-muted); }
