/*
Theme Name: Volt EV
Theme URI: https://volt-ev.co.il
Author: Volt EV
Author URI: https://volt-ev.co.il
Description: תבנית מודרנית בעברית (RTL) לאתר רכבים חשמליים — קטלוג רכבים, חנות WooCommerce, דף מכירת רכב עם טופס והעלאת תמונות, ודף שירותים. עיצוב חשוך עם הדגשי ניאון ירוק/טורקיז, פונט Heebo + Space Grotesk.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: volt-ev
Tags: rtl-language-support, e-commerce, custom-colors, custom-menu, featured-images, translation-ready
*/

/* WooCommerce support declaration */
@font-face {
  font-family: "Heebo";
  src: local("Heebo");
}

:root {
  --background: #070b14;
  --foreground: #eef2f8;
  --card: #0d1320;
  --card-foreground: #eef2f8;
  --popover: #0a0f1a;
  --popover-foreground: #eef2f8;
  --primary: #00e5ff;
  --primary-foreground: #070b14;
  --secondary: #161d2c;
  --secondary-foreground: #eef2f8;
  --muted: #1a2233;
  --muted-foreground: #8b94a3;
  --accent: #15d676;
  --accent-foreground: #070b14;
  --destructive: #d64545;
  --destructive-foreground: #f9fafb;
  --border: #212a3a;
  --input: #262f42;
  --ring: #00e5ff;
  --radius: 0.75rem;
  --container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Heebo", system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  margin: 0;
  overflow-x: clip;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: "Space Grotesk", "Heebo", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
}

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.bg-card { background-color: var(--card); }

.text-glow { text-shadow: 0 0 28px rgba(0, 229, 255, 0.45); }

.glass-panel {
  background: rgba(13, 19, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 229, 255, 0.14);
}

.grid-bg {
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--radius);
  padding: 0 1.25rem;
  height: 2.75rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover { background: #00c9e0; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: rgba(38, 47, 66, 0.6); }
.btn-lg { height: 3.5rem; padding-inline: 2rem; font-size: 1.1rem; font-weight: 900; border-radius: 1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  background: rgba(13, 19, 32, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(33, 42, 58, 0.6);
}
.site-header .bar {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) { .site-header .bar { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .site-header .bar { height: 5rem; } }

.brand { display: flex; align-items: center; gap: 0.625rem; }
.brand .logo {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--primary-foreground);
  font-weight: 900;
}
.brand .name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: 0.02em; line-height: 1.1; }
.brand .tagline { font-size: 0.7rem; color: var(--muted-foreground); }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--primary); background: rgba(0, 229, 255, 0.1); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.phone-pill {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 768px) { .phone-pill { display: flex; } }

.cart-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  color: var(--foreground);
  cursor: pointer;
}
.cart-btn:hover { background: rgba(38, 47, 66, 0.6); }
.cart-count {
  position: absolute;
  top: -4px;
  inset-inline-end: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding-inline: 0.25rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  color: var(--foreground);
  cursor: pointer;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.mobile-drawer .panel {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 18rem;
  background: var(--popover);
  border-inline-end: 1px solid var(--border);
  padding: 2.5rem 1rem 1rem;
  overflow-y: auto;
}
.mobile-drawer .panel a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}
.mobile-drawer .panel a:hover, .mobile-drawer .panel a.active { color: var(--primary); background: rgba(0, 229, 255, 0.1); }
.mobile-drawer .close {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: transparent;
  border: 0;
  color: var(--foreground);
  cursor: pointer;
  font-size: 1.25rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero .bg { position: absolute; inset: 0; }
.hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.hero .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to left, var(--background), rgba(7,11,20,0.7) 50%, rgba(7,11,20,0.3));
}
.hero .bg::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--background), transparent 50%, rgba(7,11,20,0.6));
  z-index: 1;
}
.hero .grid-overlay { position: absolute; inset: 0; opacity: 0.6; z-index: 1; }
.hero .content { position: relative; z-index: 2; max-width: 42rem; padding-top: 7rem; padding-bottom: 4rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero .lead {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-bottom: 2rem;
}

/* Quick search */
.quick-search { padding: 1.25rem; border-radius: 1rem; }
.quick-search .qs-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.quick-search .qs-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .quick-search .qs-grid { grid-template-columns: repeat(4, 1fr); } }

/* Stats */
.stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats .num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.875rem; color: var(--primary); }
.stats .label { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--border);
  background: rgba(13, 19, 32, 0.6);
  padding: 1rem 0;
  overflow: hidden;
  direction: ltr;
}
.marquee .track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee .group { display: flex; flex-shrink: 0; }
.marquee .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-inline: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.marquee .item .dot { color: var(--primary); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---------- Sections ---------- */
.section { padding-block: 5rem; }
.section-head { margin-bottom: 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.section-head .kicker { color: var(--primary); font-size: 0.875rem; font-weight: 700; }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 900; margin-top: 0.5rem; }
.section-head .more { display: none; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--primary); font-weight: 600; }
.section-head .more:hover { gap: 0.75rem; }
@media (min-width: 640px) { .section-head .more { display: inline-flex; } }
.center-head { text-align: center; margin-bottom: 3rem; }
.center-head .kicker { color: var(--primary); font-size: 0.875rem; font-weight: 700; }
.center-head h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 900; margin-top: 0.5rem; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
.cat-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  transition: border-color 0.3s;
}
.cat-card:hover { border-color: rgba(0, 229, 255, 0.4); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--background), rgba(7,11,20,0.4) 45%, transparent); }
.cat-card .body { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; }
.cat-card .icon-box {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--primary);
  margin-bottom: 1rem;
}
.cat-card h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.cat-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.cat-card .go { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--primary); font-weight: 700; }

/* Car grid */
.car-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .car-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .car-grid { grid-template-columns: repeat(3, 1fr); } }

.car-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.car-card:hover { transform: translateY(-4px); border-color: rgba(0, 229, 255, 0.4); box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1); }
.car-card .img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.car-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.car-card:hover .img-wrap img { transform: scale(1.05); }
.car-card .img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--card), transparent); }
.car-card .cat-tag {
  position: absolute; top: 0.75rem; inset-inline-start: 0.75rem;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
}
.cat-new { background: rgba(0, 229, 255, 0.9); color: var(--primary-foreground); }
.cat-leasing { background: rgba(21, 214, 118, 0.9); color: var(--accent-foreground); }
.cat-used { background: rgba(22, 29, 44, 0.9); color: var(--secondary-foreground); border: 1px solid var(--border); }
.car-card .meta-chip {
  position: absolute; bottom: 0.75rem; inset-inline-start: 0.75rem;
  font-family: "Space Grotesk", sans-serif; font-size: 0.75rem; color: var(--muted-foreground);
  background: rgba(7, 11, 20, 0.6); backdrop-filter: blur(6px);
  padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.car-card .body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.car-card .name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.25rem; }
.car-card .sub { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.car-card .specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.car-card .spec { border-radius: 0.75rem; background: rgba(38, 47, 66, 0.5); padding: 0.625rem 0.5rem; text-align: center; }
.car-card .spec svg { color: var(--primary); margin: 0 auto 0.25rem; }
.car-card .spec .v { font-size: 0.75rem; font-weight: 600; display: block; }
.car-card .spec .l { font-size: 0.625rem; color: var(--muted-foreground); display: block; }
.car-card .used-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.car-card .used-meta svg { color: var(--accent); }
.car-card .footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.car-card .price-label { font-size: 0.7rem; color: var(--muted-foreground); display: block; }
.car-card .price { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--primary); }

/* Store teaser product grid */
.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1024px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
.prod-card {
  display: block; border-radius: 1rem; overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
}
.prod-card:hover { transform: translateY(-4px); border-color: rgba(0, 229, 255, 0.4); }
.prod-card .img { aspect-ratio: 1/1; overflow: hidden; }
.prod-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.prod-card:hover .img img { transform: scale(1.05); }
.prod-card .info { padding: 1rem; }
.prod-card h3 { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; }
.prod-card .price { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--primary); }

/* Sell CTA */
.cta-section { position: relative; overflow: hidden; border-block: 1px solid var(--border); }
.cta-section .bg { position: absolute; inset: 0; }
.cta-section .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-section .bg::after { content: ""; position: absolute; inset: 0; background: rgba(7, 11, 20, 0.85); }
.cta-section .grid-overlay { position: absolute; inset: 0; opacity: 0.4; }
.cta-section .content { position: relative; padding-block: 6rem; max-width: 42rem; }
.cta-section h2 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 900; margin-block: 0.75rem 1.25rem; line-height: 1.1; }
.cta-section p { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2.5rem; }
.steps { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step-card { padding: 1.25rem; border-radius: 1rem; }
.step-card .icon-box { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; background: rgba(0, 229, 255, 0.15); color: var(--primary); margin-bottom: 0.75rem; }
.step-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.step-card h3 .n { color: var(--primary); font-family: "Space Grotesk", sans-serif; margin-inline-end: 0.375rem; }
.step-card p { font-size: 0.875rem; color: var(--muted-foreground); margin: 0; }

/* Services strip */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  display: block; border-radius: 1rem; background: var(--card); border: 1px solid var(--border);
  padding: 1.5rem; transition: transform 0.3s, border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(0, 229, 255, 0.4); }
.service-card .icon-box {
  display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(21,214,118,0.2));
  border: 1px solid rgba(0, 229, 255, 0.2); color: var(--primary); margin-bottom: 1rem;
}
.service-card h3 { font-weight: 700; font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); }

.cta-band {
  margin-top: 3.5rem; border-radius: 1rem; border: 1px solid rgba(0, 229, 255, 0.25);
  background: linear-gradient(to left, rgba(0,229,255,0.1), var(--card), rgba(21,214,118,0.1));
  padding: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 640px) { .cta-band { flex-direction: row; } }
.cta-band h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.cta-band p { color: var(--muted-foreground); }

/* ---------- Page header ---------- */
.page-header { position: relative; padding-top: 8rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); overflow: hidden; }
.page-header .grid-overlay { position: absolute; inset: 0; opacity: 0.5; }
.page-header .glow { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,229,255,0.05), transparent); }
.page-header .kicker { color: var(--primary); font-size: 0.875rem; font-weight: 700; position: relative; }
.page-header h1 { font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 900; margin-top: 0.5rem; margin-bottom: 1rem; position: relative; }
.page-header p { color: var(--muted-foreground); max-width: 42rem; position: relative; }

/* ---------- Catalog ---------- */
.cat-tabs { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; background: rgba(22, 29, 44, 0.6); border: 1px solid var(--border); border-radius: 0.75rem; padding: 0.25rem; width: fit-content; }
.cat-tabs button {
  border: 0; background: transparent; color: var(--muted-foreground);
  padding: 0.5rem 1rem; border-radius: 0.5rem; font-family: inherit; font-weight: 600; cursor: pointer; transition: background 0.2s, color 0.2s;
}
.cat-tabs button.active { background: var(--primary); color: var(--primary-foreground); }

.filter-panel { padding: 1.25rem; border-radius: 1rem; margin-bottom: 2rem; }
.filter-panel .fp-title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.filter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .filter-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .filter-grid { grid-template-columns: repeat(6, 1fr); } }

.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label { font-size: 0.8rem; font-weight: 600; }
.field input, .field select, .field textarea {
  background: rgba(38, 47, 66, 0.6);
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  height: 2.75rem;
  padding-inline: 0.75rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.9rem;
}
.field textarea { height: auto; padding-block: 0.625rem; min-height: 6rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.field input.ltr { direction: ltr; text-align: left; }
.field .err { font-size: 0.75rem; color: var(--destructive); }

.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.catalog-toolbar .count { font-size: 0.875rem; color: var(--muted-foreground); }
.catalog-toolbar .count b { color: var(--primary); font-family: "Space Grotesk", sans-serif; }
.toolbar-right { display: flex; align-items: center; gap: 0.5rem; }
.reset-btn { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: transparent; border: 1px solid var(--border); color: var(--foreground); cursor: pointer; }
.reset-btn:hover { background: rgba(38, 47, 66, 0.6); }

.empty-state { border: 1px dashed var(--border); border-radius: 1rem; padding: 4rem; text-align: center; margin-bottom: 4rem; }
.empty-state svg { color: var(--primary); margin: 0 auto 1rem; }
.empty-state h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state p { color: var(--muted-foreground); margin-bottom: 1.5rem; }

/* ---------- Sell form ---------- */
.sell-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .sell-layout { grid-template-columns: 2fr 1fr; } }
.sell-form { padding: 2rem; border-radius: 1.5rem; }
.sell-form h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.sell-form .hint { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.span-2 { grid-column: 1 / -1; }

.slider-row { display: flex; align-items: center; justify-content: space-between; }
.slider-row .val { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--primary); }
input[type="range"] { width: 100%; accent-color: var(--primary); }

.upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  border: 2px dashed var(--border); border-radius: 1rem; padding: 2rem; text-align: center; cursor: pointer; transition: border-color 0.2s;
  background: rgba(38, 47, 66, 0.3);
}
.upload-zone:hover { border-color: rgba(0, 229, 255, 0.5); }
.upload-zone svg { color: var(--primary); }
.upload-zone .t { font-size: 0.875rem; font-weight: 600; }
.upload-zone .s { font-size: 0.75rem; color: var(--muted-foreground); }
.upload-zone input { display: none; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 0.5rem; }
@media (min-width: 640px) { .thumbs { grid-template-columns: repeat(5, 1fr); } }
.thumb { position: relative; border-radius: 0.75rem; overflow: hidden; aspect-ratio: 1/1; border: 1px solid var(--border); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .rm { position: absolute; top: 0.375rem; inset-inline-end: 0.375rem; display: grid; place-items: center; width: 1.5rem; height: 1.5rem; border-radius: 9999px; background: rgba(7,11,20,0.8); border: 0; color: var(--foreground); cursor: pointer; }
.thumb .rm:hover { background: var(--destructive); color: var(--destructive-foreground); }

.sell-aside { display: flex; flex-direction: column; gap: 1rem; }
.benefit-card { border-radius: 1rem; background: var(--card); border: 1px solid var(--border); padding: 1.25rem; }
.benefit-card .icon-box { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 0.75rem; background: rgba(0,229,255,0.15); color: var(--primary); margin-bottom: 0.75rem; }
.benefit-card h3 { font-weight: 700; margin-bottom: 0.25rem; }
.benefit-card p { font-size: 0.875rem; color: var(--muted-foreground); }
.callout { border-radius: 1rem; border: 1px solid rgba(0,229,255,0.25); background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(21,214,118,0.1)); padding: 1.25rem; }
.callout h3 { font-weight: 700; margin-bottom: 0.5rem; }
.callout p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }

/* Success panel */
.success-wrap { min-height: 80dvh; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem 4rem; }
.success-card { max-width: 28rem; width: 100%; padding: 2.5rem; border-radius: 1.5rem; text-align: center; }
.success-card .icon-circle { display: grid; place-items: center; width: 4rem; height: 4rem; border-radius: 9999px; background: rgba(21,214,118,0.15); color: var(--accent); margin: 0 auto 1.5rem; }
.success-card h1 { font-size: 1.875rem; font-weight: 900; margin-bottom: 0.75rem; }
.success-card p { color: var(--muted-foreground); margin-bottom: 2rem; }
.success-card .actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .success-card .actions { flex-direction: row; } }

/* ---------- Services page ---------- */
.service-block { border-radius: 1.5rem; background: var(--card); border: 1px solid var(--border); overflow: hidden; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .service-block { grid-template-columns: 1fr 1fr; } }
.service-block.reverse .text { order: 2; }
.service-block .text { padding: 2.5rem; }
.service-block .icon-box { display: grid; place-items: center; width: 3.25rem; height: 3.25rem; border-radius: 1rem; background: linear-gradient(135deg, rgba(0,229,255,0.2), rgba(21,214,118,0.2)); border: 1px solid rgba(0,229,255,0.2); color: var(--primary); margin-bottom: 1.25rem; }
.service-block h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.service-block .desc { color: var(--muted-foreground); margin-bottom: 1.5rem; }
.service-block ul.checks li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; margin-bottom: 0.625rem; }
.service-block ul.checks svg { color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.service-block .media { position: relative; min-height: 16rem; }
.service-block .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-block .media .grad { position: absolute; inset: 0; background: linear-gradient(to left, rgba(13,19,32,0.4), transparent); }

/* FAQ */
.faq { max-width: 48rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; text-align: start; background: transparent; border: 0; padding: 1.25rem 0; font-family: inherit; font-weight: 700; font-size: 1rem; color: var(--foreground); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { color: var(--primary); }
.faq-q .chev { transition: transform 0.2s; color: var(--primary); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--muted-foreground); }
.faq-a-inner { padding-bottom: 1.25rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: rgba(13, 19, 32, 0.4); }
.site-footer .grid { max-width: var(--container); margin-inline: auto; padding: 3.5rem 1rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer .grid { grid-template-columns: repeat(2, 1fr); padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .site-footer .grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 { font-weight: 700; margin-bottom: 1rem; }
.site-footer li { margin-bottom: 0.625rem; font-size: 0.875rem; color: var(--muted-foreground); }
.site-footer li a:hover { color: var(--primary); }
.site-footer .contact li { display: flex; align-items: center; gap: 0.5rem; }
.site-footer .contact svg { color: var(--primary); }
.site-footer .bottom { border-top: 1px solid var(--border); }
.site-footer .bottom .inner { max-width: var(--container); margin-inline: auto; padding: 1.25rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .site-footer .bottom .inner { flex-direction: row; padding-inline: 1.5rem; } }

/* ---------- WooCommerce overrides ---------- */
.woocommerce-store-notice, p.woocommerce-error, p.woocommerce-info, p.woocommerce-message {
  color: var(--foreground);
}
.woocommerce ul.products { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding: 0; margin: 0; }
@media (min-width: 640px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); } }
.woocommerce ul.products li.product {
  background: var(--card); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1rem; text-align: center; transition: transform 0.3s, border-color 0.3s;
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); border-color: rgba(0,229,255,0.4); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--foreground); font-weight: 700; font-size: 1rem; }
.woocommerce ul.products li.product .price { color: var(--primary); font-family: "Space Grotesk", sans-serif; }
.woocommerce ul.products li.product .button { background: var(--primary); color: var(--primary-foreground); border-radius: 0.75rem; font-weight: 700; }
.woocommerce ul.products li.product img { border-radius: 0.75rem; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--primary); color: var(--primary-foreground); border-radius: 0.75rem; font-weight: 700; border: 0; padding: 0.625rem 1.25rem;
}
.woocommerce a.button:hover { background: #00c9e0; }
.woocommerce .star-rating span { color: var(--accent); }
.woocommerce-message, .woocommerce-info { border-top-color: var(--primary); }
.woocommerce-error { border-top-color: var(--destructive); }
.woocommerce table.shop_table { border: 1px solid var(--border); border-radius: 1rem; }
.woocommerce table.shop_table th { color: var(--foreground); }
.woocommerce .cart-collaterals .cart_totals tr td, .woocommerce .cart-collaterals .cart_totals tr th { border-top: 1px solid var(--border); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
  background: rgba(38,47,66,0.6); border: 1px solid var(--input); border-radius: 0.5rem; color: var(--foreground); padding: 0.625rem;
}
.woocommerce single-product div.product .product_title { color: var(--foreground); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--primary); }
.woocommerce #reviews #comments ol.commentlist li .comment-text { border: 1px solid var(--border); }
.woocommerce-Price-amount { color: var(--primary); }

/* Notices */
.form-notice { padding: 1rem 1.25rem; border-radius: 0.75rem; margin-bottom: 1.5rem; font-weight: 600; }
.form-notice.ok { background: rgba(21,214,118,0.15); border: 1px solid rgba(21,214,118,0.4); color: var(--accent); }
.form-notice.err { background: rgba(214,69,69,0.15); border: 1px solid rgba(214,69,69,0.4); color: var(--destructive); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Quick-search inline selects */
.field-input {
  background: rgba(38, 47, 66, 0.6);
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  height: 2.75rem;
  padding-inline: 0.75rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
}
.field-input:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.field-input option { background: var(--card); color: var(--foreground); }

.leading-tight { line-height: 1.1; }

/* Main padding for fixed header on inner pages */
.site-main { min-height: 60vh; }
