/* =========================================================
   CHRONOS — WooVina child theme
   Dark theme · Emerald accent · WooCommerce-safe
   ========================================================= */

.chronos-theme {
  --bg: #0e1014;
  --bg-2: #151820;
  --bg-3: #1c2029;
  --bg-4: #242936;
  --surface: #1a1e27;
  --border: #2a3040;
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f4f7;
  --text-muted: #9aa3b2;
  --text-dim: #6b7385;
  --accent: #3dd68c;
  --accent-2: #2bb673;
  --accent-soft: rgba(61, 214, 140, 0.12);
  --accent-glow: rgba(61, 214, 140, 0.35);
  --danger: #e74c3c;
  --gold: #c9a96e;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1200px;
  --header-h: 78px;
  --font: 'Outfit', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body.chronos-theme {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}

body.chronos-theme a {
  transition: color var(--transition), opacity var(--transition);
}

.chronos-wrap .container,
.chronos-section .container,
.chronos-home .container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1400px);
  margin-inline: auto;
}

.chronos-home ul,
.chronos-home ol,
.chronos-page ul,
.chronos-page ol,
.chronos-faq ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Utilities ---------- */
.accent { color: var(--accent); }
.muted { color: var(--text-muted); }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section-head .line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 14px auto 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #062416;
  font-size: 12px;
  font-weight: 700;
}

.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--accent);
  color: #062416;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.badge-out {
  background: var(--danger);
  color: #fff;
}

.price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.price del {
  color: var(--text-dim);
  font-weight: 400;
  font-size: 0.9rem;
  margin-right: 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font);
}

.btn-primary {
  background: var(--accent);
  color: #062416;
}

.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #062416;
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-3);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: #0a0c10;
  color: var(--white);
  border-color: #0a0c10;
}

.btn-dark:hover {
  background: var(--accent);
  color: #062416;
  border-color: var(--accent);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

.btn-pill {
  border-radius: 999px;
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 12px;
}

.select-wrap select {
  appearance: none;
  padding-right: 36px;
}

/* ---------- Topbar ---------- */
.topbar {
  background: #0a0c10;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  color: var(--text-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--accent);
}

.topbar .hotline {
  color: var(--accent);
  font-weight: 500;
}

.topbar-select {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-select select {
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  color: var(--text-muted);
  font-size: 12px;
}

.social-links a:hover {
  background: var(--accent);
  color: #062416;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 16, 20, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
  color: #062416;
  display: grid;
  place-items: center;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 24px var(--accent-glow);
}

.logo span {
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav .has-dropdown {
  position: relative;
}

.main-nav .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.main-nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .dropdown a {
  display: block;
  padding: 10px 18px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text);
  transition: all var(--transition);
}

.icon-btn:hover {
  color: var(--accent);
  background: var(--accent-soft);
}

.icon-btn .count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #062416;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* ---------- Page Hero / Breadcrumb ---------- */
.page-hero {
  position: relative;
  padding: 56px 0 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 214, 140, 0.12), transparent 55%),
    linear-gradient(180deg, #151820 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.page-hero h1 .rule {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0 14px;
  vertical-align: middle;
}

.breadcrumb {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.45;
}

/* ---------- Home Hero ---------- */
.home-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(61, 214, 140, 0.18), transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.1), transparent 40%),
    linear-gradient(135deg, #0a0c10 0%, #151a24 50%, #0e1218 100%);
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.88) 0%, rgba(10, 12, 16, 0.35) 55%, rgba(10, 12, 16, 0.55) 100%);
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-block: 60px;
}

.hero-copy {
  max-width: 560px;
  animation: fadeUp 0.9s ease both;
}

.hero-copy .brand-line {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.hero-copy .brand-line span {
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 18ch;
}

.hero-copy p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 42ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  animation: fadeIn 1.2s ease 0.15s both;
}

.hero-visual .glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  animation: pulse 4s ease-in-out infinite;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin-inline: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
  animation: float 5s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

/* ---------- Trust / Features ---------- */
.trust-bar {
  background: var(--bg-2);
  border-block: 1px solid var(--border-soft);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Category Circles ---------- */
.cat-circles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.cat-circle {
  text-align: center;
}

.cat-circle .thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all var(--transition);
  background: var(--bg-3);
}

.cat-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-circle:hover .thumb {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.cat-circle:hover img {
  transform: scale(1.08);
}

.cat-circle h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ---------- Promo Banners ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 16px;
}

.promo-card {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: var(--bg-3);
}

.promo-card.tall {
  min-height: 100%;
  grid-row: span 2;
}

.promo-stack {
  display: grid;
  gap: 16px;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.promo-card:hover img {
  transform: scale(1.06);
}

.promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.15));
}

.promo-card .content {
  position: relative;
  z-index: 1;
}

.promo-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  max-width: 14ch;
}

.promo-card .link {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-card.sm {
  min-height: 132px;
}

.banner-wide {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 48px;
  background: var(--bg-3);
}

.banner-wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-wide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 14, 0.9) 0%, rgba(8, 10, 14, 0.35) 70%);
}

.banner-wide .content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.banner-wide h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
}

.banner-wide p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ---------- Product Cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 214, 140, 0.35);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(61, 214, 140, 0.08), transparent 55%),
    var(--bg-3);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.45s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  inset: auto 12px 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-body {
  padding: 16px 18px 20px;
}

.product-cat {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.35;
}

.product-title a:hover {
  color: var(--accent);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tab-btn {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #062416;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

/* ---------- Shop Layout ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.sidebar-widget + .sidebar-widget {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}

.sidebar-widget h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.filter-list li + li {
  margin-top: 8px;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
}

.filter-list label:hover {
  color: var(--text);
}

.filter-list input {
  accent-color: var(--accent);
}

.filter-list .count {
  margin-left: auto;
  color: var(--text-dim);
  font-size: 12px;
}

.price-range {
  display: grid;
  gap: 12px;
}

.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.price-values {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud a {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-muted);
}

.tag-cloud a:hover,
.tag-cloud a.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.mini-product {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-product + .mini-product {
  margin-top: 14px;
}

.mini-product img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 6px;
}

.mini-product h4 {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
}

.shop-toolbar .result-count {
  color: var(--text-muted);
  font-size: 13px;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-toggle button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
}

.view-toggle button.active,
.view-toggle button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 14px;
}

.pagination a:hover,
.pagination .active {
  border-color: var(--accent);
  background: var(--accent);
  color: #062416;
}

/* ---------- Product Detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.gallery-main {
  position: relative;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 40%, rgba(61, 214, 140, 0.1), transparent 55%),
    var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  padding: 6px;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
  border-color: var(--accent);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.product-info .price-lg {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.product-info .desc {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-attrs {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.product-attrs strong {
  color: var(--text);
  font-weight: 500;
  min-width: 90px;
  display: inline-block;
}

.stock {
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 22px;
}

.buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 46px;
}

.qty button {
  width: 42px;
  height: 100%;
  color: var(--text);
  background: var(--bg-3);
}

.qty button:hover {
  color: var(--accent);
}

.qty input {
  width: 52px;
  text-align: center;
  height: 100%;
  border-inline: 1px solid var(--border);
  background: var(--bg);
}

.secondary-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.secondary-actions a {
  font-size: 13px;
  color: var(--text-muted);
}

.secondary-actions a:hover {
  color: var(--accent);
}

.product-tabs {
  margin-top: 56px;
}

.product-tabs .tab-nav {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.product-tabs .tab-nav button {
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.product-tabs .tab-nav button.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.product-tabs .tab-content {
  color: var(--text-muted);
  line-height: 1.8;
}

.product-tabs .tab-content p + p {
  margin-top: 14px;
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.share-bar a {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
}

.share-bar a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Cart / Checkout ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.cart-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.cart-table th,
.data-table th {
  text-align: left;
  padding: 16px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.cart-table td,
.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-product img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: var(--bg-3);
  border-radius: var(--radius);
  padding: 6px;
}

.cart-product h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.remove-btn {
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1;
}

.remove-btn:hover {
  color: var(--danger);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.summary-card,
.panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.summary-card h3,
.panel h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--accent);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}

.summary-row.total {
  border-bottom: none;
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.summary-row.total span:last-child {
  color: var(--accent);
}

.coupon-row {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.payment-methods label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color var(--transition);
}

.payment-methods label:hover,
.payment-methods input:checked + .pay-body,
.payment-methods label:has(input:checked) {
  border-color: var(--accent);
}

.payment-methods input {
  accent-color: var(--accent);
  margin-top: 3px;
}

.pay-body h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.pay-body p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-item {
  text-align: center;
  position: relative;
}

.contact-item::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -12px;
  width: calc(50% - 40px);
  height: 1px;
  background: var(--border);
}

.contact-item:last-child::after {
  display: none;
}

.contact-item:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -12px;
  width: calc(50% - 40px);
  height: 1px;
  background: var(--border);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent);
  color: #062416;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.contact-item h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--accent);
}

.contact-item p {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-embed {
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-3);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-3);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.about-copy p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
}

.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--accent);
}

.team-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 214, 140, 0.35);
}

.blog-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card .body {
  padding: 20px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.read-more {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-single {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.article {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-cover {
  aspect-ratio: 21 / 9;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 32px;
}

.article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 10px 0 18px;
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item .answer {
  padding: 0 22px 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Account / Auth ---------- */
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.account-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.account-nav a:hover,
.account-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---------- Empty / Success / 404 ---------- */
.empty-state,
.status-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px;
}

.empty-state .icon,
.status-box .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.empty-state h2,
.status-box h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.empty-state p,
.status-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ---------- Wishlist ---------- */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ---------- Instagram / Lifestyle ---------- */
.life-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.life-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.life-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.life-item:hover img {
  transform: scale(1.06);
}

.life-item .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.life-item:hover .overlay {
  opacity: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(61, 214, 140, 0.08), transparent 40%),
    var(--bg-2);
  border-top: 1px solid var(--border-soft);
  margin-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 64px 0 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--accent);
}

.footer-contact li,
.footer-links li {
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact .ico {
  color: var(--accent);
  margin-top: 2px;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links li::before {
  content: '○';
  color: var(--accent);
  margin-right: 10px;
  font-size: 9px;
  vertical-align: middle;
}

.newsletter p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 18px;
}

.newsletter-form button {
  width: 48px;
  background: var(--accent);
  color: #062416;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 13px;
}

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icons span {
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #062416;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--accent-glow);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 90;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

/* ---------- Search Modal ---------- */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.92);
  z-index: 200;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.search-modal.open {
  opacity: 1;
  visibility: visible;
}

.search-modal form {
  width: min(100% - 32px, 640px);
  display: flex;
  border-bottom: 2px solid var(--accent);
}

.search-modal input {
  flex: 1;
  font-size: 1.4rem;
  padding: 16px 0;
  background: transparent;
}

.search-modal .close-search {
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.8rem;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .product-grid,
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .promo-stack {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .cat-circles {
    grid-template-columns: repeat(3, 1fr);
  }

  .life-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 86vw);
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    padding: 88px 24px 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 120;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    display: none;
    padding-left: 12px;
  }

  .main-nav .has-dropdown.open .dropdown {
    display: block;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .home-hero .container,
  .about-grid,
  .product-detail,
  .contact-grid,
  .cart-layout,
  .checkout-layout,
  .shop-layout,
  .blog-single,
  .auth-grid,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .trust-grid,
  .contact-info,
  .blog-grid,
  .team-grid,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .wishlist-grid,
  .product-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: 280px;
    order: -1;
  }

  .page-hero h1 .rule {
    display: none;
  }

  .contact-item::after,
  .contact-item::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .topbar-left span:not(.hotline) {
    display: none;
  }

  .trust-grid,
  .contact-info,
  .blog-grid,
  .team-grid,
  .stats,
  .cat-circles,
  .promo-grid,
  .promo-stack,
  .footer-main,
  .life-grid,
  .form-row,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .wishlist-grid {
    grid-template-columns: 1fr;
  }

  .header-actions .icon-btn:nth-child(1) {
    display: none;
  }

  .banner-wide {
    padding: 28px;
    min-height: 260px;
  }

  .buy-row .btn {
    flex: 1;
  }
}

/* =========================================================
   WooCommerce + WooVina polish (keep WC functionality intact)
   ========================================================= */

body.chronos-theme #wrap,
body.chronos-theme #main,
body.chronos-theme #content-wrap,
body.chronos-theme .content-area,
body.chronos-theme .site-content {
  background: var(--bg);
  color: var(--text);
}

body.chronos-theme #site-header,
body.chronos-theme #site-header-inner,
body.chronos-theme #top-bar-wrap,
body.chronos-theme #footer,
body.chronos-theme #footer-widgets,
body.chronos-theme #footer-bottom {
  background: var(--bg-2);
  color: var(--text);
  border-color: var(--border-soft);
}

body.chronos-theme #site-logo a,
body.chronos-theme #site-navigation-wrap .dropdown-menu > li > a,
body.chronos-theme .site-title a {
  color: var(--text);
}

body.chronos-theme #site-navigation-wrap .dropdown-menu > li.current-menu-item > a,
body.chronos-theme #site-navigation-wrap .dropdown-menu > li > a:hover {
  color: var(--accent);
}

body.chronos-theme .page-header {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(61, 214, 140, 0.12), transparent 55%),
    linear-gradient(180deg, #151820 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
}

body.chronos-theme .page-header-title,
body.chronos-theme .page-header .page-header-title {
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.chronos-theme .site-breadcrumbs,
body.chronos-theme .site-breadcrumbs a {
  color: var(--text-muted);
}

body.chronos-theme .site-breadcrumbs a:hover {
  color: var(--accent);
}

/* Buttons */
body.chronos-theme .button,
body.chronos-theme button.button,
body.chronos-theme input[type="submit"],
body.chronos-theme .woocommerce a.button,
body.chronos-theme .woocommerce button.button,
body.chronos-theme .woocommerce input.button,
body.chronos-theme .woocommerce #respond input#submit,
body.chronos-theme .woocommerce a.button.alt,
body.chronos-theme .woocommerce button.button.alt,
body.chronos-theme .woocommerce input.button.alt,
body.chronos-theme .woocommerce #respond input#submit.alt,
body.chronos-theme .wp-block-button__link {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #062416 !important;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

body.chronos-theme .button:hover,
body.chronos-theme .woocommerce a.button:hover,
body.chronos-theme .woocommerce button.button:hover,
body.chronos-theme .woocommerce a.button.alt:hover,
body.chronos-theme .woocommerce button.button.alt:hover {
  background-color: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
  color: #062416 !important;
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* Product loops */
body.chronos-theme ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.chronos-theme ul.products::before,
body.chronos-theme ul.products::after {
  display: none;
}

body.chronos-theme ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 0 0 18px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

body.chronos-theme ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 214, 140, 0.35);
  box-shadow: var(--shadow);
}

body.chronos-theme ul.products li.product .woo-entry-inner,
body.chronos-theme ul.products li.product .product-inner {
  padding: 0;
}

body.chronos-theme ul.products li.product .woo-entry-image,
body.chronos-theme ul.products li.product a img {
  background:
    radial-gradient(circle at 50% 40%, rgba(61, 214, 140, 0.08), transparent 55%),
    var(--bg-3);
  border-radius: 0;
  margin: 0;
}

body.chronos-theme ul.products li.product .woocommerce-loop-product__title,
body.chronos-theme ul.products li.product .woo-entry-title a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 0 16px;
}

body.chronos-theme ul.products li.product .woocommerce-loop-product__title:hover,
body.chronos-theme ul.products li.product .woo-entry-title a:hover {
  color: var(--accent);
}

body.chronos-theme ul.products li.product .price {
  color: var(--accent);
  font-weight: 600;
  padding: 0 16px;
}

body.chronos-theme ul.products li.product .price del {
  color: var(--text-dim);
  opacity: 1;
}

body.chronos-theme ul.products li.product .price ins {
  background: none;
  color: var(--accent);
}

body.chronos-theme span.onsale,
body.chronos-theme .woocommerce span.onsale {
  background: var(--accent) !important;
  color: #062416 !important;
  min-width: auto;
  min-height: auto;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
}

body.chronos-theme ul.products li.product .button,
body.chronos-theme ul.products li.product .added_to_cart {
  margin: 12px 16px 0;
  display: inline-flex;
  border-radius: 999px !important;
}

/* Shop toolbar / sidebar */
body.chronos-theme .woocommerce-result-count,
body.chronos-theme .woocommerce-ordering,
body.chronos-theme .woocommerce-ordering select {
  color: var(--text-muted);
}

body.chronos-theme .woocommerce-ordering select,
body.chronos-theme .widget select,
body.chronos-theme .select2-container--default .select2-selection--single {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  min-height: 42px;
}

body.chronos-theme .widget {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 22px;
  color: var(--text-muted);
}

body.chronos-theme .widget .widget-title,
body.chronos-theme .widget-title {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-color: var(--border-soft);
}

body.chronos-theme .widget a {
  color: var(--text-muted);
}

body.chronos-theme .widget a:hover {
  color: var(--accent);
}

body.chronos-theme .widget_price_filter .ui-slider .ui-slider-range,
body.chronos-theme .widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--accent);
  border-color: var(--accent);
}

body.chronos-theme .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: var(--bg-4);
}

/* Single product */
body.chronos-theme.single-product div.product {
  color: var(--text);
}

body.chronos-theme.single-product div.product .product_title {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

body.chronos-theme.single-product div.product p.price,
body.chronos-theme.single-product div.product span.price {
  color: var(--accent);
  font-size: 1.5rem;
}

body.chronos-theme.single-product div.product .woocommerce-product-gallery {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 16px;
}

body.chronos-theme.single-product div.product .stock {
  color: var(--accent);
}

body.chronos-theme.single-product div.product .woocommerce-tabs {
  margin-top: 40px;
}

body.chronos-theme.single-product div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

body.chronos-theme.single-product div.product .woocommerce-tabs ul.tabs li {
  background: transparent;
  border: none;
  margin: 0 20px 0 0;
  padding: 0;
}

body.chronos-theme.single-product div.product .woocommerce-tabs ul.tabs li a {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 2px solid transparent;
}

body.chronos-theme.single-product div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

body.chronos-theme.single-product div.product .woocommerce-tabs .panel {
  background: transparent;
  color: var(--text-muted);
  box-shadow: none;
}

body.chronos-theme.single-product form.cart .quantity input.qty {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  height: 46px;
}

/* Cart & checkout */
body.chronos-theme .woocommerce-cart table.cart,
body.chronos-theme .woocommerce-checkout table.shop_table,
body.chronos-theme .woocommerce table.shop_table {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  color: var(--text);
}

body.chronos-theme .woocommerce table.shop_table th {
  background: var(--bg-2);
  color: var(--text-muted);
  border-color: var(--border);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
}

body.chronos-theme .woocommerce table.shop_table td {
  border-color: var(--border-soft);
  color: var(--text);
}

body.chronos-theme .woocommerce-cart .cart-collaterals .cart_totals,
body.chronos-theme .woocommerce-checkout #order_review,
body.chronos-theme .woocommerce-checkout-review-order {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
}

body.chronos-theme .woocommerce-cart .cart-collaterals .cart_totals h2,
body.chronos-theme .woocommerce-checkout #order_review_heading {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.chronos-theme .woocommerce form .form-row input.input-text,
body.chronos-theme .woocommerce form .form-row textarea,
body.chronos-theme .woocommerce form .form-row select,
body.chronos-theme .woocommerce form .form-row .select2-selection,
body.chronos-theme .woocommerce-page .input-text,
body.chronos-theme .comment-form input,
body.chronos-theme .comment-form textarea {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius);
  min-height: 46px;
}

body.chronos-theme .woocommerce form .form-row label,
body.chronos-theme .woocommerce-account .woocommerce-MyAccount-navigation,
body.chronos-theme .woocommerce-account .woocommerce-MyAccount-content {
  color: var(--text-muted);
}

body.chronos-theme .woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 16px;
}

body.chronos-theme .woocommerce-account .woocommerce-MyAccount-navigation a {
  color: var(--text-muted);
}

body.chronos-theme .woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
body.chronos-theme .woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  color: var(--accent);
}

body.chronos-theme .woocommerce-info,
body.chronos-theme .woocommerce-message,
body.chronos-theme .woocommerce-error {
  background: var(--surface);
  border-top-color: var(--accent);
  color: var(--text);
}

body.chronos-theme .woocommerce-message::before,
body.chronos-theme .woocommerce-info::before {
  color: var(--accent);
}

body.chronos-theme .checkout_coupon,
body.chronos-theme .woocommerce-form-login,
body.chronos-theme .woocommerce-form-register {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

/* Pagination */
body.chronos-theme .woocommerce nav.woocommerce-pagination ul {
  border: none;
}

body.chronos-theme .woocommerce nav.woocommerce-pagination ul li a,
body.chronos-theme .woocommerce nav.woocommerce-pagination ul li span {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius);
  margin: 0 4px;
  min-width: 40px;
}

body.chronos-theme .woocommerce nav.woocommerce-pagination ul li a:hover,
body.chronos-theme .woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #062416;
}

/* Notices / empty */
.chronos-notice {
  color: var(--text-muted);
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

/* Chronos page sections sit under WooVina header/footer */
.chronos-home,
.chronos-page {
  background: var(--bg);
}

.chronos-home .section,
.chronos-page .section {
  padding: 72px 0;
}

.chronos-home .section-sm,
.chronos-page .section-sm {
  padding: 48px 0;
}

@media (max-width: 1100px) {
  body.chronos-theme ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  body.chronos-theme ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body.chronos-theme ul.products {
    grid-template-columns: 1fr;
  }
}
