/* Vioiv cart drawer — closer Woobles-style side panel */

.vv-cd {
  --vv-cd-cream: #fdf9f3;
  --vv-cd-sand: #ebe9e1;
  --vv-cd-teal: #2fbcb3;
  --vv-cd-teal-deep: #26a9a1;
  --vv-cd-teal-ink: #0d6b64;
  --vv-cd-ink: #222222;
  --vv-cd-charcoal: #333333;
  --vv-cd-sale: #d1415a;
  --vv-cd-badge: #f0cb4d;
  --vv-cd-muted: #7a756e;
  --vv-cd-panel-w: min(430px, 100vw);
  --vv-cd-pad: 20px;
  --vv-cd-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --vv-cd-display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  position: fixed;
  inset: 0;
  z-index: 100050;
  pointer-events: none;
  visibility: hidden;
}

.vv-cd.is-open,
.vv-cd.is-closing {
  pointer-events: auto;
  visibility: visible;
}

.vv-cd.is-closing {
  pointer-events: none;
}

.vv-cd[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.vv-cd.is-open[hidden],
.vv-cd.is-closing[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.vv-cd.is-closing[hidden] {
  pointer-events: none;
}

.vv-cd__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 28, 0.45);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.vv-cd.is-open .vv-cd__backdrop {
  opacity: 1;
  transition: opacity 0.18s ease;
}

.vv-cd.is-closing .vv-cd__backdrop {
  opacity: 0;
  transition: opacity 0.2s ease 0.18s;
}

.vv-cd__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--vv-cd-panel-w);
  height: 100%;
  max-height: 100dvh;
  background: var(--vv-cd-cream);
  color: var(--vv-cd-ink);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.2);
  transform: translateX(104%);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  font-family: var(--vv-cd-font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior: none;
}

.vv-cd.is-open .vv-cd__panel {
  transform: translateX(0);
}

.vv-cd.is-closing .vv-cd__panel {
  transform: translateX(104%);
}

.vv-cd__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.vv-cd__loading {
  padding: 28px var(--vv-cd-pad);
  color: var(--vv-cd-muted);
  font-weight: 700;
}

.vv-cd__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px var(--vv-cd-pad) 10px;
  flex-shrink: 0;
}

.vv-cd__head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vv-cd__title {
  margin: 0;
  font-family: var(--vv-cd-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--vv-cd-ink);
}

.vv-cd__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--vv-cd-badge);
  color: var(--vv-cd-ink);
  font-family: var(--vv-cd-font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.vv-cd__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #e6e2d8;
  color: #444;
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.vv-cd__close-icon {
  display: block;
  flex: 0 0 auto;
}

.vv-cd__close:hover {
  background: #d9d4c8;
}

/* Progress — sits under header, above scroll */
.vv-cd__ship {
  flex-shrink: 0;
  margin: 0;
  padding: 2px var(--vv-cd-pad) 14px;
}

.vv-cd__ship-msg {
  margin: 0 0 12px;
  color: var(--vv-cd-teal-ink);
  font-family: var(--vv-cd-font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vv-cd__ship-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: #e4dfd3;
  overflow: visible;
}

.vv-cd__ship-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--vv-cd-teal-deep), var(--vv-cd-teal));
  border-radius: inherit;
  transition: width 0.35s ease;
}

.vv-cd__ship-dot {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-top: -13px;
  border-radius: 999px;
  background: #e4dfd3;
  color: transparent;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--vv-cd-cream);
  z-index: 1;
}

.vv-cd__ship-dot.is-mid {
  left: 50%;
  margin-left: -13px;
}

.vv-cd__ship-dot.is-end {
  right: 0;
}

.vv-cd__ship-dot.is-done {
  background: var(--vv-cd-teal);
  color: #fff;
}

.vv-cd__scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-anchor: none;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  min-height: 0;
  padding: 6px 0 8px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.vv-cd__body {
  padding: 0 var(--vv-cd-pad);
}

.vv-cd__unlock {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin: 0 var(--vv-cd-pad) 14px;
  border-radius: 14px;
  background: #d6f3ef;
}

.vv-cd__unlock-media img,
.vv-cd__unlock-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.vv-cd__unlock-label {
  margin: 0;
  color: var(--vv-cd-teal-ink);
  font-weight: 900;
  font-size: 0.95rem;
}

.vv-cd__unlock-name {
  margin: 2px 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
}

.vv-cd__empty-wrap {
  padding: 48px 12px 28px;
  text-align: center;
}

.vv-cd__empty-wrap .vv-empty-rec--drawer,
.vv-cd__empty-wrap .vv-cd__xsell {
  margin-top: 28px;
  text-align: left;
}

.vv-cd__empty {
  margin: 24px 0;
  color: var(--vv-cd-muted);
  text-align: center;
  font-family: var(--vv-cd-font);
  font-weight: 500;
  font-size: 0.95rem;
}

.vv-cd__btn--shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: #333 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--vv-cd-font);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.vv-cd__btn--shop:hover {
  background: #1f2326;
  color: #fff !important;
}

.vv-cd__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vv-cd__item {
  --vv-cd-thumb: 104px;
  position: relative;
  display: grid;
  grid-template-columns: var(--vv-cd-thumb) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 0 4px 0 0;
  min-height: var(--vv-cd-thumb);
}

.vv-cd__item-remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #b0aaa3;
  font-size: 1.15rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}

.vv-cd__item-remove:hover {
  color: #666;
}

.vv-cd__item-thumb {
  display: block;
  box-sizing: border-box;
  width: var(--vv-cd-thumb) !important;
  height: var(--vv-cd-thumb) !important;
  min-width: var(--vv-cd-thumb);
  min-height: var(--vv-cd-thumb);
  max-width: var(--vv-cd-thumb);
  max-height: var(--vv-cd-thumb);
  border-radius: 10px;
  overflow: hidden;
  background: transparent !important;
  line-height: 0;
  align-self: start !important;
  flex: none !important;
  position: relative;
  grid-row: 1;
}

.vv-cd__item-thumb::before,
.vv-cd__item-thumb::after {
  content: none !important;
  display: none !important;
}

.vv-cd__item-thumb .ct-media-container,
.vv-cd__item-thumb figure,
.vv-cd__item-thumb picture {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: var(--vv-cd-thumb) !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  position: static !important;
  aspect-ratio: auto !important;
}

.vv-cd__item-thumb img,
.vv-cd__item-img,
.vv-cd .vv-cd__item-thumb .attachment-woocommerce_thumbnail,
.vv-cd .vv-cd__item-thumb img {
  width: var(--vv-cd-thumb) !important;
  height: var(--vv-cd-thumb) !important;
  max-width: var(--vv-cd-thumb) !important;
  max-height: var(--vv-cd-thumb) !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px;
  background: transparent !important;
  vertical-align: top;
  aspect-ratio: auto !important;
}

/* Right column: title top, qty+price bottom — same height band as image */
.vv-cd__item-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-width: 0;
  min-height: var(--vv-cd-thumb);
  padding: 0 18px 0 0;
  gap: 8px;
}

.vv-cd__item-top {
  min-width: 0;
}

.vv-cd__item-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  margin: 0 10px 4px 0;
  color: var(--vv-cd-ink) !important;
  font-family: var(--vv-cd-font);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.015em;
  text-decoration: none !important;
  line-height: 1.25;
}

.vv-cd__item-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}

.vv-cd__item-sub {
  color: var(--vv-cd-ink, #152821);
  font-size: 0.75rem;
  font-weight: 600;
}

.vv-cd__item--custom .vv-cd__item-thumb {
  border-radius: 10px;
  overflow: hidden;
  background: #eef4f0;
}

.vv-cd__ship-badge {
  color: var(--vv-cd-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
}

/* Look + Style picker (cart line) */
.vv-cd__vars {
  margin: 6px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vv-cd__vars.is-busy {
  opacity: 0.65;
  pointer-events: none;
}

.vv-cd__vars-hint {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #8a5a12;
  letter-spacing: 0.01em;
}

.vv-cd__item--flash {
  animation: vv-cd-item-flash 0.85s ease;
}

@keyframes vv-cd-item-flash {
  0%,
  100% {
    background: transparent;
  }
  35% {
    background: rgba(196, 137, 42, 0.12);
  }
}

.vv-cd__var-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.vv-cd__var-label {
  display: block;
  margin: 0;
  color: var(--vv-cd-ink, #152821);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.vv-cd__var-selected {
  font-style: normal;
  font-weight: 500;
  color: var(--vv-cd-ink, #152821);
}

.vv-cd__looks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.vv-cd__look {
  box-sizing: border-box;
  width: auto;
  min-width: 68px;
  max-width: 78px;
  min-height: 0;
  padding: 4px;
  border: 2px solid #e8e2da;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  appearance: none;
  -webkit-appearance: none;
}

.vv-cd__look.is-on {
  border-color: #1a1a1a;
  box-shadow: none;
}

.vv-cd__look-media {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f0ea;
  flex-shrink: 0;
}

.vv-cd__look-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vv-cd__look-fallback {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
}

.vv-cd__look-name {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 1px 2px;
  color: #2a2a2a;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vv-cd__styles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.vv-cd__style {
  margin: 0;
  flex: 0 1 auto;
  min-width: 0;
  padding: 8px 12px;
  border: 1.5px solid #d5cfc4;
  border-radius: 10px;
  background: #fff;
  color: #2a2a2a;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.vv-cd__style.is-on {
  border-color: #1a1a1a;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 0 0 1px #1a1a1a;
}

.vv-cd__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.vv-cd__item-row .vv-cd__price,
.vv-cd__item-row .vv-cd__price--sale {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.vv-cd__item-row .vv-cd__price--sale ins {
  font-size: 1.05rem;
  font-weight: 800;
  order: 0;
}

.vv-cd__item-row .vv-cd__price--sale del {
  font-size: 0.7rem;
  font-weight: 500;
  margin-right: 0;
  opacity: 0.75;
  order: 1;
}

/* Compact stepper: circular ±, no outer frame (avoids wide empty pill) */
.vv-cd__qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 auto;
  width: fit-content;
  max-width: max-content;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.vv-cd__qty-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #efeae0;
  color: var(--vv-cd-charcoal);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
  touch-action: manipulation;
  user-select: none;
  flex: 0 0 28px;
}

/* Geometric − / + so the mark sits dead-center (font glyphs sit high) */
.vv-cd__qty-btn::before,
.vv-cd__qty-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vv-cd__qty-btn::before {
  width: 10px;
  height: 1.5px;
}

.vv-cd__qty-btn[data-vv-cd-qty="plus"]::after {
  width: 1.5px;
  height: 10px;
}

.vv-cd__qty-btn[data-vv-cd-qty="plus"] {
  background: rgba(47, 188, 179, 0.2);
  color: var(--vv-cd-teal-ink);
}

.vv-cd__qty-btn:hover:not(:disabled) {
  background: rgba(47, 188, 179, 0.28);
  color: var(--vv-cd-teal-ink);
}

.vv-cd__qty-btn:active:not(:disabled) {
  transform: scale(0.9);
}

.vv-cd__qty-btn:disabled {
  background: #f0ebe3;
  color: #b0a99c;
  opacity: 1;
  cursor: not-allowed;
}

.vv-cd__qty-val {
  box-sizing: border-box;
  width: 1.5rem !important;
  min-width: 1.5rem !important;
  max-width: 2rem !important;
  flex: 0 0 1.5rem;
  height: 28px;
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 4px;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
  font-family: var(--vv-cd-font);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--vv-cd-ink);
  line-height: 28px;
  letter-spacing: -0.02em;
  -moz-appearance: textfield;
  appearance: textfield;
}

.vv-cd__qty-val::-webkit-outer-spin-button,
.vv-cd__qty-val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.vv-cd__qty-val:focus {
  outline: none;
  background: #f3eee4 !important;
}

.vv-cd__toast {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 5;
  max-width: calc(100% - 32px);
  padding: 10px 14px;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-family: var(--vv-cd-font);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vv-cd__toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vv-cd__toast[hidden] {
  display: block !important;
  opacity: 0;
  pointer-events: none;
}

.vv-cd__toast.is-on[hidden] {
  opacity: 1;
}

/* Shop feedback — soft chip above the floating cart (not a heavy black bar) */
.vv-shop-toast {
  position: fixed;
  left: 50%;
  /* Sit lower, near the floating cart (not mid-card) */
  bottom: max(100px, calc(env(safe-area-inset-bottom, 0px) + 92px));
  z-index: 100050;
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: min(86vw, 280px);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(40, 36, 32, 0.08);
  border-radius: 14px;
  background: rgba(255, 252, 248, 0.96);
  color: #2a2622;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-align: left;
  box-shadow:
    0 1px 2px rgba(40, 36, 32, 0.04),
    0 10px 28px rgba(40, 36, 32, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  cursor: default;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.vv-shop-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.vv-shop-toast[data-vv-open-cart] {
  cursor: pointer;
}

.vv-shop-toast__msg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  color: #3a3530;
  white-space: nowrap;
}

.vv-shop-toast__msg::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3d7a5f;
  box-shadow: 0 0 0 3px rgba(61, 122, 95, 0.16);
  flex: 0 0 auto;
}

.vv-shop-toast__action {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px 11px 12px;
  border-left: 1px solid rgba(40, 36, 32, 0.08);
  color: #2f6b4f;
  font-weight: 600;
  white-space: nowrap;
}

.vv-shop-toast:not([data-vv-open-cart]) .vv-shop-toast__msg {
  padding: 11px 16px;
}

/* Added / success — green chip, not gray */
.vv-shop-toast.is-success {
  border-color: rgba(47, 107, 79, 0.22);
  background: rgba(236, 247, 241, 0.98);
  color: #1a3329;
  box-shadow:
    0 1px 2px rgba(47, 107, 79, 0.06),
    0 10px 28px rgba(40, 36, 32, 0.1);
}

.vv-shop-toast.is-success .vv-shop-toast__msg {
  color: #1a3329;
  font-weight: 600;
}

.vv-shop-toast.is-success .vv-shop-toast__msg::before {
  background: #2f6b4f;
  box-shadow: 0 0 0 3px rgba(47, 107, 79, 0.2);
}

/* Removed — keep quieter */
.vv-shop-toast.is-neutral {
  border-color: rgba(40, 36, 32, 0.1);
  background: rgba(255, 252, 248, 0.96);
}

.vv-shop-toast.is-neutral .vv-shop-toast__msg {
  color: #3a3530;
  font-weight: 500;
}

.vv-shop-toast.is-neutral .vv-shop-toast__msg::before {
  background: #8a8580;
  box-shadow: 0 0 0 3px rgba(138, 133, 128, 0.14);
}

/* Floating cart — cream chip + Cart label + green qty (draggable) */
.vv-cart-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(72px, calc(env(safe-area-inset-bottom, 0px) + 64px));
  left: auto;
  top: auto;
  z-index: 100040;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 68px;
  min-height: 68px;
  margin: 0;
  padding: 10px 8px 9px;
  border: 1px solid rgba(40, 36, 32, 0.1);
  border-radius: 20px;
  background: rgba(255, 252, 248, 0.98);
  color: #2a2622;
  box-shadow:
    0 1px 2px rgba(40, 36, 32, 0.04),
    0 12px 28px rgba(40, 36, 32, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: grab;
  touch-action: none;
  appearance: none;
  -webkit-appearance: none;
  transform: translateY(14px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.vv-cart-fab.is-dragging {
  cursor: grabbing;
  transition: none;
  transform: scale(1.04);
  box-shadow:
    0 2px 6px rgba(40, 36, 32, 0.08),
    0 16px 36px rgba(40, 36, 32, 0.18);
}

.vv-cart-fab.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vv-cart-fab.is-visible.is-dragging {
  transform: scale(1.04);
}

/* hidden 必须压过 is-visible，空车绝不能露出来 */
.vv-cart-fab[hidden] {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) scale(0.94) !important;
}

/* FAB on home / shop(+tax) / PDP / Custom (body.vv-show-cart-fab). Header cart unchanged. */
body:not(.vv-show-cart-fab) #vv-cart-fab,
body:not(.vv-show-cart-fab) #vv-cart-fab.is-visible {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.vv-cart-fab:hover,
.vv-cart-fab:focus-visible {
  background: #fff;
  border-color: rgba(47, 107, 79, 0.35);
  color: #245c48;
  outline: none;
}

.vv-cart-fab__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  line-height: 1;
  pointer-events: none;
}

.vv-cart-fab__icon {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.92;
}

.vv-cart-fab__label {
  display: block;
  margin-top: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: inherit;
  white-space: nowrap;
}

.vv-cart-fab__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border: 2px solid #fffaf6;
  border-radius: 999px;
  background: #2f6b4f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.vv-cart-fab__count[data-count="0"],
.vv-cart-fab__count:empty {
  display: none;
}

.vv-cart-fab.is-pulse {
  animation: vv-cart-fab-pulse 0.5s ease;
}

.vv-cart-fab.is-dragging.is-pulse {
  animation: none;
}

@keyframes vv-cart-fab-pulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

body.vv-cd-lock .vv-cart-fab,
body.vv-cd-lock .vv-shop-toast,
body.vv-cd-lock .vv-dock {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Cart sits in the Help dock as the right half */
.vv-dock .vv-cart-fab {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  top: auto;
  z-index: auto;
  flex-direction: row;
  width: auto;
  min-width: 72px;
  min-height: 0;
  padding: 10px 16px 10px 14px;
  border: 0;
  border-left: 1px solid #ececec;
  border-radius: 0 18px 18px 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: grab;
  touch-action: none;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

html.vv-help-open .vv-dock .vv-cart-fab,
.vv-help.is-open:not(.is-closing) .vv-dock .vv-cart-fab {
  pointer-events: none !important;
}

.vv-dock .vv-cart-fab__inner {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.vv-dock .vv-cart-fab__label {
  margin-top: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.vv-dock .vv-cart-fab.is-visible {
  opacity: 1;
  transform: none;
}

.vv-dock .vv-cart-fab[hidden] {
  display: none !important;
}

.vv-dock .vv-cart-fab:hover,
.vv-dock .vv-cart-fab:focus-visible {
  background: #f6f6f6;
  border-color: #ececec;
  color: #2a2622;
}

.vv-dock .vv-cart-fab__count {
  top: -7px;
  right: -4px;
}

.vv-dock .vv-cart-fab.is-pulse {
  animation: none;
}

.vv-dock .vv-cart-fab.is-pulse .vv-cart-fab__count {
  animation: vv-cart-fab-pulse 0.5s ease;
}

@media (max-width: 719px) {
  .vv-dock .vv-cart-fab {
    min-width: 0;
    padding: 11px 13px 11px 11px;
    border-radius: 0 16px 16px 0;
  }

  .vv-dock .vv-cart-fab__label {
    display: none;
  }

  .vv-dock .vv-cart-fab__inner {
    gap: 0;
  }

  .vv-dock .vv-cart-fab__count {
    top: -5px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 14px;
  }
}

.vv-shop-card-atc-plus.vv-plus-pop {
  animation: vv-plus-pop 0.35s ease;
}

@keyframes vv-plus-pop {
  0% {
    transform: scale(0.86);
  }
  55% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.vv-cd__price {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--vv-cd-ink);
}

.vv-cd__price .amount,
.vv-cd__price bdi {
  color: inherit;
}

.vv-cd__price--sale del,
.vv-cd__sub-del {
  color: #9a9590 !important;
  font-weight: 500;
  margin-right: 0;
  margin-left: 2px;
  text-decoration: line-through;
  font-size: 0.72em;
}

.vv-cd__price--sale del .amount,
.vv-cd__sub-del .amount {
  color: #9a9590 !important;
}

.vv-cd__price--sale ins {
  text-decoration: none;
  color: var(--vv-cd-sale) !important;
  font-weight: 800;
}

.vv-cd__price--sale ins .amount,
.vv-cd__price--sale ins bdi {
  color: var(--vv-cd-sale) !important;
}

/* Upsell — Woobles row: [img] [title + gray price] [Add] */
.vv-cd__xsell {
  margin: 22px var(--vv-cd-pad) 8px;
  padding: 16px 14px 14px;
  background: var(--vv-cd-sand);
  border-radius: 14px;
}

.vv-cd__xsell-title {
  margin: 0 0 12px;
  font-family: var(--vv-cd-display);
  color: #00473e !important;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vv-cd__xsell-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vv-cd__xsell-item {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.vv-cd__xsell-main {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none !important;
  color: #1c1c1c !important;
  background: transparent !important;
  box-shadow: none !important;
}

.vv-cd__xsell-main:hover,
.vv-cd__xsell-main:focus {
  text-decoration: none !important;
  color: #1c1c1c !important;
}

.vv-cd__xsell-thumb {
  flex: 0 0 56px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 8px;
  overflow: hidden;
  background: #ece8df;
  display: block !important;
}

.vv-cd__xsell-thumb img,
.vv-cd__xsell-img,
.vv-cd a.vv-cd__xsell-main img {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 8px;
  margin: 0 !important;
}

.vv-cd__xsell-body {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}

.vv-cd__xsell-name,
.vv-cd a.vv-cd__xsell-main .vv-cd__xsell-name,
.vv-cd .vv-cd__xsell-item a {
  display: block;
  margin: 0;
  font-family: var(--vv-cd-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #222 !important;
  text-decoration: none !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.vv-cd__xsell-main:hover .vv-cd__xsell-name,
.vv-cd a.vv-cd__xsell-main:hover .vv-cd__xsell-name {
  text-decoration: underline !important;
  color: #1c1c1c !important;
}

/* Kill theme link-blue on upsell rows (common when main window has stale CSS). */
.vv-cd .vv-cd__xsell a,
.vv-cd .vv-cd__xsell a:visited,
.vv-cd .vv-cd__xsell .amount {
  color: inherit !important;
}

.vv-cd__xsell-body .vv-cd__price,
.vv-cd__xsell-body .vv-cd__price .amount,
.vv-cd__xsell-body .vv-cd__price bdi,
.vv-cd__xsell-body .woocommerce-Price-amount {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #6f6a64 !important;
  line-height: 1.2;
  letter-spacing: 0;
}

.vv-cd__xsell-body .vv-cd__price--sale ins,
.vv-cd__xsell-body .vv-cd__price--sale ins .amount {
  color: var(--vv-cd-sale) !important;
  font-weight: 800 !important;
}

.vv-cd__btn {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1;
  font-family: inherit;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.vv-cd__btn--add {
  padding: 9px 13px;
  min-width: 50px;
  height: 34px;
  border-radius: 6px;
  background: #333 !important;
  color: #fff !important;
  font-family: var(--vv-cd-font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.vv-cd__btn--add:hover {
  background: #1f2326 !important;
  color: #fff !important;
}

.vv-cd__btn--add:disabled,
.vv-cd__checkout[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

/* Sticky teal footer */
.vv-cd__foot {
  flex-shrink: 0;
  background: var(--vv-cd-teal);
  color: #fff;
  padding: 16px var(--vv-cd-pad) 14px;
}

.vv-cd__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.vv-cd__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--vv-cd-font);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.vv-cd__ship-note {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.vv-cd__total-row--sub {
  font-size: 0.95rem;
  font-weight: 700;
}

.vv-cd__total-row--disc {
  font-size: 0.88rem;
}

.vv-cd__disc-tag,
.vv-cd__disc-label {
  font-weight: 600;
}

.vv-cd__disc-tag {
  display: inline-flex;
  align-items: center;
  max-width: 70%;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vv-cd__disc-amt {
  font-weight: 700;
}

/* Woobles-like: subtotal amount reads as dark ink on teal */
.vv-cd__sub {
  font-family: var(--vv-cd-font);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #141414;
}

.vv-cd__sub .amount,
.vv-cd__sub bdi,
.vv-cd__sub .woocommerce-Price-amount {
  color: #141414 !important;
}

.vv-cd__sub-del,
.vv-cd__sub-del .amount {
  color: rgba(20, 20, 20, 0.45) !important;
}

.vv-cd__checkout {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 10px;
  background: #333 !important;
  background-color: #333 !important;
  color: #fff !important;
  text-decoration: none !important;
  font-family: var(--vv-cd-font);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  box-shadow: none;
  border: 0 !important;
}

.vv-cd__checkout:hover,
.vv-cd__checkout:focus {
  background: #1f1f1f !important;
  background-color: #1f1f1f !important;
  color: #fff !important;
}

.vv-cd__checkout.is-blocked,
.vv-cd__checkout.is-blocked:hover,
.vv-cd__checkout.is-blocked:focus {
  opacity: 0.55;
  cursor: not-allowed;
  background: #3a3a3a !important;
  background-color: #3a3a3a !important;
}

.vv-cd__checkout-hint {
  margin: 6px 0 0;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

.vv-cd__trust {
  margin: 12px 0 0;
  padding: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-family: var(--vv-cd-font);
  color: #fff;
}

.vv-cd__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.vv-cd__secure-ico {
  flex: 0 0 auto;
  display: block;
  color: #fff;
}

.vv-cd__pays {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.vv-cd__pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 26px;
  margin: 0;
  padding: 2px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(13, 79, 74, 0.18);
  line-height: 0;
  overflow: hidden;
}

.vv-cd__pay img,
.vv-cd__pay .vv-pay-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vv-cd__pay--paypal img,
.vv-cd__pay--paypal .vv-pay-icon {
  object-fit: contain;
  padding: 1px 2px;
}

.vv-cd__assures {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  margin: 14px 0 2px;
  padding: 0;
  list-style: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.vv-cd__assures li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  color: #2a2a2a;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-align: center;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vv-cd__usp-check {
  flex: 0 0 auto;
  display: block;
  width: 15px;
  height: 15px;
  color: #2a2a2a;
}

.vv-cd__usp-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.vv-cd__usp-copy strong,
.vv-cd__usp-copy span {
  display: block;
  font-weight: 500;
  color: inherit;
  white-space: nowrap;
  text-align: center;
}

.vv-cd__assure-ico {
  display: none;
}

/* Busy state */
.vv-cd.is-busy .vv-cd__panel {
  cursor: wait;
}

.vv-cd.is-busy .vv-cd__qty-btn,
.vv-cd.is-busy .vv-cd__item-remove,
.vv-cd.is-busy .vv-cd__btn--add,
.vv-cd.is-busy .vv-cd__look,
.vv-cd.is-busy .vv-cd__style {
  pointer-events: none;
  opacity: 0.65;
}

/* Soft-refresh used to dim the whole panel (opacity 0.92) — felt like a fade-in. */

/*
 * Always hide Blocksy dropdown mini-cart when this stylesheet loads.
 * Do NOT gate on html.vv-cd-ready (JS) — that caused logged-in / guest /
 * normal / incognito to fall back to different cart UIs when JS/CSS lagged.
 */
.ct-header-cart .ct-cart-content,
.ct-header-cart [class*="ct-cart-content"],
html.vv-cd-ready .ct-header-cart .ct-cart-content {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/*
 * Desktop: JS freezes page scroll (do not overflow:hidden — scrollbar jump).
 * Mobile full-screen: page is covered, overflow:hidden is safe and stops jitter.
 */
body.vv-cd-lock {
  overscroll-behavior: none;
}

@media (max-width: 719px) {
  .vv-cd {
    --vv-cd-panel-w: 100vw;
    --vv-cd-pad: 16px;
  }

  .vv-cd__panel {
    width: 100vw;
    max-width: 100%;
    box-shadow: none;
  }

  html.vv-cd-lock,
  body.vv-cd-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  .vv-cd__foot {
    padding: 10px var(--vv-cd-pad) calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .vv-cd__totals {
    gap: 4px;
    margin-bottom: 8px;
  }

  .vv-cd__checkout {
    min-height: 44px;
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .vv-cd__trust {
    margin: 6px 0 0;
    padding: 6px 0 0;
  }

  .vv-cd__secure {
    font-size: 0.7rem;
    gap: 5px;
  }

  .vv-cd__pays {
    gap: 4px;
    margin: 6px 0 0;
  }

  .vv-cd__pay {
    width: 34px;
    height: 22px;
  }

  .vv-cd__assures {
    gap: 6px;
    margin: 12px 0 0;
  }

  .vv-cd__assures li {
    font-size: 11.5px;
    gap: 6px;
  }

  .vv-cd__usp-check {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .vv-cd__item {
    --vv-cd-thumb: 92px;
    grid-template-columns: var(--vv-cd-thumb) minmax(0, 1fr);
  }
}
