/** Shopify CDN: Minification failed

Line 373:0 Unexpected "}"

**/
.vaw-shell {
  --vaw-bg: #0c0c10;
  --vaw-bg-soft: #14141a;
  --vaw-card: #171720;
  --vaw-text: #ffffff;
  --vaw-muted: rgba(255,255,255,.76);
  --vaw-line: rgba(255,255,255,.12);
  --vaw-accent: var(--accent-color, #8b5cf6);
  --vaw-accent-2: var(--accent-color-2, #ec4899);
  color: var(--vaw-text);
}

.vaw-shell * { box-sizing: border-box; }
.vaw-shell img { display: block; width: 100%; height: auto; }
.vaw-shell .page-width { max-width: 1320px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.vaw-section { padding: 72px 0; }
.vaw-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color: var(--vaw-muted);
  border: 1px dashed var(--vaw-line);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
}

.vaw-announcement-bar { border-bottom: 1px solid rgba(255,255,255,.08); }
.vaw-announcement-bar__inner {
  min-height: 48px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.vaw-announcement-bar__inner p { margin: 0; font-size: 14px; }
.vaw-announcement-bar__inner a { font-size: 14px; font-weight: 700; text-decoration: none; }

.vaw-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12,12,16,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vaw-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.vaw-header__logo {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 24px;
}
.vaw-header__nav { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.vaw-header__nav a {
  text-decoration: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
}
.vaw-header__actions { display: flex; gap: 10px; align-items: center; }
.vaw-header__icon {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 14px;
}

.vaw-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: #0a0a0f;
}
.vaw-footer__inner {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 24px;
}
.vaw-footer h3, .vaw-footer h4 { margin-top: 0; }
.vaw-footer p, .vaw-footer a, .vaw-footer li { color: rgba(255,255,255,.74); }
.vaw-footer a { text-decoration: none; }
.vaw-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }

.vaw-badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
}

.vaw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, opacity .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.vaw-btn:hover { transform: translateY(-1px); }
.vaw-btn--primary {
  background: linear-gradient(135deg, var(--vaw-accent), var(--vaw-accent-2));
  color: #fff;
}
.vaw-btn--secondary {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.vaw-btn--small { padding: 12px 16px; font-size: 14px; }
.vaw-btn--full { width: 100%; }

.vaw-section-heading { text-align: center; margin-bottom: 30px; }
.vaw-section-heading--left { text-align: left; }
.vaw-section-heading h2,
.vaw-collection-hero h1,
.vaw-product-info h1,
.vaw-search h1,
.vaw-page h1 {
  margin: 0;
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
}
.vaw-section-heading p,
.vaw-product-subtext,
.vaw-collection-description,
.vaw-story .rte,
.vaw-hero__text,
.vaw-search__summary,
.vaw-page__content {
  color: var(--vaw-muted);
  font-size: 18px;
  line-height: 1.6;
}

.vaw-hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--vaw-line);
}
.vaw-hero__media,
.vaw-hero__media img,
.vaw-hero__overlay { position: absolute; inset: 0; }
.vaw-hero__media img { object-fit: cover; object-position: center; }
.vaw-hero__overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,.25), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(236,72,153,.22), transparent 33%),
    linear-gradient(180deg, rgba(12,12,16,.2) 0%, rgba(12,12,16,.42) 38%, rgba(12,12,16,.92) 100%);
}
.vaw-hero__content-wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 52px; }
.vaw-hero__content { max-width: 760px; }
.vaw-hero__title {
  margin: 0;
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 800;
  font-size: clamp(42px, 7vw, 92px);
  max-width: 10ch;
}
.vaw-hero__actions,
.vaw-center,
.vaw-price-wrap,
.vaw-product-gallery__thumbs,
.vaw-email-form,
.vaw-hero__highlights,
.vaw-icon-points { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.vaw-center { justify-content: center; margin-top: 26px; }
.vaw-hero__highlights,
.vaw-icon-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.vaw-hero__highlights li::before,
.vaw-icon-points li::before { content: '✦'; margin-right: 8px; color: var(--vaw-accent); }

.vaw-categories__grid,
.vaw-product-grid,
.vaw-story__grid,
.vaw-product-template__grid,
.vaw-email-capture__card,
.vaw-featured-split,
.vaw-category-shortcuts,
.vaw-search__grid {
  display: grid;
  gap: 22px;
}
.vaw-categories__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vaw-category-shortcuts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
.vaw-product-grid,
.vaw-search__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vaw-featured-split { grid-template-columns: 1fr; gap: 52px; }
.vaw-story__grid,
.vaw-product-template__grid,
.vaw-email-capture__card { grid-template-columns: 1fr 1fr; align-items: start; }

.vaw-category-card,
.vaw-product-card,
.vaw-email-capture__card,
.vaw-product-gallery__main,
.vaw-product-thumb,
.vaw-collection-hero,
.vaw-search__form-wrap,
.vaw-page__content,
.vaw-cart__card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--vaw-line);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.vaw-category-card { position: relative; min-height: 440px; display: grid; align-items: end; }
.vaw-category-card__image-wrap,
.vaw-category-card__image-wrap img,
.vaw-category-card__overlay { position: absolute; inset: 0; }
.vaw-category-card__image-wrap img,
.vaw-product-card__image-wrap img,
.vaw-product-main-image { object-fit: cover; height: 100%; }
.vaw-category-card__overlay { background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.7)); }
.vaw-category-card__content,
.vaw-product-card__content,
.vaw-collection-hero,
.vaw-email-capture__card,
.vaw-product-info,
.vaw-search__form-wrap,
.vaw-page__content,
.vaw-cart__card { padding: 24px; }
.vaw-category-card h3,
.vaw-product-card h3 { margin: 0; font-size: 26px; line-height: 1.05; }
.vaw-product-card__image-wrap { display: block; position: relative; aspect-ratio: 1 / 1.12; overflow: hidden; }
.vaw-product-card__content a { color: #fff; text-decoration: none; }
.vaw-price { color: #fff; font-weight: 700; }
.vaw-price--compare { color: var(--vaw-muted); text-decoration: line-through; font-weight: 500; }
.vaw-price-wrap--large { margin: 14px 0 18px; font-size: 22px; }
.vaw-shortcut-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 16px 20px;
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid var(--vaw-line);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.vaw-shortcut-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(139,92,246,.18), rgba(236,72,153,.14));
}
.vaw-sale-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--vaw-accent), var(--vaw-accent-2));
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vaw-product-gallery__main { aspect-ratio: 1 / 1.1; }
.vaw-product-thumb { width: calc(25% - 11px); }
.vaw-product-form,
.vaw-variant-group,
.vaw-cart__items { display: grid; gap: 12px; }
.vaw-option-label { font-size: 14px; font-weight: 700; }
.vaw-input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid var(--vaw-line);
  background: rgba(255,255,255,.05);
  color: #fff;
  padding: 0 18px;
}
.vaw-promo-strip {
  background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-top: 1px solid var(--vaw-line);
  border-bottom: 1px solid var(--vaw-line);
}
.vaw-promo-strip__inner {
  min-height: 104px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
}
.vaw-promo-strip p { margin: 0; font-size: clamp(20px, 2vw, 28px); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; }

.vaw-search,
.vaw-page,
.vaw-cart,
.vaw-empty { padding: 72px 0; }
.vaw-search__form { display: flex; gap: 12px; flex-wrap: wrap; }
.vaw-search__input { flex: 1 1 320px; }
.vaw-empty__card { text-align: center; padding: 56px 24px; }

@media screen and (max-width: 989px) {
  .vaw-categories__grid,
  .vaw-product-grid,
  .vaw-story__grid,
  .vaw-product-template__grid,
  .vaw-email-capture__card,
  .vaw-category-shortcuts,
  .vaw-search__grid,
  .vaw-footer__inner { grid-template-columns: 1fr 1fr; }
  .vaw-featured-split { grid-template-columns: 1fr; }
}

@media screen and (max-width: 749px) {
  .vaw-section,
  .vaw-search,
  .vaw-page,
  .vaw-cart,
  .vaw-empty { padding: 56px 0; }

  .vaw-categories__grid,
  .vaw-product-grid,
  .vaw-story__grid,
  .vaw-product-template__grid,
  .vaw-email-capture__card,
  .vaw-category-shortcuts,
  .vaw-search__grid,
  .vaw-footer__inner { grid-template-columns: 1fr; }

  .vaw-category-card { min-height: 380px; }
  .vaw-hero { min-height: 74svh; }
}
}
/* ===== COLLECTION LIST PAGE - LUXURY EDITORIAL ===== */
.vaw-collections-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:24px;
}

.vaw-collection-card{
  position:relative;
  min-height:560px;
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  border:1px solid rgba(255,255,255,.08);
  background:#0b0f14;
  box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.vaw-collection-card:nth-child(3n+1){
  grid-column:span 7;
}

.vaw-collection-card:nth-child(3n+2),
.vaw-collection-card:nth-child(3n+3){
  grid-column:span 5;
}

.vaw-collection-card__media,
.vaw-collection-card__media img,
.vaw-collection-card__overlay{
  position:absolute;
  inset:0;
}

.vaw-collection-card__media img{
  object-fit:cover;
  width:100%;
  height:100%;
  transition:transform .7s ease;
}

.vaw-collection-card__overlay{
  background:
    linear-gradient(180deg, rgba(5,7,10,.04) 0%, rgba(5,7,10,.18) 42%, rgba(5,7,10,.88) 100%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.14), transparent 24%);
}

.vaw-collection-card__content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:30px;
}

.vaw-collection-card__content h3{
  margin:0;
  font-size:clamp(30px,3vw,48px);
  line-height:.95;
  letter-spacing:-.04em;
  font-weight:800;
}

.vaw-collection-card__content p{
  margin:12px 0 0;
  max-width:34ch;
  color:var(--vaw-muted);
  font-size:16px;
  line-height:1.55;
}

.vaw-collection-card__cta{
  display:inline-flex;
  margin-top:18px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#fff;
  font-weight:700;
  opacity:.95;
}

.vaw-collection-card__cta::after{
  content:"↗";
  margin-left:8px;
}

.vaw-collection-card:hover .vaw-collection-card__media img{
  transform:scale(1.05);
}

.vaw-collection-card:hover{
  border-color:rgba(255,255,255,.14);
}

@media screen and (max-width: 989px) {
  .vaw-collections-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .vaw-collection-card:nth-child(3n+1),
  .vaw-collection-card:nth-child(3n+2),
  .vaw-collection-card:nth-child(3n+3){
    grid-column:auto;
  }

  .vaw-collection-card{
    min-height:460px;
  }
}

@media screen and (max-width: 749px) {
  .vaw-collections-grid{
    grid-template-columns:1fr;
  }

  .vaw-collection-card{
    min-height:380px;
    border-radius:24px;
  }

  .vaw-collection-card__content{
    padding:22px;
  }
}/* Collections Page Background */
.template-list-collections {
  background: #3b9fc8;
} 
/* === Collection Grid Cards (White Editorial Tiles) === */
.vaw-collection-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;

  /* subtle luxury shadow */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

/* Hover = slight lift (fashion feel) */
.vaw-collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* Image area */
.vaw-collection-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title styling */
.vaw-collection-title {
  padding: 16px 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  background: #ffffff;
}
.vaw-collection-card {
  border: 1px solid rgba(0,0,0,0.04);
}
/* === Smaller Collection Grid Cards === */

/* Make more columns */
.vaw-collections-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Reduce card height */
.vaw-collection-card {
  min-height: 320px;
}

/* Remove oversized first card layout */
.vaw-collection-card:nth-child(1),
.vaw-collection-card:nth-child(2),
.vaw-collection-card:nth-child(3),
.vaw-collection-card:nth-child(4) {
  grid-column: auto;
}
@media screen and (max-width: 989px) {
  .vaw-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .vaw-collections-grid {
    grid-template-columns: 1fr;
  }
}
/* === EVEN COLLECTION GRID (CLEAN + CONSISTENT) === */

/* Force clean grid */
.vaw-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Remove any uneven sizing rules */
.vaw-collection-card:nth-child(1),
.vaw-collection-card:nth-child(2),
.vaw-collection-card:nth-child(3),
.vaw-collection-card:nth-child(4) {
  grid-column: auto !important;
}

/* Make all cards identical height */
.vaw-collection-card {
  height: 320px;
  min-height: unset;
}

/* Force image to fill card consistently */
.vaw-collection-card__media {
  position: absolute;
  inset: 0;
}

.vaw-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* KEY: makes everything uniform */
}

/* Clean content positioning */
.vaw-collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 989px) {
  .vaw-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .vaw-collections-grid {
    grid-template-columns: 1fr;
  }
}.vaw-collection-card {
  border-radius: 8px;
}
/* ===== COLLECTION GRID - ZARA / NIKE STYLE ===== */

.vaw-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* remove any staggered editorial sizing */
.vaw-collection-card:nth-child(1),
.vaw-collection-card:nth-child(2),
.vaw-collection-card:nth-child(3),
.vaw-collection-card:nth-child(4) {
  grid-column: auto !important;
}

/* clean, even cards */
.vaw-collection-card {
  position: relative;
  height: 320px;
  min-height: unset !important;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(29, 41, 53, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vaw-collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.vaw-collection-card__media,
.vaw-collection-card__media img,
.vaw-collection-card__overlay {
  position: absolute;
  inset: 0;
}

.vaw-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vaw-collection-card:hover .vaw-collection-card__media img {
  transform: scale(1.05);
}

/* subtle fade so text is readable */
.vaw-collection-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.82) 100%
  );
  transition: background 0.3s ease;
}

.vaw-collection-card:hover .vaw-collection-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.14) 35%,
    rgba(255, 255, 255, 0.9) 100%
  );
}

.vaw-collection-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
}

.vaw-collection-card__content h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #1d2935;
}

.vaw-collection-card__content p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #1d2935;
  max-width: 28ch;
}

.vaw-collection-card__cta {
  display: inline-flex;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1d2935;
  opacity: 0.9;
}

.vaw-collection-card__cta::after {
  content: "↗";
  margin-left: 8px;
}

/* responsive */
@media screen and (max-width: 989px) {
  .vaw-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vaw-collection-card {
    height: 300px;
  }
}

@media screen and (max-width: 749px) {
  .vaw-collections-grid {
    grid-template-columns: 1fr;
  }

  .vaw-collection-card {
    height: 280px;
  }

  .vaw-collection-card__content {
    padding: 18px;
  }
}
/* ===== FORCE EVEN COLLECTION GRID ===== */

.vaw-collections-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.vaw-collections-grid .vaw-collection-card {
  grid-column: span 1 !important;
  width: 100% !important;
  height: 320px !important;
  min-height: 320px !important;
  max-height: 320px !important;
}

/* kill any old nth-child stagger rules */
.vaw-collections-grid .vaw-collection-card:nth-child(1),
.vaw-collections-grid .vaw-collection-card:nth-child(2),
.vaw-collections-grid .vaw-collection-card:nth-child(3),
.vaw-collections-grid .vaw-collection-card:nth-child(4),
.vaw-collections-grid .vaw-collection-card:nth-child(5),
.vaw-collections-grid .vaw-collection-card:nth-child(6),
.vaw-collections-grid .vaw-collection-card:nth-child(7),
.vaw-collections-grid .vaw-collection-card:nth-child(8),
.vaw-collections-grid .vaw-collection-card:nth-child(9),
.vaw-collections-grid .vaw-collection-card:nth-child(10),
.vaw-collections-grid .vaw-collection-card:nth-child(11),
.vaw-collections-grid .vaw-collection-card:nth-child(12) {
  grid-column: span 1 !important;
}

.vaw-collections-grid .vaw-collection-card__media,
.vaw-collections-grid .vaw-collection-card__media img,
.vaw-collections-grid .vaw-collection-card__overlay {
  position: absolute;
  inset: 0;
}

.vaw-collections-grid .vaw-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 989px) {
  .vaw-collections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .vaw-collections-grid .vaw-collection-card {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
  }
}

@media screen and (max-width: 749px) {
  .vaw-collections-grid {
    grid-template-columns: 1fr !important;
  }

  .vaw-collections-grid .vaw-collection-card {
    height: 280px !important;
    min-height: 280px !important;
    max-height: 280px !important;
  }
}
/* ===== STRONG LOWER-THIRD GRADIENT FOR TEXT READABILITY ===== */

.vaw-collection-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.96) 0%,   /* strong base */
    rgba(255, 255, 255, 0.92) 20%,
    rgba(255, 255, 255, 0.75) 40%,
    rgba(255, 255, 255, 0.35) 65%,
    rgba(255, 255, 255, 0.05) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* Ensure text sits above overlay */
.vaw-collection-card__content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
/* ===== DROPDOWN TEXT COLOR FIX ===== */

.vaw-dropdown a,
.vaw-dropdown__link {
  color: #1d2935 !important;
}

.vaw-dropdown a:hover,
.vaw-dropdown__link:hover {
  color: #000000 !important;
}
/* ===== PRODUCT CARD HOVER (CONVERSION + PREMIUM) ===== */

.vaw-product-card {
  position: relative;
  overflow: hidden;
}

.vaw-product-card__image-wrap img {
  transition: transform 0.5s ease;
}

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

/* CTA overlay */
.vaw-product-card__overlay-cta {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.25s ease;
}

.vaw-product-card:hover .vaw-product-card__overlay-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* button style */
.vaw-overlay-btn {
  background: #ffffff;
  color: #1d2935;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* ===== FIX PRODUCT CARD DOUBLE IMAGE ISSUE ===== */

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

.vaw-product-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-radius: 12px;
}

.vaw-product-card__image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.vaw-product-card__overlay-cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 3;
  pointer-events: none;
}

.vaw-product-card:hover .vaw-product-card__overlay-cta {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vaw-overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1d2935;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.vaw-product-card__content {
  padding: 14px 0 6px;
}
.vaw-product-card {
  margin-bottom: 10px;
}
.vaw-product-card h3 {
  font-size: 14px;
  line-height: 1.3;
}/* ===== FINAL HEADER SYSTEM ===== */

/* Desktop defaults */
.vaw-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.vaw-header--hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.vaw-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.vaw-header__nav--desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vaw-nav-item {
  position: relative;
}

.vaw-nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 0;
}

.vaw-nav-link:hover {
  color: #fff;
}

.vaw-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  padding: 10px 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
  border: 1px solid rgba(29,41,53,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}

.vaw-dropdown__link,
.vaw-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #1d2935 !important;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.vaw-dropdown__link:hover,
.vaw-dropdown a:hover {
  background: rgba(29,41,53,.05);
  color: #000 !important;
}

.vaw-nav-item:hover .vaw-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vaw-menu-toggle,
.vaw-mobile-menu {
  display: none;
}

/* Mobile only */
@media screen and (max-width: 749px) {
  .vaw-header__inner {
    min-height: auto;
    padding: 10px 0 !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .vaw-header__logo img {
    max-height: 30px !important;
    width: auto;
  }

  .vaw-header__nav--desktop {
    display: none !important;
  }

  .vaw-header__actions {
    display: flex;
    align-items: center;
    gap: 8px !important;
  }

  .vaw-header__icon {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }

  .vaw-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }

  .vaw-mobile-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(10,14,20,.96);
  }

  .vaw-mobile-menu.is-open {
    display: block !important;
    visibility: visible;
    opacity: 1;
    max-height: 80vh;
    overflow: auto;
    pointer-events: auto;
  }

  .vaw-mobile-menu__inner {
    padding: 14px 0 18px;
  }

  .vaw-mobile-menu__item + .vaw-mobile-menu__item {
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .vaw-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .vaw-mobile-menu__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
  }

  .vaw-mobile-subtoggle {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 0 4px 8px;
  }

  .vaw-mobile-submenu {
    display: none;
    padding: 0 0 12px 0;
  }

  .vaw-mobile-menu__item.is-open .vaw-mobile-submenu {
    display: block;
  }

  .vaw-mobile-submenu__link {
    display: block;
    padding: 8px 0 8px 16px;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: 14px;
  }

  .vaw-mobile-submenu__link:hover {
    color: #ffffff;
  }
}
.vaw-product-subheadline {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}
.vaw-product-benefits {
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.vaw-product-benefits li {
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(255,255,255,.8);
}
.vaw-product-urgency {
  font-size: 12px;
  color: #f87171;
  margin-top: 10px;
}
.vaw-product-trust {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
}
/* ===== PRODUCT IMAGE HOVER EFFECT ===== */

.product__media img,
.vaw-product-template img {
  transition: transform 0.4s ease;
}

.product__media:hover img,
.vaw-product-template:hover img {
  transform: scale(1.03);
}
/* ===== RANDOMIZED HOMEPAGE PRODUCT GRIDS ===== */
.vaw-product-card.is-hidden-by-randomizer {
  display: none !important;
}
/* ===== FEATURED ITEMS GRID ===== */

.vaw-featured-items-section {
  margin-top: 20px;
}

.vaw-featured-items-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.vaw-featured-item-card {
  position: relative;
}

.vaw-featured-item-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
}

.vaw-featured-item-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.vaw-featured-item-card:hover .vaw-featured-item-card__image-wrap img {
  transform: scale(1.04);
}

.vaw-featured-item-card__content {
  padding: 12px 0 4px;
}

.vaw-featured-item-card__content h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.vaw-featured-item-card__content h3 a {
  color: #fff;
  text-decoration: none;
}

.vaw-featured-item-card .vaw-price {
  font-size: 14px;
}

.vaw-featured-item-card .vaw-price--compare {
  font-size: 13px;
}

@media screen and (max-width: 989px) {
  .vaw-featured-items-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .vaw-featured-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .vaw-featured-item-card__content h3 {
    font-size: 13px;
  }
}