/*
Theme Name: LG Teknoloji - Lazer Koruma Gözlükleri
Theme URI: https://lazergozluk.com.tr
Author: LG Teknoloji
Author URI: https://lazergozluk.com.tr
Description: Profesyonel lazer koruma gözlükleri e-ticaret teması. WooCommerce uyumlu, koyu high-tech tasarım.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: lg-teknoloji
WC requires at least: 8.0
WC tested up to: 9.0
*/

/* =====================
   FONTS
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --primary: #00d4ff;
  --primary-dark: #0099bb;
  --bg: #060d18;
  --bg-card: #0d1b2a;
  --bg-muted: #0f1e30;
  --border: rgba(0, 212, 255, 0.12);
  --text: #e8f4f8;
  --text-muted: #6b8a9e;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --max-width: 1280px;
  --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary:hover { background: #fff; color: #000; box-shadow: var(--shadow-neon); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .05em;
  padding: 11px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-outline:hover { background: var(--primary); color: #000; }

/* =====================
   HEADER / NAVBAR
   ===================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0, 212, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
}
.site-logo span { color: var(--primary); }

#site-navigation ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

#site-navigation ul li a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
  text-decoration: none;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a {
  color: var(--primary);
  background: rgba(0, 212, 255, 0.06);
}

/* Dropdown */
#site-navigation ul li.menu-item-has-children { position: relative; }
#site-navigation ul li.menu-item-has-children > a::after { content: " ▾"; font-size: 10px; }
#site-navigation ul li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 240px;
  padding: 8px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
#site-navigation ul li.menu-item-has-children:hover .sub-menu { display: block; }
#site-navigation ul li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cart-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  transition: all .2s;
  text-decoration: none;
  position: relative;
}
.header-cart-btn:hover { border-color: var(--primary); color: var(--primary); }
.header-cart-btn .cart-count {
  background: var(--primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 18px;
}

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 70%),
    linear-gradient(135deg, var(--bg) 0%, #071220 50%, var(--bg) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,212,255,.3);
  background: rgba(0,212,255,.05);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .neon-text {
  color: var(--primary);
  text-shadow: 0 0 30px rgba(0,212,255,.4);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-stat::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* =====================
   SECTION COMMON
   ===================== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

section { padding: 80px 0; }
section.bg-muted { background: rgba(13, 27, 42, 0.5); }

/* =====================
   CATEGORY GRID
   ===================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  transition: all .25s;
  display: block;
}
.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}
.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(0,212,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--primary);
}
.category-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.category-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.category-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .05em;
}

/* =====================
   PRODUCT CARD
   ===================== */
.products-grid, .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product,
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  list-style: none;
  float: none !important;
  width: auto !important;
}
.woocommerce ul.products li.product:hover,
.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.product-card-image {
  position: relative;
  background: var(--bg-muted);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-image .product-name-placeholder {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  padding: 20px;
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 3px;
}

.product-card-body { padding: 16px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.spec-tag {
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  color: #6cd8f0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 2px 7px;
  border-radius: 3px;
  font-family: var(--font-heading);
}

.product-card-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price,
.product-card-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary) !important;
  text-shadow: 0 0 12px rgba(0,212,255,.3);
}

.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-card-actions .btn-primary,
.woocommerce ul.products li.product .button {
  flex: 1;
  justify-content: center;
  font-size: 12px;
  padding: 9px 14px;
  background: var(--primary) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all .2s;
}
.product-card-actions .btn-view {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text-muted) !important;
}
.product-card-actions .btn-view:hover { border-color: var(--primary) !important; color: var(--primary) !important; }

/* =====================
   SINGLE PRODUCT PAGE
   ===================== */
.single-product-wrap { padding: 40px 0 80px; }

.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 60px; }

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .images {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce div.product .summary .product_title,
.woocommerce div.product .summary h1 {
  font-size: 32px !important;
  color: #fff !important;
  margin-bottom: 12px !important;
  font-family: var(--font-heading) !important;
}

.woocommerce div.product .summary .price {
  font-size: 32px !important;
  color: var(--primary) !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  text-shadow: 0 0 20px rgba(0,212,255,.3) !important;
  margin-bottom: 20px !important;
}

.woocommerce div.product .summary .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.woocommerce div.product .cart .button,
.woocommerce #respond input#submit,
.woocommerce .button {
  background: var(--primary) !important;
  color: #000 !important;
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 12px 28px !important;
  border-radius: var(--radius) !important;
  font-size: 15px !important;
  cursor: pointer;
  transition: all .2s !important;
}
.woocommerce div.product .cart .button:hover { background: #fff !important; }

/* Spec badges in product summary */
.product-cert-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.cert-tag {
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  color: #6cd8f0;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--font-heading);
  letter-spacing: .06em;
}
.cert-tag.in-stock { background: rgba(34,197,94,.08); border-color: rgba(34,197,94,.25); color: #4ade80; }

/* Technical Specs Table */
.product-specs-section { margin-bottom: 48px; }
.product-specs-section h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs-table tr:nth-child(even) { background: rgba(255,255,255,.02); }
.specs-table td {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { color: var(--text-muted); width: 50%; font-weight: 500; }
.specs-table td:last-child { color: #fff; font-weight: 600; font-family: var(--font-heading); font-size: 15px; }

/* WhatsApp button */
.whatsapp-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}
.whatsapp-order-btn:hover { background: var(--primary); color: #000; }

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb-bar {
  background: rgba(13,27,42,.4);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb-nav a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .sep { color: var(--border); }
.breadcrumb-nav .current { color: var(--text); }
.woocommerce-breadcrumb { font-size: 12px; color: var(--text-muted) !important; }
.woocommerce-breadcrumb a { color: var(--text-muted) !important; }

/* =====================
   TRUST BADGES
   ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.trust-title { font-family: var(--font-heading); font-size: 15px; color: #fff; margin-bottom: 4px; }
.trust-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* =====================
   BLOG
   ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-muted); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.blog-title { font-family: var(--font-heading); font-size: 18px; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.blog-title a { color: inherit; text-decoration: none; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 12px; font-weight: 600; color: var(--primary); }

/* =====================
   SECTORS
   ===================== */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.sector-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}
.sector-item:hover { border-color: var(--primary); color: var(--primary); }

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block { margin-bottom: 28px; }
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-value { font-size: 15px; color: var(--text); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color .2s;
}
.form-input:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* =====================
   WHATSAPP FLOAT
   ===================== */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all .2s;
  text-decoration: none;
  font-size: 26px;
}
#whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

/* =====================
   FOOTER
   ===================== */
#site-footer {
  background: rgba(6,13,24,.9);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 16px 0 20px; }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; align-items: flex-start; }
.footer-contact-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================
   WOOCOMMERCE OVERRIDES
   ===================== */
.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--text) !important;
  padding: 16px 20px !important;
  margin-bottom: 24px !important;
  list-style: none !important;
}

.woocommerce-cart table.cart,
.woocommerce-checkout table.shop_table {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
  border-color: var(--border) !important;
  color: var(--text) !important;
  background: transparent !important;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.woocommerce form .form-row label { color: var(--text) !important; }
.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  background: var(--bg-muted) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius) !important;
}
.woocommerce form .form-row input:focus { border-color: var(--primary) !important; outline: none !important; }

/* WC pagination */
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  background: var(--bg-card);
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  padding: 8px 14px;
  border-radius: var(--radius);
  display: block;
}
.woocommerce nav.woocommerce-pagination ul li .current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--primary) !important;
  color: #000 !important;
  border-color: var(--primary) !important;
}

/* =====================
   ARCHIVE / SHOP
   ===================== */
.shop-header { margin-bottom: 40px; }
.shop-title { font-size: 36px; font-family: var(--font-heading); margin-bottom: 8px; }
.shop-meta { font-size: 13px; color: var(--text-muted); }

.woocommerce .woocommerce-ordering select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
}

/* =====================
   UTILITY
   ===================== */
.neon-text { color: var(--primary); text-shadow: 0 0 30px rgba(0,212,255,.35); }
.neon-glow { box-shadow: var(--shadow-neon); }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* Schema hidden */
[itemscope][itemtype] { display: contents; }

/* =====================
   ANIMATIONS
   ===================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .woocommerce div.product { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #site-navigation, .header-btn-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .products-grid, .woocommerce ul.products { grid-template-columns: 1fr !important; }
}
