/* Vapor Depot — matches lovable_web design tokens */
:root {
  --vd-radius: 0.625rem;
  --vd-background: oklch(0.98 0.005 90);
  --vd-foreground: oklch(0.18 0.02 60);
  --vd-card: oklch(1 0 0);
  --vd-primary: oklch(0.72 0.16 55);
  --vd-primary-fg: oklch(0.15 0.02 60);
  --vd-muted: oklch(0.94 0.01 80);
  --vd-muted-fg: oklch(0.45 0.02 60);
  --vd-ink: oklch(0.15 0.01 60);
  --vd-ink-fg: oklch(0.98 0.005 90);
  --vd-border: oklch(0.88 0.01 80);
}

.vd-page {
  min-height: 100vh;
  background: var(--vd-background);
  color: var(--vd-foreground);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  margin: 0;
}

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

.vd-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.vd-hidden-sm {
  display: none;
}

@media (min-width: 640px) {
  .vd-hidden-sm {
    display: block;
  }
  .vd-inline-sm {
    display: inline;
  }
}

@media (min-width: 768px) {
  .vd-md-flex {
    display: flex;
  }
  .vd-md-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .vd-md-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .vd-md-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .vd-md-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .vd-lg-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Age gate */
.vd-age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--vd-ink) 90%, transparent);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.vd-age-gate.is-hidden,
html.vd-age-verified .vd-age-gate {
  display: none !important;
}

.vd-age-gate__card {
  background: var(--vd-card);
  width: 100%;
  max-width: 28rem;
  border-radius: var(--vd-radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 1px solid var(--vd-border);
}

.vd-age-gate__bar {
  height: 0.5rem;
  background: var(--vd-primary);
}

.vd-age-gate__body {
  padding: 2rem;
  text-align: center;
}

/* Warning bar */
.vd-warning {
  background: var(--vd-ink);
  color: var(--vd-ink-fg);
  font-size: 11px;
}

@media (min-width: 768px) {
  .vd-warning {
    font-size: 0.75rem;
  }
}

.vd-warning__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.vd-warning__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.025em;
}

.vd-warning__left svg {
  width: 1rem;
  height: 1rem;
  color: var(--vd-primary);
  flex-shrink: 0;
}

.vd-warning__left strong {
  font-weight: 600;
}

.vd-warning__text {
  opacity: 0.8;
}

.vd-warning__region {
  opacity: 0.7;
}

@media (max-width: 639px) {
  .vd-warning__text {
    display: none;
  }
}

/* Header */
.vd-header {
  border-bottom: 1px solid var(--vd-border);
  background: var(--vd-background);
  position: relative;
  z-index: 200;
  overflow: visible;
}

.vd-header__top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
}

.vd-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.vd-logo .vd-logo__mark {
  display: block;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  overflow: hidden;
  line-height: 0;
}

/* Elementor sets `.elementor img { border-radius: 0; height: auto; }` — override for header logo */
.vd-logo .vd-logo__mark img,
body.vd-branded-page .elementor img.vd-logo__mark,
body.vd-branded-page .elementor .vd-logo .vd-logo__mark img {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  max-width: none;
  border-radius: 0.625rem;
  object-fit: cover;
}

.vd-logo__mark--lg {
  width: 3.5rem;
  height: 3.5rem;
}

.vd-logo__text {
  line-height: 1;
}

.vd-logo__name {
  font-weight: 900;
  letter-spacing: -0.025em;
  font-size: 1.125rem;
  color: var(--vd-ink);
}

.vd-logo__tagline {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--vd-muted-fg);
}

.vd-search {
  flex: 1;
  display: none;
  align-items: stretch;
  border-radius: var(--vd-radius);
  border: 1px solid var(--vd-border);
  overflow: hidden;
  background: var(--vd-card);
}

@media (min-width: 768px) {
  .vd-search {
    display: flex;
  }
}

.vd-search select {
  padding: 0 0.75rem;
  font-size: 0.875rem;
  background: var(--vd-muted);
  border: none;
  border-right: 1px solid var(--vd-border);
  color: var(--vd-foreground);
}

.vd-search input[type="search"] {
  flex: 1;
  padding: 0 1rem;
  font-size: 0.875rem;
  border: none;
  background: transparent;
  outline: none;
}

.vd-search button {
  padding: 0 1.25rem;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  border: none;
  cursor: pointer;
  transition: filter 0.15s;
}

.vd-search button:hover {
  filter: brightness(0.95);
}

.vd-search button svg {
  width: 1rem;
  height: 1rem;
}

.vd-header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.vd-header__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vd-foreground);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}

.vd-header__link:hover {
  color: var(--vd-primary);
}

.vd-header__link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.vd-cart-btn {
  position: relative;
}

.vd-cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
}

/* Category nav */
.vd-catnav {
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  position: relative;
  z-index: 700;
  overflow: visible;
}

.vd-catnav__inner {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  overflow: visible;
}

.vd-catnav .vd-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
  color: var(--vd-primary-fg);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.vd-catnav .vd-nav__link:hover {
  background: var(--vd-ink);
  color: var(--vd-primary);
}

/* Legacy catnav links (non-vd-nav) */
.vd-catnav a:not(.vd-nav__link):not(.vd-nav__dropdown a) {
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.vd-catnav a:not(.vd-nav__link):not(.vd-nav__dropdown a):hover {
  background: var(--vd-ink);
  color: var(--vd-primary);
}

/* Hero */
.vd-hero {
  background: var(--vd-ink);
  color: var(--vd-ink-fg);
}

.vd-hero__inner {
  padding: 3rem 0;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vd-hero__inner {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 0;
  }
}

.vd-badge {
  display: inline-block;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border-radius: calc(var(--vd-radius) - 4px);
}

.vd-hero h1 {
  margin: 1.25rem 0 0;
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .vd-hero h1 {
    font-size: 3.75rem;
  }
}

.vd-hero h1 .vd-text-primary {
  color: var(--vd-primary);
}

.vd-hero__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgb(255 255 255 / 0.7);
  max-width: 28rem;
}

.vd-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  border-radius: calc(var(--vd-radius) - 4px);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.15s, background 0.15s;
}

.vd-btn--primary {
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
}

.vd-btn--primary:hover {
  filter: brightness(0.95);
}

.vd-btn--outline {
  border: 1px solid rgb(255 255 255 / 0.2);
  color: #fff;
  background: transparent;
}

.vd-btn--outline:hover {
  background: rgb(255 255 255 / 0.1);
}

.vd-btn--ink {
  background: var(--vd-ink);
  color: var(--vd-ink-fg);
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
}

.vd-btn--ink:hover {
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
}

.vd-btn--ghost {
  border: 1px solid var(--vd-border);
  color: var(--vd-muted-fg);
  background: transparent;
}

.vd-btn--ghost:hover {
  background: var(--vd-muted);
}

.vd-hero__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--vd-radius);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Value strip */
.vd-values {
  border-bottom: 1px solid var(--vd-border);
  background: var(--vd-card);
}

.vd-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .vd-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vd-value svg {
  width: 2rem;
  height: 2rem;
  color: var(--vd-primary);
  flex-shrink: 0;
}

.vd-value__title {
  font-weight: 700;
  font-size: 0.875rem;
}

.vd-value__sub {
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
}

/* Section headers */
.vd-section {
  padding: 3.5rem 0;
}

.vd-section--muted {
  background: color-mix(in oklch, var(--vd-muted) 50%, transparent);
  border-top: 1px solid var(--vd-border);
  border-bottom: 1px solid var(--vd-border);
}

.vd-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.vd-section__head--center {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.vd-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--vd-primary);
}

.vd-section h2:not(.vd-shop-card__name):not(.vd-product-detail__desc-title):not(.vd-shop-section__title):not(.vd-blogs-sidebar__title):not(.vd-shop-sidebar__title) {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--vd-ink);
  margin: 0.25rem 0 0;
}

@media (min-width: 768px) {
  .vd-section h2:not(.vd-shop-card__name):not(.vd-product-detail__desc-title):not(.vd-shop-section__title):not(.vd-blogs-sidebar__title):not(.vd-shop-sidebar__title) {
    font-size: 2.25rem;
  }
}

.vd-section__sub {
  font-size: 0.875rem;
  color: var(--vd-muted-fg);
  margin-top: 0.25rem;
}

.vd-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--vd-primary);
  text-decoration: none;
}

.vd-link:hover {
  text-decoration: underline;
}

@media (max-width: 639px) {
  .vd-link--hide-sm {
    display: none;
  }
}

/* Category tiles */
.vd-cats {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vd-cats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vd-cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--vd-radius);
  background: var(--vd-ink);
  display: block;
  text-decoration: none;
}

.vd-cat-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s, transform 0.5s;
}

.vd-cat-tile:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.vd-cat-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--vd-ink), color-mix(in oklch, var(--vd-ink) 40%, transparent), transparent);
}

.vd-cat-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  color: var(--vd-ink-fg);
}

.vd-cat-tile h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
}

.vd-cat-tile p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0.25rem 0 0;
}

.vd-cat-tile__cta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--vd-primary);
}

/* Products */
.vd-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .vd-products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .vd-products {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-product {
  background: var(--vd-card);
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  overflow: hidden;
  transition: border-color 0.15s;
}

.vd-product:hover {
  border-color: var(--vd-primary);
}

.vd-product__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--vd-muted);
}

.vd-product__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.vd-product:hover .vd-product__img-wrap img {
  transform: scale(1.05);
}

.vd-product__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: calc(var(--vd-radius) - 4px);
}

.vd-product__body {
  padding: 1rem;
}

.vd-product__brand {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--vd-muted-fg);
  font-weight: 700;
}

.vd-product__name {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

.vd-product__footer {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vd-product__price {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--vd-ink);
}

.vd-product__was {
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* Home — Top Products (simplified) */
.vd-home-products {
  padding: 3rem 0;
}

.vd-home-products__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vd-home-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vd-home-product {
  background: #fff;
  border: 1px solid var(--vd-border);
  transition: box-shadow 0.2s;
}

.vd-home-product:hover {
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.08);
}

.vd-home-product__link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.vd-home-product__img {
  background: var(--vd-muted);
  overflow: hidden;
}

.vd-home-product__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.vd-home-product__name {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1rem 1rem 0.2rem;
}

.vd-home-product__spec {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--vd-muted-fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 1rem 0.45rem;
  line-height: 1.3;
}

.vd-home-product__price {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--vd-primary);
  margin: 0 1rem 1.25rem;
}

.vd-home-product__price .vd-price-was {
  color: var(--vd-muted-fg);
  font-weight: 600;
}

.vd-home-product__price .vd-price-now {
  color: var(--vd-primary);
  font-weight: 800;
}

/* Home — Comments & Best Sellers */
.vd-home-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vd-home-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .vd-home-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vd-home-cards-grid--4,
  .vd-home-comments .vd-home-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .vd-home-comments .vd-home-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.vd-home-best-card--compact .vd-home-best-card__name {
  margin: 0.75rem 0.75rem 0.15rem;
  font-size: 0.8125rem;
}

.vd-home-best-card--compact .vd-home-best-card__spec,
.vd-home-best-card--compact .vd-home-best-card__flavor {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
  font-size: 0.625rem;
}

.vd-home-best-card--compact .vd-home-best-card__price {
  margin: 0 0.75rem 1rem;
  font-size: 1rem;
}

.vd-home-bundle-deal {
  padding: 3rem 0;
}

.vd-home-comments {
  padding: 3rem 0;
}

.vd-home-comment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgb(0 0 0 / 0.08);
  border-radius: var(--vd-radius);
  background: rgb(255 255 255 / 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.04);
}

.vd-home-comment-card__stars {
  color: var(--vd-primary);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.vd-home-comment-card__text {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--vd-foreground);
}

.vd-home-comment-card__author {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--vd-ink);
}

.vd-home-best-sellers {
  padding: 3rem 0;
  background: var(--vd-muted);
}

.vd-home-best-card {
  background: #fff;
  border: 1px solid var(--vd-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.vd-home-best-card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
  transform: translateY(-2px);
}

.vd-home-best-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.vd-home-best-card__img {
  background: var(--vd-muted);
  overflow: hidden;
}

.vd-home-best-card__img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.vd-home-best-card__name {
  margin: 1rem 1rem 0.2rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vd-home-best-card__spec {
  margin: 0 1rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vd-muted-fg);
  line-height: 1.3;
}

.vd-home-best-card__flavor {
  margin: 0 1rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vd-muted-fg);
}

.vd-home-best-card__price {
  margin: 0 1rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--vd-primary);
}

/* Home — Blog Posts */
.vd-home-blog {
  padding: 3rem 0 4rem;
  background: var(--vd-muted);
}

.vd-home-blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vd-home-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vd-home-blog-card {
  background: #fff;
  border: 1px solid var(--vd-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vd-home-blog-card__img {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.vd-home-blog-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.vd-home-blog-card:hover .vd-home-blog-card__img img {
  transform: scale(1.03);
}

.vd-home-blog-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vd-home-blog-card__date {
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.vd-home-blog-card__title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}

.vd-home-blog-card__title a {
  color: var(--vd-ink);
  text-decoration: none;
}

.vd-home-blog-card__title a:hover {
  color: var(--vd-primary);
}

.vd-home-blog-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--vd-muted-fg);
  margin: 0;
  flex: 1;
}

/* Brands */
.vd-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .vd-brands {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vd-brand {
  aspect-ratio: 5 / 2;
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  display: grid;
  place-items: center;
  background: var(--vd-card);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.vd-brand span {
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.125rem;
  color: var(--vd-ink);
  transition: color 0.15s;
}

.vd-brand:hover {
  background: var(--vd-ink);
  border-color: var(--vd-ink);
}

.vd-brand:hover span {
  color: var(--vd-primary);
}

/* Newsletter */
.vd-newsletter {
  background: var(--vd-ink);
  color: var(--vd-ink-fg);
}

.vd-newsletter__inner {
  padding: 3.5rem 0;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .vd-newsletter__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.vd-newsletter h2 {
  color: var(--vd-ink-fg);
}

.vd-newsletter p {
  color: rgb(255 255 255 / 0.7);
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.vd-newsletter__form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.vd-newsletter__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--vd-radius) - 4px);
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.2);
  color: var(--vd-ink-fg);
  outline: none;
}

.vd-newsletter__form input::placeholder {
  color: rgb(255 255 255 / 0.4);
}

.vd-newsletter__form input:focus {
  border-color: var(--vd-primary);
}

/* Footer */
.vd-footer {
  background: var(--vd-background);
  border-top: 1px solid var(--vd-border);
}

.vd-footer__grid {
  display: grid;
  gap: 1.4rem;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .vd-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.vd-footer__col {
  min-width: 0;
}

.vd-footer__desc {
  font-size: 0.875rem;
  color: var(--vd-muted-fg);
  max-width: 20rem;
  margin-top: 1rem;
}

.vd-footer h4 {
  font-weight: 900;
  font-size: 0.875rem;
  color: var(--vd-ink);
  margin: 0 0 0.525rem;
  letter-spacing: 0.1em;
}

.vd-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vd-footer li {
  margin-bottom: 0.35rem;
}

.vd-footer li:last-child {
  margin-bottom: 0;
}

.vd-footer a {
  font-size: 0.875rem;
  color: var(--vd-muted-fg);
  text-decoration: none;
  transition: color 0.15s;
}

.vd-footer a:hover {
  color: var(--vd-primary);
}

.vd-footer__bottom {
  border-top: 1px solid var(--vd-border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
}

@media (min-width: 768px) {
  .vd-footer__bottom {
    flex-direction: row;
  }
}

.vd-footer__legal {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

body.vape-elementor-home .mfp-hide,
body.vape-elementor-home #main-menu,
body.vape-elementor-home .mobile-sidebar,
body.vape-elementor-home .ux-body-overlay {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.vape-elementor-home .vd-el-footer ~ .elementor-section {
  display: none !important;
}

body.vape-elementor-home .elementor-widget-sidebar,
body.vape-elementor-home .elementor-widget-wp-widget-search,
body.vape-elementor-home .elementor-widget-wp-widget-nav_menu,
body.vape-elementor-home .widget_search,
body.vape-elementor-home .widget_nav_menu {
  display: none !important;
}

/* Elementor canvas — remove default gaps */
body.vape-elementor-home.elementor-template-canvas .elementor-section.vd-el-section > .elementor-container {
  max-width: none;
}

body.vape-elementor-home .elementor-widget-shortcode .elementor-shortcode {
  width: 100%;
}

body.vape-elementor-home .vd-product__price .woocommerce-Price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

body.vape-elementor-home .vd-brands {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 640px) {
  body.vape-elementor-home .vd-brands {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Hide default WP/Flatsome chrome on front page */
body.vd-front-page #wrapper,
body.vd-front-page .header-wrapper,
body.vd-front-page #footer {
  display: none !important;
}

body.vd-front-page {
  margin: 0 !important;
}

/* ── Site-wide branded page rules ── */
body.vd-branded-page .mfp-hide,
body.vd-branded-page #main-menu,
body.vd-branded-page .mobile-sidebar,
body.vd-branded-page .ux-body-overlay {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.vd-branded-page .vd-el-footer ~ .elementor-section {
  display: none !important;
}

body.vd-branded-page .elementor-widget-sidebar,
body.vd-branded-page .elementor-widget-wp-widget-search,
body.vd-branded-page .elementor-widget-wp-widget-nav_menu,
body.vd-branded-page .widget_search,
body.vd-branded-page .widget_nav_menu {
  display: none !important;
}

body.vd-branded-page.elementor-template-canvas .elementor-section.vd-el-section > .elementor-container {
  max-width: none;
}

body.vd-branded-page .elementor-widget-shortcode .elementor-shortcode {
  width: 100%;
}

/* ── Main nav + SHOP dropdown ── */
body.vd-branded-page .elementor-section.vd-el-header {
  position: relative;
  z-index: 500;
}

.vd-nav__inner {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  flex-wrap: wrap;
  overflow: visible;
}

.vd-nav__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.vd-nav__link:hover {
  color: var(--vd-primary);
}

.vd-nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: stretch;
}

.vd-nav__item--dropdown > .vd-nav__link {
  height: 100%;
}

.vd-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--vd-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 600;
  padding: 0.35rem 0;
}

.vd-catnav .vd-nav__dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  color: var(--vd-ink) !important;
  background: transparent;
  text-decoration: none;
}

.vd-catnav .vd-nav__dropdown a:hover {
  background: var(--vd-muted);
  color: var(--vd-primary) !important;
}

.vd-nav__item--dropdown:hover .vd-nav__dropdown,
.vd-nav__item--dropdown.is-open .vd-nav__dropdown,
.vd-nav__item--dropdown:focus-within .vd-nav__dropdown {
  display: block;
}

/* ── Hero carousel (full bleed horizontal banner) ── */
.vd-hero--carousel {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--vd-ink);
}

.vd-hero-carousel {
  position: relative;
  overflow: hidden;
}

.vd-hero-slide {
  display: none;
}

.vd-hero-slide.is-active {
  display: block;
}

.vd-hero-banner {
  display: block;
  width: 100%;
  line-height: 0;
}

.vd-hero-banner__img {
  width: 100%;
  aspect-ratio: 21 / 6;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .vd-hero-banner__img {
    aspect-ratio: 16 / 9;
  }
}

.vd-hero-carousel__prev,
.vd-hero-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--vd-border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.vd-hero-carousel__prev {
  left: 1rem;
  transform: translateY(-50%) rotate(180deg);
}

.vd-hero-carousel__next {
  right: 1rem;
  transform: translateY(-50%);
}

.vd-hero-carousel__dots {
  display: none !important;
}

/* ── Shop grid ── */
.vd-page-shop {
  padding: 2rem 0 3.5rem;
  --vd-shop-card-width: 17rem;
}

.vd-shop-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .vd-shop-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.vd-shop-sidebar {
  text-align: left;
}

.vd-shop-sidebar__title {
  margin: 0 0 1rem;
  font-size: 1.25rem; /* 与 Blogs Categories 标题一致 */
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: normal;
  color: var(--vd-fg);
}

.vd-shop-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

@media (max-width: 899px) {
  .vd-shop-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

.vd-shop-nav__link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--vd-fg);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}

.vd-shop-nav__link:hover {
  color: var(--vd-primary);
  background: color-mix(in oklch, var(--vd-primary) 10%, transparent);
}

.vd-shop-nav__link.is-active {
  background: color-mix(in oklch, var(--vd-primary) 22%, white);
  color: color-mix(in oklch, var(--vd-primary) 55%, black);
  font-weight: 700;
}

.vd-shop-main {
  min-width: 0;
}

.vd-shop-empty {
  margin: 0;
  color: var(--vd-muted-fg);
}

.vd-shop-header {
  text-align: left;
  margin: 0 0 1.75rem;
  padding: 0;
  border-bottom: none;
}

.vd-shop-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vd-ink);
}

.vd-shop-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, var(--vd-shop-card-width)));
  gap: 1.5rem 2rem;
  justify-content: start;
  justify-items: stretch;
  align-content: start;
}

@media (min-width: 480px) {
  .vd-shop-grid {
    grid-template-columns: repeat(2, minmax(0, var(--vd-shop-card-width)));
  }
}

@media (min-width: 768px) {
  .vd-shop-grid {
    grid-template-columns: repeat(3, minmax(0, var(--vd-shop-card-width)));
  }

  .vd-shop-grid--4 {
    grid-template-columns: repeat(4, minmax(0, var(--vd-shop-card-width)));
    --vd-shop-card-width: 14.5rem;
    gap: 1.25rem 1.5rem;
  }
}

.vd-shop-card {
  background: #fff;
  border: 1px solid var(--vd-border);
  transition: box-shadow 0.2s;
  width: 100%;
  max-width: var(--vd-shop-card-width);
}

.vd-shop-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.vd-shop-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.vd-shop-card__img {
  overflow: hidden;
  background: var(--vd-muted);
}

.vd-shop-card__img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.vd-shop-section--all-products .vd-shop-card__img {
  background: transparent;
}

.vd-shop-section--all-products .vd-shop-card__img img {
  aspect-ratio: 670 / 900;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.vd-shop-section--all-products .vd-shop-grid,
.vd-shop-section--bundles .vd-shop-grid {
  --vd-shop-card-width: 12.5rem;
}

@media (min-width: 768px) {
  .vd-shop-section--all-products .vd-shop-grid--4,
  .vd-shop-section--bundles .vd-shop-grid--4 {
    --vd-shop-card-width: 12.5rem;
    gap: 1.25rem 1.25rem;
  }
}

.vd-shop-section--all-products .vd-shop-card,
.vd-shop-section--bundles .vd-shop-card {
  max-width: var(--vd-shop-card-width);
}

.vd-shop-card:hover .vd-shop-card__img img {
  transform: scale(1.03);
}

.vd-shop-card__body {
  padding: 0.75rem 1rem 1.35rem;
  text-align: left;
  min-height: 4.75rem;
}

.vd-page-shop .vd-shop-card__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--vd-ink);
}

.vd-page-shop .vd-shop-card__spec {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--vd-muted-fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  line-height: 1.3;
}

.vd-shop-card__price {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--vd-primary);
  margin: 0;
}

.vd-shop-card__price .vd-price-was {
  color: var(--vd-muted-fg);
  font-weight: 600;
}

.vd-shop-card__price .vd-price-now {
  color: var(--vd-primary);
  font-weight: 800;
}

.vd-search-notice-inline {
  padding: 0 0 1.25rem;
  color: var(--vd-muted-fg);
  text-align: left;
}

/* ── Product detail ── */
.vd-product-detail {
  padding: 2.5rem 0 4rem;
}
.vd-product-detail__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vd-product-detail__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.vd-product-detail__media {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.vd-product-detail__media img {
  width: 100%;
  border: 1px solid var(--vd-border);
}

.vd-product-detail__img-wrap {
  flex: 0 0 auto;
  width: 70%;
  max-width: 100%;
  aspect-ratio: 896 / 1200;
  background: var(--vd-muted);
  border: 1px solid var(--vd-border);
  min-height: 0;
  overflow: hidden;
}

.vd-product-detail__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 896 / 1200;
  object-fit: contain;
  object-position: center;
}

.vd-product-detail__desc {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--vd-border);
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.vd-product-detail__desc-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--vd-muted-fg);
}

.vd-product-detail__desc-body :is(p, li, span, div, h2, h3, h4, h5, h6, strong, em, a) {
  font-size: inherit;
  line-height: inherit;
}

.vd-product-detail__desc-body :is(h2, h3, h4, h5, h6) {
  font-weight: 700;
  margin: 0 0 0.75rem;
  text-transform: none;
  letter-spacing: normal;
}

.vd-product-detail__desc-body p {
  margin: 0 0 0.75rem;
}

.vd-product-detail__desc-body p:last-child {
  margin-bottom: 0;
}

.vd-product-detail .vd-product-detail__desc-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vd-ink);
  margin: 0 0 0.75rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.vd-product-detail__buy {
  display: flex;
  flex-direction: column;
  max-width: none;
  min-height: 100%;
}

.vd-product-detail__buy-main {
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .vd-product-detail__buy {
    height: 100%;
    min-height: 100%;
  }
}

.vd-product-detail__title {
  font-size: 1.625rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.vd-product-detail__spec {
  font-size: 0.8125rem;
  color: var(--vd-muted-fg);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.vd-product-detail__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vd-ink);
  margin: 0 0 1.5rem;
}

.vd-product-detail__price--live {
  color: inherit;
}

.vd-product-detail__price del,
.vd-product-detail__price ins {
  text-decoration: none;
}

.vd-about-faq .vd-faq__static p:first-child {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vd-fg, inherit);
  margin-bottom: 1rem;
}

.vd-product-detail__price .vd-price-was,
.vd-product-pack__was,
.vd-price-was {
  color: var(--vd-muted-fg);
  text-decoration: line-through;
  font-weight: 600;
  font-size: 0.95em;
  margin-right: 0.5em;
}

.vd-product-detail__price .vd-price-now,
.vd-product-pack__now,
.vd-price-now {
  color: var(--vd-primary);
  font-weight: 800;
}

.vd-product-packs {
  margin-bottom: 1.25rem;
}

.vd-product-packs__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.vd-product-packs--buttons .vd-product-packs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}

.vd-product-pack {
  display: block;
  cursor: pointer;
  border: 1px solid var(--vd-border);
  background: transparent;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}

.vd-product-pack--btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  border-radius: 2px;
  min-width: 4.5rem;
}

.vd-product-pack.is-selected,
.vd-product-pack:has(.vd-product-pack__input:checked) {
  border-color: var(--vd-primary);
  background: rgb(255 255 255 / 0.6);
}

.vd-product-pack--btn.is-selected,
.vd-product-pack--btn:has(.vd-product-pack__input:checked) {
  background: var(--vd-primary);
  border-color: var(--vd-primary);
  color: #fff;
}

.vd-product-pack__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vd-product-pack__body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.vd-product-pack__name {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.vd-product-pack--btn .vd-product-pack__name {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.vd-product-pack__meta {
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
}

.vd-product-pack__prices {
  margin-left: auto;
  white-space: nowrap;
}

.vd-product-detail__price--live {
  margin: 0 0 0.85rem;
}

.vd-product-detail__media .vd-product-article {
  margin-top: 1.75rem;
}

.vd-info-page {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.vd-info-page__header {
  text-align: left;
  margin: 0 0 1.75rem;
  padding: 0;
}

.vd-info-page__body {
  text-align: left;
  max-width: none;
}

/* Align with HOME nav link text: container padding + nav link horizontal padding. */
.vd-info-page > .vd-container {
  padding-left: 15rem;
  padding-right: 15rem;
}

.vd-contact-page .vd-contact-details {
  max-width: 40rem;
}

.vd-contact-page__lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: var(--vd-muted-fg);
  line-height: 1.6;
  font-size: 0.9375rem;
  text-align: left;
}

.vd-product-stock {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--vd-muted-fg);
}

.vd-product-flavors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1rem 0;
}

@media (max-width: 639px) {
  .vd-product-flavors {
    grid-template-columns: 1fr;
  }
}

.vd-product-flavor-locked {
  margin: 0 0 1rem;
}

.vd-product-flavor-locked__value {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
}

.vd-product-article {
  margin-top: 2rem;
  max-width: 40rem;
}

.vd-product-article__subheading {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vd-product-article__section[hidden] {
  display: none !important;
}

.vd-product-article__text,
.vd-product-article__answer {
  margin: 0 0 0.75rem;
  line-height: 1.65;
}

.vd-product-article__question {
  margin: 1rem 0 0.35rem;
  font-weight: 700;
}

.vd-product-article__table-wrap {
  overflow-x: auto;
  margin: 0.75rem 0 1.25rem;
}

.vd-product-article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.vd-product-article__table th,
.vd-product-article__table td {
  border: 1px solid var(--vd-border);
  padding: 0.55rem 0.75rem;
  text-align: left;
}

.vd-product-article__table th {
  background: var(--vd-muted);
  font-weight: 700;
}

.vd-shop-card__stock {
  margin: 0;
  padding: 0 0 1rem;
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
}

.vd-shop-section {
  margin-bottom: 3rem;
}

.vd-page-shop .vd-shop-section__title {
  margin: 0 0 4rem;
  padding: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid #d0d0d0;
}

.vd-content-page h1,
.vd-contact-page h1,
.vd-content-page .vd-eyebrow,
.vd-contact-page .vd-eyebrow {
  text-align: left;
}

.vd-info-page h1.vd-shop-title,
.vd-info-page h2.vd-shop-title {
  text-align: left;
  margin: 0;
}

.vd-content-page__inner,
.vd-contact-page__inner {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

body.vd-branded-page h3.vd-about-block__subheading,
body.vd-branded-page .vd-info-page h3.vd-about-block__subheading,
body.vd-branded-page .vd-policy-body h3.vd-about-block__subheading {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  color: var(--vd-ink);
}

.vd-about-block__text {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  text-align: left;
  max-width: 48rem;
}

.vd-product-detail__form table.variations,
.vd-product-detail__form .reset_variations,
.vd-product-detail__form .woocommerce-variation-description,
.vd-product-detail__form .woocommerce-variation-price {
  display: none !important;
}

.vd-product-flavor {
  margin-bottom: 1.25rem;
}

.vd-product-flavor__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--vd-ink);
}

.vd-product-flavor__select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--vd-border);
  border-radius: calc(var(--vd-radius) - 4px);
  font-size: 0.875rem;
  background: #fff;
  color: var(--vd-ink);
}

.vd-product-detail__form .cart {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-product-quantity {
  margin-bottom: 1.25rem;
}

.vd-product-detail__form .quantity label.screen-reader-text {
  display: none !important;
}

.vd-product-detail__form .quantity.vd-qty-pill {
  margin-bottom: 0;
}

.quantity.vd-qty-pill label:not(.vd-product-flavor__label) {
  display: none !important;
}

.vd-qty-pill__control {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-width: 6.5rem;
  padding: 0.2rem 0.35rem;
  background: #f3f3f3;
  border: 1px solid var(--vd-border);
  border-radius: 999px;
}

.vd-qty-pill__btn {
  flex: 0 0 1.65rem;
  width: 1.65rem;
  height: 1.65rem;
  border: none;
  background: transparent;
  color: var(--vd-ink);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
}

.vd-qty-pill__btn:hover {
  background: rgb(0 0 0 / 0.06);
}

.vd-qty-pill__btn:disabled,
.vd-product-quantity.is-out-of-stock .vd-qty-pill__btn {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.vd-product-quantity.is-out-of-stock .quantity.vd-qty-pill input.qty {
  color: #8a8a8a;
}

.quantity.vd-qty-pill input.qty {
  width: 2.25rem;
  min-width: 2.25rem;
  max-width: 2.25rem;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  -moz-appearance: textfield;
  appearance: textfield;
}

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

.vd-product-detail__form .quantity > .minus,
.vd-product-detail__form .quantity > .plus,
.vd-product-detail__form .quantity > input[type="button"]:not(.vd-qty-pill__btn),
.vd-product-detail__form .quantity .ux-quantity__button {
  display: none !important;
}

.vd-product-detail__form .single_add_to_cart_button,
.vd-product-detail__form .vd-buy-now-button {
  width: 100%;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.vd-product-detail__form .single_add_to_cart_button {
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  border: none;
}

.vd-product-detail__form .single_add_to_cart_button:hover {
  opacity: 0.9;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
}

.vd-product-detail__form .vd-buy-now-button {
  margin-top: 0.65rem;
  background: transparent;
  color: var(--vd-primary);
  border: 2px solid var(--vd-primary);
}

.vd-product-detail__form .vd-buy-now-button:hover {
  opacity: 0.9;
  background: transparent;
  color: var(--vd-primary);
}

/* ── Cart ── */
.vd-cart-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vd-cart-layout {
    grid-template-columns: 1.5fr 1fr;
  }
}

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

.vd-cart-table th,
.vd-cart-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--vd-border);
  text-align: left;
}

.vd-cart-table th {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vd-ink);
}

.vd-cart-qty .quantity {
  margin: 0;
}

.vd-cart-product {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vd-cart-product img {
  width: 60px;
  height: 60px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: var(--vd-muted);
  border: 1px solid var(--vd-border);
}

.vd-cart-product__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.vd-cart-product__name {
  font-weight: 700;
  text-decoration: none;
  color: var(--vd-ink);
}

.vd-cart-product__meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--vd-muted-fg);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.vd-cart-product__meta-line {
  display: block;
}

.vd-cart-product__pack {
  margin: 0;
  font-size: 0.6875rem;
  color: var(--vd-muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-cart-qty__value {
  display: inline-block;
  min-width: 2rem;
  font-weight: 700;
  text-align: center;
}

.vd-cart-summary {
  background: var(--vd-muted);
  padding: 1.5rem;
  border: 1px solid var(--vd-border);
}

.vd-cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vd-cart-min-note {
  font-size: 0.85rem;
  color: var(--vd-muted-fg);
  margin-bottom: 1rem;
}

.vd-checkout-btn {
  width: 100%;
  text-align: center;
}

/* Add-to-cart success modal */
.vd-add-to-cart-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.vd-add-to-cart-modal[hidden] {
  display: none !important;
}

.vd-add-to-cart-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgb(0 0 0 / 0.45);
}

.vd-add-to-cart-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  border-radius: calc(var(--vd-radius) - 2px);
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.18);
  text-align: center;
}

.vd-add-to-cart-modal__title {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vd-ink);
}

.vd-add-to-cart-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.vd-add-to-cart-modal__actions .vd-btn {
  flex: 1 1 calc(50% - 0.3125rem);
  min-width: 0;
  max-width: calc(50% - 0.3125rem);
  width: auto;
  padding: 0.625rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.25;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
  white-space: normal;
}

.vd-add-to-cart-modal__btn-cart {
  background: var(--vd-primary);
  color: #fff;
}

.vd-add-to-cart-modal__btn-cart:hover {
  filter: brightness(0.95);
  color: #fff;
}

body.vd-modal-open {
  overflow: hidden;
}

/* ── Checkout (two-column: address left, order right) ── */
.vd-checkout-page {
  padding: 2rem 0 4rem;
}

.vd-checkout-page__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--vd-ink);
}

/* Flatsome checkout template uses .row > .large-7/.large-5 — grid CSS was dequeued on branded pages */
.vd-checkout-form > .woocommerce {
  display: block;
}

.vd-checkout-form form.checkout > .row {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

@media (min-width: 992px) {
  .vd-checkout-form form.checkout > .row {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 400px) !important;
    gap: 2.5rem 3rem;
    align-items: start;
  }

  .vd-checkout-form form.checkout > .row > .large-7 {
    grid-column: 1;
    grid-row: 1;
  }

  .vd-checkout-form form.checkout > .row > .large-5 {
    grid-column: 2;
    grid-row: 1;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
}

.vd-checkout-form form.checkout > .row > .col {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vd-checkout-form #customer_details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  float: none;
  margin: 0;
}

.vd-checkout-form #customer_details .clear {
  width: 100%;
  float: none;
}

.vd-checkout-form .woocommerce-billing-fields > h3,
.vd-checkout-form .woocommerce-shipping-fields,
.vd-checkout-form #ship-to-different-address {
  display: none !important;
}

.vd-checkout-section-title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vd-ink);
}

.vd-checkout-form .woocommerce-additional-fields > h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vd-ink);
}

.vd-checkout-form .woocommerce-billing-fields__field-wrapper,
.vd-checkout-form .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.vd-checkout-form .form-row {
  margin: 0 0 1rem;
  padding: 0;
  width: 100%;
  float: none;
  clear: both;
}

.vd-checkout-form #billing_country_field.hidden,
.vd-checkout-form .form-row.hidden {
  display: none !important;
}

.vd-checkout-form .woocommerce-additional-fields__field-wrapper .form-row {
  grid-column: 1 / -1;
}

.vd-checkout-form .form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vd-ink);
}

.vd-checkout-form .form-row .required {
  color: var(--vd-primary);
  text-decoration: none;
}

.vd-checkout-form .form-row input.input-text,
.vd-checkout-form .form-row select,
.vd-checkout-form .form-row textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--vd-border);
  border-radius: 4px;
  font-size: 0.9375rem;
  background: #fff;
  color: var(--vd-ink);
  box-sizing: border-box;
}

.vd-checkout-form .form-row textarea {
  min-height: 6rem;
  resize: vertical;
}

.vd-checkout-sidebar,
.vd-checkout-form .checkout-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vd-checkout-form .checkout-sidebar .col-inner {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.vd-checkout-form #order_review_heading {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--vd-ink);
}

.vd-checkout-form #order_review {
  background: #fff;
  border: 1px solid var(--vd-border);
  border-radius: calc(var(--vd-radius) - 4px);
  padding: 1.25rem 1.5rem 1.5rem;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  border: none;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table th,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--vd-border);
  font-size: 0.875rem;
  vertical-align: top;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vd-muted-fg);
  border-bottom: 1px solid var(--vd-border);
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .product-name {
  font-weight: 600;
  color: var(--vd-ink);
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  white-space: nowrap;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 0.5rem;
  row-gap: 0.2rem;
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--vd-muted-fg);
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dt,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dd {
  display: block;
  margin: 0;
  float: none;
  clear: none;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dt {
  font-weight: 600;
  white-space: nowrap;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dd,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dd p {
  display: block;
  margin: 0;
  font-weight: 400;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table dl.variation dd p {
  display: inline;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .fee th,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .shipping th {
  font-weight: 600;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table tfoot th,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table tfoot td {
  border-bottom: none;
  padding-top: 0.75rem;
}

/* Left column labels flush left; right column prices right-aligned and vertically matched. */
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table tfoot th {
  text-align: left !important;
  font-weight: 600;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .product-total,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table tfoot td {
  text-align: right !important;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .cart-subtotal td,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .fee td,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .shipping td {
  font-weight: 400;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .order-total th,
.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .order-total td {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 1rem;
  border-top: 1px solid var(--vd-border);
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .order-total th {
  text-align: left !important;
}

.vd-checkout-form .shop_table.woocommerce-checkout-review-order-table .order-total td {
  text-align: right !important;
}

.vd-checkout-form #payment {
  background: transparent;
  border-radius: 0;
}

.vd-checkout-form #payment .payment_methods {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  list-style: none;
}

.vd-checkout-form #payment .payment_methods li {
  margin: 0 0 0.75rem;
  padding: 0;
}

.vd-checkout-form .payment_method_fortune_paypal .payment_box:empty,
.vd-checkout-form .payment_method_fortune_stripe .payment_box:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.vd-checkout-form .payment_method_fortune_stripe .payment_box:not(:empty) {
  display: block !important;
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border: 1px solid var(--vd-border);
  border-radius: 4px;
  background: #fff;
}

.vd-checkout-form #payment .place-order {
  margin: 0;
  padding: 0;
}

.vd-checkout-form #place_order {
  width: 100%;
  margin: 0;
  padding: 0.85rem 1.25rem;
  background: var(--vd-primary);
  color: var(--vd-primary-fg);
  border: none;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.vd-checkout-form #place_order:hover {
  opacity: 0.9;
}

.vd-checkout-form #place_order.disabled,
.vd-checkout-form #place_order:disabled {
  opacity: 0.65;
  cursor: wait;
}

.vd-checkout-page .woocommerce-form-coupon-toggle,
.vd-checkout-page .checkout_coupon {
  display: none !important;
}

/* Keep checkout errors visible — payment failures must not fail silently */
.vd-checkout-page .woocommerce-notices-wrapper,
.vd-checkout-page .woocommerce-NoticeGroup-checkout,
.vd-checkout-form > .woocommerce > .woocommerce-notices-wrapper,
.vd-checkout-page form.checkout > .woocommerce-NoticeGroup,
.vd-checkout-errors {
  display: block !important;
  margin: 0 0 1rem;
}

.vd-checkout-page .woocommerce-error,
.vd-checkout-errors .woocommerce-error,
.vd-checkout-errors ul {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #f5c2c7;
  border-radius: 4px;
  background: #f8d7da;
  color: #842029;
}

.vd-checkout-page .woocommerce-error li,
.vd-checkout-errors li {
  margin: 0.25rem 0;
}

.vd-checkout-page .checkout-inline-error-message {
  display: none !important;
}

.vd-field-inline-error {
  font-weight: 400;
  font-size: 0.8125rem;
  color: #a00;
}

.vd-checkout-form .vd-form-row--error input.input-text,
.vd-checkout-form .vd-form-row--error select,
.vd-checkout-form .vd-form-row--error textarea {
  border-color: #a00;
}

.vd-checkout-page .woocommerce-info,
.vd-checkout-page .woocommerce-message {
  margin-bottom: 1.25rem;
}

/* ── Auth (single form) ── */
.vd-auth-page {
  padding: 3rem 0 4rem;
}

.vd-auth-page .vd-container {
  display: flex;
  justify-content: center;
}

.vd-auth-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  padding: 2rem 2rem 1.75rem;
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.06);
}

.vd-auth-card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
}

.vd-auth-sub {
  text-align: center;
  color: var(--vd-muted-fg);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

.vd-auth-sub--error {
  color: #c62828;
  font-weight: 600;
}

.vd-auth-sub--success {
  color: #2e7d32;
  font-weight: 600;
}

.vd-auth-card h1 + .vd-auth-form {
  margin-top: 1.25rem;
}

.vd-auth-forgot {
  margin: 0.85rem 0 0;
  text-align: right;
}

.vd-auth-forgot a {
  color: #1565c0;
  font-size: 0.8125rem;
  text-decoration: none;
}

.vd-auth-forgot a:hover {
  text-decoration: underline;
}

.vd-auth-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.vd-auth-field input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--vd-border);
  border-radius: calc(var(--vd-radius) - 4px);
  font-size: 0.95rem;
}

.vd-auth-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.vd-auth-actions .vd-btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.vd-btn--outline-dark {
  border: 1px solid var(--vd-border);
  background: #fff;
  color: var(--vd-ink);
}

.vd-btn--outline-dark:hover {
  background: var(--vd-muted);
}

.vd-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vd-form input,
.vd-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--vd-border);
  margin-bottom: 0.75rem;
}

/* ── Account ── */
.vd-account-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vd-account-layout {
    grid-template-columns: 200px 1fr;
  }
}

.vd-account-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vd-account-nav a {
  padding: 0.5rem 0;
  font-weight: 600;
  color: var(--vd-ink);
  text-decoration: none;
}

.vd-account-nav a:hover,
.vd-account-nav a.is-active {
  color: var(--vd-primary);
}

.vd-account-content .woocommerce-MyAccount-navigation {
  display: none;
}

/* Coupons — My Account */
.vd-coupons-page h2 {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.vd-coupons-block {
  margin: 0 0 1.75rem;
}

.vd-coupons-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-coupons-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.vd-coupons-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  background: #fff;
}

.vd-coupons-item--used {
  opacity: 0.7;
}

.vd-coupons-item__meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--vd-muted-fg);
}

.vd-coupons-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vd-coupons-badge--unused {
  color: #2e7d32;
}

.vd-coupons-badge--used {
  color: var(--vd-muted-fg);
}

.vd-coupons-empty {
  margin: 0;
  color: var(--vd-muted-fg);
  font-size: 0.9rem;
}

/* Checkout coupon picker */
.vd-checkout-coupons {
  margin: 0 0 1.25rem;
  padding: 1rem;
  border: 1px solid var(--vd-border);
  border-radius: var(--vd-radius);
  background: #fff;
  color: #1a1a1a;
}

/* CheckoutWC dark cart summary inherits white text — force readable contrast */
#cfw-cart-summary .vd-checkout-coupons,
#cfw-cart-summary .vd-checkout-coupons .vd-checkout-coupons__title,
#cfw-cart-summary .vd-checkout-coupons .vd-checkout-coupons__option,
#cfw-cart-summary .vd-checkout-coupons .vd-checkout-coupons__option span {
  color: #1a1a1a !important;
}

#cfw-cart-summary .vd-checkout-coupons {
  border-color: rgba(0, 0, 0, 0.12);
  background: #fff;
}

.vd-checkout-coupons__title {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
}

.vd-checkout-coupons__list {
  display: grid;
  gap: 0.5rem;
}

.vd-checkout-coupons__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #222;
  cursor: pointer;
}

.vd-checkout-coupons__option input[type="radio"] {
  flex-shrink: 0;
  accent-color: #1a1a1a;
}

.vd-checkout-coupons__msg {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #a00;
}

#cfw-cart-summary .vd-checkout-coupons__msg {
  color: #a00 !important;
}

.vd-checkout-coupons__msg.is-success {
  color: #2e7d32;
}

#cfw-cart-summary .vd-checkout-coupons__msg.is-success {
  color: #2e7d32 !important;
}

/* Coupon popup panel — above header/nav/add-to-cart UX */
.vd-coupon-popup {
  position: fixed !important;
  inset: 0 !important;
  z-index: 100000 !important;
  display: none !important;
  place-items: center;
  padding: 1rem;
  margin: 0;
  pointer-events: auto;
}

.vd-coupon-popup.is-open {
  display: grid !important;
}

.vd-coupon-popup__backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in oklch, var(--vd-ink) 55%, transparent);
  backdrop-filter: blur(3px);
}

.vd-coupon-popup__card {
  position: relative;
  z-index: 1;
  width: min(100%, 400px);
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--vd-radius);
  background: #fff;
  border: 1px solid var(--vd-border);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.18);
  text-align: center;
}

.vd-coupon-popup__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--vd-muted-fg);
}

.vd-coupon-popup__card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
}

.vd-coupon-popup__text {
  margin: 0 0 1.25rem;
  color: var(--vd-muted-fg);
  font-size: 0.95rem;
}

.vd-coupon-popup__status {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2e7d32;
}

.vd-coupon-popup__status.is-error {
  color: #a00;
}

.vd-coupon-popup__actions {
  display: flex;
  gap: 0.65rem;
}

.vd-coupon-popup__actions .vd-btn {
  flex: 1;
  justify-content: center;
}

/* Homepage virtual order broadcast */
.vd-order-toast-stack {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(calc(100vw - 2rem), 20rem);
  pointer-events: none;
}

.vd-order-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--vd-radius);
  background: #fff;
  border: 1px solid var(--vd-border);
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.vd-order-toast.is-in {
  opacity: 1;
  transform: translateY(0);
}

.vd-order-toast.is-out {
  opacity: 0;
  transform: translateY(-0.5rem);
}

.vd-order-toast__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--vd-primary);
}

.vd-order-toast__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--vd-foreground);
}

@media (max-width: 480px) {
  .vd-order-toast-stack {
    left: 0.65rem;
    bottom: 0.65rem;
    width: min(calc(100vw - 1.3rem), 18rem);
  }

  .vd-order-toast__text {
    font-size: 0.75rem;
  }
}

/* Password visibility: replace WooCommerce default glyph with eye icons */
.vd-account-page .password-input {
  display: block;
  position: relative;
}

.vd-account-page .password-input input.woocommerce-Input--password {
  padding-right: 2.75rem;
  width: 100%;
}

.vd-account-page .show-password-input {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.25rem 1.25rem;
  /* Closed eye (password hidden) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49'/%3E%3Cpath d='M14.084 14.158a3 3 0 0 1-4.242-4.242'/%3E%3Cpath d='M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-4.86'/%3E%3Cpath d='m2 2 20 20'/%3E%3C/svg%3E");
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: none;
}

.vd-account-page .show-password-input::before,
.vd-account-page .show-password-input::after {
  content: none !important;
  display: none !important;
}

.vd-account-page .show-password-input.display-password {
  /* Open eye (password visible) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}

.vd-account-page .woocommerce-Address-title h2,
.vd-account-page .woocommerce-address-fields h2 {
  font-size: 1.125rem;
  font-weight: 800;
}

/* ── Content pages ── */
.vd-content-page__inner,
.vd-prose {
  max-width: 720px;
}

.vd-info-page .vd-prose,
.vd-info-page .vd-content-page__inner,
.vd-info-page.vd-content-page .vd-container {
  max-width: none;
}

.vd-prose p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.vd-prose h2,
.vd-prose h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vd-faq {
  max-width: 48rem;
  text-align: left;
}

.vd-faq__section {
  margin: 0 0 2rem;
}

.vd-faq__heading {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vd-faq__static {
  margin: 0 0 1rem;
}

.vd-faq__answer {
  margin-top: 0.65rem;
}

.vd-faq__text {
  margin: 0 0 0.65rem;
  line-height: 1.7;
}

.vd-faq__list {
  margin: 0 0 0.85rem 1.25rem;
  padding: 0;
  line-height: 1.65;
}

.vd-faq__list li {
  margin: 0 0 0.35rem;
}

.vd-policy-body {
  max-width: 48rem;
}

.vd-policy-faq {
  margin-top: 0.25rem;
}

.vd-prose a {
  color: var(--vd-orange);
  text-decoration: underline;
}

.vd-prose a:hover {
  color: var(--vd-black);
}

.vd-contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vd-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.vd-contact-page__inner {
  max-width: none;
}

.vd-contact-page__intro {
  margin-bottom: 2rem;
}

.vd-contact-details {
  display: grid;
  gap: 1.25rem;
}

.vd-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--vd-border);
  border-radius: 4px;
  background: var(--vd-bg);
}

.vd-contact-detail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--vd-muted);
  color: var(--vd-primary);
  flex-shrink: 0;
}

.vd-contact-detail__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.vd-contact-detail__label {
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vd-muted-fg);
}

.vd-contact-detail__body a {
  color: var(--vd-fg);
  font-weight: 600;
  text-decoration: none;
}

.vd-contact-detail__body a:hover {
  color: var(--vd-primary);
  text-decoration: underline;
}

.vd-contact-detail__text {
  margin: 0;
  line-height: 1.65;
  color: var(--vd-fg);
}

.vd-faq__item {
  border-bottom: 1px solid var(--vd-border);
  padding: 1rem 0;
}

.vd-faq__item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.vd-faq__item summary::-webkit-details-marker {
  display: none;
}

.vd-faq__item summary::before {
  content: "+";
  display: inline-block;
  width: 1.1em;
  margin-right: 0.4rem;
  font-weight: 700;
  color: var(--vd-primary);
}

.vd-faq__item[open] summary::before {
  content: "−";
}

.vd-blog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .vd-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vd-blog-card {
  border: 1px solid var(--vd-border);
  padding: 1.25rem;
}

/* BLOGS listing page (Sipimo-style with category sidebar) */
.vd-blogs-page {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.vd-blogs-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .vd-blogs-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }
}

.vd-blogs-sidebar {
  text-align: left;
}

.vd-blogs-sidebar__title {
  margin: 0 0 1rem;
  font-size: 1.25rem; /* Categories 标题字号，改这里即可生效 */
  font-weight: 800;
  line-height: 1.3;
  color: var(--vd-fg);
}

.vd-blogs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

@media (max-width: 899px) {
  .vd-blogs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

.vd-blogs-nav__link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 4px;
  color: var(--vd-fg);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background 0.15s, color 0.15s;
}

.vd-blogs-nav__link:hover {
  color: var(--vd-primary);
  background: color-mix(in oklch, var(--vd-primary) 10%, transparent);
}

.vd-blogs-nav__link.is-active {
  background: color-mix(in oklch, var(--vd-primary) 22%, white);
  color: color-mix(in oklch, var(--vd-primary) 55%, black);
  font-weight: 700;
}

.vd-blogs-main {
  min-width: 0;
}

.vd-blogs-header {
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 0;
}

.vd-blogs-empty {
  margin: 1.5rem 0 0;
  color: var(--vd-muted-fg);
}

.vd-blogs-list {
  border-top: 1px solid var(--vd-border);
}

.vd-blogs-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--vd-border);
}

@media (min-width: 640px) {
  .vd-blogs-item {
    grid-template-columns: 220px 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.vd-blogs-item__img {
  display: block;
  overflow: hidden;
  border-radius: 4px;
}

.vd-blogs-item__img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vd-blogs-item__date {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--vd-muted-fg);
}

.vd-blogs-item__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
}

.vd-blogs-item__title a {
  color: var(--vd-fg);
  text-decoration: none;
}

.vd-blogs-item__title a:hover {
  color: var(--vd-primary);
}

.vd-blogs-item__excerpt {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: var(--vd-muted-fg);
}

.vd-blogs-item__more {
  font-weight: 500;
  color: var(--vd-primary);
  text-decoration: none;
}

.vd-blogs-item__more:hover {
  text-decoration: underline;
}

/* Blog single post */
.vd-blog-single {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.vd-blog-single__inner {
  max-width: 760px;
}

.vd-blog-single__back {
  display: inline-block;
  margin-bottom: 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vd-primary);
  text-decoration: none;
}

.vd-blog-single__back:hover {
  text-decoration: underline;
}

.vd-blog-single__hero {
  margin-bottom: 1.75rem;
  overflow: hidden;
  border-radius: 4px;
}

.vd-blog-single__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vd-blog-single__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vd-border);
}

.vd-blog-single__date {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--vd-muted-fg);
}

.vd-blog-single__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--vd-fg);
}

.vd-blog-single__content.vd-prose {
  max-width: none;
}

.vd-blog-single__content.vd-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.vd-blog-single__content.vd-prose ul,
.vd-blog-single__content.vd-prose ol {
  margin: 0 0 1rem 1.25rem;
  line-height: 1.7;
}

.vd-blog-single__content.vd-prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--vd-primary);
  background: var(--vd-muted);
  color: var(--vd-muted-fg);
}

.vd-blog-single__pages {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vd-border);
  font-size: 0.875rem;
}

.vd-blog-single__pages-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

body.vd-blog-single-page .entry-meta,
body.vd-blog-single-page .post-navigation,
body.vd-blog-single-page .navigation-post,
body.vd-blog-single-page #comments,
body.vd-blog-single-page .related-posts {
  display: none !important;
}

.vd-search-notice {
  padding: 1rem 0;
  color: var(--vd-muted-fg);
}

body.vd-branded-page .vd-brands {
  grid-template-columns: repeat(3, 1fr);
}

/* Hide stray Flatsome / duplicate icons outside VD chrome */
body.vd-branded-page .header-wrapper,
body.vd-branded-page #top-bar,
body.vd-branded-page .mobile-nav,
body.vd-branded-page .header-button,
body.vd-branded-page .icon-menu,
body.vd-branded-page .cart-item.has-icon:not(.vd-cart-btn),
body.vd-branded-page .elementor-section:not(.vd-el-section),
body.vd-branded-page .social-icons,
body.vd-branded-page .header-nav-social,
body.vd-branded-page .follow-icons,
body.vd-branded-page .header-social,
body.vd-branded-page a.icon-facebook,
body.vd-branded-page a.icon-instagram,
body.vd-branded-page a.icon-twitter,
body.vd-branded-page a.icon-envelop,
body.vd-branded-page .ux-social-icons {
  display: none !important;
}

body.vd-product-page .related.products,
body.vd-product-page .woocommerce-tabs,
body.vd-product-page .product_meta {
  display: none !important;
}

body.vd-shop-page .woocommerce-result-count,
body.vd-shop-page .woocommerce-ordering,
body.vd-shop-page .storefront-sorting,
body.vd-shop-page #sidebar,
body.vd-shop-page .sidebar,
body.vd-shop-page .shop-sidebar,
body.vd-shop-page .category-page-row,
body.vd-shop-page .woocommerce-notices-wrapper:not(:empty) {
  display: none !important;
}
