/*
Theme Name: VAV Tienda
Theme URI: https://tienda.vinaalbalivaldepenas.com
Description: Tienda oficial Viña Albali Valdepeñas - Dark Navy Theme
Author: VAV Dev
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: vav-tienda
*/

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  --bg-primary: #0E1525;
  --bg-secondary: #151D2E;
  --bg-header: #0A0F1A;
  --bg-footer: #080D16;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-muted: rgba(255,255,255,0.5);
  --accent-gold: #C5A044;
  --accent-gold-hover: #D4B054;
  --vav-blue: #154284;
  --vav-green: #7DBD1D;
  --vav-green-hover: #8ED42A;
  --sale-red: #E53935;
  --card-bg: #1A2236;
  --card-border: rgba(255,255,255,0.08);
  --divider: rgba(255,255,255,0.1);
  --input-bg: #1A2236;
  --input-border: rgba(255,255,255,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 64px;
  --announce-height: 36px;
  --total-header: calc(var(--header-height) + var(--announce-height));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--vav-green); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
}

::selection {
  background: var(--vav-green);
  color: white;
}

/* ========================================
   LAYOUT
   ======================================== */
.vav-container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.vav-section {
  padding: 60px 0;
}

.vav-section--alt {
  background: var(--bg-secondary);
}

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.vav-announce {
  background: var(--vav-green);
  color: white;
  text-align: center;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: var(--announce-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.vav-announce a { color: white; text-decoration: underline; }

/* ========================================
   HEADER
   ======================================== */
.vav-store-header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--divider);
  height: var(--header-height);
  position: fixed;
  top: var(--announce-height);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.vav-store-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.vav-store-header__logo img {
  height: 44px;
  width: auto;
}

.vav-store-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vav-store-header__nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.vav-store-header__nav a:hover,
.vav-store-header__nav a.active {
  color: var(--text-primary);
}

.vav-store-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vav-green);
  transition: width 0.3s;
}

.vav-store-header__nav a:hover::after,
.vav-store-header__nav a.active::after {
  width: 100%;
}

.vav-store-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vav-store-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.vav-store-header__icon:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.vav-store-header__icon svg {
  width: 20px;
  height: 20px;
}

.vav-store-cart__count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--vav-green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.vav-store-cart__count[data-count="0"] { display: none; }

/* Header spacer */
.vav-header-spacer {
  height: var(--total-header);
}

/* Mobile hamburger */
.vav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.vav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Mobile menu */
.vav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-header);
  z-index: 999;
  padding: calc(var(--total-header) + 20px) 20px 20px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}

.vav-mobile-menu.is-open {
  display: flex;
}

.vav-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
  display: block;
  color: var(--text-primary);
}

.vav-mobile-menu a:hover {
  color: var(--vav-green);
}

/* Search overlay */
.vav-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,15,26,0.95);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vav-search-overlay.is-open {
  display: flex;
}

.vav-search-overlay__inner {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.vav-search-overlay__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 32px;
  cursor: pointer;
}

.vav-search-overlay input[type="search"],
.vav-search-overlay input[type="text"] {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 18px;
  color: var(--text-primary);
  outline: none;
}

.vav-search-overlay input:focus {
  border-color: var(--vav-green);
}

/* ========================================
   HERO SECTION
   ======================================== */
.vav-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vav-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vav-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,21,37,0.85) 0%, rgba(14,21,37,0.5) 50%, rgba(14,21,37,0.3) 100%);
}

.vav-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
}

.vav-hero__badge {
  display: inline-block;
  background: var(--vav-green);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.vav-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.vav-hero__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vav-hero__cta {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-header);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.vav-hero__cta:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-header);
  transform: translateY(-2px);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.vav-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 20px;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}

.vav-section__header h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
}

.vav-section__header a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.vav-section__header a:hover {
  color: var(--accent-gold-hover);
}

/* ========================================
   PRODUCT CAROUSEL
   ======================================== */
.vav-carousel {
  position: relative;
  overflow: hidden;
}

.vav-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 20px;
  max-width: 1340px;
  margin: 0 auto;
  scroll-behavior: smooth;
}

.vav-carousel__track::-webkit-scrollbar { display: none; }

.vav-carousel__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 18px;
  transition: all 0.2s;
}

.vav-carousel__arrow:hover {
  background: rgba(255,255,255,0.22);
}

.vav-carousel__arrow--left { left: 12px; }
.vav-carousel__arrow--right { right: 12px; }

/* ========================================
   PRODUCT CARDS
   ======================================== */
.vav-product-card {
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
  min-width: 0;
}

.vav-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vav-product-card__image {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.vav-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vav-product-card:hover .vav-product-card__image img {
  transform: scale(1.06);
}

.vav-product-card__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--sale-red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 1;
}

.vav-product-card__info {
  padding: 12px 4px 0;
}

.vav-product-card__category {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--vav-green);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.vav-product-card__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  text-transform: none;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vav-product-card__price {
  font-size: 14px;
  color: var(--text-secondary);
}

.vav-product-card__price del {
  color: var(--text-muted);
  font-size: 12px;
  margin-right: 6px;
}

.vav-product-card__price ins {
  text-decoration: none;
  color: var(--sale-red);
  font-weight: 600;
}

/* ========================================
   COLLECTION / CATEGORY CARDS
   ======================================== */
.vav-collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.vav-collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  cursor: pointer;
}

.vav-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vav-collection-card:hover img {
  transform: scale(1.08);
}

.vav-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,0.85) 0%, rgba(10,15,26,0.2) 50%, transparent 100%);
  transition: background 0.3s;
}

.vav-collection-card:hover .vav-collection-card__overlay {
  background: linear-gradient(to top, rgba(10,15,26,0.9) 0%, rgba(10,15,26,0.35) 50%, transparent 100%);
}

.vav-collection-card__title {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  z-index: 1;
}

.vav-collection-card__count {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ========================================
   TRUST BAR
   ======================================== */
.vav-trust {
  background: var(--bg-secondary);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px 0;
}

.vav-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.vav-trust__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.vav-trust__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--vav-green);
}

.vav-trust__icon svg {
  width: 24px;
  height: 24px;
}

.vav-trust__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
}

.vav-trust__desc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ========================================
   FOOTER
   ======================================== */
.vav-footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--divider);
}

.vav-footer__top {
  padding: 60px 0 40px;
}

.vav-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.vav-footer__col-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.vav-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vav-footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.vav-footer__links a:hover {
  color: var(--text-primary);
}

.vav-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.vav-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.vav-footer__social a:hover {
  background: var(--vav-green);
  color: white;
}

.vav-footer__social svg { width: 18px; height: 18px; }

/* Big brand name */
.vav-footer__brand {
  text-align: center;
  padding: 40px 20px 20px;
  border-top: 1px solid var(--divider);
}

.vav-footer__brand-text {
  font-family: var(--font-heading);
  font-size: clamp(60px, 12vw, 160px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  background: linear-gradient(135deg, var(--vav-blue) 0%, var(--vav-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.6;
  user-select: none;
}

/* Bottom bar */
.vav-footer__bottom {
  border-top: 1px solid var(--divider);
  padding: 20px 0;
}

.vav-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.vav-footer__copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.vav-footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vav-footer__payments svg,
.vav-footer__payments img {
  height: 24px;
  width: auto;
  opacity: 0.5;
}

/* ========================================
   SHOP / ARCHIVE PAGE
   ======================================== */
.vav-store-main {
  min-height: 60vh;
  background: var(--bg-primary);
}

.vav-shop-page {
  padding: 32px 0 60px;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 0;
}

.woocommerce-breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.woocommerce-breadcrumb a:hover {
  color: var(--text-primary);
}

/* Shop header */
.vav-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}

.vav-shop-header__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
}

.vav-shop-header__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  max-width: 600px;
}

.vav-shop-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* WC result count */
.woocommerce-result-count {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* WC ordering select */
.woocommerce-ordering select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 8px 32px 8px 12px;
  color: var(--text-primary);
  font-size: 13px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  outline: none;
}

.woocommerce-ordering select:focus {
  border-color: var(--vav-green);
}

/* Product grid (shop page) */
ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.products li.product {
  list-style: none;
}

/* Pagination */
.woocommerce-págination {
  margin-top: 48px;
  text-align: center;
}

.woocommerce-págination ul {
  display: inline-flex;
  gap: 8px;
}

.woocommerce-págination ul li {
  list-style: none;
}

.woocommerce-págination ul li a,
.woocommerce-págination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.woocommerce-págination ul li a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.woocommerce-págination ul li span.current {
  background: var(--vav-green);
  border-color: var(--vav-green);
  color: white;
}

/* ========================================
   SINGLE PRODUCT
   ======================================== */
.vav-single-product {
  padding: 32px 0 60px;
}

.vav-single-product__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.vav-single-product__gallery {
  position: sticky;
  top: calc(var(--total-header) + 20px);
}

.vav-single-product__gallery .woocommerce-product-gallery {
  width: 100% !important;
}

.vav-single-product__gallery .woocommerce-product-gallery__image {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vav-single-product__gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
}

.vav-single-product__gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}

.vav-single-product__gallery .flex-control-thumbs li {
  flex: 0 0 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card-bg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.vav-single-product__gallery .flex-control-thumbs li img {
  width: 100%;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.vav-single-product__gallery .flex-control-thumbs li img.flex-active,
.vav-single-product__gallery .flex-control-thumbs li:hover img {
  opacity: 1;
}

.vav-single-product__gallery .flex-control-thumbs li:has(.flex-active) {
  border-color: var(--vav-green);
}

/* Sale flash */
.vav-single-product .onsale,
.woocommerce span.onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--sale-red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  z-index: 2;
  line-height: 1;
}

/* Product info */
.vav-single-product__info {
  padding-top: 8px;
}

.vav-single-product__info .product_title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.vav-single-product__info .price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.vav-single-product__info .price del {
  color: var(--text-muted);
  font-size: 18px;
  margin-right: 8px;
}

.vav-single-product__info .price ins {
  text-decoration: none;
  color: var(--sale-red);
}

.vav-single-product__info .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--divider);
}

/* Variations */
.variations {
  width: 100%;
  margin-bottom: 24px;
}

.variations tr {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.variations .label {
  display: block;
}

.variations .label label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variations .value select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  outline: none;
}

.variations .value select:focus {
  border-color: var(--vav-green);
}

.variations .reset_variations {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Quantity */
.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quantity .qty {
  width: 48px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 4px;
  -moz-appearance: textfield;
  outline: none;
}

.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vav-qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.vav-qty-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

/* Add to cart */
.single_add_to_cart_button,
.vav-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent-gold);
  color: var(--bg-header);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.single_add_to_cart_button:hover,
.vav-btn-gold:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

.single_add_to_cart_button.disabled,
.single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Cart form layout */
.vav-single-product__info form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 32px;
}

.vav-single-product__info form.cart .quantity {
  flex: 0 0 auto;
}

.vav-single-product__info form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
}

/* Meta */
.product_meta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  font-size: 13px;
  color: var(--text-muted);
}

.product_meta > span {
  display: block;
  margin-bottom: 8px;
}

.product_meta a {
  color: var(--text-secondary);
}

.product_meta a:hover {
  color: var(--vav-green);
}

/* Tabs */
.woocommerce-tabs {
  margin-top: 60px;
  border-top: 1px solid var(--divider);
  padding-top: 40px;
}

.woocommerce-tabs ul.tabs,
.woocommerce-tabs .wc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--divider);
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.woocommerce-tabs ul.tabs li,
.woocommerce-tabs .wc-tabs li {
  list-style: none;
}

.woocommerce-tabs ul.tabs li a,
.woocommerce-tabs .wc-tabs li a {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs .wc-tabs li.active a {
  color: var(--text-primary);
  border-bottom-color: var(--vav-green);
}

.woocommerce-tabs ul.tabs li a:hover {
  color: var(--text-primary);
}

.woocommerce-tabs .panel {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.woocommerce-tabs .panel h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* Related / Upsell */
.related.products,
.upsells.products {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}

.related.products > h2,
.upsells.products > h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ========================================
   CART PAGE
   ======================================== */
.woocommerce-cart .vav-store-main {
  padding: 32px 0 60px;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
}

.woocommerce table.shop_table thead {
  background: rgba(255,255,255,0.04);
}

.woocommerce table.shop_table th {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 16px 20px;
  text-align: left;
  border: none;
}

.woocommerce table.shop_table td {
  padding: 20px;
  border: none;
  border-top: 1px solid var(--divider);
  vertical-align: middle;
  color: var(--text-primary);
}

.woocommerce table.shop_table td.product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
}

.woocommerce table.shop_table td.product-name a {
  color: var(--text-primary);
  font-weight: 500;
}

.woocommerce table.shop_table td.product-name a:hover {
  color: var(--vav-green);
}

.woocommerce table.shop_table td.product-remove a {
  color: var(--text-muted) !important;
  font-size: 20px;
}

.woocommerce table.shop_table td.product-remove a:hover {
  color: var(--sale-red) !important;
}

.woocommerce table.shop_table td.actions {
  padding: 20px;
}

.woocommerce table.shop_table td.actions .coupon {
  display: flex;
  gap: 8px;
}

.woocommerce table.shop_table td.actions .coupon input {
  background: var(--bg-primary);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: var(--text-primary);
  outline: none;
}

.woocommerce table.shop_table td.actions .coupon input:focus {
  border-color: var(--vav-green);
}

/* Cart totals */
.cart_totals {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 32px;
}

.cart_totals h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
}

.cart_totals table th,
.cart_totals table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}

.cart_totals table th {
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
}

.cart_totals table td {
  text-align: right;
  color: var(--text-primary);
}

.cart_totals .order-total td {
  font-size: 20px;
  font-weight: 700;
}

.wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  background: var(--accent-gold);
  color: var(--bg-header);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 24px;
  border-radius: 0;
}

.wc-proceed-to-checkout .checkout-button:hover {
  background: var(--accent-gold-hover);
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.woocommerce-checkout .vav-store-main {
  padding: 32px 0 60px;
}

.woocommerce form.checkout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Form fields */
.woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce form .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
  display: block;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"],
.woocommerce input[type="url"],
.woocommerce textarea,
.woocommerce select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce form .form-row .input-text:focus,
.woocommerce input:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--vav-green);
}

/* Select2 */
.select2-container--default .select2-selection--single {
  background: var(--input-bg) !important;
  border: 1px solid var(--input-border) !important;
  border-radius: var(--radius-md) !important;
  height: 46px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary) !important;
  line-height: 46px !important;
  padding: 0 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}

.select2-dropdown {
  background: var(--card-bg) !important;
  border: 1px solid var(--input-border) !important;
}

.select2-results__option {
  color: var(--text-primary) !important;
  padding: 10px 16px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--vav-green) !important;
}

/* Order review table */
.woocommerce-checkout-review-order-table {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Place order button */
#place_order {
  display: block;
  width: 100%;
  background: var(--accent-gold);
  color: var(--bg-header);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
}

#place_order:hover {
  background: var(--accent-gold-hover);
}

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

.woocommerce-message {
  border-left: 4px solid var(--vav-green) !important;
}

.woocommerce-info {
  border-left: 4px solid var(--vav-blue) !important;
}

.woocommerce-error,
.woocommerce-error li {
  border-left: 4px solid var(--sale-red) !important;
  color: var(--text-primary) !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  background: var(--vav-green);
  color: white;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  float: right;
  border: none;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--vav-green) !important;
}

/* ========================================
   BUTTONS (Global WC overrides)
   ======================================== */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: var(--bg-header);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 0;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.button:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-header);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--accent-gold);
  color: var(--bg-header);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--accent-gold-hover);
}

/* Update cart button */
button[name="update_cart"] {
  background: rgba(255,255,255,0.1) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--input-border) !important;
}

button[name="update_cart"]:hover {
  background: rgba(255,255,255,0.18) !important;
}

button[name="update_cart"]:disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
}

/* ========================================
   MY ACCOUNT
   ======================================== */
.woocommerce-MyAccount-navigation {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid var(--divider);
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
  border-left: 3px solid var(--vav-green);
}

.woocommerce-MyAccount-content {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* Login form */
.woocommerce form.login,
.woocommerce form.register {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
}

/* ========================================
   EMPTY STATES
   ======================================== */
.vav-shop-empty,
.woocommerce-info.wc-empty-cart-message,
.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.vav-shop-empty p,
.cart-empty {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.return-to-shop .button,
.vav-shop-empty .button {
  background: var(--accent-gold);
  color: var(--bg-header);
}

/* ========================================
   SALE BADGE (GLOBAL)
   ======================================== */
.onsale {
  background: var(--sale-red) !important;
  color: white !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  min-width: auto;
  min-height: auto;
  padding: 4px 10px;
  line-height: 1.4;
}

/* ========================================
   STAR RATING
   ======================================== */
.star-rating {
  color: var(--accent-gold);
  font-size: 14px;
}

.star-rating span::before {
  color: var(--accent-gold);
}

/* ========================================
   LOADING / BLOCKUI
   ======================================== */
.woocommerce .blockUI.blockOverlay {
  background: var(--bg-primary) !important;
  opacity: 0.7 !important;
}

.woocommerce .loader::before,
.woocommerce .blockUI.blockOverlay::before {
  border-color: var(--vav-green) transparent transparent !important;
}

/* ========================================
   WIDGET STYLES (if any sidebars exist)
   ======================================== */
.widget {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.widget-title,
.widgettitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}

.widget ul {
  list-style: none;
  padding: 0;
}

.widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  color: var(--text-secondary);
  font-size: 13px;
}

.widget ul li a:hover {
  color: var(--text-primary);
}

/* Price filter widget */
.widget_price_filter .price_slider_wrapper {
  padding-top: 8px;
}

.widget_price_filter .ui-slider {
  background: rgba(255,255,255,0.1) !important;
  border: none !important;
  border-radius: 4px;
  height: 4px;
}

.widget_price_filter .ui-slider .ui-slider-range {
  background: var(--vav-green) !important;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  background: var(--vav-green) !important;
  border: 2px solid white !important;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  top: -6px;
}

.widget_price_filter .price_slider_amount .button {
  font-size: 12px;
  padding: 8px 16px;
}

.widget_price_filter .price_slider_amount .price_label {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ========================================
   MISC / UTILITY
   ======================================== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.woocommerce-privacy-policy-text {
  font-size: 12px;
  color: var(--text-muted);
}

.woocommerce-privacy-policy-text a {
  color: var(--text-secondary);
}

/* Coupon */
.woocommerce-form-coupon {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: var(--radius-lg) !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
}

/* Shipping calculator */
.shipping-calculator-button {
  color: var(--vav-green) !important;
  font-size: 13px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .vav-product-card {
    flex: 0 0 calc(33.333% - 11px);
  }

  ul.products {
    grid-template-columns: repeat(3, 1fr);
  }

  .vav-collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .vav-single-product__layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
    --announce-height: 32px;
  }

  .vav-store-header__nav {
    display: none;
  }

  .vav-hamburger {
    display: flex;
  }

  .vav-hero {
    min-height: 50vh;
  }

  .vav-hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .vav-hero__cta {
    padding: 12px 28px;
    font-size: 14px;
  }

  .vav-product-card {
    flex: 0 0 calc(50% - 8px);
  }

  .vav-carousel__track {
    padding: 0 16px;
  }

  .vav-carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .vav-carousel__arrow--left { left: 4px; }
  .vav-carousel__arrow--right { right: 4px; }

  ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vav-collections {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vav-collection-card {
    aspect-ratio: 2/3;
  }

  .vav-single-product__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vav-single-product__gallery {
    position: static;
  }

  .woocommerce form.checkout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vav-section {
    padding: 40px 0;
  }

  .vav-section__header {
    padding: 0 16px;
  }

  .vav-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .vav-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .vav-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .vav-shop-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .woocommerce table.shop_table {
    font-size: 13px;
  }

  .woocommerce table.shop_table td {
    padding: 12px 10px;
  }

  .woocommerce table.shop_table td.product-thumbnail {
    display: none;
  }

  .cart_totals {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .vav-product-card {
    flex: 0 0 calc(50% - 8px);
  }

  .vav-collections {
    grid-template-columns: 1fr;
  }

  .vav-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vav-footer__grid {
    grid-template-columns: 1fr;
  }

  .vav-hero__content {
    padding: 20px 16px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vav-hero__content {
  animation: fadeInUp 0.8s ease-out;
}

.vav-product-card {
  transition: transform 0.3s;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .vav-announce,
  .vav-store-header,
  .vav-footer,
  .vav-trust {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}


/* ============================================================
   APPLE-STYLE SCROLL SECTION
   ============================================================ */

/* Reveal animations */
.vav-reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.vav-reveal--blur { opacity: 0; filter: blur(16px); transform: scale(0.96); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), filter 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
.vav-reveal--left { opacity: 0; transform: translateX(-60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.vav-reveal--right { opacity: 0; transform: translateX(60px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.vav-reveal.is-visible, .vav-reveal--blur.is-visible, .vav-reveal--left.is-visible, .vav-reveal--right.is-visible {
  opacity: 1; filter: none; transform: none;
}
.vav-delay-1 { transition-delay: 0.1s; }
.vav-delay-2 { transition-delay: 0.25s; }
.vav-delay-3 { transition-delay: 0.4s; }

/* === PRODUCT SPOTLIGHT — Full-width cinematic === */
.vav-spotlight {
  position: relative;

  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060C18;
}
.vav-spotlight__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 1.5s;
}
.vav-spotlight__glow--blue {
  background: var(--vav-blue);
  top: 10%;
  left: 20%;
}
.vav-spotlight__glow--green {
  background: var(--vav-green);
  bottom: 10%;
  right: 15%;
  opacity: 0.25;
}
.vav-spotlight__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  gap: 60px;
}
.vav-spotlight__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vav-spotlight__image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  transform: perspective(800px) rotateY(-5deg) scale(0.9);
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1), filter 1.2s;
}
.vav-spotlight__image.is-visible img {
  transform: perspective(800px) rotateY(0deg) scale(1);
  filter: drop-shadow(0 40px 80px rgba(21,66,132,0.4));
}
.vav-spotlight__ring {
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(125,189,29,0.15);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.08; }
}
.vav-spotlight__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vav-spotlight__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--vav-green);
  margin-bottom: 16px;
}
.vav-spotlight__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-primary);
}
.vav-spotlight__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 20px;
  max-width: 440px;
}
.vav-spotlight__price {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 24px;
}
.vav-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  align-self: flex-start;
}
.vav-spotlight__cta:hover {
  background: var(--accent-gold-hover, #D4B054);
  transform: translateX(4px);
}
.vav-spotlight__cta svg { transition: transform 0.3s; }
.vav-spotlight__cta:hover svg { transform: translateX(4px); }

/* === STATS BAR === */
.vav-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.vav-stats__item {
  background: var(--bg-primary);
  text-align: center;
  padding: 48px 16px;
}
.vav-stats__number {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.vav-stats__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* === MARQUEE GALLERY === */
.vav-marquee {
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-primary);
}
.vav-marquee__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 40px;
}
.vav-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.vav-marquee:hover .vav-marquee__track {
  animation-play-state: paused;
}
.vav-marquee__item {
  flex: 0 0 220px;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
}
.vav-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.vav-marquee__item:hover img {
  transform: scale(1.06);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Responsive === */
@media (max-width: 768px) {
  .vav-spotlight__inner { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; text-align: center; }
  .vav-spotlight__image img { max-width: 280px; }
  .vav-spotlight__ring { width: 240px; height: 240px; }
  .vav-spotlight__cta { align-self: center; }
  .vav-spotlight__glow { width: 300px; height: 300px; }
  .vav-stats { grid-template-columns: repeat(2, 1fr); }
  .vav-marquee__item { flex: 0 0 160px; }
}
