/** Shopify CDN: Minification failed

Line 1520:19 Unexpected "*"

**/
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --v-white: #ffffff;
  --v-off-white: #fafaf8;
  --v-bg: #f5f4f0;
  --v-bg-warm: #f8f7f4;
  --v-bg-accent: #d8f34f;
  --v-bg-accent-hover: #c8e33f;
  --v-black: #0d0d0d;
  --v-text: #1a1a1a;
  --v-text-secondary: #555555;
  --v-text-muted: #888888;
  --v-border: #e5e5e5;
  --v-border-light: #eeeeee;
  --v-green: #00a86b;
  --v-green-bg: rgba(0,168,107,0.08);
  --v-serif: 'DM Serif Display', Georgia, serif;
  --v-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --v-radius: 12px;
  --v-radius-sm: 8px;
  --v-radius-lg: 16px;
  --v-radius-xl: 24px;
  --v-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --v-shadow: 0 4px 16px rgba(0,0,0,0.06);
  --v-shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --v-transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  --v-container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--v-white) !important;
  color: var(--v-text) !important;
  font-family: var(--v-sans) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0; padding: 0;
  overflow-x: hidden;
}

.header-wrapper, .section-header, #shopify-section-header,
#shopify-section-footer, .footer, .footer-wrapper,
.announcement-bar { display: none !important; }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: var(--v-transition); }

.v-container { max-width: var(--v-container); margin: 0 auto; padding: 0 24px; }

/* Animations */
@keyframes v-fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes v-fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes v-float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes v-gradientMove { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
@keyframes v-shimmer { 0% { opacity:0.5; } 50% { opacity:1; } 100% { opacity:0.5; } }

.v-animate { opacity:0; transform:translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.v-animate.v-visible { opacity:1; transform:translateY(0); }
.v-animate-delay-1 { transition-delay:0.1s; }
.v-animate-delay-2 { transition-delay:0.2s; }
.v-animate-delay-3 { transition-delay:0.3s; }
.v-animate-delay-4 { transition-delay:0.4s; }

/* ===== ANNOUNCEMENT ===== */
.v-announce {
  background: var(--v-black); color: var(--v-white);
  text-align: center; padding: 10px 24px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
}
.v-announce strong { color: var(--v-bg-accent); }

/* ===== HEADER — centered, full nav ===== */
.v-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v-border);
  position: sticky; top: 0; z-index: 100;
}
.v-header__top {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.v-header__logo {
  font-family: var(--v-sans); font-size: 22px; font-weight: 900;
  color: var(--v-black); letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 2px;
}
.v-header__logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; background: var(--v-black);
  color: var(--v-white); border-radius: 8px;
  font-size: 16px; font-weight: 900; margin-right: 6px;
}
.v-search {
  flex: 1; max-width: 480px; position: relative; margin: 0 32px;
}
.v-search input {
  width: 100%; padding: 10px 16px 10px 42px;
  background: var(--v-bg); border: 1.5px solid transparent;
  border-radius: 100px; font-size: 14px; font-family: var(--v-sans);
  color: var(--v-text); transition: var(--v-transition); outline: none;
}
.v-search input:focus { border-color: var(--v-black); background: var(--v-white); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.v-search input::placeholder { color: var(--v-text-muted); }
.v-search__icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--v-text-muted); }
.v-header__actions {
  display: flex; align-items: center; gap: 16px;
}
.v-header__actions a {
  font-size: 14px; font-weight: 500; color: var(--v-text);
  position: relative; white-space: nowrap;
}
.v-header__actions a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--v-black);
  transition: width 0.3s ease;
}
.v-header__actions a:hover::after { width: 100%; }
.v-header__cart-badge {
  background: var(--v-black); color: var(--v-white);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 2px;
}
/* Bottom nav row */
.v-header__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 0;
  border-top: 1px solid var(--v-border-light);
}
.v-header__nav a {
  padding: 5px 14px; font-size: 13px; font-weight: 500;
  color: var(--v-text-secondary); border-radius: 100px;
  transition: var(--v-transition);
}
.v-header__nav a:hover { background: var(--v-bg); color: var(--v-text); }
.v-header__nav a.v-nav-active { background: var(--v-black); color: var(--v-white); }
.v-header__toggle {
  display: none; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--v-text);
}
@media (max-width: 768px) {
  .v-header__toggle { display: block; }
  .v-search { margin: 0 12px; }
  .v-header__actions > a:not(.v-header__cart-link) { display: none; }
  .v-header__nav { display: none; }
  .v-header__nav.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--v-white); border-bottom: 1px solid var(--v-border);
    padding: 12px; z-index: 99;
  }
}

/* ===== HERO — with bg pattern ===== */
.v-hero {
  position: relative; padding: 80px 0 72px; text-align: center;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f0f5e6 25%, #e4efd2 50%, #f0f5e6 75%, #fafaf8 100%);
  background-size: 300% 300%;
  animation: v-gradientMove 15s ease infinite;
}
.v-hero__pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: 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='%23000000' fill-opacity='1'%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");
}
.v-hero__orb1 {
  position: absolute; top: -120px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(216,243,79,0.25) 0%, transparent 70%);
  border-radius: 50%; animation: v-float 8s ease-in-out infinite;
}
.v-hero__orb2 {
  position: absolute; bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,168,107,0.1) 0%, transparent 70%);
  border-radius: 50%; animation: v-float 10s ease-in-out infinite reverse;
}
.v-hero__inner { position: relative; z-index: 1; }
.v-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; background: var(--v-green-bg);
  color: var(--v-green); border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  animation: v-fadeUp 0.8s ease forwards;
}
.v-hero__title {
  font-family: var(--v-serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.5px;
  color: var(--v-black); margin: 0 auto 20px; max-width: 700px;
  animation: v-fadeUp 0.8s ease 0.15s forwards; opacity: 0;
}
.v-hero__title em { font-style: italic; color: var(--v-green); }
.v-hero__subtitle {
  font-size: 17px; color: var(--v-text-secondary);
  margin: 0 auto 36px; max-width: 500px; line-height: 1.7;
  animation: v-fadeUp 0.8s ease 0.3s forwards; opacity: 0;
}
.v-hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 36px; background: var(--v-black); color: var(--v-white);
  border-radius: 100px; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: var(--v-transition);
  animation: v-fadeUp 0.8s ease 0.45s forwards; opacity: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.v-hero__cta:hover { background: #222; color: var(--v-white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.v-hero__stats {
  display: flex; justify-content: center; gap: 56px; margin-top: 56px;
  animation: v-fadeUp 0.8s ease 0.6s forwards; opacity: 0;
}
.v-hero__stat-num { font-family: var(--v-serif); font-size: 36px; color: var(--v-black); display: block; line-height: 1; }
.v-hero__stat-label { font-size: 13px; color: var(--v-text-muted); margin-top: 4px; display: block; }
@media (max-width: 600px) { .v-hero__stats { gap: 28px; } .v-hero__stat-num { font-size: 28px; } }

/* ===== TRUST BAR ===== */
.v-trust { padding: 32px 0; border-bottom: 1px solid var(--v-border-light); background: var(--v-white); }
.v-trust__grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.v-trust__item { display: flex; align-items: center; gap: 10px; }
.v-trust__item:hover .v-trust__icon { color: var(--v-green); }
.v-trust__icon { width: 22px; height: 22px; color: var(--v-text-muted); flex-shrink: 0; transition: var(--v-transition); }
.v-trust__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.v-trust__text { font-size: 13px; font-weight: 600; color: var(--v-text); }
@media (max-width: 600px) { .v-trust__grid { gap: 16px; } .v-trust__item { flex: 0 0 calc(50% - 8px); } }

/* ===== PRODUCT CARD — improved typography ===== */
.v-product-card {
  background: var(--v-white); border: 1px solid var(--v-border);
  border-radius: var(--v-radius-lg); overflow: hidden;
  transition: var(--v-transition); display: flex; flex-direction: column;
}
.v-product-card:hover { box-shadow: var(--v-shadow-lg); border-color: transparent; transform: translateY(-4px); }
.v-product-card__img {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: var(--v-off-white); position: relative; overflow: hidden;
}
.v-product-card__img img {
  max-height: 200px; width: auto; object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.v-product-card:hover .v-product-card__img img { transform: scale(1.05); }
.v-product-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.v-product-card__title {
  font-family: var(--v-sans); font-size: 15px; font-weight: 700;
  color: var(--v-black); margin: 0 0 6px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.v-product-card__specs {
  font-size: 13px; color: var(--v-text-secondary); margin: 0 0 12px; font-weight: 500;
}
.v-product-card__price { margin-top: auto; }
.v-product-card__price-now {
  font-family: var(--v-sans); font-size: 22px; font-weight: 800; color: var(--v-black);
}
.v-product-card__price-was {
  font-size: 14px; color: var(--v-text-muted); text-decoration: line-through; margin-left: 8px;
}
.v-product-card__price-label { font-size: 12px; color: var(--v-text-muted); display: inline; margin-left: 2px; }
.v-product-card__save {
  display: inline-block; background: var(--v-green-bg); color: var(--v-green);
  font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 100px; margin-left: 8px;
}
.v-product-card__atc {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px; margin-top: 14px;
  background: var(--v-white); border: 1.5px solid var(--v-black);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--v-black); cursor: pointer;
  transition: var(--v-transition); font-family: var(--v-sans);
}
.v-product-card__atc:hover { background: var(--v-black); color: var(--v-white); }

/* ===== PRODUCT GRID ===== */
.v-featured { padding: 56px 0; }
.v-section-title { font-family: var(--v-serif); font-size: 30px; font-weight: 400; color: var(--v-black); margin: 0 0 28px; }
.v-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1024px) { .v-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .v-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v-product-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

.v-section-more { text-align: center; margin-top: 36px; }
.v-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 28px; border: 1.5px solid var(--v-black);
  border-radius: 100px; font-size: 14px; font-weight: 600;
  color: var(--v-black); background: transparent;
  cursor: pointer; transition: var(--v-transition); font-family: var(--v-sans);
}
.v-btn-outline:hover { background: var(--v-black); color: var(--v-white); transform: translateY(-1px); }

/* ===== HOW IT WORKS ===== */
.v-how { padding: 72px 0; background: var(--v-white); }
.v-how__header { text-align: center; margin-bottom: 48px; }
.v-how__header h2 { font-family: var(--v-serif); font-size: 32px; font-weight: 400; margin: 0 0 8px; }
.v-how__header p { font-size: 16px; color: var(--v-text-secondary); margin: 0; }
.v-how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative; }
.v-how__grid::before {
  content: ''; position: absolute; top: 36px; left: 15%; right: 15%;
  height: 2px; background: var(--v-border-light); z-index: 0;
}
.v-how__step { position: relative; z-index: 1; }
.v-how__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--v-bg-accent); color: var(--v-black);
  font-family: var(--v-serif); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.v-how__step h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--v-black); }
.v-how__step p { font-size: 13px; color: var(--v-text-secondary); margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .v-how__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .v-how__grid::before { display: none; }
}

/* ===== SOCIAL PROOF / REVIEWS ===== */
.v-reviews {
  padding: 72px 0;
  background: linear-gradient(170deg, #f8f7f4 0%, #f0f4e8 50%, #e8efd8 100%);
}
.v-reviews__header { text-align: center; margin-bottom: 40px; }
.v-reviews__header h2 { font-family: var(--v-serif); font-size: 32px; font-weight: 400; margin: 0 0 8px; }
.v-reviews__header p { font-size: 16px; color: var(--v-text-secondary); margin: 0; }
.v-reviews__rating {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 12px; font-size: 18px; font-weight: 700; color: var(--v-black);
}
.v-reviews__stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
.v-reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-review-card {
  background: rgba(255,255,255,0.9); backdrop-filter: blur(8px);
  border-radius: var(--v-radius-xl); padding: 28px; border: 1px solid rgba(255,255,255,0.6);
  transition: var(--v-transition);
}
.v-review-card:hover { transform: translateY(-2px); box-shadow: var(--v-shadow); }
.v-review-card__stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.v-review-card__text { font-size: 14px; line-height: 1.7; color: var(--v-text-secondary); margin: 0 0 16px; font-style: italic; }
.v-review-card__author { font-size: 13px; font-weight: 700; color: var(--v-black); }
.v-review-card__meta { font-size: 12px; color: var(--v-text-muted); margin-top: 2px; }
@media (max-width: 768px) { .v-reviews__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ===== NEWSLETTER CTA ===== */
.v-newsletter {
  padding: 72px 0; text-align: center;
  background: var(--v-black); color: var(--v-white);
  position: relative; overflow: hidden;
}
.v-newsletter::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(216,243,79,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.v-newsletter h2 {
  font-family: var(--v-serif); font-size: 32px; font-weight: 400;
  margin: 0 0 8px; position: relative;
}
.v-newsletter p {
  font-size: 15px; color: rgba(255,255,255,0.6); margin: 0 auto 28px; max-width: 400px; position: relative;
}
.v-newsletter__form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto; position: relative;
}
.v-newsletter__form input {
  flex: 1; padding: 14px 20px; border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; font-size: 14px; font-family: var(--v-sans);
  background: rgba(255,255,255,0.08); color: var(--v-white); outline: none;
}
.v-newsletter__form input:focus { border-color: rgba(255,255,255,0.5); }
.v-newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.v-newsletter__form button {
  padding: 14px 28px; background: var(--v-bg-accent); color: var(--v-black);
  border: none; border-radius: 100px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--v-sans); transition: var(--v-transition);
  white-space: nowrap;
}
.v-newsletter__form button:hover { background: var(--v-bg-accent-hover); transform: translateY(-1px); }

/* ===== PROMISE ===== */
.v-promise {
  padding: 80px 0;
  background: linear-gradient(170deg, #f8f7f4 0%, #f0f4e8 50%, #e8efd8 100%);
  position: relative; overflow: hidden;
}
.v-promise::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(216,243,79,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.v-promise__header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.v-promise__header h2 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 12px; color: var(--v-black); }
.v-promise__header p { font-size: 16px; color: var(--v-text-secondary); margin: 0; }
.v-promise__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.v-promise__card {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border-radius: var(--v-radius-xl); padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.6); transition: var(--v-transition);
}
.v-promise__card:hover { background: rgba(255,255,255,0.95); transform: translateY(-4px); box-shadow: var(--v-shadow-lg); }
.v-promise__icon {
  width: 52px; height: 52px; background: var(--v-white);
  border-radius: var(--v-radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; box-shadow: var(--v-shadow-sm);
}
.v-promise__icon svg { width: 24px; height: 24px; stroke: var(--v-black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.v-promise__card h3 { font-family: var(--v-serif); font-size: 22px; font-weight: 400; margin: 0 0 10px; color: var(--v-black); }
.v-promise__card p { font-size: 14px; line-height: 1.7; color: var(--v-text-secondary); margin: 0; }
@media (max-width: 768px) { .v-promise__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ===== FOOTER ===== */
.v-footer { background: var(--v-black); color: var(--v-white); padding: 64px 0 32px; }
.v-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.v-footer__brand h3 { font-family: var(--v-serif); font-size: 24px; font-weight: 400; margin: 0 0 12px; }
.v-footer__brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0; }
.v-footer__col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.35); margin: 0 0 16px; }
.v-footer__links { list-style: none; padding: 0; margin: 0; }
.v-footer__links li { margin-bottom: 10px; }
.v-footer__links a { color: rgba(255,255,255,0.65); font-size: 13px; }
.v-footer__links a:hover { color: var(--v-white); }
.v-footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.v-footer__bottom a { color: rgba(255,255,255,0.3); }
.v-footer__bottom a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) { .v-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .v-footer__grid { grid-template-columns: 1fr; } }

/* ===== PDP (kept from v3) ===== */
.v-pdp { padding: 24px 0 80px; }
.v-breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--v-text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.v-breadcrumbs a { color: var(--v-text-secondary); }
.v-breadcrumbs a:hover { color: var(--v-text); }
.v-pdp__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.v-pdp__gallery { position: sticky; top: 140px; }
.v-pdp__main-img { background: var(--v-bg); border-radius: var(--v-radius-xl); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; }
.v-pdp__main-img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.v-pdp__thumbs { display: flex; gap: 8px; }
.v-pdp__thumb { width: 64px; height: 64px; background: var(--v-bg); border: 2px solid transparent; border-radius: var(--v-radius-sm); overflow: hidden; cursor: pointer; transition: var(--v-transition); display: flex; align-items: center; justify-content: center; }
.v-pdp__thumb:hover, .v-pdp__thumb.active { border-color: var(--v-black); }
.v-pdp__thumb img { max-width: 85%; max-height: 85%; object-fit: contain; }
.v-pdp__title { font-family: var(--v-serif); font-size: 30px; font-weight: 400; margin: 0 0 4px; color: var(--v-black); }
.v-pdp__subtitle { font-size: 14px; color: var(--v-text-muted); margin: 0 0 16px; }
.v-pdp__price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 4px; }
.v-pdp__price { font-size: 32px; font-weight: 800; color: var(--v-black); }
.v-pdp__price-was { font-size: 15px; color: var(--v-text-muted); text-decoration: line-through; }
.v-pdp__save { font-size: 13px; font-weight: 700; color: var(--v-green); background: var(--v-green-bg); padding: 3px 10px; border-radius: 100px; }
.v-pdp__price-label { font-size: 12px; color: var(--v-text-muted); margin-bottom: 20px; }
.v-pdp__atc-row { display: flex; gap: 10px; margin-bottom: 24px; }
.v-pdp__atc { flex: 1; padding: 15px 24px; background: var(--v-black); color: var(--v-white); border: none; border-radius: 100px; font-size: 15px; font-weight: 700; font-family: var(--v-sans); cursor: pointer; transition: var(--v-transition); }
.v-pdp__atc:hover { background: #222; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.v-pdp__atc:disabled { background: var(--v-border); color: var(--v-text-muted); cursor: not-allowed; }
.v-pdp__wishlist { width: 50px; height: 50px; border: 1.5px solid var(--v-border); border-radius: 50%; background: var(--v-white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--v-transition); flex-shrink: 0; }
.v-pdp__wishlist:hover { border-color: var(--v-black); transform: scale(1.05); }
.v-pdp__variants { margin-bottom: 20px; }
.v-pdp__variant-label { font-size: 14px; font-weight: 600; color: var(--v-text); margin-bottom: 8px; display: block; }
.v-pdp__variant-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.v-pdp__variant-opt { padding: 9px 20px; border: 1.5px solid var(--v-border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--v-text); cursor: pointer; transition: var(--v-transition); background: var(--v-white); font-family: var(--v-sans); }
.v-pdp__variant-opt:hover { border-color: var(--v-black); }
.v-pdp__variant-opt.active { border-color: var(--v-black); background: var(--v-black); color: var(--v-white); }
.v-pdp__trust { border-top: 1px solid var(--v-border-light); }
.v-pdp__trust-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--v-border-light); transition: var(--v-transition); }
.v-pdp__trust-row:hover { padding-left: 4px; }
.v-pdp__trust-icon { width: 38px; height: 38px; background: var(--v-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.v-pdp__trust-icon svg { width: 18px; height: 18px; stroke: var(--v-black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.v-pdp__trust-text h5 { font-size: 14px; font-weight: 600; margin: 0; color: var(--v-text); }
.v-pdp__trust-text p { font-size: 12px; color: var(--v-text-muted); margin: 2px 0 0; }
.v-pdp__desc { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--v-border-light); }
.v-pdp__desc h3 { font-family: var(--v-serif); font-size: 20px; font-weight: 400; margin: 0 0 12px; }
.v-pdp__desc-content { font-size: 14px; line-height: 1.8; color: var(--v-text-secondary); }
@media (max-width: 768px) { .v-pdp__layout { grid-template-columns: 1fr; gap: 24px; } .v-pdp__gallery { position: static; } .v-pdp__title { font-size: 24px; } .v-pdp__price { font-size: 26px; } }

/* ===== COLLECTION ===== */
.v-collection { padding: 32px 0 64px; }
.v-collection__header { margin-bottom: 32px; }
.v-collection__header h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 8px; color: var(--v-black); }
.v-collection__header p { font-size: 15px; color: var(--v-text-secondary); margin: 0; }
.v-collection__count { font-size: 13px; color: var(--v-text-muted); margin-bottom: 20px; }
.v-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.v-pagination a, .v-pagination span { padding: 8px 14px; border: 1px solid var(--v-border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--v-text-secondary); transition: var(--v-transition); }
.v-pagination a:hover { border-color: var(--v-black); color: var(--v-black); }
.v-pagination .current { background: var(--v-black); color: var(--v-white); border-color: var(--v-black); }

/* ===== CONTENT PAGES ===== */
.v-page { padding: 48px 0 80px; }
.v-page__hero { text-align: center; padding: 64px 0; background: linear-gradient(170deg, #f8f7f4 0%, #f0f4e8 50%, #e8efd8 100%); margin-bottom: 48px; position: relative; overflow: hidden; }
.v-page__hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; background: radial-gradient(circle, rgba(216,243,79,0.12) 0%, transparent 70%); border-radius: 50%; }
.v-page__hero h1 { font-family: var(--v-serif); font-size: 42px; font-weight: 400; margin: 0 0 12px; color: var(--v-black); position: relative; }
.v-page__hero p { font-size: 17px; color: var(--v-text-secondary); margin: 0 auto; max-width: 520px; position: relative; }
.v-page__content { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.v-page__content h2 { font-family: var(--v-serif); font-size: 28px; font-weight: 400; margin: 48px 0 16px; color: var(--v-black); }
.v-page__content h2:first-child { margin-top: 0; }
.v-page__content p { font-size: 15px; line-height: 1.8; color: var(--v-text-secondary); margin: 0 0 16px; }
.v-page__content ul { padding-left: 20px; margin: 0 0 16px; }
.v-page__content li { font-size: 15px; line-height: 1.8; color: var(--v-text-secondary); margin-bottom: 8px; }
.v-value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 32px 0; }
.v-value-card { background: var(--v-bg-warm); border-radius: var(--v-radius-lg); padding: 28px 24px; border: 1px solid var(--v-border-light); transition: var(--v-transition); }
.v-value-card:hover { transform: translateY(-2px); box-shadow: var(--v-shadow); }
.v-value-card h3 { font-family: var(--v-serif); font-size: 20px; font-weight: 400; margin: 0 0 8px; color: var(--v-black); }
.v-value-card p { font-size: 14px; color: var(--v-text-secondary); margin: 0; line-height: 1.7; }
@media (max-width: 600px) { .v-value-grid { grid-template-columns: 1fr; } }
.v-faq-item { border-bottom: 1px solid var(--v-border-light); }
.v-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--v-text); transition: var(--v-transition); }
.v-faq-q:hover { color: var(--v-black); }
.v-faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--v-text-muted); transition: transform 0.3s ease; }
.v-faq-item.open .v-faq-q::after { transform: rotate(45deg); }
.v-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.v-faq-item.open .v-faq-a { max-height: 300px; padding-bottom: 20px; }
.v-faq-a p { font-size: 14px; color: var(--v-text-secondary); line-height: 1.8; margin: 0; }
.v-contact-form { max-width: 520px; }
.v-form-group { margin-bottom: 20px; }
.v-form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--v-text); margin-bottom: 6px; }
.v-form-group input, .v-form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--v-border); border-radius: var(--v-radius-sm); font-size: 14px; font-family: var(--v-sans); color: var(--v-text); background: var(--v-white); outline: none; transition: var(--v-transition); }
.v-form-group input:focus, .v-form-group textarea:focus { border-color: var(--v-black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.v-form-group textarea { min-height: 120px; resize: vertical; }
.v-form-submit { padding: 14px 32px; background: var(--v-black); color: var(--v-white); border: none; border-radius: 100px; font-size: 15px; font-weight: 600; font-family: var(--v-sans); cursor: pointer; transition: var(--v-transition); }
.v-form-submit:hover { background: #222; transform: translateY(-1px); }
.v-404 { text-align: center; padding: 100px 24px; }
.v-404 h1 { font-family: var(--v-serif); font-size: 72px; font-weight: 400; color: var(--v-black); margin: 0; line-height: 1; }
.v-404 h2 { font-family: var(--v-serif); font-size: 28px; font-weight: 400; margin: 16px 0 12px; }
.v-404 p { color: var(--v-text-secondary); font-size: 15px; margin: 0 0 32px; }

/* ===== CART PAGE ===== */
.v-cart { padding: 40px 0 80px; }
.v-cart__header { margin-bottom: 32px; }
.v-cart__header h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0; color: var(--v-black); }
.v-cart__empty { text-align: center; padding: 64px 0; }
.v-cart__empty p { font-size: 16px; color: var(--v-text-secondary); margin: 0 0 24px; }
.v-cart__layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.v-cart__items { display: flex; flex-direction: column; gap: 0; }
.v-cart-item {
  display: grid; grid-template-columns: 100px 1fr auto; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--v-border-light); align-items: center;
}
.v-cart-item__img {
  width: 100px; height: 100px; background: var(--v-off-white);
  border-radius: var(--v-radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.v-cart-item__img img { max-width: 80%; max-height: 80%; object-fit: contain; }
.v-cart-item__info h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px; color: var(--v-black); }
.v-cart-item__info p { font-size: 13px; color: var(--v-text-muted); margin: 0 0 8px; }
.v-cart-item__qty {
  display: inline-flex; align-items: center; border: 1px solid var(--v-border); border-radius: 100px; overflow: hidden;
}
.v-cart-item__qty button {
  width: 32px; height: 32px; background: none; border: none;
  font-size: 16px; cursor: pointer; color: var(--v-text);
  display: flex; align-items: center; justify-content: center;
}
.v-cart-item__qty button:hover { background: var(--v-bg); }
.v-cart-item__qty span { padding: 0 8px; font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; }
.v-cart-item__price { text-align: right; }
.v-cart-item__price-now { font-size: 16px; font-weight: 700; color: var(--v-black); display: block; }
.v-cart-item__remove {
  font-size: 12px; color: var(--v-text-muted); background: none; border: none;
  cursor: pointer; text-decoration: underline; margin-top: 8px; font-family: var(--v-sans);
}
.v-cart-item__remove:hover { color: var(--v-text); }

.v-cart__summary {
  background: var(--v-bg-warm); border-radius: var(--v-radius-xl); padding: 32px;
  position: sticky; top: 140px;
}
.v-cart__summary h3 { font-family: var(--v-serif); font-size: 22px; font-weight: 400; margin: 0 0 20px; }
.v-cart__summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 14px; color: var(--v-text-secondary);
}
.v-cart__summary-row.total {
  border-top: 1.5px solid var(--v-border); margin-top: 12px; padding-top: 16px;
  font-size: 18px; font-weight: 700; color: var(--v-black);
}
.v-cart__checkout {
  display: block; width: 100%; padding: 16px; margin-top: 20px;
  background: var(--v-black); color: var(--v-white); border: none;
  border-radius: 100px; font-size: 15px; font-weight: 700;
  font-family: var(--v-sans); cursor: pointer; text-align: center;
  transition: var(--v-transition);
}
.v-cart__checkout:hover { background: #222; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.v-cart__trust-list {
  margin-top: 20px; padding: 0; list-style: none;
}
.v-cart__trust-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--v-text-muted); margin-bottom: 8px;
}
.v-cart__trust-list svg { width: 14px; height: 14px; stroke: var(--v-green); fill: none; stroke-width: 2; stroke-linecap: round; flex-shrink: 0; }
.v-cart__continue {
  display: block; text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--v-text-secondary); text-decoration: underline;
}
@media (max-width: 768px) {
  .v-cart__layout { grid-template-columns: 1fr; }
  .v-cart__summary { position: static; }
  .v-cart-item { grid-template-columns: 80px 1fr; }
  .v-cart-item__price { grid-column: 2; }
}

/* ===== SEARCH PAGE ===== */
.v-search-page { padding: 40px 0 80px; }
.v-search-page__header { margin-bottom: 32px; }
.v-search-page__header h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 12px; }
.v-search-page__form { max-width: 560px; position: relative; margin-bottom: 32px; }
.v-search-page__form input {
  width: 100%; padding: 14px 20px 14px 48px;
  border: 1.5px solid var(--v-border); border-radius: 100px;
  font-size: 16px; font-family: var(--v-sans); outline: none;
  transition: var(--v-transition);
}
.v-search-page__form input:focus { border-color: var(--v-black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.v-search-page__form svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--v-text-muted); }
.v-search-page__count { font-size: 14px; color: var(--v-text-muted); margin-bottom: 24px; }

/* ===== COLLECTIONS LIST ===== */
.v-collections-list { padding: 40px 0 80px; }
.v-collections-list h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 32px; }
.v-collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.v-collection-card {
  background: var(--v-bg-accent); border-radius: var(--v-radius-xl);
  padding: 32px 24px; text-align: center; transition: var(--v-transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px;
}
.v-collection-card:hover { background: var(--v-bg-accent-hover); transform: translateY(-3px); box-shadow: var(--v-shadow); }
.v-collection-card img { max-height: 120px; width: auto; object-fit: contain; margin-bottom: 12px; }
.v-collection-card h3 { font-family: var(--v-sans); font-size: 16px; font-weight: 700; margin: 0; color: var(--v-black); }
.v-collection-card p { font-size: 13px; color: var(--v-text-secondary); margin: 6px 0 0; }
@media (max-width: 768px) { .v-collections-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .v-collections-grid { grid-template-columns: 1fr; } }

/* ===== CUSTOMER PAGES ===== */
.v-customer { padding: 48px 0 80px; }
.v-customer__header { text-align: center; margin-bottom: 40px; }
.v-customer__header h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 8px; }
.v-customer__header p { font-size: 15px; color: var(--v-text-secondary); margin: 0; }
.v-customer__form {
  max-width: 420px; margin: 0 auto;
  background: var(--v-bg-warm); border-radius: var(--v-radius-xl);
  padding: 36px; border: 1px solid var(--v-border-light);
}
.v-customer__form label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--v-text); margin-bottom: 6px;
}
.v-customer__form input[type="email"],
.v-customer__form input[type="password"],
.v-customer__form input[type="text"] {
  width: 100%; padding: 12px 16px; margin-bottom: 16px;
  border: 1.5px solid var(--v-border); border-radius: var(--v-radius-sm);
  font-size: 14px; font-family: var(--v-sans); background: var(--v-white);
  outline: none; transition: var(--v-transition);
}
.v-customer__form input:focus { border-color: var(--v-black); box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }
.v-customer__form button[type="submit"] {
  display: block; width: 100%; padding: 14px;
  background: var(--v-black); color: var(--v-white); border: none;
  border-radius: 100px; font-size: 15px; font-weight: 600;
  font-family: var(--v-sans); cursor: pointer; transition: var(--v-transition);
  margin-top: 4px;
}
.v-customer__form button:hover { background: #222; }
.v-customer__form .v-link {
  display: block; text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--v-text-secondary); text-decoration: underline;
}
.v-customer__account { max-width: 800px; margin: 0 auto; }
.v-customer__orders { width: 100%; border-collapse: collapse; margin-top: 24px; }
.v-customer__orders th {
  text-align: left; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--v-text-muted);
  padding: 12px 0; border-bottom: 1.5px solid var(--v-border);
}
.v-customer__orders td {
  padding: 16px 0; border-bottom: 1px solid var(--v-border-light);
  font-size: 14px; color: var(--v-text);
}

/* ===== PASSWORD PAGE ===== */
.v-password {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(165deg, #f8f7f4 0%, #f0f4e8 40%, #e8efd8 100%);
  text-align: center; padding: 48px 24px;
}
.v-password__inner { max-width: 440px; }
.v-password__inner h1 { font-family: var(--v-serif); font-size: 36px; font-weight: 400; margin: 0 0 12px; }
.v-password__inner p { font-size: 15px; color: var(--v-text-secondary); margin: 0 0 28px; line-height: 1.7; }
.v-password__form input {
  width: 100%; padding: 14px 20px; border: 1.5px solid var(--v-border);
  border-radius: 100px; font-size: 14px; font-family: var(--v-sans);
  text-align: center; outline: none; margin-bottom: 12px;
}
.v-password__form input:focus { border-color: var(--v-black); }
.v-password__form button {
  padding: 14px 36px; background: var(--v-black); color: var(--v-white);
  border: none; border-radius: 100px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--v-sans); transition: var(--v-transition);
}

/* ===== v7: PDP LAYOUT FIXES ===== */

/* Gallery should NOT be sticky — it causes issues with long product info */
.v-pdp__gallery {
  position: static !important;
}

/* Full-width description below the 2-col grid */
.v-pdp__desc-full {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--v-border-light);
  max-width: 800px;
}
.v-pdp__desc-full h2 {
  font-family: var(--v-serif);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--v-black);
}
.v-pdp__desc-full .v-pdp__desc-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--v-text-secondary);
}
.v-pdp__desc-full .v-pdp__desc-content h1,
.v-pdp__desc-full .v-pdp__desc-content h2,
.v-pdp__desc-full .v-pdp__desc-content h3 {
  font-family: var(--v-serif);
  font-weight: 400;
  color: var(--v-black);
  margin-top: 24px;
}

/* Full-width reviews section below description */
.v-pdp__reviews-full {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--v-border-light);
}

/* Recommendations section */
.v-recommended {
  padding: 48px 0 0;
  border-top: 1px solid var(--v-border-light);
  margin-top: 48px;
}
.v-recommended .v-section-title {
  text-align: left;
  margin-bottom: 24px;
}

/* ===== v7: FOOTER FIXES ===== */

/* Make Vevon text visible in footer */
.v-footer__brand h3 {
  color: #ffffff !important;
  opacity: 1 !important;
}
.v-footer__brand p {
  color: rgba(255,255,255,0.55) !important;
}
.v-footer__col h4 {
  color: rgba(255,255,255,0.4) !important;
}
.v-footer__links a {
  color: rgba(255,255,255,0.65) !important;
}
.v-footer__links a:hover {
  color: #ffffff !important;
}

/* Footer newsletter — force correct styles */
.v-footer__newsletter p,
.v-footer .v-footer__newsletter p {
  color: rgba(255,255,255,0.55) !important;
}
.v-footer__nl-form,
.v-footer .v-footer__nl-form {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}
.v-footer__nl-form input,
.v-footer .v-footer__nl-form input {
  flex: 1 !important;
  padding: 12px 18px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  color: #ffffff !important;
  outline: none !important;
  min-width: 0 !important;
}
.v-footer__nl-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
}
.v-footer__nl-form input:focus {
  border-color: rgba(255,255,255,0.5) !important;
}
.v-footer__nl-form button,
.v-footer .v-footer__nl-form button {
  padding: 12px 24px !important;
  background: var(--v-bg-accent) !important;
  color: var(--v-black) !important;
  border: none !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  font-family: var(--v-sans) !important;
}
.v-footer__nl-form button:hover {
  background: var(--v-bg-accent-hover) !important;
}
.v-footer__bottom {
  color: rgba(255,255,255,0.35) !important;
}
.v-footer__bottom a {
  color: rgba(255,255,255,0.35) !important;
}

/* ===== v7: MOBILE — NO HORIZONTAL SCROLL ===== */

/* Force no horizontal overflow on everything */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Category nav: hide on mobile, scrollable on tablet */
@media (max-width: 768px) {
  .v-header__nav {
    display: none !important;
  }
  .v-header__nav.active {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--v-white) !important;
    border-bottom: 1px solid var(--v-border) !important;
    padding: 12px 16px !important;
    z-index: 99 !important;
    gap: 4px !important;
  }
  .v-header__nav.active a {
    padding: 10px 16px !important;
    border-radius: var(--v-radius-sm) !important;
  }

  /* Header actions — hide text links on mobile, keep cart */
  .v-header__actions > a:not(.v-header__cart-link) {
    display: none !important;
  }

  /* Search bar */
  .v-search {
    margin: 0 8px !important;
    max-width: none !important;
  }

  /* Trust bar wrap */
  .v-trust__grid {
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .v-trust__item {
    flex: 0 0 calc(50% - 6px) !important;
  }

  /* Product page mobile */
  .v-pdp__layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .v-pdp__title {
    font-size: 24px !important;
  }
  .v-pdp__price {
    font-size: 26px !important;
  }
  .v-pdp__thumbs {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    flex-wrap: nowrap !important;
  }
  .v-pdp__thumb {
    flex-shrink: 0 !important;
    width: 56px !important;
    height: 56px !important;
  }
  .v-pdp__variant-opts {
    gap: 6px !important;
  }
  .v-pdp__variant-opt {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  /* Footer on mobile */
  .v-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .v-footer__nl-form {
    flex-direction: column !important;
  }
  .v-footer__nl-form button {
    width: 100% !important;
  }

  /* Recommended products */
  .v-recommended .v-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* How it works */
  .v-how__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .v-how__grid::before {
    display: none !important;
  }

  /* Promise */
  .v-promise__grid {
    grid-template-columns: 1fr !important;
  }

  /* Reviews */
  .v-reviews__grid {
    grid-template-columns: 1fr !important;
  }

  /* Hero */
  .v-hero {
    padding: 48px 0 40px !important;
  }
  .v-hero__title {
    font-size: 30px !important;
  }
  .v-hero__stats {
    gap: 24px !important;
    margin-top: 36px !important;
  }
  .v-hero__stat-num {
    font-size: 26px !important;
  }

  /* Newsletter */
  .v-newsletter__form {
    flex-direction: column !important;
  }
  .v-newsletter__form button {
    width: 100% !important;
  }

  /* Container */
  .v-container {
    padding: 0 16px !important;
  }
}

@media (max-width: 480px) {
  .v-hero__title { font-size: 26px !important; }
  .v-hero__stats { flex-direction: column !important; gap: 12px !important; }
  .v-product-grid { grid-template-columns: 1fr !important; }
  .v-recommended .v-product-grid { grid-template-columns: 1fr !important; }
  .v-how__grid { grid-template-columns: 1fr !important; }
  .v-trust__item { flex: 0 0 100% !important; }
  .v-page__hero h1 { font-size: 28px !important; }
  .v-collection__header h1 { font-size: 28px !important; }
}

/* ===== JUDGE.ME STYLING OVERRIDES ===== */
.jdgm-widget { font-family: var(--v-sans) !important; }
.jdgm-rev-widg__title,
.jdgm-rev-widg .jdgm-rev-widg__title {
  font-family: var(--v-serif) !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: var(--v-black) !important;
}
.jdgm-rev-widg__summary-text { color: var(--v-text-secondary) !important; }
.jdgm-rev { border-bottom: 1px solid var(--v-border-light) !important; padding: 20px 0 !important; }
.jdgm-rev__body { font-size: 14px !important; line-height: 1.7 !important; color: var(--v-text-secondary) !important; }
.jdgm-rev__author-name { font-weight: 700 !important; color: var(--v-black) !important; }
.jdgm-form__btn {
  background: var(--v-black) !important;
  color: var(--v-white) !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-family: var(--v-sans) !important;
  font-weight: 600 !important;
  border: none !important;
}
.jdgm-form__btn:hover { background: #333 !important; }


/* ===== SHARE BUTTON SVG SIZE FIX ===== */
.v-share__btn {
  width: 36px !important; height: 36px !important;
  min-width: 36px !important; max-width: 36px !important;
  min-height: 36px !important; max-height: 36px !important;
  border-radius: 50% !important; background: var(--v-bg) !important;
  border: none !important; display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  cursor: pointer !important; color: var(--v-text-secondary) !important;
  padding: 0 !important; overflow: hidden !important; flex-shrink: 0 !important;
}
.v-share__btn:hover { background: var(--v-black) !important; color: var(--v-white) !important; }
.v-share__btn svg {
  width: 16px !important; height: 16px !important;
  max-width: 16px !important; max-height: 16px !important;
  flex-shrink: 0 !important;
}
.v-share { display: flex !important; align-items: center !important; gap: 10px !important;
  margin-top: 16px !important; padding-top: 16px !important;
  border-top: 1px solid var(--v-border-light) !important; }
.v-share__label { font-size: 13px !important; font-weight: 600 !important; color: var(--v-text-muted) !important; }


/* ===== v8: MOBILE PDP + SHARE SPACING FIXES ===== */

/* Product title — don't clip on mobile */
.v-pdp__title {
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}

/* Main image — constrain to viewport on mobile */
@media (max-width: 768px) {
  .v-pdp__main-img {
    border-radius: var(--v-radius) !important;
    aspect-ratio: auto !important;
    max-height: 400px !important;
  }
  .v-pdp__main-img img {
    max-width: 90% !important;
    max-height: 360px !important;
  }
  .v-pdp__thumbs {
    gap: 6px !important;
    padding-bottom: 4px !important;
  }
  .v-pdp__thumb {
    width: 52px !important;
    height: 52px !important;
  }
  .v-pdp .v-container {
    padding: 0 16px !important;
  }
  .v-pdp__title {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }
  .v-pdp__subtitle {
    font-size: 13px !important;
  }
  .v-pdp__price {
    font-size: 24px !important;
  }
  .v-pdp__price-was {
    font-size: 13px !important;
  }
  .v-pdp__save {
    font-size: 11px !important;
    padding: 2px 8px !important;
  }
  .v-pdp__variant-label {
    font-size: 13px !important;
  }
  .v-pdp__variant-opt {
    padding: 7px 14px !important;
    font-size: 12px !important;
  }
  .v-pdp__atc {
    padding: 13px 16px !important;
    font-size: 14px !important;
  }
  .v-pdp__wishlist {
    width: 46px !important;
    height: 46px !important;
  }
  .v-pdp__desc-full {
    margin-top: 32px !important;
    padding-top: 24px !important;
  }
  .v-pdp__desc-full h2 {
    font-size: 20px !important;
  }
  .v-pdp__reviews-full {
    margin-top: 32px !important;
    padding-top: 24px !important;
  }
  .v-recommended {
    margin-top: 32px !important;
    padding-top: 24px !important;
  }
  .v-recommended .v-section-title {
    font-size: 22px !important;
  }
  .v-breadcrumbs {
    font-size: 12px !important;
    gap: 5px !important;
    margin-bottom: 16px !important;
  }
}

/* Share section — consistent spacing with trust rows */
.v-share {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 0 !important;
  margin: 0 !important;
  border-top: 1px solid var(--v-border-light) !important;
  border-bottom: none !important;
}

/* Trust rows — make all consistent height and spacing */
.v-pdp__trust {
  border-top: none !important;
}
.v-pdp__trust-row {
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--v-border-light) !important;
  margin: 0 !important;
}
.v-pdp__trust-row:last-child {
  border-bottom: none !important;
}

/* Share label */
.v-share__label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--v-text) !important;
  min-width: auto !important;
}

/* Scrollbar on thumbnails for mobile */
.v-pdp__thumbs::-webkit-scrollbar {
  height: 3px;
}
.v-pdp__thumbs::-webkit-scrollbar-thumb {
  background: var(--v-border);
  border-radius: 10px;
}

/* PDP description content — prevent overflow */
.v-pdp__desc-content,
.v-pdp__desc-full .v-pdp__desc-content {
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
.v-pdp__desc-content img,
.v-pdp__desc-full img {
  max-width: 100% !important;
  height: auto !important;
}


/* ===========================================================
   v9: COMPREHENSIVE MOBILE OVERRIDE — HIGHEST SPECIFICITY
   Applied LAST so it wins over everything above
   =========================================================== */

@media screen and (max-width: 767px) {

  /* --- GLOBAL --- */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .v-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* --- HEADER --- */
  header.v-header .v-header__nav {
    display: none !important;
  }
  header.v-header .v-header__nav.active {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    padding: 12px 16px !important;
    z-index: 99 !important;
  }
  header.v-header .v-header__actions > a:not(.v-header__cart-link) {
    display: none !important;
  }
  .v-search {
    margin: 0 8px !important;
  }

  /* --- HERO --- */
  section.v-hero {
    padding: 40px 0 32px !important;
  }
  .v-hero__title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }
  .v-hero__subtitle {
    font-size: 15px !important;
    margin-bottom: 24px !important;
  }
  .v-hero__cta {
    padding: 13px 28px !important;
    font-size: 14px !important;
  }
  .v-hero__stats {
    gap: 20px !important;
    margin-top: 32px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .v-hero__stat-num {
    font-size: 24px !important;
  }

  /* --- TRUST BAR --- */
  .v-trust__grid {
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: flex-start !important;
  }
  .v-trust__item {
    flex: 0 0 calc(50% - 5px) !important;
  }
  .v-trust__text {
    font-size: 11px !important;
  }

  /* --- PRODUCT GRID --- */
  .v-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .v-section-title {
    font-size: 22px !important;
  }

  /* --- HOW IT WORKS --- */
  .v-how__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .v-how__grid::before {
    display: none !important;
  }
  .v-how__header h2 {
    font-size: 24px !important;
  }

  /* --- REVIEWS --- */
  .v-reviews__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .v-reviews__header h2 {
    font-size: 24px !important;
  }

  /* --- PROMISE --- */
  .v-promise__grid {
    grid-template-columns: 1fr !important;
  }
  .v-promise__header h2 {
    font-size: 26px !important;
  }

  /* --- NEWSLETTER --- */
  .v-newsletter h2 {
    font-size: 24px !important;
  }
  .v-newsletter__form {
    flex-direction: column !important;
  }
  .v-newsletter__form button {
    width: 100% !important;
  }

  /* --- FOOTER --- */
  .v-footer__grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .v-footer__nl-form {
    flex-direction: column !important;
  }
  .v-footer__nl-form button {
    width: 100% !important;
  }

  /* =====================================================
     PDP (PRODUCT DETAIL PAGE) — CRITICAL MOBILE FIX
     Force single column, no grid, no sticky
     ===================================================== */
  section.v-pdp .v-pdp__layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  section.v-pdp .v-pdp__gallery {
    position: static !important;
    width: 100% !important;
  }
  section.v-pdp .v-pdp__main-img {
    border-radius: 12px !important;
    aspect-ratio: 1 !important;
    width: 100% !important;
  }
  section.v-pdp .v-pdp__main-img img {
    max-width: 85% !important;
    max-height: 85% !important;
  }
  section.v-pdp .v-pdp__thumbs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  section.v-pdp .v-pdp__thumb {
    flex-shrink: 0 !important;
    width: 52px !important;
    height: 52px !important;
  }
  section.v-pdp .v-pdp__info {
    width: 100% !important;
  }
  section.v-pdp .v-pdp__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
  section.v-pdp .v-pdp__subtitle {
    font-size: 13px !important;
  }
  section.v-pdp .v-pdp__price {
    font-size: 26px !important;
  }
  section.v-pdp .v-pdp__price-was {
    font-size: 13px !important;
  }
  section.v-pdp .v-pdp__variant-label {
    font-size: 13px !important;
  }
  section.v-pdp .v-pdp__variant-opts {
    gap: 6px !important;
  }
  section.v-pdp .v-pdp__variant-opt {
    padding: 8px 16px !important;
    font-size: 13px !important;
  }
  section.v-pdp .v-pdp__atc-row {
    gap: 8px !important;
  }
  section.v-pdp .v-pdp__atc {
    padding: 14px 16px !important;
    font-size: 15px !important;
  }
  section.v-pdp .v-pdp__wishlist {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
  section.v-pdp .v-pdp__trust-row {
    padding: 12px 0 !important;
  }
  section.v-pdp .v-pdp__trust-icon {
    width: 32px !important;
    height: 32px !important;
  }
  section.v-pdp .v-pdp__trust-text h5 {
    font-size: 13px !important;
  }
  section.v-pdp .v-pdp__trust-text p {
    font-size: 11px !important;
  }
  .v-share__btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
  }
  .v-share__btn svg {
    width: 14px !important;
    height: 14px !important;
  }

  /* Description + reviews + recommendations on mobile */
  .v-pdp__desc-full {
    margin-top: 24px !important;
    padding-top: 20px !important;
  }
  .v-pdp__desc-full h2 {
    font-size: 20px !important;
  }
  .v-pdp__reviews-full {
    margin-top: 24px !important;
    padding-top: 20px !important;
  }
  .v-recommended {
    margin-top: 24px !important;
    padding-top: 20px !important;
  }
  .v-recommended .v-section-title {
    font-size: 20px !important;
  }
  .v-recommended .v-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .v-breadcrumbs {
    font-size: 11px !important;
    gap: 4px !important;
    margin-bottom: 12px !important;
  }

  /* --- CART PAGE --- */
  .v-cart__layout {
    grid-template-columns: 1fr !important;
  }
  .v-cart__summary {
    position: static !important;
  }
  .v-cart-item {
    grid-template-columns: 72px 1fr !important;
    gap: 12px !important;
  }

  /* --- CUSTOMER PAGES --- */
  .v-customer__form {
    padding: 20px !important;
  }

  /* --- CONTENT PAGES --- */
  .v-page__hero h1 {
    font-size: 28px !important;
  }
  .v-value-grid {
    grid-template-columns: 1fr !important;
  }
  .v-collections-grid {
    grid-template-columns: 1fr !important;
  }
  .v-collection__header h1 {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 479px) {
  .v-product-grid {
    grid-template-columns: 1fr !important;
  }
  .v-recommended .v-product-grid {
    grid-template-columns: 1fr !important;
  }
  .v-how__grid {
    grid-template-columns: 1fr !important;
  }
  .v-trust__item {
    flex: 0 0 100% !important;
  }
  .v-hero__title {
    font-size: 24px !important;
  }
  .v-hero__stats {
    flex-direction: column !important;
    gap: 12px !important;
  }
  section.v-pdp .v-pdp__title {
    font-size: 22px !important;
  }
  section.v-pdp .v-pdp__price {
    font-size: 24px !important;
  }
}


/* ===========================================================
   v10: GLOBAL BASE THEME OVERRIDES
   Catch-all styles for pages still using base theme sections
   (order detail, addresses, blog, article, default page, etc.)
   Ensures Vevon look & feel + mobile responsiveness everywhere
   =========================================================== */

/* Force Vevon fonts on ALL base theme sections */
.section-template--*,
[class*="main-"],
.shopify-section:not([id*="vevon"]) {
  font-family: var(--v-sans) !important;
  color: var(--v-text) !important;
}

/* Base theme containers — max width + padding */
.page-width,
.shopify-section .page-width {
  max-width: var(--v-container) !important;
  margin: 0 auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Base theme headings — use Vevon serif */
.shopify-section h1,
.shopify-section h2,
main h1,
main h2 {
  font-family: var(--v-serif) !important;
  color: var(--v-black) !important;
  letter-spacing: -0.3px !important;
}

/* Base theme links */
/* Green links only in content/description areas */
.rte a,
.v-pdp__desc-content a,
.v-pdp__desc-full a,
.v-page__content a,
.v-faq-a a {
  color: var(--v-green) !important;
  text-decoration: underline !important;
}

/* Base theme buttons */
.shopify-section:not([id*="vevon"]) button[type="submit"],
.shopify-section:not([id*="vevon"]) .button,
.shopify-section:not([id*="vevon"]) .btn {
  background: var(--v-black) !important;
  color: var(--v-white) !important;
  border-radius: 100px !important;
  font-family: var(--v-sans) !important;
  font-weight: 600 !important;
  border: none !important;
  padding: 12px 24px !important;
  cursor: pointer !important;
  transition: var(--v-transition) !important;
}
.shopify-section:not([id*="vevon"]) button[type="submit"]:hover,
.shopify-section:not([id*="vevon"]) .button:hover {
  background: #222 !important;
}

/* Base theme inputs */
.shopify-section:not([id*="vevon"]) input[type="text"],
.shopify-section:not([id*="vevon"]) input[type="email"],
.shopify-section:not([id*="vevon"]) input[type="password"],
.shopify-section:not([id*="vevon"]) input[type="tel"],
.shopify-section:not([id*="vevon"]) textarea,
.shopify-section:not([id*="vevon"]) select {
  border: 1.5px solid var(--v-border) !important;
  border-radius: var(--v-radius-sm) !important;
  font-family: var(--v-sans) !important;
  font-size: 14px !important;
  padding: 10px 14px !important;
  outline: none !important;
  background: var(--v-white) !important;
  color: var(--v-text) !important;
}
.shopify-section:not([id*="vevon"]) input:focus,
.shopify-section:not([id*="vevon"]) textarea:focus,
.shopify-section:not([id*="vevon"]) select:focus {
  border-color: var(--v-black) !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05) !important;
}

/* Base theme tables (order history, addresses) */
.shopify-section table {
  width: 100% !important;
  border-collapse: collapse !important;
}
.shopify-section th {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: var(--v-text-muted) !important;
  padding: 12px 8px !important;
  border-bottom: 1.5px solid var(--v-border) !important;
  text-align: left !important;
}
.shopify-section td {
  padding: 14px 8px !important;
  border-bottom: 1px solid var(--v-border-light) !important;
  font-size: 14px !important;
}

/* All base theme sections — ensure good spacing */


/* Base theme page sections — match Vevon content page style */
.main-page-content,
[class*="main-page"] .rte,
.rte {
  max-width: 780px !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: var(--v-text-secondary) !important;
}
.rte h1, .rte h2, .rte h3 {
  font-family: var(--v-serif) !important;
  font-weight: 400 !important;
  color: var(--v-black) !important;
}

/* Mobile overrides for base theme pages */
@media screen and (max-width: 767px) {
  .page-width {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Base theme grids — force single column */
  .grid,
  .grid--2-col-tablet,
  .grid--3-col-desktop,
  .grid--4-col-desktop {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }
  .grid__item {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }

  /* Base theme tables — horizontal scroll on small screens */
  .shopify-section table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Base theme images */
  .shopify-section img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Prevent any base theme element from causing horizontal overflow */
  .shopify-section * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  /* Base theme article/blog */
  .article-template,
  .blog-articles {
    padding: 0 !important;
  }
  .article-template__hero-container {
    padding: 0 !important;
  }
}


/* ===== v11: BREADCRUMB + LINK SCOPE FIXES ===== */
/* Vevon breadcrumbs should stay gray, not green */
.v-breadcrumbs a {
  color: var(--v-text-secondary) !important;
}
.v-breadcrumbs a:hover {
  color: var(--v-text) !important;
}
/* v11 inherit rule removed — was breaking button text colors */
/* Only RTE/description content links should be green */
.v-pdp__desc-content a,
.v-page__content a,
.rte a {
  color: var(--v-green) !important;
  text-decoration: underline !important;
}

/* Vevon sections should NOT get extra padding from v10 */
[class^="v-"]:not(.v-container) {
  /* Don't add padding-top/bottom from base theme override */
}

/* Search page input fix */
.v-search-page__form input {
  border-radius: 100px !important;
  padding: 14px 20px 14px 48px !important;
}


/* ===== v12: TARGETED COLOR FIXES (replaces broken v11) ===== */

/* Breadcrumbs — gray links, NOT green */
.v-breadcrumbs a { color: var(--v-text-secondary) !important; }
.v-breadcrumbs a:hover { color: var(--v-text) !important; }

/* Hero CTA — white text on black bg */
.v-hero__cta { color: #ffffff !important; }
.v-hero__cta:hover { color: #ffffff !important; }

/* All outline buttons — black text */
.v-btn-outline { color: var(--v-black) !important; }
.v-btn-outline:hover { color: #ffffff !important; }

/* Newsletter section — white text on dark bg */
.v-newsletter h2 { color: #ffffff !important; }
.v-newsletter p { color: rgba(255,255,255,0.6) !important; }
.v-newsletter__form input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
}
.v-newsletter__form input::placeholder { color: rgba(255,255,255,0.35) !important; }
.v-newsletter__form button {
  background: var(--v-bg-accent) !important;
  color: var(--v-black) !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 14px 28px !important;
}

/* Footer newsletter — dark input, lime button */
.v-footer .v-footer__nl-form input {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
}
.v-footer .v-footer__nl-form button {
  background: var(--v-bg-accent) !important;
  color: var(--v-black) !important;
}

/* Judge.me button overrides */
.jdgm-form__btn,
.jdgm-rev-widg .jdgm-form__btn,
button.jdgm-write-rev-link,
.jdgm-rev-widg__summary-actions .jdgm-write-rev-link {
  background: var(--v-black) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  padding: 12px 28px !important;
  font-family: var(--v-sans) !important;
  font-weight: 600 !important;
  border: none !important;
}

/* Product card links — keep normal colors */
.v-product-card__title { color: var(--v-black) !important; }
.v-product-card__atc { color: var(--v-black) !important; }
.v-product-card__atc:hover { color: #ffffff !important; }

/* Header nav links */
.v-header__actions a { color: var(--v-text) !important; }
.v-header__nav a { color: var(--v-text-secondary) !important; }
.v-header__nav a:hover { color: var(--v-text) !important; }
.v-header__nav a.v-nav-active { color: #ffffff !important; }

/* Footer links */
.v-footer a { color: rgba(255,255,255,0.65) !important; }
.v-footer a:hover { color: #ffffff !important; }
.v-footer__brand h3 { color: #ffffff !important; }
.v-footer__bottom, .v-footer__bottom a { color: rgba(255,255,255,0.35) !important; }

/* PDP: ATC button */
.v-pdp__atc { color: #ffffff !important; }
.v-pdp__atc:hover { color: #ffffff !important; }

/* 404 CTA */
.v-404 .v-hero__cta { color: #ffffff !important; }

/* Cart checkout button */
.v-cart__checkout { color: #ffffff !important; }

/* Search page link */
.v-search-page__form input { color: var(--v-text) !important; }


/* ===== v13: NEWSLETTER + FOOTER FORM — ULTRA-SPECIFIC ===== */
section.v-newsletter .v-newsletter__form input[type="email"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  padding: 14px 20px !important;
  font-size: 14px !important;
}
section.v-newsletter .v-newsletter__form input::placeholder {
  color: rgba(255,255,255,0.4) !important;
}
section.v-newsletter .v-newsletter__form button {
  background: #d8f34f !important;
  color: #0d0d0d !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  white-space: nowrap !important;
}
section.v-newsletter .v-newsletter__form button:hover {
  background: #c8e33f !important;
}

footer.v-footer .v-footer__nl-form input[type="email"] {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  padding: 12px 18px !important;
}
footer.v-footer .v-footer__nl-form input::placeholder {
  color: rgba(255,255,255,0.4) !important;
}
footer.v-footer .v-footer__nl-form button {
  background: #d8f34f !important;
  color: #0d0d0d !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}


/* ===== v14: KILL BASE THEME SECTION GAPS ===== */

/* Remove the spacing the base theme adds between sections */
:root {
  --spacing-sections-desktop: 0px !important;
  --spacing-sections-mobile: 0px !important;
}

/* Base theme body grid creates extra rows for header-group — flatten it */
body {
  grid-template-rows: auto 1fr auto !important;
  grid-template-columns: 100% !important;
}

/* Kill any top margin/padding on main content area */
.content-for-layout,
main.content-for-layout {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* The skip-to-content link and cart-drawer shouldn't take space */
.skip-to-content-link {
  height: 0 !important;
  overflow: hidden !important;
}

/* Base theme section spacing — zero it out for vevon sections */
.shopify-section + .shopify-section {
  margin-top: 0 !important;
}

/* Announcement bar gap — already hidden but may still reserve space */
#shopify-section-announcement-bar,
.shopify-section-group-header-group,
[id*="header-group"] {
  display: none !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Cart drawer — don't let it push content down */
#shopify-section-cart-drawer {
  position: fixed !important;
  z-index: 9999 !important;
}


/* ===========================================================
   v15: BACKGROUND IMAGES & AESTHETIC SECTIONS
   =========================================================== */

/* Hero background image layer */
.v-hero {
  background: linear-gradient(170deg, #ffffff 0%, #f0f4e8 40%, #e8efd8 100%) !important;
  position: relative;
  isolation: isolate;
}
.v-hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/1092671/pexels-photo-1092671.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.08;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.v-hero .v-container {
  position: relative;
  z-index: 2;
}

/* Promise section background image */
.v-promise {
  position: relative;
  isolation: isolate;
}
.v-promise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/844297/pexels-photo-844297.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}
.v-promise .v-container {
  position: relative;
  z-index: 2;
}

/* ===== LIFESTYLE BANNER SECTION ===== */
.v-lifestyle {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
  color: #ffffff;
}
.v-lifestyle__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.7) 100%),
    url('https://images.pexels.com/photos/1092644/pexels-photo-1092644.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.v-lifestyle .v-container {
  position: relative;
  z-index: 2;
}
.v-lifestyle__content {
  max-width: 560px;
  color: #ffffff;
}
.v-lifestyle__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--v-bg-accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.v-lifestyle__title {
  font-family: var(--v-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  color: #ffffff;
}
.v-lifestyle__text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.v-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #ffffff;
  color: var(--v-black) !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--v-transition);
}
.v-btn-light:hover {
  background: var(--v-bg-accent);
  color: var(--v-black) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(216,243,79,0.3);
}

@media (max-width: 768px) {
  .v-lifestyle {
    padding: 56px 0;
    min-height: 380px;
  }
  .v-lifestyle__title {
    font-size: 28px !important;
  }
  .v-lifestyle__text {
    font-size: 15px !important;
  }
}

/* ===== SHOWCASE SECTION ===== */
.v-showcase {
  padding: 72px 0;
}
.v-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.v-showcase__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--v-green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.v-showcase__title {
  font-family: var(--v-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: var(--v-black);
}
.v-showcase__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--v-text-secondary);
  margin: 0 0 24px;
}
.v-showcase__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.v-showcase__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--v-text);
}
.v-showcase__image {
  border-radius: var(--v-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--v-bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.v-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.v-showcase__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .v-showcase {
    padding: 48px 0;
  }
  .v-showcase__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .v-showcase__image {
    aspect-ratio: 4/3;
  }
  .v-showcase__title {
    font-size: 26px !important;
  }
}

/* ===== CATEGORIES WITH BG IMAGES ===== */
.v-categories-img {
  padding: 56px 0;
}
.v-categories-img__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  min-height: 320px;
}
.v-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--v-radius-xl);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #ffffff !important;
  transition: var(--v-transition);
  min-height: 260px;
}
.v-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
}
.v-cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.v-cat-card:hover::before {
  transform: scale(1.05);
}
.v-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--v-shadow-lg);
}
.v-cat-card__content {
  position: relative;
  z-index: 2;
}
.v-cat-card__label {
  font-family: var(--v-serif);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff !important;
  margin: 0 0 6px;
  line-height: 1.1;
}
.v-cat-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
.v-cat-card--large::before {
  background-image: url('https://images.pexels.com/photos/788946/pexels-photo-788946.jpeg?auto=compress&cs=tinysrgb&w=1200');
}
.v-cat-card--iphone::before {
  background-image: url('https://images.pexels.com/photos/404280/pexels-photo-404280.jpeg?auto=compress&cs=tinysrgb&w=800');
}
.v-cat-card--samsung::before {
  background-image: url('https://images.pexels.com/photos/2115257/pexels-photo-2115257.jpeg?auto=compress&cs=tinysrgb&w=800');
}

@media (max-width: 768px) {
  .v-categories-img__grid {
    grid-template-columns: 1fr 1fr;
  }
  .v-cat-card--large {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  .v-categories-img__grid {
    grid-template-columns: 1fr;
  }
  .v-cat-card--large { grid-column: span 1; }
  .v-cat-card { min-height: 200px; }
}

/* About page hero — add bg image */
.v-page__hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.v-page__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/1092671/pexels-photo-1092671.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.v-page__hero .v-container {
  position: relative;
  z-index: 2;
}


/* ===========================================================
   v16: SPLIT HERO WITH VISIBLE PHONE IMAGERY
   =========================================================== */

/* Override v15 hero bg — we're using split layout now */
.v-hero__bg-image { display: none !important; }

/* Hero split layout */
.v-hero--split {
  padding: 72px 0 !important;
}
.v-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
}
.v-hero__content {
  text-align: left !important;
  max-width: 540px;
}
.v-hero--split .v-hero__title {
  text-align: left !important;
  margin: 0 0 20px !important;
}
.v-hero--split .v-hero__subtitle {
  text-align: left !important;
  margin: 0 0 32px !important;
  max-width: 480px;
}
.v-hero--split .v-hero__stats {
  justify-content: flex-start !important;
  margin-top: 48px !important;
  gap: 40px;
}
.v-hero--split .v-hero__stat-num {
  text-align: left;
}
.v-hero--split .v-hero__stat-label {
  text-align: left;
}

/* Phone visual stack */
.v-hero__visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-hero__phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 520px;
}
.v-hero__phone {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.15),
    0 40px 80px rgba(0,0,0,0.1);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  background: #fff;
}
.v-hero__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v-hero__phone--back {
  width: 58%;
  aspect-ratio: 3/4;
  top: 8%;
  right: 2%;
  transform: rotate(6deg);
  z-index: 1;
}
.v-hero__phone--front {
  width: 62%;
  aspect-ratio: 3/4;
  top: 18%;
  left: 5%;
  transform: rotate(-4deg);
  z-index: 2;
}
.v-hero__phone-stack:hover .v-hero__phone--back {
  transform: rotate(8deg) translateY(-6px);
}
.v-hero__phone-stack:hover .v-hero__phone--front {
  transform: rotate(-6deg) translateY(-6px);
}

/* Floating badges on hero */
.v-hero__floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #0d0d0d;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 3;
  animation: v-float 4s ease-in-out infinite;
  white-space: nowrap;
}
.v-hero__floating-badge--1 {
  top: 5%;
  left: -5%;
  animation-delay: 0s;
}
.v-hero__floating-badge--2 {
  bottom: 10%;
  right: -5%;
  animation-delay: 2s;
}

/* Make the hero bg gradient more visible */
.v-hero {
  background: linear-gradient(135deg, #f5faf0 0%, #e8f3d5 40%, #d8f5cc 100%) !important;
}

/* Keep hero orbs visible */
.v-hero__orb1 {
  opacity: 1 !important;
  width: 500px !important;
  height: 500px !important;
}
.v-hero__orb2 {
  opacity: 1 !important;
  width: 400px !important;
  height: 400px !important;
}

/* Mobile responsive — stack vertically */
@media (max-width: 900px) {
  .v-hero__split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    min-height: auto !important;
  }
  .v-hero__content {
    text-align: center !important;
    max-width: 100% !important;
    order: 1;
  }
  .v-hero--split .v-hero__title,
  .v-hero--split .v-hero__subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .v-hero--split .v-hero__stats {
    justify-content: center !important;
  }
  .v-hero__visual {
    order: 2;
    height: 380px !important;
  }
  .v-hero__phone--back { width: 55%; right: 8%; }
  .v-hero__phone--front { width: 60%; left: 8%; }
  .v-hero__floating-badge { font-size: 11px; padding: 8px 12px; }
  .v-hero__floating-badge--1 { left: 0%; }
  .v-hero__floating-badge--2 { right: 0%; }
}

@media (max-width: 480px) {
  .v-hero__visual { height: 300px !important; }
  .v-hero__floating-badge { display: none; }
}


/* ===========================================================
   v18: INNER ZOOM (background-image technique)
   Works reliably in 2-column layouts where right panel is info
   =========================================================== */

/* Container uses the image as background for zoom */
.v-pdp__zoom-container {
  position: relative !important;
  cursor: zoom-in;
  overflow: hidden;
  background-repeat: no-repeat;
  background-color: var(--v-bg);
}

/* The actual img — fades when zoom active */
.v-pdp__main-image {
  transition: opacity 0.2s ease;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none; /* let mouse events pass through to container */
}

.v-pdp__main-image.v-fade-out {
  opacity: 0;
}

/* When zoom active: hide the regular image, show bg-image zoomed */
.v-pdp__zoom-container.v-zoom-active .v-pdp__main-image {
  opacity: 0;
}
.v-pdp__zoom-container.v-zoom-active {
  cursor: zoom-out;
}

/* Kill old lens/result elements — not needed for inner zoom */
.v-pdp__zoom-lens,
.v-pdp__zoom-result {
  display: none !important;
}

/* Disable on mobile */
@media (max-width: 900px) {
  .v-pdp__zoom-container {
    cursor: default !important;
    background-image: none !important;
  }
  .v-pdp__zoom-container.v-zoom-active .v-pdp__main-image {
    opacity: 1 !important;
  }
}

/* Thumb styling (keep from v17) */
.v-pdp__thumb {
  border: 2px solid transparent !important;
  background: var(--v-bg) !important;
  cursor: pointer;
  padding: 0;
  transition: var(--v-transition);
}
.v-pdp__thumb:hover,
.v-pdp__thumb.active {
  border-color: var(--v-black) !important;
}

/* Variant label bold selected value */
.v-pdp__variant-label strong {
  color: var(--v-black) !important;
  font-weight: 700 !important;
  margin-left: 4px;
}

/* Variant buttons */
.v-pdp__variant-opt {
  font-family: var(--v-sans) !important;
  border: 1.5px solid var(--v-border) !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--v-text) !important;
  cursor: pointer !important;
  transition: var(--v-transition) !important;
  background: var(--v-white) !important;
}
.v-pdp__variant-opt:hover { border-color: var(--v-black) !important; }
.v-pdp__variant-opt.active {
  border-color: var(--v-black) !important;
  background: var(--v-black) !important;
  color: var(--v-white) !important;
}
.v-pdp__variant-opt:disabled,
.v-pdp__variant-opt[data-unavailable] {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  text-decoration: line-through !important;
}

.v-pdp__atc:disabled {
  background: var(--v-border) !important;
  color: var(--v-text-muted) !important;
  cursor: not-allowed !important;
}


/* ===========================================================
   v19: HIDE IMG FULLY ON ZOOM + CLEAN BG
   =========================================================== */

/* When zoom is active, HIDE the img completely so only the bg shows */
.v-pdp__zoom-container.v-zoom-active > img,
.v-pdp__zoom-container.v-zoom-active .v-pdp__main-image,
.v-pdp__zoom-container.v-zoom-active #v-main-img {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Make zoom bg cover the full container cleanly */
.v-pdp__zoom-container.v-zoom-active {
  background-color: var(--v-bg) !important;
  background-repeat: no-repeat !important;
}

/* Kill any leftover zoom lens/result elements */
#v-zoom-lens, #v-zoom-result {
  display: none !important;
}


/* ===========================================================
   v21: CAMPAIGN BANNER SECTION
   =========================================================== */

.v-campaign {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(ellipse at top right, rgba(216,243,79,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0,168,107,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #ffffff;
  isolation: isolate;
}

.v-campaign__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d8f34f' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.v-campaign__inner {
  position: relative;
  z-index: 1;
}

.v-campaign__header {
  text-align: center;
  margin-bottom: 48px;
}

.v-campaign__pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  background: rgba(216,243,79,0.15);
  border: 1px solid rgba(216,243,79,0.3);
  border-radius: 100px;
  color: var(--v-bg-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.v-campaign__pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--v-bg-accent);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: v-pulse-dot 1.5s ease-in-out infinite;
}
@keyframes v-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(216,243,79,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(216,243,79,0); }
}

.v-campaign__title {
  font-family: var(--v-serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 0 auto 12px;
  max-width: 720px;
  color: #ffffff;
}

.v-campaign__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
  max-width: 540px;
}

/* Deal cards grid */
.v-campaign__deals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.v-deal {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--v-radius-xl);
  padding: 20px;
  color: #ffffff !important;
  text-decoration: none;
  transition: var(--v-transition);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.v-deal:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(216,243,79,0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.v-deal__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: var(--v-bg-accent);
  color: var(--v-black);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(216,243,79,0.4);
}
.v-deal__badge--green {
  background: var(--v-green);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,168,107,0.4);
}
.v-deal__badge-flame {
  font-size: 13px;
  line-height: 1;
}

.v-deal__image {
  background: rgba(255,255,255,0.06);
  border-radius: var(--v-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 200px;
  overflow: hidden;
}
.v-deal__image img {
  max-width: 100%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.v-deal:hover .v-deal__image img {
  transform: scale(1.08);
}

.v-deal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v-deal__brand {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--v-bg-accent);
  margin-bottom: 4px;
}

.v-deal__name {
  font-family: var(--v-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 4px;
  color: #ffffff;
}

.v-deal__variant {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 14px;
}

.v-deal__price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.v-deal__price {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.v-deal__price-was {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}

.v-deal__save {
  font-size: 12px;
  font-weight: 700;
  background: rgba(0,168,107,0.2);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 100px;
}

.v-deal__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--v-bg-accent);
  align-self: flex-start;
  transition: gap 0.2s ease;
}
.v-deal:hover .v-deal__cta {
  gap: 10px;
}

.v-campaign__footer {
  text-align: center;
}

.v-campaign__small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.v-campaign__small svg {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .v-campaign {
    padding: 56px 0;
  }
  .v-campaign__deals {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .v-deal {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .v-deal__image {
    min-height: 180px;
  }
  .v-deal__name {
    font-size: 22px;
  }
  .v-deal__price {
    font-size: 24px;
  }
  .v-campaign__title {
    font-size: 28px !important;
  }
}


/* ===========================================================
   v22: COMPREHENSIVE FIX
   Campaign text visible + lifestyle bg + better images
   =========================================================== */

/* CAMPAIGN TITLE — was invisible because color: #fff with no fallback */
.v-campaign,
section.v-campaign {
  background:
    radial-gradient(ellipse at top right, rgba(216,243,79,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(0,168,107,0.16) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%) !important;
  color: #ffffff !important;
}

.v-campaign .v-campaign__title,
section.v-campaign .v-campaign__title,
.v-campaign h2 {
  color: #ffffff !important;
  text-shadow: 0 1px 30px rgba(0,0,0,0.4);
}

.v-campaign .v-campaign__subtitle,
section.v-campaign .v-campaign__subtitle,
.v-campaign p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.v-campaign .v-deal__name,
.v-campaign .v-deal h3 {
  color: #ffffff !important;
}
.v-campaign .v-deal__variant,
.v-campaign .v-deal p {
  color: rgba(255, 255, 255, 0.6) !important;
}
.v-campaign .v-deal__price {
  color: #ffffff !important;
}
.v-campaign .v-deal__price-was {
  color: rgba(255, 255, 255, 0.4) !important;
}
.v-campaign .v-deal__brand {
  color: var(--v-bg-accent) !important;
}
.v-campaign .v-deal__cta {
  color: var(--v-bg-accent) !important;
}
.v-campaign .v-campaign__small {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Lifestyle bg image — make sure it actually renders */
.v-lifestyle {
  position: relative !important;
  overflow: hidden !important;
  min-height: 480px !important;
  display: flex !important;
  align-items: center !important;
  padding: 80px 0 !important;
  color: #ffffff !important;
  isolation: isolate;
}
.v-lifestyle__bg {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.7) 100%),
    url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920&q=85&auto=format&fit=crop') !important;
  background-size: cover !important;
  background-position: center !important;
  z-index: 0 !important;
  pointer-events: none;
}
.v-lifestyle .v-container {
  position: relative !important;
  z-index: 2 !important;
}
.v-lifestyle__content {
  max-width: 560px !important;
  color: #ffffff !important;
}
.v-lifestyle__eyebrow {
  display: inline-block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--v-bg-accent) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
}
.v-lifestyle__title {
  font-family: var(--v-serif) !important;
  font-size: clamp(32px, 4.5vw, 48px) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin: 0 0 20px !important;
  color: #ffffff !important;
}
.v-lifestyle__text {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: rgba(255,255,255,0.85) !important;
  margin: 0 0 32px !important;
}
.v-btn-light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 32px !important;
  background: #ffffff !important;
  color: var(--v-black) !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: var(--v-transition) !important;
}
.v-btn-light:hover {
  background: var(--v-bg-accent) !important;
  color: var(--v-black) !important;
  transform: translateY(-2px) !important;
}

/* Showcase image — better aspect, not over-cropped */
.v-showcase__image {
  border-radius: var(--v-radius-xl) !important;
  overflow: hidden !important;
  background: var(--v-off-white) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 32px !important;
  aspect-ratio: 4/5 !important;
}
.v-showcase__image img {
  max-width: 85% !important;
  max-height: 85% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.5s ease !important;
}


/* ===========================================================
   v23: DISCOUNT % DISPLAY + MARKET PRICE
   =========================================================== */

/* Product card — top-left discount badge */
.v-product-card {
  position: relative;
}
.v-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--v-green);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0,168,107,0.3);
}

/* Product card — price layout */
.v-product-card__price {
  margin-top: auto;
}
.v-product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.v-product-card__price-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--v-black);
}
.v-product-card__price-was {
  font-size: 14px;
  color: var(--v-text-muted);
  text-decoration: line-through;
}

.v-product-card__price-meta {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v-product-card__market {
  font-size: 11px;
  color: var(--v-text-muted);
  font-weight: 500;
}
.v-product-card__save-pct {
  font-size: 12px;
  font-weight: 700;
  color: var(--v-green);
}

/* PDP — market label after compare price */
.v-pdp__price-market-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--v-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  margin-left: 2px;
}

/* PDP — make the save badge more prominent */
.v-pdp__save {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--v-green) !important;
  background: var(--v-green-bg) !important;
  padding: 4px 12px !important;
  border-radius: 100px !important;
  white-space: nowrap;
}


/* ===========================================================
   v24: LIFESTYLE FIX — dark bg fallback + win specificity battle
   =========================================================== */

/* Section itself gets dark bg (fallback if image fails to load) */
section.v-lifestyle,
.v-lifestyle {
  background-color: #0d0d0d !important;
  background-image:
    linear-gradient(135deg, rgba(13,13,13,0.78) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.85) 100%),
    url("https://images.unsplash.com/photo-1611162616305-c69b3fa7fbe0?w=1920&q=85&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Hide the inner bg div — using section bg directly is more reliable */
.v-lifestyle .v-lifestyle__bg {
  display: none !important;
}

/* Higher specificity selectors to beat .shopify-section h2 (0,0,1,1) */
section.v-lifestyle .v-lifestyle__title,
.v-lifestyle h2.v-lifestyle__title,
.v-lifestyle .v-lifestyle__title {
  color: #ffffff !important;
  font-family: var(--v-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(32px, 4.5vw, 48px) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.5px !important;
  margin: 0 0 20px !important;
}

section.v-lifestyle .v-lifestyle__text,
.v-lifestyle p.v-lifestyle__text,
.v-lifestyle .v-lifestyle__text {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  margin: 0 0 32px !important;
}

section.v-lifestyle .v-lifestyle__eyebrow,
.v-lifestyle .v-lifestyle__eyebrow {
  color: var(--v-bg-accent) !important;
  display: inline-block !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
}

section.v-lifestyle .v-btn-light,
.v-lifestyle a.v-btn-light {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 14px 32px !important;
  background: #ffffff !important;
  color: #0d0d0d !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: var(--v-transition) !important;
}
section.v-lifestyle .v-btn-light:hover,
.v-lifestyle a.v-btn-light:hover {
  background: var(--v-bg-accent) !important;
  color: #0d0d0d !important;
  transform: translateY(-2px) !important;
}

/* Make sure section has proper height + flex centering */
section.v-lifestyle {
  position: relative !important;
  overflow: hidden !important;
  min-height: 480px !important;
  display: flex !important;
  align-items: center !important;
  padding: 80px 0 !important;
  isolation: isolate;
}
.v-lifestyle .v-container {
  position: relative !important;
  z-index: 2 !important;
}
.v-lifestyle .v-lifestyle__content {
  max-width: 560px !important;
}

@media (max-width: 768px) {
  section.v-lifestyle {
    min-height: 380px !important;
    padding: 56px 0 !important;
  }
  section.v-lifestyle .v-lifestyle__title {
    font-size: 28px !important;
  }
  section.v-lifestyle .v-lifestyle__text {
    font-size: 15px !important;
  }
}


/* ===========================================================
   v25: HERO — single image variant
   =========================================================== */
.v-hero__visual--single {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-hero__hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.v-hero__hero-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12)) drop-shadow(0 40px 80px rgba(0,0,0,0.08));
  animation: v-hero-float 6s ease-in-out infinite;
}
@keyframes v-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hide old phone-stack images on this new layout */
.v-hero__visual--single .v-hero__phone-stack,
.v-hero__visual--single .v-hero__phone {
  display: none !important;
}

/* Floating badges still apply */
.v-hero__visual--single .v-hero__floating-badge--1 {
  top: 6%;
  left: -2%;
}
.v-hero__visual--single .v-hero__floating-badge--2 {
  bottom: 8%;
  right: -2%;
}

@media (max-width: 900px) {
  .v-hero__visual--single {
    height: 380px !important;
  }
  .v-hero__visual--single .v-hero__floating-badge--1 { left: 0; }
  .v-hero__visual--single .v-hero__floating-badge--2 { right: 0; }
}
@media (max-width: 480px) {
  .v-hero__visual--single { height: 280px !important; }
  .v-hero__visual--single .v-hero__floating-badge { display: none; }
}


/* ===========================================================
   v26: Custom category card images (user-supplied)
   =========================================================== */

.v-cat-card--iphone::before {
  background-image: url("/cdn/shop/files/1_ea1c8bd4-1aab-43de-ab5f-9541ecb4eeeb.png?v=1777840438") !important;
  background-size: cover !important;
  background-position: center !important;
}

.v-cat-card--samsung::before {
  background-image: url("/cdn/shop/files/2_7d4b1de0-5a1a-49af-bb5c-18258e53c59f.png?v=1777840439") !important;
  background-size: cover !important;
  background-position: center !important;
}


/* ===========================================================
   v27: Custom lifestyle bg image (user-supplied)
   =========================================================== */
section.v-lifestyle,
.v-lifestyle {
  background-color: #0d0d0d !important;
  background-image:
    linear-gradient(135deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.45) 50%, rgba(13,13,13,0.85) 100%),
    url("/cdn/shop/files/Untitled_design_6.png?v=1777841042") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}


/* ===========================================================
   v28: Showcase image — fill card edge-to-edge with rounded corners
   =========================================================== */
.v-showcase__image,
section.v-showcase .v-showcase__image {
  border-radius: var(--v-radius-xl) !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: transparent !important;
  aspect-ratio: 4/5 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
  display: block !important;
}
.v-showcase__image img,
section.v-showcase .v-showcase__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.5s ease !important;
  border-radius: var(--v-radius-xl) !important;
}
.v-showcase__image:hover img {
  transform: scale(1.03) !important;
}


/* ===========================================================
   v29: Kill ALL section-level padding/margin gaps
   Each section handles its own padding internally now.
   =========================================================== */
.shopify-section {
  padding: 0 !important;
  margin: 0 !important;
}

/* Kill body grid row gaps */
body {
  grid-row-gap: 0 !important;
  row-gap: 0 !important;
}

main, main.content-for-layout, .content-for-layout {
  margin: 0 !important;
  padding: 0 !important;
}

/* Killed any remaining section-spacing CSS vars */
:root, .shopify-section {
  --spacing-sections-desktop: 0px !important;
  --spacing-sections-mobile: 0px !important;
}

/* Restore content-page padding for non-vevon templates that still need it
   (404, blog, etc.) */
.shopify-section .main-page-content,
.shopify-section .main-article,
.shopify-section .main-blog-card,
.shopify-section .article-template {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}


/* ===========================================================
   v30: NUKE all section padding (ultra-high specificity)
   =========================================================== */
.shopify-section:not(#a):not(#b):not(#c):not(#d):not(#e),
body .shopify-section,
main .shopify-section,
.shopify-section[id*="template"],
.shopify-section[id*="vevon"] {
  padding: 0 !important;
  margin: 0 !important;
}


/* ===========================================================
   v31: Hero responsive — proper mobile/tablet layout
   =========================================================== */

/* Tablet: 768-1024px — keep 2 cols but tighter */
@media (max-width: 1024px) and (min-width: 901px) {
  .v-hero--split { padding: 48px 0 !important; }
  .v-hero__split {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
    min-height: 460px !important;
  }
  .v-hero__title { font-size: 38px !important; }
  .v-hero__subtitle { font-size: 15px !important; }
  .v-hero__visual--single { height: 460px !important; }
  .v-hero__stats { gap: 28px !important; }
  .v-hero__stat-num { font-size: 26px !important; }
}

/* Mobile/small tablet: stack vertically */
@media (max-width: 900px) {
  section.v-hero--split,
  .v-hero--split {
    padding: 40px 0 !important;
  }
  .v-hero__split {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    min-height: auto !important;
    align-items: center !important;
  }
  .v-hero__content {
    order: 1 !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    align-items: center !important;
  }
  .v-hero--split .v-hero__badge {
    margin: 0 auto 16px !important;
  }
  .v-hero--split .v-hero__title {
    text-align: center !important;
    font-size: 32px !important;
    margin: 0 auto 16px !important;
    max-width: 90% !important;
    line-height: 1.15 !important;
  }
  .v-hero--split .v-hero__subtitle {
    text-align: center !important;
    margin: 0 auto 24px !important;
    font-size: 15px !important;
    max-width: 480px !important;
  }
  .v-hero--split .v-hero__cta {
    margin: 0 auto !important;
    padding: 13px 28px !important;
    font-size: 14px !important;
  }
  .v-hero--split .v-hero__stats {
    justify-content: center !important;
    margin-top: 32px !important;
    gap: 28px !important;
  }
  .v-hero--split .v-hero__stat-num {
    font-size: 24px !important;
    text-align: center !important;
  }
  .v-hero--split .v-hero__stat-label {
    text-align: center !important;
  }
  .v-hero__visual,
  .v-hero__visual--single {
    order: 2 !important;
    width: 100% !important;
    height: 360px !important;
    margin-top: 8px !important;
  }
  .v-hero__hero-image {
    width: 100% !important;
    height: 100% !important;
  }
  .v-hero__hero-image img {
    max-width: 90% !important;
    max-height: 100% !important;
  }
  .v-hero__floating-badge {
    font-size: 11px !important;
    padding: 7px 12px !important;
  }
  .v-hero__floating-badge--1 {
    top: 4% !important;
    left: 2% !important;
  }
  .v-hero__floating-badge--2 {
    bottom: 4% !important;
    right: 2% !important;
  }
}

/* Small phones */
@media (max-width: 600px) {
  .v-hero--split { padding: 32px 0 !important; }
  .v-hero__split { gap: 20px !important; }
  .v-hero--split .v-hero__title {
    font-size: 28px !important;
    letter-spacing: -0.5px !important;
  }
  .v-hero--split .v-hero__subtitle {
    font-size: 14px !important;
  }
  .v-hero__visual--single { height: 300px !important; }
  .v-hero--split .v-hero__stats {
    gap: 16px !important;
    margin-top: 24px !important;
  }
  .v-hero--split .v-hero__stat-num {
    font-size: 20px !important;
  }
  .v-hero--split .v-hero__stat-label {
    font-size: 11px !important;
  }
}

/* Tiny phones (<400px) */
@media (max-width: 400px) {
  .v-hero--split .v-hero__title { font-size: 24px !important; }
  .v-hero__visual--single { height: 260px !important; }
  .v-hero__floating-badge { display: none !important; }
  .v-hero--split .v-hero__stats {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-around !important;
  }
  .v-hero--split .v-hero__stats > div {
    flex: 1 1 30% !important;
  }
}


/* ===========================================================
   v32: Categories — 3 equal cards (new phones featured)
   =========================================================== */
.v-categories-img__grid {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: 16px !important;
}

/* "New" card uses lime/green gradient instead of bg image */
.v-cat-card--new::before {
  background: linear-gradient(135deg, #00a86b 0%, #007a4e 100%) !important;
  background-image: linear-gradient(135deg, rgba(0,168,107,0.95) 0%, rgba(0,122,78,0.95) 100%),
    url("/cdn/shop/files/Untitled_design_5.png?v=1777839713") !important;
  background-size: cover !important;
  background-position: center !important;
}
.v-cat-card--new::after {
  background: linear-gradient(180deg, rgba(0,168,107,0.0) 0%, rgba(0,122,78,0.6) 100%) !important;
}

.v-cat-card__badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #00a86b;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .v-categories-img__grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .v-cat-card--new {
    grid-column: span 2 !important;
  }
}
@media (max-width: 480px) {
  .v-categories-img__grid {
    grid-template-columns: 1fr !important;
  }
  .v-cat-card--new {
    grid-column: span 1 !important;
  }
}


/* ===========================================================
   v33: New Phones card — fresh user-supplied image
   =========================================================== */
.v-cat-card--new::before {
  background-image: url("/cdn/shop/files/Untitled_design_8.png?v=1777843978") !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: transparent !important;
}
.v-cat-card--new::after {
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%) !important;
}


/* ===========================================================
   v34: Cart UX — toast + ATC button states
   =========================================================== */

/* Loading state */
.v-product-card__atc.v-loading,
.v-pdp__atc.v-loading {
  opacity: 0.7;
  cursor: wait !important;
}

/* Added (success) state */
.v-product-card__atc.v-added,
.v-pdp__atc.v-added {
  background: var(--v-green) !important;
  border-color: var(--v-green) !important;
  color: #ffffff !important;
}
.v-product-card__atc.v-added svg,
.v-pdp__atc.v-added svg {
  vertical-align: middle;
  margin-right: 4px;
}

/* Toast notification */
.v-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  font-family: var(--v-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--v-text);
  max-width: 380px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
}
.v-toast.v-toast--show {
  transform: translateY(0);
  opacity: 1;
}
.v-toast--success svg {
  color: var(--v-green);
  flex-shrink: 0;
}
.v-toast--error {
  border-color: rgba(220, 38, 38, 0.2);
}
.v-toast--error svg {
  color: #dc2626;
  flex-shrink: 0;
}
.v-toast__cta {
  margin-left: auto;
  padding-left: 14px;
  border-left: 1px solid var(--v-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--v-black) !important;
  text-decoration: none;
  white-space: nowrap;
}
.v-toast__cta:hover {
  color: var(--v-green) !important;
}

@media (max-width: 600px) {
  .v-toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    font-size: 13px;
  }
  .v-toast__cta {
    font-size: 12px;
  }
}
