/*
Theme Name:  NEXO Dropshipping
Theme URI:   https://github.com/tuostore/nexo-theme
Description: Tema WooCommerce premium per dropshipping con CJ Dropshipping. Mega-menu con sottocategorie, design moderno, ottimizzato per conversioni.
Version:     1.0.0
Author:      Il Tuo Nome
Author URI:  https://tuostore.com
License:     GPL-2.0+
Text Domain: nexo
Tags:        woocommerce, dropshipping, e-commerce, mega-menu, responsive

Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
WC requires at least: 7.0
*/

/* ==============================================
   VARIABILI CSS — Design System
   ============================================== */
:root {
  /* Colori principali */
  --c-black:   #0d0d0d;
  --c-dark:    #141414;
  --c-dark2:   #1c1c1c;
  --c-border:  #2e2e2e;
  --c-mid:     #555;
  --c-muted:   #888;
  --c-light:   #ccc;
  --c-white:   #fafaf8;
  --c-cream:   #f4f1ec;

  /* Accent */
  --c-gold:    #c8a84b;
  --c-gold2:   #e5c96a;
  --c-red:     #e63535;
  --c-green:   #22c55e;
  --c-blue:    #3b82f6;

  /* Tipografia */
  --f-serif:  'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --f-sans:   'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --f-mono:   'JetBrains Mono', monospace;

  /* Spaziatura */
  --container: 1380px;
  --header-h:  68px;
  --nav-h:     48px;

  /* Ombre */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 30px rgba(200,168,75,0.25);

  /* Transizioni */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  background: var(--c-white);
  color: var(--c-black);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none;
}

/* ==============================================
   UTILITY
   ============================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* Bottoni */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s var(--ease);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--c-gold); color: var(--c-black);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-primary:hover {
  background: var(--c-gold2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-dark { background: var(--c-black); color: var(--c-white); }
.btn-dark:hover { background: var(--c-dark2); transform: translateY(-2px); }
.btn-outline { border-color: currentColor; }

/* Badge */
.badge {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px; border-radius: 2px;
}
.badge-sale  { background: var(--c-red);   color: white; }
.badge-new   { background: var(--c-black); color: var(--c-gold); }
.badge-hot   { background: var(--c-gold);  color: var(--c-black); }
.badge-free  { background: var(--c-green); color: white; }

/* ==============================================
   TOP BAR
   ============================================== */
#topbar {
  background: var(--c-black);
  height: 38px;
  display: flex; align-items: center;
  font-size: 12px;
  position: relative; overflow: hidden;
}
#topbar::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent 0, transparent 160px,
    rgba(200,168,75,0.06) 160px, rgba(200,168,75,0.06) 161px
  );
  pointer-events: none;
}

.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; position: relative; z-index: 1;
}

.topbar-promo {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
}
.topbar-promo strong { color: var(--c-gold); }
.topbar-promo .sep { opacity: 0.3; margin: 0 4px; }

.topbar-right {
  display: flex; align-items: center; gap: 24px;
}
.topbar-right a {
  color: rgba(255,255,255,0.5);
  font-size: 11px; letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--c-gold); }
.topbar-lang {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px; cursor: pointer;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.topbar-lang:hover { border-color: rgba(200,168,75,0.4); color: var(--c-gold); }

/* ==============================================
   HEADER
   ============================================== */
#masthead {
  background: var(--c-white);
  height: var(--header-h);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
#masthead.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-serif);
  font-size: 26px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--c-black);
  flex-shrink: 0;
}
.logo-hex {
  width: 38px; height: 38px;
  background: var(--c-black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif); font-size: 18px; font-weight: 900;
  color: var(--c-gold); letter-spacing: 0;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  flex-shrink: 0;
}
.logo-tagline {
  display: block; font-family: var(--f-sans);
  font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--c-muted);
  font-weight: 500; margin-top: -4px;
}

/* Search */
.header-search {
  position: relative; max-width: 480px; width: 100%;
}
.header-search form {
  display: flex; align-items: center;
  background: var(--c-cream);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  padding: 0 16px;
  height: 44px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header-search form:focus-within {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.10);
}
.header-search input {
  flex: 1; background: none;
  font-size: 14px; color: var(--c-black);
}
.header-search input::placeholder { color: var(--c-muted); }
.header-search button {
  color: var(--c-muted); cursor: pointer;
  padding: 4px; transition: color 0.2s; font-size: 18px;
}
.header-search button:hover { color: var(--c-gold); }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: 4px;
}
.haction {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 10px;
  color: var(--c-black); cursor: pointer;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  border-radius: 6px; transition: all 0.2s;
  position: relative;
}
.haction:hover { background: var(--c-cream); color: var(--c-gold); }
.haction .hicon { font-size: 21px; line-height: 1; }
.haction .hbadge {
  position: absolute; top: 3px; right: 5px;
  background: var(--c-red); color: white;
  font-size: 9px; font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  padding: 0 4px;
}
.haction-cart { background: var(--c-black); color: var(--c-white) !important; border-radius: 6px; }
.haction-cart:hover { background: var(--c-gold) !important; color: var(--c-black) !important; }
.haction-cart .hbadge { background: var(--c-gold); color: var(--c-black); top: 2px; right: 4px; }

/* ==============================================
   MEGA NAVIGATION BAR
   ============================================== */
#nav-primary {
  background: var(--c-dark);
  height: var(--nav-h);
  position: relative; z-index: 800;
  border-bottom: 1px solid var(--c-border);
}

.nav-inner {
  height: 100%;
  display: flex; align-items: stretch;
}

/* Nav Item */
.nav-item {
  position: static; /* per mega-menu full-width */
  display: flex; align-items: stretch;
}
.nav-item.has-mega { position: relative; } /* posizionamento relativo per mega menu */

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px;
  color: rgba(255,255,255,0.80);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
.nav-link .caret {
  font-size: 8px; opacity: 0.5;
  transition: transform 0.25s var(--ease);
  margin-top: 1px;
}
.nav-item:hover .nav-link .caret { transform: rotate(180deg); opacity: 1; }

/* Nav speciali */
.nav-item.nav-sale .nav-link { color: #ff5757; }
.nav-item.nav-sale .nav-link:hover { color: #ff7b7b; border-bottom-color: #ff5757; }
.nav-item.nav-new .nav-link { color: var(--c-gold); }
.nav-item.nav-new .nav-link:hover { border-bottom-color: var(--c-gold2); }

/* Separatore */
.nav-sep { width: 1px; background: var(--c-border); margin: 12px 4px; }

/* ── DROPDOWN SEMPLICE ──────────────────────────── */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.09);
  border-top: 2px solid var(--c-gold);
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}

.dd-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
  color: var(--c-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.15s; cursor: pointer;
  position: relative;
}
.dd-item:last-child { border-bottom: none; }
.dd-item:hover {
  background: var(--c-cream);
  color: var(--c-gold);
  padding-left: 24px;
}
.dd-item::before {
  content: '→';
  position: absolute; left: 10px; opacity: 0;
  font-size: 10px; color: var(--c-gold);
  transition: opacity 0.15s;
}
.dd-item:hover::before { opacity: 1; }
.dd-count {
  font-size: 10px; color: var(--c-muted);
  background: var(--c-cream);
  padding: 1px 7px; border-radius: 10px;
  font-weight: 500;
}

/* ── DROPDOWN CON SOTTOCATEGORIE (3 livelli) ─────── */
.dd-item.has-sub .dd-count { display: none; }
.dd-item.has-sub::after {
  content: '›';
  font-size: 16px; color: var(--c-muted);
  margin-left: auto; padding-left: 8px;
  transition: color 0.15s;
}
.dd-item.has-sub:hover::after { color: var(--c-gold); }

.dd-sub {
  position: absolute; top: -2px; left: 100%;
  background: var(--c-white);
  border: 1px solid rgba(0,0,0,0.09);
  border-top: 2px solid var(--c-gold2);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(6px);
  transition: all 0.2s var(--ease);
  z-index: 10;
}
.dd-item.has-sub:hover .dd-sub {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(0);
}

/* ── MEGA MENU ───────────────────────────────────── */
.nav-mega {
  position: absolute; top: calc(100% + 1px); left: 0; right: 0;
  background: var(--c-white);
  border-top: 2px solid var(--c-gold);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 70px rgba(0,0,0,0.13);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: all 0.28s var(--ease);
  display: grid;
  grid-template-columns: repeat(4, 1fr) 240px;
}
.nav-item.has-mega:hover .nav-mega {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}

/* Colonne mega */
.mega-col {
  padding: 28px 24px;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.mega-col:last-child { border-right: none; padding: 0; overflow: hidden; }

.mega-heading {
  font-family: var(--f-serif);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--c-black);
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; gap: 8px;
}
.mega-heading .micon { font-size: 16px; }

.mega-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0;
  font-size: 13px; color: var(--c-mid);
  transition: all 0.15s; cursor: pointer;
  border-bottom: 1px solid transparent;
}
.mega-link:hover { color: var(--c-gold); padding-left: 6px; }
.mega-link .ml-tag {
  font-size: 9px; font-weight: 800; letter-spacing: 1px;
  padding: 2px 6px; text-transform: uppercase; border-radius: 2px;
}
.mega-link .ml-tag.new { background: var(--c-gold); color: var(--c-black); }
.mega-link .ml-tag.hot { background: var(--c-red); color: white; }
.mega-link .ml-tag.sale { background: #ff5757; color: white; }

/* Banner laterale mega */
.mega-promo {
  width: 100%; height: 100%;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background:
    linear-gradient(160deg, #1a1428 0%, #0d1f3c 60%, #0a2a1a 100%);
  position: relative; overflow: hidden;
}
.mega-promo::before {
  content: '✦';
  position: absolute; top: 24px; right: 24px;
  font-size: 50px; color: rgba(200,168,75,0.18);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.mega-promo-eyebrow {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--c-gold);
  font-weight: 700; margin-bottom: 10px;
}
.mega-promo h3 {
  font-family: var(--f-serif);
  font-size: 22px; color: white;
  line-height: 1.2; margin-bottom: 8px;
}
.mega-promo p {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 20px; line-height: 1.6;
}
.mega-promo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-gold); color: var(--c-black);
  font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 20px;
  transition: background 0.2s; align-self: flex-start;
}
.mega-promo-btn:hover { background: var(--c-gold2); }

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  display: grid; grid-template-columns: 1fr 420px;
  min-height: 560px; overflow: hidden;
}

.hero-main {
  background: var(--c-dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px;
  position: relative; overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 15% 50%, rgba(200,168,75,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(200,168,75,0.07) 0%, transparent 60%);
}
.hero-main::after {
  content: '';
  position: absolute; right: -100px; top: 50%;
  width: 400px; height: 400px;
  border: 1px solid rgba(200,168,75,0.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-gold); font-weight: 700; margin-bottom: 22px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--c-gold); flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(38px, 3.8vw, 64px);
  font-weight: 900; line-height: 1.05;
  color: var(--c-white); margin-bottom: 22px;
  position: relative; z-index: 1;
}
.hero-title em { color: var(--c-gold); font-style: normal; }

.hero-desc {
  font-size: 15px; color: rgba(255,255,255,0.5);
  max-width: 400px; margin-bottom: 36px; line-height: 1.8;
  position: relative; z-index: 1;
}

.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 52px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  position: relative; z-index: 1;
}
.hstat-num {
  font-family: var(--f-serif); font-size: 30px; font-weight: 700;
  color: var(--c-white); line-height: 1;
}
.hstat-label {
  font-size: 10px; color: var(--c-muted); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 4px;
}

/* Hero Sidebar */
.hero-side {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--c-cream);
}
.hero-side-card {
  flex: 1; position: relative; overflow: hidden;
  cursor: pointer; display: flex; align-items: flex-end;
  padding: 20px; min-height: 120px;
  transition: flex 0.4s var(--ease);
}
.hero-side-card:hover { flex: 1.6; }
.hero-side-bg {
  position: absolute; inset: 0;
  font-size: 72px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-cream), white);
  transition: transform 0.4s var(--ease);
}
.hero-side-card:hover .hero-side-bg { transform: scale(1.08); }
.hero-side-info {
  position: relative; z-index: 1;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(4px);
  padding: 10px 14px; border-radius: 4px; width: 100%;
  transform: translateY(4px); opacity: 0.85;
  transition: all 0.3s;
}
.hero-side-card:hover .hero-side-info { transform: translateY(0); opacity: 1; }
.hero-side-name { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.4px; }
.hero-side-price { font-size: 11px; color: var(--c-gold); margin-top: 2px; font-weight: 600; }

/* ==============================================
   CATEGORY SHOWCASE
   ============================================== */
.cats-section {
  padding: 60px 0;
  background: var(--c-black);
}

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px;
}
.section-title {
  font-family: var(--f-serif);
  font-size: 32px; font-weight: 700;
  color: var(--c-white); line-height: 1.1;
}
.section-title span { color: var(--c-gold); font-style: italic; }

.cats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.cat-tile {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  padding: 22px 12px 18px;
  text-align: center; cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.cat-tile:hover {
  background: rgba(200,168,75,0.09);
  border-color: rgba(200,168,75,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.cat-tile-icon { font-size: 34px; margin-bottom: 10px; display: block; line-height: 1; }
.cat-tile-name {
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--c-light);
}
.cat-tile-count { font-size: 10px; color: var(--c-muted); margin-top: 3px; }

/* ==============================================
   PRODUCTS GRID
   ============================================== */
.products-section { padding: 72px 0; background: var(--c-white); }

.products-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; gap: 20px; flex-wrap: wrap;
}
.products-tabs {
  display: flex; gap: 2px;
  background: var(--c-cream); padding: 4px;
  border-radius: 6px;
}
.ptab {
  padding: 8px 18px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; border-radius: 4px; transition: all 0.2s;
  color: var(--c-muted); background: none;
}
.ptab:hover { color: var(--c-black); }
.ptab.active { background: var(--c-black); color: var(--c-white); }

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px !important;
  margin: 0 !important; padding: 0 !important;
  list-style: none !important;
}

/* Product Card Override */
.woocommerce ul.products li.product {
  position: relative; overflow: visible !important;
  width: auto !important; float: none !important;
  margin: 0 !important; padding: 0 !important;
  cursor: pointer;
}

.nexo-product-card {
  position: relative;
}

.nexo-product-img {
  aspect-ratio: 3/4; overflow: hidden;
  background: var(--c-cream); margin-bottom: 14px;
  position: relative;
}
.nexo-product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.nexo-product-card:hover .nexo-product-img img { transform: scale(1.07); }

.nexo-product-actions {
  position: absolute; bottom: -48px; inset-x: 0;
  display: flex; gap: 1px;
  transition: bottom 0.3s var(--ease);
  z-index: 2;
}
.nexo-product-card:hover .nexo-product-actions { bottom: 0; }

.nexo-product-actions .add-to-cart {
  flex: 1; padding: 12px 8px;
  background: var(--c-black); color: white;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
  border: none;
}
.nexo-product-actions .add-to-cart:hover { background: var(--c-gold); color: var(--c-black); }
.nexo-product-actions .wishlist {
  width: 46px; font-size: 18px;
  background: var(--c-dark); color: white;
  cursor: pointer; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.nexo-product-actions .wishlist:hover { background: var(--c-red); }

.nexo-product-brand {
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--c-muted); margin-bottom: 4px;
}
.nexo-product-name {
  font-size: 14px; font-weight: 600; color: var(--c-black);
  margin-bottom: 6px; line-height: 1.3;
}
.nexo-product-price {
  display: flex; align-items: center; gap: 10px;
}
.nexo-price-current { font-size: 16px; font-weight: 800; color: var(--c-black); }
.nexo-price-old {
  font-size: 13px; color: var(--c-muted);
  text-decoration: line-through;
}
.nexo-price-save {
  font-size: 11px; font-weight: 700;
  color: var(--c-red);
}

/* ==============================================
   BANNER / PROMO STRIP
   ============================================== */
.promo-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin: 0; overflow: hidden;
}
.promo-card {
  min-height: 280px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px 40px; cursor: pointer;
}
.promo-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.5s var(--ease);
  font-size: 120px; display: flex; align-items: center; justify-content: center;
}
.promo-card:hover .promo-card-bg { transform: scale(1.06); }
.promo-card:nth-child(1) .promo-card-bg { background: linear-gradient(135deg, #1a1428, #2d1b5e); }
.promo-card:nth-child(2) .promo-card-bg { background: linear-gradient(135deg, #0d2b1a, #1a4a2e); }

.promo-card-content { position: relative; z-index: 1; }
.promo-card-tag {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--c-gold); font-weight: 700; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.promo-card-tag::before { content: ''; width: 20px; height: 1px; background: var(--c-gold); }
.promo-card-title {
  font-family: var(--f-serif); font-size: 32px; font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 8px;
}
.promo-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 22px; }

/* ==============================================
   FEATURES BAR
   ============================================== */
.features-bar {
  background: var(--c-dark);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 28px 0;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px;
}
.feature-icon {
  font-size: 28px; flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.feature-title {
  font-size: 13px; font-weight: 700;
  color: var(--c-white); margin-bottom: 3px;
}
.feature-desc { font-size: 12px; color: var(--c-muted); }

/* ==============================================
   FOOTER
   ============================================== */
.site-footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr 200px;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--c-muted); line-height: 1.8; max-width: 240px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 4px;
  background: var(--c-dark2); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all 0.2s; cursor: pointer;
}
.footer-social:hover { background: var(--c-gold); border-color: var(--c-gold); }

.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--c-white);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px; color: var(--c-muted);
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--c-gold); }
.footer-col ul li a::before { content: '›'; color: var(--c-border); }

.footer-newsletter h4 { font-size: 12px; font-weight: 700; color: var(--c-white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.footer-newsletter p { font-size: 12px; color: var(--c-muted); margin-bottom: 14px; line-height: 1.6; }
.newsletter-form {
  display: flex; flex-direction: column; gap: 8px;
}
.newsletter-form input {
  background: var(--c-dark2);
  border: 1px solid var(--c-border);
  border-radius: 4px; padding: 10px 14px;
  font-size: 13px; color: var(--c-white);
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: var(--c-muted); }
.newsletter-form input:focus { border-color: var(--c-gold); }
.newsletter-form button {
  background: var(--c-gold); color: var(--c-black);
  padding: 10px; font-size: 12px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  border-radius: 4px; transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--c-gold2); }

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--c-muted);
}
.footer-payments { display: flex; gap: 8px; }
.payment-icon {
  background: var(--c-dark2); border: 1px solid var(--c-border);
  border-radius: 4px; padding: 4px 10px;
  font-size: 13px;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1200px) {
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --header-h: 60px; --nav-h: 0px; }
  .hero { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-main { padding: 48px 24px; }
  #nav-primary { display: none; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-strip { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-search { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
