/** Shopify CDN: Minification failed

Line 17:0 All "@import" rules must come first

**/
/* =============================================
   VIP Club V4 — Value Calculator
   Namespace: vc4__   |   CSS Vars: --vc4-
   ============================================= */

/* ---------- Hard Reset ---------- */
.vc4 *,
.vc4 *::before,
.vc4 *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ---------- Root Variables ---------- */
.vc4 {
  --vc4-page-bg: #ffffff;
  --vc4-card-bg: #ffffff;
  --vc4-border: #e5e7eb;
  --vc4-text: #212529;
  --vc4-text-muted: #6b7280;
  --vc4-primary: #2563eb;
  --vc4-primary-fg: #ffffff;
  --vc4-success: #22c55e;
  --vc4-success-fg: #ffffff;
  --vc4-warning: #f59e0b;
  --vc4-radius: 16px;
  --vc4-radius-sm: 12px;
  --vc4-radius-xs: 6px;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--vc4-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Layout ---------- */
.vc4__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--vc4-page-bg);
}

/* ---------- Gallery ---------- */
.vc4__gallery {
  position: sticky;
  top: 60px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vc4__main-img {
  width: 100%;
  aspect-ratio: 2254 / 2600;
  background: #ffffff;
  border-radius: var(--vc4-radius);
  overflow: hidden;
  position: relative;
}

.vc4__main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vc4__main-img img.vc4__img--active {
  opacity: 1;
  position: relative;
}

.vc4__gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.vc4__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--vc4-border);
  background: var(--vc4-card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--vc4-text);
  transition: border-color 0.2s;
}

.vc4__arrow:hover { border-color: var(--vc4-text-muted); }

.vc4__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.vc4__thumbs::-webkit-scrollbar { display: none; }

.vc4__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--vc4-radius-xs);
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.vc4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vc4__thumb--active { border-color: var(--vc4-primary); }

.vc4__counter {
  font-size: 12px;
  font-weight: 600;
  color: var(--vc4-text-muted);
  white-space: nowrap;
}

/* ---------- Content ---------- */
.vc4__content {
  display: flex;
  flex-direction: column;
}

/* --- Social Proof --- */
.vc4__social {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.vc4__social:hover { opacity: 0.7; }

.vc4__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.vc4__star {
  width: 14px;
  height: 14px;
  color: var(--vc4-warning);
  fill: var(--vc4-warning);
}

.vc4__rating-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--vc4-text);
}

.vc4__review-count {
  font-size: 12px;
  color: var(--vc4-text-muted);
}

/* --- Title --- */
.vc4__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--vc4-text);
  margin-bottom: 4px;
}

.vc4__subtitle {
  font-size: 12px;
  color: var(--vc4-text-muted);
  margin-bottom: 16px;
  white-space: nowrap;
}

/* --- Price Row --- */
.vc4__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vc4__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--vc4-text);
}

.vc4__price-suffix {
  font-size: 14px;
  font-weight: 600;
  color: var(--vc4-text-muted);
}

.vc4__badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--vc4-radius-xs);
  background: var(--vc4-success);
  color: var(--vc4-success-fg);
  white-space: nowrap;
  line-height: 1;
}

/* --- Description --- */
.vc4__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--vc4-text-muted);
  margin-bottom: 20px;
}

.vc4__desc strong {
  color: var(--vc4-text);
  font-weight: 600;
}

/* --- How It Works --- */
.vc4__how {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.04));
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--vc4-radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.vc4__how-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--vc4-text);
  margin-bottom: 16px;
}

.vc4__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.vc4__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vc4-text);
  color: var(--vc4-card-bg);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vc4__step-num--check {
  background: var(--vc4-success);
  color: var(--vc4-success-fg);
}

.vc4__step-text {
  font-size: 16px;
  color: var(--vc4-text);
  line-height: 1.4;
}

.vc4__step-text strong {
  font-weight: 700;
}

.vc4__step-text .vc4__highlight {
  color: var(--vc4-success);
  font-weight: 700;
}

/* --- Perks --- */
.vc4__perks {
  margin-bottom: 24px;
}

.vc4__perks-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--vc4-text);
  margin-bottom: 12px;
}

.vc4__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--vc4-text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.vc4__perk:last-child { margin-bottom: 0; }

.vc4__check {
  width: 20px;
  height: 20px;
  color: var(--vc4-success);
  flex-shrink: 0;
}

/* --- CTA --- */
.vc4__cta {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--vc4-radius-sm);
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  color: var(--vc4-primary-fg);
  background: linear-gradient(135deg, var(--vc4-primary), #1d4ed8);
  cursor: pointer;
  transition: opacity 0.2s;
  animation: vc4-breathe 8s ease-in-out infinite;
  margin-bottom: 12px;
}

.vc4__cta:hover:not(:disabled) { opacity: 0.9; }
.vc4__cta:disabled { opacity: 0.5; cursor: not-allowed; }

@keyframes vc4-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.vc4__cancel {
  text-align: center;
  font-size: 14px;
  color: var(--vc4-text-muted);
  margin-bottom: 24px;
}

/* --- Expand Section --- */
.vc4__expand {
  border-top: 1px solid var(--vc4-border);
  padding-top: 20px;
}

.vc4__expand-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.vc4__expand-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--vc4-text);
  margin-bottom: 2px;
}

.vc4__expand-sub {
  font-size: 12px;
  color: var(--vc4-text-muted);
}

.vc4__expand-icon {
  width: 20px;
  height: 20px;
  color: var(--vc4-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.vc4__expand-btn[aria-expanded="true"] .vc4__expand-icon {
  transform: rotate(180deg);
}

.vc4__expand-body {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.vc4__expand-body--open {
  max-height: 600px;
  opacity: 1;
}

.vc4__expand-intro {
  font-size: 14px;
  color: var(--vc4-text-muted);
  margin-top: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.vc4__expand-intro strong {
  color: var(--vc4-success);
  font-weight: 700;
}

/* --- Qty Selector --- */
.vc4__qty-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--vc4-text);
  margin-bottom: 8px;
}

.vc4__qty-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.vc4__qty {
  width: 44px;
  height: 44px;
  border-radius: var(--vc4-radius-sm);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  background: #f3f4f6;
  color: var(--vc4-text);
  cursor: pointer;
  transition: all 0.2s;
}

.vc4__qty:hover { background: #e5e7eb; }

.vc4__qty--active {
  background: var(--vc4-primary);
  color: var(--vc4-primary-fg);
}

/* --- Math Box --- */
.vc4__math {
  background: #f3f4f6;
  border-radius: var(--vc4-radius-sm);
  padding: 16px;
  margin-bottom: 16px;
}

.vc4__math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.vc4__math-row:last-child { margin-bottom: 0; }

.vc4__math-label {
  font-size: 14px;
  color: var(--vc4-text-muted);
}

.vc4__math-label--bold {
  font-weight: 700;
  color: var(--vc4-text);
}

.vc4__math-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--vc4-text);
}

.vc4__math-value--success {
  color: var(--vc4-success);
}

.vc4__math-value--profit {
  font-size: 18px;
  font-weight: 800;
  color: var(--vc4-success);
}

.vc4__math-divider {
  height: 1px;
  background: var(--vc4-border);
  margin: 8px 0;
}

/* --- CTA2 --- */
.vc4__cta2 {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: var(--vc4-radius-sm);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  background: var(--vc4-success);
  color: var(--vc4-success-fg);
  cursor: pointer;
  transition: opacity 0.2s;
}

.vc4__cta2:hover:not(:disabled) { opacity: 0.9; }
.vc4__cta2:disabled { opacity: 0.5; cursor: not-allowed; }

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .vc4__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .vc4__gallery {
    position: static;
    top: auto;
  }

  .vc4__content {
    padding: 0 20px 40px;
  }

  .vc4__title {
    font-size: 24px;
  }

  .vc4__how-title {
    font-size: 16px;
  }

  .vc4__step-text {
    font-size: 15px;
  }

  .vc4__cta {
    font-size: 16px;
    padding: 14px 20px;
  }
}
