/* ===== THEME VARIABLES ===== */
:root {
  /* Dark Theme (Default) */
  --gold: #76B900;
  --tech-green: #76B900;
  --dark-bg: #0E0E0E;
  --white-text: #F0EDE8;
  --gray-light: #2A2A2A;
  --card-bg: #1A1A1A;
  --body-bg: #0E0E0E;
  --text-primary: #F0EDE8;
  --text-secondary: #B0AFA8;
  --border-color: rgba(118,185,0,0.24);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --navbar-bg: rgba(14, 14, 14, 0.95);
  --input-bg: #262626;
  --input-border: #3a3a3a;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --footer-bg: #090909;
  --border-light: #222;
}

/* Light Theme */
[data-theme="light"] {
  --gold: #76B900;
  --tech-green: #76B900;
  --dark-bg: #F4EFE4;
  --white-text: #1F1F1F;
  --gray-light: #E8E1D7;
  --card-bg: #FFFFFF;
  --body-bg: #F7F3EB;
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --border-color: rgba(0,0,0,0.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --navbar-bg: rgba(247, 243, 235, 0.94);
  --input-bg: #FFFFFF;
  --input-border: #D0D0D0;
  --footer-bg: #EEE7DB;
  --border-light: #D0D0D0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--body-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-secondary);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 2rem;
}

.navbar.scrolled {
  padding: 0.7rem 2rem;
  background: var(--navbar-bg);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold);
}

.cta-nav {
  background: var(--gold);
  color: var(--dark-bg) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 700 !important;
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover {
  transform: translateY(-2px);
  background: #e09700;
}

/* Theme Toggle Button */
.theme-toggle {
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 40px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.theme-toggle:hover {
  background: var(--gold);
  color: var(--dark-bg);
  transform: scale(1.05);
}

.theme-toggle .toggle-icon {
  font-size: 1.2rem;
}

/* ===== MOBILE MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  z-index: 1001;
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gold);
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 168, 0, 0.3);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(118, 185, 0, 0.12), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 .gold-text {
  color: var(--gold);
}

.hero-feature-panel {
  background: linear-gradient(135deg, rgba(118,185,0,0.12), #0E0E0E);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(118,185,0,0.22);
  box-shadow: 0 0 0 1px rgba(118,185,0,0.08), 0 18px 48px rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .hero-feature-panel {
  background: linear-gradient(135deg, #F7F3EB, #FFFFFF) !important;
  border-color: rgba(0, 0, 0, 0.08);
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--gold);
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats {
    justify-content: center;
  }
}

/* ===== CARDS ===== */
.services-grid, .values-grid, .why-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.clients-grid,
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.services-grid.tight-grid,
.flagship-grid,
.industry-grid,
.bundle-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card, .value-card, .why-card, .team-card, .product-card-enhanced {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.client-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: var(--transition);
}

.client-item:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 168, 0, 0.3);
  box-shadow: var(--shadow);
}

.service-card.featured-card,
.value-card.featured-card,
.why-card.featured-card,
.flagship-card,
.industry-card,
.bundle-card {
  position: relative;
  overflow: hidden;
}

.flagship-card::before,
.industry-card::before,
.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 168, 0, 0.08), transparent 55%);
  pointer-events: none;
}

.service-card:hover, .value-card:hover, .why-card:hover, .team-card:hover, .product-card-enhanced:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 168, 0, 0.3);
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3, .value-card h3, .why-card h3, .team-card h3 {
  color: var(--gold);
}

.feature-list.compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(118, 185, 0, 0.12);
  color: var(--tech-green);
  border: 1px solid rgba(118, 185, 0, 0.22);
}

.flagship-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.flagship-card,
.industry-card,
.bundle-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.flagship-card:hover,
.industry-card:hover,
.bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 168, 0, 0.3);
}

.flagship-meta,
.industry-meta,
.bundle-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.flagship-meta span,
.industry-meta span,
.bundle-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 168, 0, 0.08);
  color: var(--text-primary);
  border: 1px solid rgba(245, 168, 0, 0.15);
  font-size: 0.8rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PRODUCTS TABS ===== */
.products-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.prod-tab {
  background: var(--card-bg);
  border: none;
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.prod-tab.active, .prod-tab:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.products-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.products-panel.active {
  display: grid;
}

.product-item {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  background: linear-gradient(135deg, var(--gold), #8B6912);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.product-info {
  padding: 1.5rem;
}

/* ===== CONTACT FORM ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 24px;
}

.contact-summary {
  background: linear-gradient(135deg, rgba(245, 168, 0, 0.08), rgba(245, 168, 0, 0.02));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

/* ===== ESCANDA AI WIDGET ===== */
.escanda-ai-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.escanda-ai-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gold);
  color: var(--dark-bg);
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.escanda-ai-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--dark-bg);
  box-shadow: 0 0 0 0.4rem rgba(14, 14, 14, 0.12);
}

.escanda-ai-panel {
  width: min(320px, calc(100vw - 2rem));
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow);
  display: none;
}

.escanda-ai-panel.open {
  display: block;
}

.escanda-ai-panel h4 {
  margin-bottom: 0.35rem;
  color: var(--gold);
}

.escanda-ai-panel p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.escanda-ai-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.escanda-ai-actions a {
  text-decoration: none;
  font-size: 0.9rem;
}

/* Light mode specific overrides */
[data-theme="light"] .hero::before {
  background: radial-gradient(circle at 30% 50%, rgba(245, 168, 0, 0.05), transparent);
}

[data-theme="light"] .timeline::before {
  background: linear-gradient(180deg, var(--gold), transparent);
}

[data-theme="light"] .cta-section,
[data-theme="light"] .cta-section[style*="linear-gradient"] {
  background: linear-gradient(135deg, #F7F3EB, #FFFFFF) !important;
  color: var(--text-primary);
}

[data-theme="light"] .stats-showcase {
  background: linear-gradient(135deg, #F7F3EB, #FFFFFF) !important;
  color: var(--text-primary);
}

[data-theme="light"] .product-image-enhanced {
  background: #F5F5F5;
}

[data-theme="light"] .specials-banner {
  background: linear-gradient(135deg, #FFF8E7, #FFFFFF);
}

[data-theme="light"] .escanda-ai-panel {
  background: #FFFFFF;
}

[data-theme="light"] section[style*="#0a0a0a"],
[data-theme="light"] section[style*="#0E0E0E"],
[data-theme="light"] section[style*="linear-gradient(180deg, #0E0E0E 0%, #1a1a1a 100%)"],
[data-theme="light"] section[style*="linear-gradient(135deg, #1a1a1a, #0E0E0E)"] {
  background: linear-gradient(135deg, #F7F3EB, #FFFFFF) !important;
  color: var(--text-primary) !important;
}

[data-theme="light"] .footer-grid a {
  color: var(--text-primary) !important;
}

[data-theme="light"] .nav-links a,
[data-theme="light"] .mobile-menu a {
  color: var(--text-primary);
}

[data-theme="light"] .service-card,
[data-theme="light"] .value-card,
[data-theme="light"] .why-card,
[data-theme="light"] .team-card,
[data-theme="light"] .product-card-enhanced,
[data-theme="light"] .client-item,
[data-theme="light"] .partner-logo,
[data-theme="light"] .flagship-card,
[data-theme="light"] .industry-card,
[data-theme="light"] .bundle-card,
[data-theme="light"] .service-detail,
[data-theme="light"] .mission-card,
[data-theme="light"] .vision-card,
[data-theme="light"] .contact-form,
[data-theme="light"] .hero-feature-panel {
  background: #FFFFFF !important;
  background-image: none !important;
  color: var(--text-primary) !important;
}

[data-theme="light"] .service-card p,
[data-theme="light"] .value-card p,
[data-theme="light"] .why-card p,
[data-theme="light"] .team-card p,
[data-theme="light"] .product-card-enhanced p,
[data-theme="light"] .client-item p,
[data-theme="light"] .flagship-card p,
[data-theme="light"] .service-detail p,
[data-theme="light"] .mission-card p,
[data-theme="light"] .vision-card p,
[data-theme="light"] .contact-form p {
  color: var(--text-secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1.5rem;
  }
  section {
    padding: 3rem 0;
  }

  .escanda-ai-widget {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    align-items: stretch;
  }

  .escanda-ai-panel {
    width: 100%;
  }

  .escanda-ai-launcher {
    width: 100%;
    justify-content: center;
  }
}

/* Services page additional styles */
.service-detail {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-detail:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 168, 0, 0.3);
  box-shadow: var(--shadow);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.service-icon-large {
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(118,185,0,0.2), rgba(118,185,0,0.05));
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.service-title {
  flex: 1;
}

.service-title h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(245,168,0,0.05);
  border-radius: 12px;
}

.feature-item::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-badge {
  display: inline-block;
  background: rgba(245,168,0,0.15);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tech-tag {
  background: rgba(245,168,0,0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--gold);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .service-header {
    flex-direction: column;
    text-align: center;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Products page additional styles */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
}

.product-category {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-category.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card-enhanced {
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 168, 0, 0.3);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

.product-image-enhanced {
  height: 220px;
  background: linear-gradient(135deg, #1a1a1a, #0E0E0E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid var(--border-color);
}

[data-theme="light"] .product-image-enhanced {
  background: #F5F5F5;
}

.product-details {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-specs {
  list-style: none;
  margin: 1rem 0;
}

.product-specs li {
  padding: 0.3rem 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-specs li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin: 1rem 0;
}

.product-price small {
  font-size: 0.8rem;
  font-weight: normal;
  color: var(--text-secondary);
}

.btn-sm {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}

.btn-sm:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.category-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.category-header h3 {
  font-size: 1.8rem;
  color: var(--gold);
}

.specials-banner {
  background: linear-gradient(135deg, rgba(245,168,0,0.15), rgba(245,168,0,0.05));
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.bulk-pricing {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a, #0E0E0E);
  border-radius: 30px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, #E8E8E0, #F5F5F0);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245,168,0,0.1), transparent);
  animation: pulse 10s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-section h2, .cta-section p {
  position: relative;
  z-index: 1;
}
