/*
Theme Name: Vexora Maison
Theme URI: https://vexoramaison.com
Author: Vexora Maison
Description: Premium dark theme with gold accents for luxury fashion e-commerce
Version: 2.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: vexora-maison
*/

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --vx-burgundy: #4a0d1c;
  --vx-dark: #1a0a0e;
  --vx-darker: #0f0609;
  --vx-gold: #c9a227;
  --vx-gold-light: #d4b85a;
  --vx-white: #ffffff;
  --vx-cream: #f5f5f5;
  --vx-gray: #888888;
  --vx-border: rgba(201, 162, 39, 0.15);
  --vx-pink: #e8a0b5;
}

/* ============================================
   RESET & BASE
   ============================================ */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--vx-dark);
  color: var(--vx-white);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--vx-gold);
}
.vx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.vx-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--vx-darker);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.5s, visibility 0.5s;
}
.vx-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.vx-loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--vx-border);
  animation: vxPulse 1.5s ease-in-out infinite;
}
.vx-loader-text {
  display: flex;
  gap: 4px;
}
.vx-loader-text span {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--vx-gold);
  opacity: 0;
  animation: vxLetterFade 0.5s ease forwards;
}
.vx-loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(201,162,39,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.vx-loader-progress {
  width: 0;
  height: 100%;
  background: var(--vx-gold);
  animation: vxProgress 1.5s ease forwards;
}
@keyframes vxPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes vxLetterFade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vxProgress {
  to { width: 100%; }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.vx-announcement {
  background: linear-gradient(90deg, var(--vx-gold), var(--vx-gold-light), var(--vx-gold));
  color: var(--vx-dark);
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.vx-announcement::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: vxSweep 3s ease-in-out infinite;
}
@keyframes vxSweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
.vx-announcement i {
  margin-right: 8px;
  animation: vxSnow 1s infinite;
}
@keyframes vxSnow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* ============================================
   HEADER
   ============================================ */
.vx-header {
  background: var(--vx-darker);
  border-bottom: 1px solid var(--vx-border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.vx-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vx-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vx-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vx-border);
}
.vx-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 2px;
}
.vx-logo-text .gold {
  color: var(--vx-gold);
}
.vx-nav {
  display: flex;
  list-style: none;
  gap: 30px;
}
.vx-nav a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 0;
  position: relative;
}
.vx-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vx-gold);
  transition: width 0.3s;
}
.vx-nav a:hover::after {
  width: 100%;
}
.vx-header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}
.vx-header-icons a,
.vx-header-icons button {
  font-size: 18px;
  color: var(--vx-cream);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}
.vx-header-icons a:hover,
.vx-header-icons button:hover {
  color: var(--vx-gold);
}
.vx-cart-icon {
  position: relative;
}
.vx-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--vx-gold);
  color: var(--vx-dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vx-lang-toggle {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 8px;
  border: 1px solid var(--vx-border) !important;
  border-radius: 4px;
}
.vx-lang-toggle:hover {
  border-color: var(--vx-gold) !important;
}

/* Mobile Menu */
.vx-mobile-toggle {
  display: none;
  font-size: 22px;
  color: var(--vx-gold);
  background: none;
  border: none;
  cursor: pointer;
}
.vx-mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--vx-darker);
  z-index: 9999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid var(--vx-border);
}
.vx-mobile-drawer.open {
  right: 0;
}
.vx-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: var(--vx-gold);
  background: none;
  border: none;
  cursor: pointer;
}
.vx-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vx-mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--vx-border);
}
.vx-mobile-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.vx-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .vx-nav { display: none; }
  .vx-mobile-toggle { display: block; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.vx-hero {
  min-height: 85vh;
  background: linear-gradient(135deg, var(--vx-darker) 0%, var(--vx-burgundy) 50%, var(--vx-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vx-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.vx-hero-content {
  text-align: center;
  z-index: 1;
  padding: 40px 20px;
}
.vx-hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.15);
  border: 1px solid var(--vx-gold);
  color: var(--vx-gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.vx-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #c9a227 50%, #fff 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: vxShimmer 6s linear infinite;
}
.vx-hero h1 span {
  color: var(--vx-gold);
  -webkit-text-fill-color: var(--vx-gold);
}
@keyframes vxShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.vx-hero p {
  font-size: 16px;
  color: var(--vx-cream);
  max-width: 500px;
  margin: 0 auto 35px;
  opacity: 0.9;
}
.vx-btn {
  padding: 14px 35px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  display: inline-block;
}
.vx-btn-primary {
  background: var(--vx-gold);
  color: var(--vx-dark);
  border: 2px solid var(--vx-gold);
}
.vx-btn-primary:hover {
  background: transparent;
  color: var(--vx-gold);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.vx-section-header {
  text-align: center;
  margin-bottom: 40px;
}
.vx-section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  display: inline-block;
  position: relative;
  margin: 0;
  text-shadow: 0 0 10px rgba(201,162,39,.4), 0 0 25px rgba(201,162,39,.2), 0 0 50px rgba(201,162,39,.1), 0 4px 8px rgba(0,0,0,.5);
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #c9a227 50%, #fff 60%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: vxShimmer 6s linear infinite;
}
.vx-section-header h2 span {
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  background: linear-gradient(90deg, #c9a227 0%, #c9a227 40%, #f0d860 50%, #c9a227 60%, #c9a227 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: vxShimmer 6s linear infinite;
  filter: drop-shadow(0 0 8px rgba(201,162,39,.4));
}
.vx-section-header h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
  box-shadow: 0 0 10px rgba(201,162,39,.4), 0 0 20px rgba(201,162,39,.15);
  -webkit-text-fill-color: initial;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.vx-products-section {
  padding: 60px 0;
  position: relative;
}
.vx-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.vx-product-card {
  display: block;
  background: linear-gradient(135deg, rgba(42,16,21,.5), rgba(26,10,14,.8));
  border: 1px solid rgba(201,162,39,.1);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  transform-style: preserve-3d;
  perspective: 800px;
}
.vx-product-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
  border-color: rgba(201,162,39,.35);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 25px rgba(201,162,39,.08), 0 0 50px rgba(201,162,39,.03);
}
.vx-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #d2ccc4;
}
.vx-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.vx-product-card:hover .vx-card-img img {
  transform: scale(1.08);
}
.vx-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #c9a227, #b89220);
  color: #1a0a0e;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 6px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 12px rgba(201,162,39,.3);
}
.vx-card-info {
  padding: 16px;
}
.vx-card-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #e0d6c8;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vx-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.vx-price-now {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #c9a227;
  text-shadow: 0 0 8px rgba(201,162,39,.2);
}
.vx-price-was {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #666;
  text-decoration: line-through;
}

/* ============================================
   CAROUSEL
   ============================================ */
.vx-carousel {
  position: relative;
  padding: 0 50px;
}
.vx-scroll-row {
  display: flex !important;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
}
.vx-scroll-row::-webkit-scrollbar {
  display: none;
}
.vx-scroll-row .vx-product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
}
.vx-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,162,39,.25);
  background: rgba(15,6,9,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #c9a227;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  opacity: .7;
  transform: translateY(-50%);
}
.vx-arrow:hover {
  border-color: rgba(201,162,39,.5);
  background: rgba(201,162,39,.1);
  opacity: 1;
  box-shadow: 0 0 15px rgba(201,162,39,.12);
}
.vx-arrow-l { left: 0; }
.vx-arrow-r { right: 0; }
.vx-arrow.vx-hide {
  opacity: 0;
  pointer-events: none;
}

/* ============================================
   TRUST BANNER
   ============================================ */
.vx-trust-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #0f0609, #1a0a0e);
  border-top: 1px solid rgba(201,162,39,.08);
  border-bottom: 1px solid rgba(201,162,39,.08);
}
.vx-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vx-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(201,162,39,.04);
  border: 1px solid rgba(201,162,39,.1);
  border-radius: 12px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.vx-trust-item:hover {
  border-color: rgba(201,162,39,.3);
  transform: translateY(-4px) rotateX(3deg);
  box-shadow: 0 12px 30px rgba(0,0,0,.3), 0 0 15px rgba(201,162,39,.06);
}
.vx-trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,162,39,.15), rgba(201,162,39,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  font-size: 18px;
  flex-shrink: 0;
}
.vx-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vx-trust-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.vx-trust-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #888;
}

@media (max-width: 992px) {
  .vx-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .vx-trust-grid { grid-template-columns: 1fr; }
}

/* ============================================
   REVIEWS
   ============================================ */
.vx-reviews-section {
  padding: 60px 0;
  background: var(--vx-darker);
}
.vx-reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(201,162,39,.06), rgba(201,162,39,.02));
  border: 1px solid rgba(201,162,39,.12);
  border-radius: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.vx-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vx-review-card {
  background: linear-gradient(145deg, rgba(42,16,21,.4), rgba(15,6,9,.8));
  border: 1px solid rgba(201,162,39,.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.vx-review-card:hover {
  border-color: rgba(201,162,39,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 15px rgba(201,162,39,.04);
}
.vx-review-stars {
  color: #c9a227;
  font-size: 13px;
  display: flex;
  gap: 1px;
  filter: drop-shadow(0 0 3px rgba(201,162,39,.4));
}
.vx-review-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #d4ccc0;
  margin: 0;
  flex: 1;
}
.vx-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.04);
}
.vx-review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 992px) {
  .vx-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vx-reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.vx-footer {
  background: var(--vx-darker);
  border-top: 1px solid var(--vx-border);
  padding: 60px 0 30px;
}
.vx-footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}
.vx-footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.vx-footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.vx-footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}
.vx-footer-logo .gold {
  color: var(--vx-gold);
}
.vx-footer-tagline {
  color: var(--vx-cream);
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 25px;
}
.vx-footer-social {
  display: flex;
  gap: 15px;
}
.vx-footer-social a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--vx-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-gold);
  font-size: 20px;
  transition: all 0.3s ease;
}
.vx-footer-social a:hover {
  background: var(--vx-gold);
  color: var(--vx-dark);
}
.vx-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.vx-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--vx-gold);
}
.vx-footer-col ul {
  list-style: none;
}
.vx-footer-col li {
  margin-bottom: 12px;
  font-size: 14px;
}
.vx-footer-col li a {
  color: var(--vx-cream);
  opacity: 0.85;
}
.vx-footer-col li a:hover {
  color: var(--vx-gold);
  opacity: 1;
}
.vx-footer-col li i {
  color: var(--vx-gold);
  margin-right: 8px;
  width: 18px;
}
.vx-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--vx-border);
}
.vx-footer-bottom p {
  color: var(--vx-cream);
  font-size: 13px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .vx-footer-main { grid-template-columns: 1fr; gap: 40px; }
  .vx-footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .vx-footer-links { grid-template-columns: 1fr; }
}

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.vx-newsletter-popup {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.vx-newsletter-popup.open {
  opacity: 1;
  visibility: visible;
}
.vx-newsletter-content {
  background: linear-gradient(135deg, #1a0a0e, #2a1015);
  border: 2px solid var(--vx-gold);
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 420px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.vx-newsletter-popup.open .vx-newsletter-content {
  transform: scale(1);
}
.vx-newsletter-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #888;
  background: none;
  border: none;
  cursor: pointer;
}
.vx-newsletter-close:hover {
  color: var(--vx-gold);
}
.vx-newsletter-discount {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--vx-gold);
  margin-bottom: 10px;
}
.vx-newsletter-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.vx-newsletter-text {
  color: #888;
  font-size: 14px;
  margin-bottom: 25px;
}
.vx-newsletter-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
}
.vx-newsletter-input:focus {
  outline: none;
  border-color: var(--vx-gold);
}
.vx-newsletter-btn {
  width: 100%;
  padding: 14px;
  background: var(--vx-gold);
  color: var(--vx-dark);
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.vx-newsletter-btn:hover {
  box-shadow: 0 8px 25px rgba(201,162,39,0.3);
}

/* ============================================
   CHAT WIDGET
   ============================================ */
.vx-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: var(--vx-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vx-dark);
  font-size: 24px;
  cursor: pointer;
  z-index: 9990;
  box-shadow: 0 4px 20px rgba(201,162,39,0.4);
  transition: all 0.3s;
  border: none;
}
.vx-chat-btn:hover {
  transform: scale(1.1);
}
.vx-chat-window {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 350px;
  max-height: 450px;
  background: var(--vx-darker);
  border: 1px solid var(--vx-border);
  border-radius: 16px;
  overflow: hidden;
  z-index: 9991;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
}
.vx-chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.vx-chat-header {
  background: var(--vx-gold);
  color: var(--vx-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vx-chat-avatar {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.vx-chat-name {
  font-weight: 700;
  font-size: 14px;
}
.vx-chat-status {
  font-size: 11px;
  opacity: 0.8;
}
.vx-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
}
.vx-chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.vx-chat-msg.bot {
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--vx-border);
  align-self: flex-start;
}
.vx-chat-msg.user {
  background: var(--vx-gold);
  color: var(--vx-dark);
  align-self: flex-end;
}
.vx-chat-input-wrap {
  padding: 16px;
  border-top: 1px solid var(--vx-border);
  display: flex;
  gap: 10px;
}
.vx-chat-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--vx-border);
  border-radius: 8px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}
.vx-chat-input:focus {
  outline: none;
  border-color: var(--vx-gold);
}
.vx-chat-send {
  width: 44px;
  height: 44px;
  background: var(--vx-gold);
  border: none;
  border-radius: 8px;
  color: var(--vx-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .vx-chat-window {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 90px;
  }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.vx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.vx-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-ro, .lang-en {
  display: none;
}
html[lang="ro"] .lang-ro {
  display: inline;
}
html[lang="en"] .lang-en {
  display: inline;
}
html:not([lang="ro"]) .lang-en {
  display: inline;
}

/* ============================================
   VIEW ALL BUTTON
   ============================================ */
.vx-view-all {
  display: block;
  text-align: center;
  margin-top: 32px;
  color: #c9a227;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border: 2px solid rgba(201,162,39,.3);
  border-radius: 10px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.vx-view-all:hover {
  background: rgba(201,162,39,.1);
  border-color: #c9a227;
  color: #c9a227;
  box-shadow: 0 0 20px rgba(201,162,39,.15);
  transform: translateY(-2px);
}

/* ============================================
   FILM GRAIN OVERLAY
   ============================================ */
.vx-grain {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   GOLD SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--vx-darker);
}
::-webkit-scrollbar-thumb {
  background: var(--vx-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--vx-gold-light);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: var(--vx-gold);
  color: var(--vx-dark);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .vx-products-section { padding: 40px 0; }
  .vx-section-header h2 { font-size: 24px; letter-spacing: 3px; }
  .vx-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vx-card-info { padding: 10px; }
  .vx-card-info h3 { font-size: 12px; }
  .vx-price-now { font-size: 15px; }
  .vx-price-was { font-size: 11px; }
  .vx-badge { padding: 3px 8px; font-size: 9px; }
  .vx-hero h1 { font-size: 32px; }
  .vx-carousel { padding: 0 36px; }
  .vx-scroll-row .vx-product-card { flex: 0 0 calc(50% - 10px); min-width: 160px; }
  .vx-scroll-row { gap: 10px; }
  .vx-arrow { width: 32px; height: 32px; font-size: 11px; }
}

@media (max-width: 480px) {
  .vx-carousel { padding: 0 !important; }
  .vx-arrow { width: 30px; height: 30px; font-size: 10px; background: rgba(15,6,9,.9); }
  .vx-arrow-l { left: 4px; }
  .vx-arrow-r { right: 4px; }
  .vx-scroll-row .vx-product-card { flex: 0 0 calc(65% - 8px); min-width: 180px; }
}

/* Hide default WooCommerce elements */
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
  display: none !important;
}
