.dbp-vc {
  max-width: 1080px;
  margin: 48px auto;
  padding: 48px;
  border: none;
  border-radius: 0;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.dbp-vc__header {
  margin-bottom: 40px;
}

.dbp-vc__header h1,
.dbp-vc__header h2 {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 700;
  color: #0b5d51;
  line-height: 1.2;
}

.dbp-vc__header p {
  margin: 0;
  color: #5f5a52;
  line-height: 1.9;
  font-size: 18px;
}

/* Progress bar */
.dbp-vc__progress { 
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dbp-vc__progress-track { 
  height: 8px;
  background: #e8e4dc;
  border-radius: 999px;
  overflow: hidden;
}

.dbp-vc__progress-inner { 
  height: 100%;
  background: #0b5d51;
  border-radius: 999px;
  transition: width 0.35s ease;
  width: 0%;
}

.dbp-vc__progress-label { 
  display: block;
  font-size: 15px;
  color: #4f4a43;
  font-weight: 600;
}

/* Step */
.dbp-vc__step { 
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.dbp-vc__step-eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a09890;
  font-weight: 700;
}

.dbp-vc__question-text { 
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
}

.dbp-vc__helper-text {
  margin: 0;
  font-size: 18px;
  color: #514b44;
  line-height: 1.7;
}

.dbp-vc__question-image-wrap {
  margin-top: -4px;
}

.dbp-vc__question-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e8e4dc;
  display: block;
}

/* Options grid */
.dbp-vc__options { 
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dbp-vc__option-btn {
  border: 2px solid #ddd;
  border-radius: 8px;
  background: #ffffff;
  color: #0b5d51;
  min-height: 74px;
  padding: 16px 18px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: inherit;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.dbp-vc__option-image {
  width: 100%;
  max-width: 140px;
  max-height: 100px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ece8e2;
}

.dbp-vc__option-label {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.dbp-vc__option-btn:hover { 
  border-color: #0b5d51;
  background: #f5faf8;
  color: #0b5d51;
  transform: translateY(-2px);
}

.dbp-vc__option-btn:focus-visible,
.dbp-vc__submit-btn:focus-visible,
.dbp-vc__bundle-btn:focus-visible,
.dbp-vc__back-btn:focus-visible,
.dbp-vc__email-input:focus-visible,
.dbp-vc__textarea:focus-visible {
  outline: 3px solid rgba(11, 93, 81, 0.3);
  outline-offset: 2px;
}

.dbp-vc__option-btn--selected { 
  border-color: #0b5d51;
  background: #e7f3f0;
  color: #0b5d51;
  font-weight: 700;
}

/* Email / textarea */
.dbp-vc__email-input {
  width: 100%;
  min-height: 56px;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 18px;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s;
}

.dbp-vc__email-input:focus { 
  outline: none;
  border-color: #0b5d51;
}

.dbp-vc__input--error { 
  border-color: #c0392b !important;
}

.dbp-vc__textarea {
  width: 100%;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  resize: vertical;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
  min-height: 100px;
}

.dbp-vc__textarea:focus { 
  outline: none;
  border-color: #0b5d51;
}

/* Consent */
.dbp-vc__consent { 
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #4d4841;
  cursor: pointer;
  line-height: 1.7;
}

.dbp-vc__consent input[type="checkbox"] { 
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.dbp-vc__camera-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dbp-vc__camera-wrap {
  position: relative;
  width: 100%;
  max-width: 430px;
  border-radius: 12px;
  overflow: hidden;
  background: #121212;
  border: 1px solid #d8d3ca;
}

.dbp-vc__camera-stage {
  position: relative;
}

.dbp-vc__camera-fullscreen-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 8;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.dbp-vc__camera-video {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.dbp-vc__camera-face-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dbp-vc__camera-face-overlay-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dbp-vc__camera-face-overlay-dim {
  fill: rgba(0, 0, 0, 0.25);
}

.dbp-vc__camera-face-overlay-outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 0.9;
  vector-effect: non-scaling-stroke;
}

.dbp-vc__camera-hint {
  margin: 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: #f3f0ea;
  background: rgba(0, 0, 0, 0.72);
}

.dbp-vc__camera-hint.is-warning {
  color: #ffccc7;
}

.dbp-vc__camera-hint.is-good {
  color: #d5f3d4;
}

.dbp-vc__camera-quality {
  padding: 10px 12px 12px;
  background: rgba(0, 0, 0, 0.62);
}

.dbp-vc__camera-quality-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.dbp-vc__camera-quality-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #ffb4b0;
  transition: width 0.25s ease, background 0.25s ease;
}

.dbp-vc__camera-quality-label {
  margin: 8px 0 0;
  font-size: 12px;
  color: #f3f0ea;
}

.dbp-vc__camera-quality.is-good .dbp-vc__camera-quality-fill {
  background: #74d68c;
}

.dbp-vc__camera-quality.is-warning .dbp-vc__camera-quality-fill {
  background: #ffb4b0;
}

.dbp-vc__camera-preview {
  width: 100%;
  display: block;
}

.dbp-vc__camera-shutter {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 78px;
  height: 78px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.18s ease, border-color 0.18s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.dbp-vc__camera-shutter::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  transition: transform 0.12s ease, background-color 0.12s ease;
}

.dbp-vc__camera-shutter.is-ready::after {
  background: #ffffff;
}

.dbp-vc__camera-shutter:hover {
  transform: translateX(-50%) scale(1.02);
}

.dbp-vc__camera-shutter:active,
.dbp-vc__camera-shutter.is-pressed {
  transform: translateX(-50%) scale(0.94);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.32);
}

.dbp-vc__camera-shutter:active::after,
.dbp-vc__camera-shutter.is-pressed::after {
  transform: scale(0.88);
}

.dbp-vc__camera-shutter:disabled {
  opacity: 0.6;
  border-color: rgba(255, 255, 255, 0.55);
  cursor: not-allowed;
}

.dbp-vc__camera-shutter:disabled::after {
  background: rgba(255, 255, 255, 0.6);
}

.dbp-vc__camera-shutter:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.dbp-vc__upload-box {
  width: 100%;
}

.dbp-vc__entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.dbp-vc__entry-card {
  border: 2px solid #d0e1dc;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf8 100%);
  padding: 16px 14px;
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  min-height: 102px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  opacity: 0;
  transform: translateY(8px);
  animation: dbp-entry-in 0.42s ease forwards;
}

.dbp-vc__entry-card:nth-child(2) {
  animation-delay: 0.08s;
}

.dbp-vc__entry-card:hover {
  border-color: #0a6a5b;
  box-shadow: 0 10px 22px rgba(11, 93, 81, 0.14);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #f9fcfb 0%, #ebf5f2 100%);
}

.dbp-vc__entry-card:focus-visible {
  outline: 3px solid rgba(11, 93, 81, 0.28);
  outline-offset: 2px;
}

.dbp-vc__entry-card.is-active {
  border-color: #0b5d51;
  background: linear-gradient(180deg, #eff8f5 0%, #dff1ea 100%);
  box-shadow: 0 0 0 3px rgba(11, 93, 81, 0.12);
}

.dbp-vc__entry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.dbp-vc__entry-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dbp-vc__entry-icon--photo {
  background: linear-gradient(180deg, #0b5d51 0%, #0a7868 100%);
}

.dbp-vc__entry-icon--skip {
  background: linear-gradient(180deg, #4d5f6f 0%, #3f5364 100%);
}

.dbp-vc__entry-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dbp-vc__entry-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #163f3a;
}

.dbp-vc__entry-desc {
  margin: 0;
  font-size: 13px;
  color: #58716c;
  line-height: 1.4;
}

.dbp-vc__entry-arrow {
  color: #0b5d51;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.dbp-vc__entry-card:hover .dbp-vc__entry-arrow {
  transform: translateX(2px);
}

.dbp-vc__entry-badge {
  position: absolute;
  right: 10px;
  top: 8px;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  color: #0b5d51;
  background: #e2f2ec;
}

.dbp-vc__entry-note {
  margin: -4px 0 0;
  font-size: 12px;
  color: #8b877d;
}

@keyframes dbp-entry-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dbp-vc__entry-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.dbp-vc__vision-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dbp-vc__upload-dropzone {
  border: 2px dashed #b8c9c4;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fcfb 0%, #f2f8f6 100%);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.dbp-vc__upload-dropzone:hover {
  border-color: #0b5d51;
  background: linear-gradient(180deg, #f4fbf8 0%, #eaf5f1 100%);
}

.dbp-vc__upload-dropzone:focus-visible {
  outline: 3px solid rgba(11, 93, 81, 0.28);
  outline-offset: 2px;
}

.dbp-vc__upload-dropzone.is-dragover {
  border-color: #0b5d51;
  box-shadow: 0 0 0 4px rgba(11, 93, 81, 0.12);
  background: linear-gradient(180deg, #edf8f4 0%, #e3f1ec 100%);
}

.dbp-vc__upload-dropzone.has-file {
  border-style: solid;
  border-color: #0b5d51;
  background: linear-gradient(180deg, #eef8f5 0%, #e5f3ee 100%);
}

.dbp-vc__upload-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  background: #0b5d51;
  color: #ffffff;
}

.dbp-vc__upload-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #13453e;
  font-weight: 700;
}

.dbp-vc__upload-subtitle {
  margin: 0;
  font-size: 13px;
  color: #55716c;
  line-height: 1.45;
}

.dbp-vc__upload-meta {
  margin: 2px 0 0;
  font-size: 12px;
  color: #0b5d51;
  font-weight: 700;
}

.dbp-vc__upload-choose-btn {
  margin-top: 6px;
}

.dbp-vc__file-input-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Submit / CTA buttons */
.dbp-vc__submit-btn, .dbp-vc__bundle-btn {
  border: none;
  border-radius: 8px;
  background: #0b5d51;
  color: #ffffff;
  min-height: 56px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s ease;
  font-family: inherit;
}

.dbp-vc__submit-btn:hover, .dbp-vc__bundle-btn:hover {
  background: #094842;
  transform: translateY(-2px);
}

.dbp-vc__submit-btn:disabled, .dbp-vc__bundle-btn:disabled { 
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Back button */
.dbp-vc__back-btn { 
  border: none;
  background: transparent;
  color: #8a8479;
  font-size: 17px;
  cursor: pointer;
  padding: 6px 0;
  align-self: flex-start;
  line-height: 1.2;
  transition: color 0.2s ease;
}

.dbp-vc__back-btn:hover { 
  color: #0b5d51;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: underline;
}

.dbp-vc__back-btn:focus-visible {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Error */
.dbp-vc__error-msg { margin: 0; font-size: 16px; color: #a22418; font-weight: 700; }
.dbp-vc__inline-error {
  margin: 0;
  font-size: 16px;
  color: #a22418;
  font-weight: 600;
}

/* Result */
.dbp-vc__result-wrap { 
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(11, 93, 81, 0.12) 0%, rgba(11, 93, 81, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid #dce9e6;
  box-shadow: 0 12px 34px rgba(11, 93, 81, 0.12);
}

.dbp-vc__analysis {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}

.dbp-vc__analysis-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dbp-vc__analysis-step {
  color: #8a8479;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dbp-vc__analysis-step.is-active {
  color: #0b5d51;
  font-weight: 700;
  transform: translateX(2px);
}

.dbp-vc__products-heading {
  margin: 0;
  color: #1f3c37;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.dbp-vc__products-lead {
  margin: 0;
  color: #5f5a52;
  font-size: 15px;
  line-height: 1.7;
  max-width: 62ch;
}

.dbp-vc__products-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(11, 93, 81, 0.08) 0%, rgba(11, 93, 81, 0) 52%),
    linear-gradient(180deg, #fcfffe 0%, #f4f8f7 100%);
  border: 1px solid #dce9e5;
}

.dbp-vc__products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.dbp-vc__products-header-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dbp-vc__products-eyebrow {
  margin: 0;
  color: #0b5d51;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dbp-vc__products-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dbp-vc__products-summary-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #0b5d51;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.dbp-vc__products-summary-badge--soft {
  background: #edf5f2;
  color: #1f3c37;
}

.dbp-vc__product-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.dbp-vc__product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #d9e6e3;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  min-height: 100%;
  box-shadow: 0 14px 34px rgba(11, 93, 81, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dbp-vc__product-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: #c9ddd7;
}

.dbp-vc__product-card--cleanse {
  border-color: #e8dcc7;
}

.dbp-vc__product-card--cleanse::before {
  background: #b98b46;
}

.dbp-vc__product-card--supplement {
  border-color: #dfe7d1;
}

.dbp-vc__product-card--supplement::before {
  background: #6f8755;
}

.dbp-vc__product-card--day,
.dbp-vc__product-card--spf {
  border-color: #d3e6df;
}

.dbp-vc__product-card--day::before,
.dbp-vc__product-card--spf::before {
  background: #0b5d51;
}

.dbp-vc__product-card--night,
.dbp-vc__product-card--eye {
  border-color: #dde3ef;
}

.dbp-vc__product-card--night::before,
.dbp-vc__product-card--eye::before {
  background: #486b9b;
}

.dbp-vc__product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 93, 81, 0.14);
}

.dbp-vc__product-media-wrap {
  position: relative;
  padding: 18px 18px 0 22px;
}

.dbp-vc__product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(11, 93, 81, 0.12) 0%, rgba(11, 93, 81, 0) 58%),
    linear-gradient(180deg, #f8fbfa 0%, #edf5f2 100%);
  overflow: hidden;
}

.dbp-vc__product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dbp-vc__product-media--fallback {
  color: #0b5d51;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.dbp-vc__product-card-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.dbp-vc__product-usage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: #62756f;
}

.dbp-vc__product-usage--day,
.dbp-vc__product-usage--spf,
.dbp-vc__product-usage--morning {
  background: #0b5d51;
}

.dbp-vc__product-usage--night,
.dbp-vc__product-usage--evening {
  background: #315b77;
}

.dbp-vc__product-usage--cleanse {
  background: #8d6a34;
}

.dbp-vc__product-usage--eye {
  background: #6b4e8f;
}

.dbp-vc__product-usage--supplement {
  background: #5f6b4f;
}

.dbp-vc__product-rank {
  position: absolute;
  left: 34px;
  top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(11, 93, 81, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

.dbp-vc__product-details {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px 20px 20px 22px;
}

.dbp-vc__product-category {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef5f2;
  color: #0b5d51;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dbp-vc__product-name {
  margin: 0;
  color: #1f3c37;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

.dbp-vc__product-name a {
  color: #1f3c37;
  text-decoration: none;
}

.dbp-vc__product-name a:hover {
  text-decoration: underline;
}

.dbp-vc__product-excerpt {
  margin: 0;
  color: #5f5a52;
  font-size: 14px;
  line-height: 1.7;
}

.dbp-vc__product-excerpt--fallback {
  color: #4f6b66;
  font-weight: 600;
}

.dbp-vc__product-meta {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #ebf1ef;
}

.dbp-vc__product-price {
  display: inline-block;
  color: #0b5d51;
  font-weight: 700;
  font-size: 20px;
}

.dbp-vc__product-card-actions {
  display: flex;
}

.dbp-vc__product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid #0b5d51;
  color: #0b5d51;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.dbp-vc__product-link:hover {
  transform: translateY(-1px);
  background: #0b5d51;
  color: #ffffff;
}

.dbp-vc__result-heading { 
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0b5d51;
  line-height: 1.3;
}

.dbp-vc__result-profile {
  margin: 0;
  font-size: 16px;
  color: #5f5a52;
  font-weight: 600;
}

.dbp-vc__discount-note {
  margin: 0;
  background: #f5faf8;
  border-left: 4px solid #0b5d51;
  border-radius: 8px;
  padding: 16px;
  font-weight: 600;
  color: #0b5d51;
}

.dbp-vc__social-proof {
  background: linear-gradient(135deg, #f8f4eb 0%, #fffaf2 100%);
  border: 1px solid #e8e0cf;
  border-radius: 16px;
  padding: 18px 20px;
}

.dbp-vc__social-proof-headline {
  margin: 0 0 6px;
  font-size: 14px;
  color: #6a645b;
}

.dbp-vc__social-proof-stat {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0b5d51;
}

.dbp-vc__social-proof-list {
  margin: 0;
  padding-left: 18px;
  color: #3d3830;
  font-size: 13px;
  line-height: 1.5;
}

.dbp-vc__notice { 
  margin: 0;
  color: #4f4a43;
  font-size: 16px;
  line-height: 1.6;
}

.dbp-vc__notice--strong {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfe6df;
  background: #edf7f4;
  color: #0b5d51;
  font-weight: 700;
}

.dbp-vc__result-hero {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(11, 93, 81, 0.08);
}

.dbp-vc__result-hero-title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  color: #0b5d51;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.dbp-vc__result-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dbp-vc__hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #d6e6e2;
  background: #f8fcfb;
  color: #0b5d51;
  font-size: 13px;
  font-weight: 600;
}

.dbp-vc__hero-chip-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.dbp-vc__hero-chip-icon--profile::before {
  content: 'P';
}

.dbp-vc__hero-chip-icon--result::before {
  content: 'R';
}

.dbp-vc__hero-chip-icon--support::before {
  content: 'E';
}

.dbp-vc__hero-chip-label {
  line-height: 1.2;
}

.dbp-vc__product-list { 
  margin: 0;
  padding-left: 20px;
  display: flex;
  margin-top: auto;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.dbp-vc__product-item { 
  font-size: 15px;
  line-height: 1.5;
}

.dbp-vc__product-item a { 
  color: #0b5d51;
  font-weight: 600;
  text-decoration: none;
}

.dbp-vc__product-item a:hover {
  text-decoration: underline;
}

/* Full lead form */
.dbp-vc__full-lead { 
  padding-top: 24px;
  border-top: 1px solid #e8e4dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dbp-vc__full-lead h4 { 
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.dbp-vc__full-lead p { 
  margin: 0;
  color: #5f5a52;
  font-size: 14px;
  line-height: 1.6;
}

/* Section headings inside result */
.dbp-vc__section-heading { 
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #1f3c37;
}

/* Routine */
.dbp-vc__routine-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(185, 146, 90, 0.18) 0%, rgba(185, 146, 90, 0) 55%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
  border: 1px solid #eadfc9;
}

.dbp-vc__routine-lead {
  margin: 0;
  color: #6a645b;
  font-size: 14px;
  line-height: 1.6;
}

.dbp-vc__routine { 
  margin-bottom: 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(185, 146, 90, 0.18);
}

.dbp-vc__routine-grid { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dbp-vc__routine-time { 
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0b5d51;
}

.dbp-vc__routine-list { 
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: #3d3830;
  line-height: 1.8;
}

.dbp-vc__routine-list li { 
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.dbp-vc__routine-step-text {
  flex: 1;
}

.dbp-vc__pictogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: #e5ece9;
  color: #234740;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.dbp-vc__pictogram--day,
.dbp-vc__pictogram--morning,
.dbp-vc__pictogram--spf {
  background: #d9ebe6;
  color: #0b5d51;
}

.dbp-vc__pictogram--night,
.dbp-vc__pictogram--evening {
  background: #e1e8f4;
  color: #315b77;
}

.dbp-vc__pictogram--eye {
  background: #ece3f8;
  color: #6b4e8f;
}

.dbp-vc__pictogram--cleanse {
  background: #f3e8d8;
  color: #8d6a34;
}

.dbp-vc__pictogram--supplement {
  background: #e7ecd9;
  color: #5f6b4f;
}

/* Products heading */
.dbp-vc__products-heading { 
  margin: 24px 0 16px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

/* Per-product single add button */
.dbp-vc__product-item { 
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.dbp-vc__product-item-name { 
  flex: 1;
}

.dbp-vc__single-add-btn {
  flex-shrink: 0;
  border: 2px solid #0b5d51;
  border-radius: 6px;
  color: #0b5d51;
  background: transparent;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.dbp-vc__single-add-btn:hover { 
  background: #0b5d51;
  color: #fff;
}

/* Ingredients */
.dbp-vc__ingredients { 
  background: #f9f6f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
}

.dbp-vc__ingredients-heading { 
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.dbp-vc__ingredients-row { 
  margin: 0 0 6px;
  font-size: 13px;
  color: #3d3830;
  line-height: 1.6;
}

.dbp-vc__ingredients-avoid strong { 
  color: #c0392b;
}

/* Disclaimer */
.dbp-vc__disclaimer {
  margin: 20px 0 0;
  font-size: 11px;
  color: #a09890;
  font-style: italic;
  border-top: 1px solid #e8e4dc;
  padding-top: 14px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .dbp-vc {
    margin: 24px auto;
    padding: 32px 24px;
  }
  
  .dbp-vc__header h2 {
    font-size: 28px;
  }
  
  .dbp-vc__options {
    grid-template-columns: 1fr;
  }
  
  .dbp-vc__question-text {
    font-size: 18px;
  }
  
  .dbp-vc__submit-btn, .dbp-vc__bundle-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
  
  .dbp-vc__routine-grid {
    grid-template-columns: 1fr;
  }
  
  .dbp-vc__product-item {
    flex-wrap: wrap;
  }

  .dbp-vc__camera-wrap {
    max-width: 100%;
  }

  .dbp-vc__entry-grid {
    grid-template-columns: 1fr;
  }

  .dbp-vc__entry-card {
    min-height: 92px;
  }

  .dbp-vc__entry-badge {
    right: 8px;
    top: 7px;
  }
}

.dbp-vc__cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.dbp-vc__skip-link-btn {
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #5d6663;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

.dbp-vc__skip-link-btn:hover {
  color: #1f4e45;
}

.dbp-vc__skip-link-btn:focus-visible {
  outline: 3px solid rgba(11, 93, 81, 0.24);
  outline-offset: 2px;
  border-radius: 4px;
}

.dbp-vc__bundle-btn--secondary {
  background: #ffffff;
  border: 2px solid #0b5d51;
  color: #0b5d51;
}

.dbp-vc__bundle-btn--secondary:hover {
  background: #0b5d51;
  border-color: #0b5d51;
  color: #ffffff;
}

.dbp-vc__bundle-status {
  margin: 4px 0 0;
  font-size: 13px;
  color: #3f5e59;
  min-height: 1.3em;
}

.dbp-vc__bundle-price-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: #f8f4eb;
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 4px solid #0b5d51;
}

.dbp-vc__bundle-price-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #5d6663;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dbp-vc__bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.dbp-vc__bundle-price-regular {
  font-size: 14px;
  color: #999;
}

.dbp-vc__bundle-price-regular del {
  text-decoration: line-through;
}

.dbp-vc__bundle-price-final {
  font-size: 24px;
  font-weight: 700;
  color: #0b5d51;
}

.dbp-vc__bundle-savings {
  font-size: 13px;
  font-weight: 600;
  color: #8d6a34;
  padding: 4px 8px;
  background: rgba(141, 106, 52, 0.1);
  border-radius: 4px;
}

.dbp-vc__bundle-discount-note {
  margin: 0;
  font-size: 12px;
  color: #666;
  font-style: italic;
  padding-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dbp-vc__cross-sell {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #dce9e6;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.dbp-vc__cross-sell-title {
  margin: 0;
  font-size: 20px;
  color: #0b5d51;
}

.dbp-vc__cross-sell-lead {
  margin: 8px 0 0;
  color: #5d6663;
  font-size: 14px;
}

.dbp-vc__cross-sell-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dbp-vc__cross-sell-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border: 1px solid #dce9e6;
  border-radius: 12px;
  background: #fff;
}

.dbp-vc__cross-sell-badge {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: #edf7f4;
  color: #0b5d51;
}

.dbp-vc__cross-sell-name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #1f3c37;
}

.dbp-vc__cross-sell-price {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #0b5d51;
}

.dbp-vc__cross-sell-btn {
  margin-top: auto;
  width: 100%;
}

.dbp-vc__cross-sell-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 12px;
  color: #3f5e59;
}

.dbp-vc__sticky-shortcut {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99998;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: #0b5d51;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(11, 93, 81, 0.25);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dbp-vc__sticky-shortcut.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dbp-vc__bundle-status.is-error {
  color: #a13f3f;
}

@media (max-width: 600px) {
  .dbp-vc {
    margin: 16px auto;
    padding: 24px 16px;
  }

  .dbp-vc__result-wrap {
    padding: 18px;
    border-radius: 16px;
  }

  .dbp-vc__product-grid {
    grid-template-columns: 1fr;
  }

  .dbp-vc__cross-sell-grid {
    grid-template-columns: 1fr;
  }

  .dbp-vc__product-media {
    aspect-ratio: 1 / 1;
  }

  .dbp-vc__product-media img {
    height: 100%;
  }

  .dbp-vc__routine-section {
    padding: 18px;
  }
  
  .dbp-vc__header h2 {
    font-size: 24px;
  }
  
  .dbp-vc__question-text {
    font-size: 16px;
  }
  
  .dbp-vc__result-heading {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .dbp-vc--camera-fullscreen-open {
    overflow: hidden;
  }

  .dbp-vc__camera-wrap.is-mobile-fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    border-radius: 0;
    border: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
  }

  .dbp-vc__camera-wrap.is-mobile-fullscreen .dbp-vc__camera-stage {
    flex: 1;
    min-height: 0;
  }

  .dbp-vc__camera-wrap.is-mobile-fullscreen .dbp-vc__camera-video,
  .dbp-vc__camera-wrap.is-mobile-fullscreen .dbp-vc__camera-preview {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .dbp-vc__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dbp-vc__product-grid {
    grid-template-columns: 1fr;
  }
}

/* Result description and AI why */
.dbp-vc__insight-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dbp-vc__result-description {
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
  border: 1px solid #e2ece9;
  color: #3a3630;
  font-size: 15px;
  line-height: 1.7;
}

.dbp-vc__result-ai-why {
  margin: 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2f8f5 0%, #fcfffd 100%);
  border: 1px solid #d8e8e2;
}

.dbp-vc__result-ai-label {
  margin: 0 0 8px;
  color: #0b5d51;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dbp-vc__result-ai-copy {
  margin: 0;
  color: #3a3630;
  font-size: 14px;
  line-height: 1.7;
}
