/* La Végétalerie — configurateur */
.vgt-root {
  font-family: var(--vgt-body); color: var(--vgt-text); font-size: 15px; line-height: 1.5;
  -webkit-font-smoothing: antialiased; max-width: 1320px; margin: 0 auto; padding: 0 24px;
}
.vgt-root *, .vgt-root *::before, .vgt-root *::after { box-sizing: border-box; }
.vgt-root button { all: unset; box-sizing: border-box; cursor: pointer; font-family: inherit; }
.vgt-root button:focus-visible, .vgt-root input:focus-visible, .vgt-root select:focus-visible, .vgt-root textarea:focus-visible, .vgt-root a:focus-visible { outline: 2px solid var(--vgt-sage); outline-offset: 2px; }
.vgt-root button:disabled { cursor: not-allowed; }
.vgt-root label { display: block; line-height: 1.4; vertical-align: baseline; }
.vgt-root h2, .vgt-root h3, .vgt-root h4 { font-family: var(--vgt-display); color: var(--vgt-forest); font-weight: 500; margin: 0; }
.vgt-root p { margin: 0 0 10px; }
.vgt-root a { color: var(--vgt-forest); }
.vgt-root img { max-width: 100%; }

.vgt-loading { padding: 80px 0; text-align: center; color: var(--vgt-muted); }
.vgt-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--vgt-line); border-top-color: var(--vgt-sage); border-radius: 50%; animation: vgt-spin 1s linear infinite; vertical-align: -3px; margin-right: 8px; }
@keyframes vgt-spin { to { transform: rotate(360deg); } }

.vgt-app { scroll-margin-top: 110px; padding-top: 18px; }
.vgt-muted { color: var(--vgt-muted); font-size: 13.5px; }
.vgt-center { text-align: center; }
.vgt-grow { flex: 1; min-width: 0; }
.vgt-row-between { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }

/* Stepper */
.vgt-stepper { display: flex; align-items: center; gap: 6px; padding: 8px 0 6px; }
.vgt-root .vgt-stepper-item { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 0 0 auto; }
.vgt-root .vgt-stepper-item:disabled { opacity: .4; }
.vgt-stepper-dot { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 500; background: #ebe7df; color: rgba(46, 46, 46, .45); border: 1px solid var(--vgt-line); transition: all .3s; }
.vgt-stepper-item.is-done .vgt-stepper-dot { background: var(--vgt-sage); color: var(--vgt-forest); border-color: var(--vgt-sage); }
.vgt-stepper-item.is-current .vgt-stepper-dot { background: var(--vgt-forest); color: var(--vgt-ecru); border-color: var(--vgt-forest); transform: scale(1.1); box-shadow: 0 8px 20px rgba(29, 53, 40, .25); }
.vgt-stepper-label { font-size: 12px; font-weight: 500; letter-spacing: .02em; color: rgba(46, 46, 46, .45); }
.vgt-stepper-item.is-current .vgt-stepper-label { color: var(--vgt-forest); }
.vgt-stepper-line { flex: 1; height: 1px; background: var(--vgt-line); margin-bottom: 22px; }
.vgt-stepper-line.is-done { background: var(--vgt-sage); }
.vgt-toolbar { display: flex; justify-content: flex-end; gap: 22px; margin: 4px 0 0; }

/* Titres d'étape */
.vgt-step { padding: 18px 0 40px; animation: vgt-fade .45s ease both; }
@keyframes vgt-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.vgt-step-head { text-align: center; margin: 6px auto 30px; max-width: 680px; }
.vgt-step-head h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.1; margin-bottom: 10px; }
.vgt-step-head p { color: var(--vgt-muted); }
.vgt-kicker { text-transform: uppercase; letter-spacing: .2em; font-size: 11.5px; color: var(--vgt-sage-2); text-align: center; }
.vgt-h3 { font-size: 24px !important; margin: 0 0 12px !important; }
.vgt-h3 small { font-family: var(--vgt-body); font-size: 13px; color: var(--vgt-muted); }
.vgt-root h4 { font-size: 19px; margin-bottom: 8px; }

/* Cartes et grilles */
.vgt-root .vgt-card { background: var(--vgt-card); border: 1px solid var(--vgt-line); border-radius: var(--vgt-radius); padding: 26px; box-shadow: 0 1px 2px rgba(29, 53, 40, .03); }
.vgt-root .vgt-card + .vgt-card { margin-top: 18px; }
.vgt-two { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.vgt-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.vgt-split.is-wide { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); }
.vgt-split.is-form { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); max-width: 1100px; margin: 0 auto; }
.vgt-sticky { position: sticky; top: 100px; }
@media (max-width: 960px) {
  .vgt-two, .vgt-split, .vgt-split.is-wide, .vgt-split.is-form { grid-template-columns: 1fr; }
  .vgt-sticky { position: relative; top: 0; }
}

/* Champs */
.vgt-field { margin-bottom: 22px; }
.vgt-field.is-disabled { opacity: .6; }
.vgt-field > label, .vgt-field-head label, .vgt-form-grid label { font-size: 13.5px; font-weight: 500; color: var(--vgt-forest); margin-bottom: 6px; }
.vgt-field-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; gap: 10px; }
.vgt-field-head label { margin: 0; }
.vgt-field small { display: block; color: var(--vgt-muted); font-size: 12.5px; margin-top: 6px; }
.vgt-num { display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--vgt-line); border-radius: 12px; padding: 0 12px 0 0; }
.vgt-root .vgt-num input { width: 84px; border: 0 !important; background: transparent !important; padding: 8px 4px 8px 12px !important; font: 500 16px var(--vgt-body); text-align: right; color: var(--vgt-forest); box-shadow: none !important; }
.vgt-num em { font-style: normal; color: var(--vgt-muted); font-size: 13px; }
.vgt-root input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; border: 0; padding: 0; margin: 6px 0; background: linear-gradient(to right, var(--vgt-sage) var(--p, 50%), #3a3a36 var(--p, 50%)); }
.vgt-root input[type="range"]:disabled { opacity: .5; }
.vgt-root input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--vgt-sage); border: 3px solid var(--vgt-card); box-shadow: 0 1px 4px rgba(0, 0, 0, .3); cursor: grab; }
.vgt-root input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: var(--vgt-sage); border: 3px solid var(--vgt-card); box-shadow: 0 1px 4px rgba(0, 0, 0, .3); }
.vgt-root .vgt-input, .vgt-root select { width: 100%; font: 400 15px var(--vgt-body); color: var(--vgt-text); background: #fff; border: 1px solid var(--vgt-line); border-radius: 12px; padding: 11px 14px; transition: border-color .2s; line-height: 1.3; }
.vgt-root .vgt-input:focus, .vgt-root select:focus { border-color: var(--vgt-sage); outline: none; }
.vgt-root textarea.vgt-input { resize: vertical; }
.vgt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; margin-top: 16px; }
.vgt-col-2 { grid-column: 1 / -1; }
@media (max-width: 600px) { .vgt-form-grid { grid-template-columns: 1fr; } }
.vgt-check-line { display: flex; align-items: flex-end; padding-bottom: 12px; }
.vgt-root .vgt-check-line label, .vgt-root .vgt-consent { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; color: var(--vgt-text); font-size: 14px; }
.vgt-root input[type="checkbox"], .vgt-root input[type="radio"] { accent-color: var(--vgt-forest); width: 17px; height: 17px; margin: 2px 0 0; flex: 0 0 auto; }
.vgt-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.vgt-qty { display: inline-flex; align-items: center; border: 1px solid var(--vgt-line); border-radius: 12px; background: #fff; font-variant-numeric: tabular-nums; }
.vgt-root .vgt-qty button { width: 38px; height: 38px; display: grid; place-items: center; font-size: 18px; color: var(--vgt-forest); }
.vgt-qty b { min-width: 28px; text-align: center; font-weight: 500; }

/* Boutons */
.vgt-root .vgt-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 999px; background: var(--vgt-forest); color: var(--vgt-ecru); font: 500 15px/1.2 var(--vgt-body); letter-spacing: .01em; text-decoration: none; transition: all .25s; text-align: center; white-space: nowrap; }
.vgt-root .vgt-btn:hover { box-shadow: 0 10px 24px rgba(29, 53, 40, .22); background: var(--vgt-forest-2); color: var(--vgt-ecru); }
.vgt-root .vgt-btn:disabled { background: #e6e2d9; color: rgba(46, 46, 46, .35); box-shadow: none; }
.vgt-root .vgt-btn.is-ghost { background: transparent; color: var(--vgt-forest); box-shadow: inset 0 0 0 1px var(--vgt-line); }
.vgt-root .vgt-btn.is-ghost:hover { box-shadow: inset 0 0 0 1px var(--vgt-sage); background: rgba(138, 154, 91, .08); }
.vgt-root .vgt-btn.is-small { padding: 8px 16px; font-size: 13.5px; }
.vgt-root .vgt-btn.is-large { padding: 16px 32px; font-size: 16px; width: 100%; margin-top: 18px; }
.vgt-root .vgt-link { color: var(--vgt-sage-2); font-size: 13.5px; font-weight: 500; border-bottom: 1px solid rgba(110, 124, 69, .35); padding-bottom: 1px; }
.vgt-root .vgt-link:hover { color: var(--vgt-forest); border-color: var(--vgt-forest); }
.vgt-root .vgt-icon-btn { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: var(--vgt-muted); font-size: 20px; }
.vgt-root .vgt-icon-btn:hover { background: #efece5; color: var(--vgt-forest); }
.vgt-btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 8px 0 18px; }
.vgt-btn-row.is-center { justify-content: center; margin-top: 26px; }
.vgt-btn-col { display: grid; gap: 10px; margin-top: 18px; }

/* Onglets / segments / puces */
.vgt-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 24px; }
.vgt-root .vgt-tabs button, .vgt-root .vgt-chips button { padding: 10px 20px; border-radius: 999px; border: 1px solid var(--vgt-line); background: var(--vgt-card); color: var(--vgt-text); font-size: 14px; font-weight: 500; transition: all .2s; }
.vgt-root .vgt-tabs button:hover, .vgt-root .vgt-chips button:hover { border-color: var(--vgt-sage); }
.vgt-root .vgt-tabs button.is-active, .vgt-root .vgt-chips button.is-active { background: var(--vgt-forest); border-color: var(--vgt-forest); color: var(--vgt-ecru); }
.vgt-tabs.is-small { justify-content: flex-start; margin-bottom: 14px; }
.vgt-root .vgt-tabs.is-small button { padding: 7px 15px; font-size: 13px; }
.vgt-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.vgt-root .vgt-chips button { padding: 6px 13px; font-size: 13px; }
.vgt-seg { display: inline-flex; flex-wrap: wrap; background: #efece5; border-radius: 999px; padding: 4px; gap: 2px; margin: 4px 0 14px; }
.vgt-root .vgt-seg button { padding: 7px 14px; border-radius: 999px; font-size: 13px; color: var(--vgt-muted); }
.vgt-root .vgt-seg button.is-active { background: var(--vgt-card); color: var(--vgt-forest); box-shadow: 0 1px 4px rgba(0, 0, 0, .08); }
.vgt-seg.is-large { display: flex; margin: 0; }
.vgt-root .vgt-seg.is-large button { flex: 1; text-align: center; padding: 10px; font-size: 14px; }

/* Formes */
.vgt-shapes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.vgt-root .vgt-shape { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px 12px; border-radius: 16px; border: 1px solid var(--vgt-line); background: #fff; text-align: center; transition: all .2s; }
.vgt-shape svg path { fill: rgba(138, 154, 91, .18); stroke: var(--vgt-sage-2); stroke-width: 1.5; }
.vgt-shape span { font-size: 13px; font-weight: 500; color: var(--vgt-forest); }
.vgt-shape small { font-size: 10.5px; color: var(--vgt-muted); margin-top: -4px; }
.vgt-root .vgt-shape:hover { border-color: var(--vgt-sage); }
.vgt-root .vgt-shape.is-active { border-color: var(--vgt-forest); background: var(--vgt-forest); }
.vgt-shape.is-active span, .vgt-shape.is-active small { color: var(--vgt-ecru); }
.vgt-shape.is-active svg path { fill: rgba(245, 242, 237, .2); stroke: var(--vgt-ecru); }

/* Aperçu dimensions */
.vgt-dim-card { display: flex; flex-direction: column; justify-content: center; }
.vgt-dim-svg { width: 100%; height: auto; margin: 10px 0 6px; }
.vgt-dim-shape { fill: rgba(138, 154, 91, .16); stroke: var(--vgt-sage-2); stroke-width: 1.5; stroke-dasharray: 5 4; }
.vgt-dim-svg text { font: 12px var(--vgt-body); fill: var(--vgt-muted); }
.vgt-dim-svg .vgt-dim-area { font: 500 22px var(--vgt-display); fill: var(--vgt-forest); }
.vgt-dim-person { fill: rgba(29, 53, 40, .18); }
.vgt-dim-floor { stroke: var(--vgt-line); stroke-width: 1.5; }
.vgt-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 34px; margin: 10px 0; }
.vgt-stats > div { text-align: center; }
.vgt-stats span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .14em; color: var(--vgt-muted); }
.vgt-stats b { display: block; font: 500 28px/1.2 var(--vgt-display); color: var(--vgt-forest); }
.vgt-stats small { color: var(--vgt-muted); }

/* Canvas du mur */
.vgt-preview-card { padding: 18px 18px 20px; }
.vgt-canvas-box { position: relative; }
.vgt-canvas-wrap { position: relative; }
.vgt-canvas-box canvas { display: block; }
.vgt-dim-top { margin: 0 auto -18px; text-align: center; font-size: 12px; color: var(--vgt-muted); letter-spacing: .05em; position: relative; z-index: 1; }
.vgt-dim-side { position: absolute; left: 0; width: 22px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.vgt-dim-side span { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; color: var(--vgt-muted); letter-spacing: .05em; white-space: nowrap; }
.vgt-preview-foot { display: flex; gap: 14px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; margin-top: 4px; }
.vgt-preview-foot .vgt-bars { flex: 1; min-width: 240px; }
.vgt-bars .vgt-bar { display: flex; height: 8px; border-radius: 8px; overflow: hidden; background: #ebe7df; }
.vgt-bars .vgt-bar span { transition: width .4s; }
.vgt-bars ul { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 16px; }
.vgt-bars li { font-size: 13px; display: flex; align-items: center; gap: 6px; }
.vgt-bars li i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.vgt-bars li b { font-weight: 500; color: var(--vgt-forest); }

/* Catalogue de matières */
.vgt-swatch { display: block; border-radius: 12px; flex: 0 0 auto; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06); }
.vgt-swatch.is-round { border-radius: 50%; }
.vgt-swatch-empty { width: 34px; height: 34px; border-radius: 50%; border: 1px dashed #c9c3b6; flex: 0 0 auto; }
.vgt-mat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 10px; }
.vgt-mat-grid.is-compact { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px; }
.vgt-root .vgt-mat { position: relative; display: flex; align-items: center; gap: 12px; padding: 8px 12px 8px 8px; border: 1px solid var(--vgt-line); background: #fff; border-radius: 16px; transition: all .2s; }
.vgt-root .vgt-mat:hover { border-color: var(--vgt-sage); transform: translateY(-1px); }
.vgt-root .vgt-mat.is-active { border-color: var(--vgt-forest); box-shadow: inset 0 0 0 1px var(--vgt-forest); }
.vgt-mat-body { display: flex; flex-direction: column; min-width: 0; }
.vgt-mat-body strong { font-size: 13.5px; font-weight: 500; color: var(--vgt-forest); line-height: 1.25; }
.vgt-mat-body small { font-size: 12px; color: var(--vgt-muted); }
.vgt-mat-body .vgt-stock { color: #a0672a; }
.vgt-check { position: absolute; top: 6px; right: 8px; width: 18px; height: 18px; border-radius: 50%; background: var(--vgt-forest); color: var(--vgt-ecru); font-size: 11px; display: grid; place-items: center; }

.vgt-mix { display: grid; gap: 8px; margin-bottom: 8px; }
.vgt-mix-row { display: flex; align-items: center; gap: 12px; padding: 10px 10px 10px 12px; background: #fff; border: 1px solid var(--vgt-line); border-radius: 16px; }
.vgt-mix-main { flex: 1; min-width: 0; }
.vgt-mix-top { display: flex; justify-content: space-between; gap: 8px; font-size: 13.5px; }
.vgt-mix-top strong { font-weight: 500; color: var(--vgt-forest); }
.vgt-mix-top span { color: var(--vgt-muted); font-size: 12.5px; white-space: nowrap; }
.vgt-mix-pct { width: 48px; text-align: right; font: 500 20px var(--vgt-display); color: var(--vgt-forest); }
.vgt-root .vgt-h3 + .vgt-catalog, .vgt-root .vgt-mix + .vgt-muted + .vgt-h3 { margin-top: 22px !important; }
.vgt-root .vgt-muted + .vgt-h3 { margin-top: 22px !important; }

/* Modèles & motifs */
.vgt-presets { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 520px) { .vgt-presets { grid-template-columns: 1fr; } }
.vgt-root .vgt-preset { display: flex; flex-direction: column; border: 1px solid var(--vgt-line); border-radius: 16px; overflow: hidden; background: #fff; transition: all .2s; }
.vgt-root .vgt-preset:hover { border-color: var(--vgt-sage); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(29, 53, 40, .08); }
.vgt-root .vgt-preset.is-active { border-color: var(--vgt-forest); box-shadow: inset 0 0 0 1px var(--vgt-forest); }
.vgt-thumb { display: block; }
.vgt-preset-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 3px; }
.vgt-preset-body strong { font: 500 20px/1.1 var(--vgt-display); color: var(--vgt-forest); }
.vgt-preset-body small { font-size: 12.5px; color: var(--vgt-muted); line-height: 1.4; }
.vgt-preset-body em { font-style: normal; font-size: 12px; color: var(--vgt-sage-2); margin-top: 3px; }
.vgt-motifs { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.vgt-root .vgt-motif { display: flex; flex-direction: column; gap: 4px; padding: 10px; border: 1px solid var(--vgt-line); border-radius: 16px; background: #fff; transition: all .2s; }
.vgt-root .vgt-motif:hover { border-color: var(--vgt-sage); }
.vgt-motif svg { width: 100%; height: auto; aspect-ratio: 5 / 3; border-radius: 8px; overflow: hidden; margin-bottom: 4px; }
.vgt-motif strong { font-size: 13.5px; font-weight: 500; color: var(--vgt-forest); }
.vgt-motif small { font-size: 12px; color: var(--vgt-muted); }
.vgt-zones { display: grid; gap: 8px; }
.vgt-zone { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border: 1px solid var(--vgt-line); background: #fff; border-radius: 16px; transition: border-color .2s; }
.vgt-zone.is-active { border-color: var(--vgt-sage); box-shadow: inset 0 0 0 1px var(--vgt-sage); }
.vgt-zone > div { flex: 1; min-width: 0; }
.vgt-zone strong { display: block; font-size: 13px; font-weight: 500; color: var(--vgt-forest); margin-bottom: 4px; }
.vgt-root .vgt-zone select { padding: 7px 10px; font-size: 13.5px; }
.vgt-zone-pick { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--vgt-line); }
.vgt-tools { margin-bottom: 14px; }

/* Finitions */
.vgt-frames { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 520px) { .vgt-frames { grid-template-columns: repeat(2, 1fr); } }
.vgt-root .vgt-frame { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 8px; border: 1px solid var(--vgt-line); border-radius: 16px; background: #fff; text-align: center; transition: all .2s; }
.vgt-root .vgt-frame:hover { border-color: var(--vgt-sage); }
.vgt-root .vgt-frame.is-active { border-color: var(--vgt-forest); box-shadow: inset 0 0 0 1px var(--vgt-forest); }
.vgt-frame-chip { width: 44px; height: 30px; border-radius: 4px; box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0), 0 1px 3px rgba(0, 0, 0, .2); position: relative; }
.vgt-frame-chip::after { content: ""; position: absolute; inset: 6px; background: #5b7f4a; border-radius: 1px; }
.vgt-frame-chip.is-none { background: transparent; box-shadow: none; }
.vgt-frame-chip.is-none::after { inset: 2px; border-radius: 2px; }
.vgt-frame strong { font-size: 13.5px; font-weight: 500; color: var(--vgt-forest); }
.vgt-frame small { font-size: 12px; color: var(--vgt-muted); }
.vgt-options { display: grid; gap: 8px; }
.vgt-root .vgt-option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--vgt-line); background: #fff; border-radius: 16px; cursor: pointer; transition: all .2s; }
.vgt-root .vgt-option:hover { border-color: var(--vgt-sage); }
.vgt-root .vgt-option.is-active { border-color: var(--vgt-forest); }
.vgt-root .vgt-option.is-locked { cursor: default; background: #f7f5f0; }
.vgt-option-body { flex: 1; min-width: 0; }
.vgt-option-body strong { display: block; font-size: 14px; font-weight: 500; color: var(--vgt-forest); }
.vgt-option-body small { display: block; font-size: 12.5px; color: var(--vgt-muted); line-height: 1.4; }
.vgt-option em { font-style: normal; font-size: 13px; font-weight: 500; color: var(--vgt-sage-2); white-space: nowrap; }
.vgt-sub { margin-top: 16px; padding: 16px; border-radius: 16px; background: #f3f0e9; }
.vgt-logo-row { display: flex; gap: 16px; align-items: center; margin-bottom: 8px; }
.vgt-logo-row img { width: 84px; height: 84px; object-fit: contain; background: repeating-conic-gradient(#e9e5dc 0% 25%, #fff 0% 50%) 50% / 14px 14px; border-radius: 12px; border: 1px solid var(--vgt-line); }
.vgt-logo-row img.is-photo { width: 140px; object-fit: cover; }
.vgt-colors { display: flex; gap: 8px; margin: 0 0 14px; }
.vgt-root .vgt-colors button { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.vgt-root .vgt-colors button.is-active { box-shadow: 0 0 0 2px var(--vgt-card), 0 0 0 4px var(--vgt-forest); }
.vgt-root .vgt-upload { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px; border: 1.5px dashed #cfc8b9; border-radius: 16px; color: var(--vgt-forest); font-size: 14px; font-weight: 500; cursor: pointer; background: #fff; transition: all .2s; }
.vgt-root .vgt-upload:hover { border-color: var(--vgt-sage); background: rgba(138, 154, 91, .06); }
.vgt-root .vgt-upload input { display: none; }
.vgt-upload.is-busy { opacity: .6; cursor: progress; }
.vgt-upload-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--vgt-forest); color: var(--vgt-ecru); display: grid; place-items: center; font-size: 14px; }
.vgt-radios { display: grid; gap: 8px; }
.vgt-root .vgt-radio { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--vgt-line); border-radius: 16px; background: #fff; cursor: pointer; }
.vgt-root .vgt-radio.is-active { border-color: var(--vgt-forest); }
.vgt-radio strong { display: block; font-size: 14px; font-weight: 500; color: var(--vgt-forest); }
.vgt-radio small { display: block; font-size: 12.5px; color: var(--vgt-muted); }
.vgt-install-est { margin-top: 16px; border-radius: 16px; background: #f3f0e9; padding: 12px 16px; display: grid; gap: 6px; }
.vgt-install-est > div { display: flex; justify-content: space-between; font-size: 14px; }
.vgt-install-est b { font-weight: 500; color: var(--vgt-forest); }

/* Aperçu */
.vgt-scene canvas { display: block; border-radius: 14px; }
.vgt-empty-photo { padding: 40px 20px; text-align: center; }
.vgt-photo-tools { margin-top: 14px; }
.vgt-ai { text-align: center; padding: 10px 0; }
.vgt-ai img { border-radius: 14px; margin-bottom: 12px; }
.vgt-summary { display: grid; gap: 14px; }
.vgt-sum-block { padding-bottom: 14px; border-bottom: 1px solid var(--vgt-line); }
.vgt-sum-block:last-child { border: 0; padding-bottom: 0; }
.vgt-sum-block p { font-size: 14px; margin: 0; }
.vgt-price-detail { display: grid; gap: 2px; }
.vgt-line { display: flex; justify-content: space-between; gap: 14px; padding: 7px 0; font-size: 14px; border-bottom: 1px dashed var(--vgt-line); }
.vgt-line span small { display: block; font-size: 12px; color: var(--vgt-muted); }
.vgt-line b { font-weight: 500; white-space: nowrap; }
.vgt-line.is-note { color: var(--vgt-sage-2); }
.vgt-line.is-total { border-bottom: 0; padding-top: 12px; font-weight: 500; }
.vgt-line.is-grand { border: 0; border-top: 1px solid var(--vgt-forest); padding-top: 10px; margin-bottom: 8px; }
.vgt-line.is-grand span, .vgt-line.is-grand b { font: 500 26px/1.1 var(--vgt-display); color: var(--vgt-forest); }

/* Barre de prix */
.vgt-pricebar { position: sticky; bottom: 0; z-index: 40; margin: 0 -24px; background: rgba(245, 242, 237, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid var(--vgt-line); box-shadow: 0 -8px 30px rgba(29, 53, 40, .06); }
.vgt-pricebar-inner { max-width: 1320px; margin: 0 auto; padding: 14px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.vgt-pricebar-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.vgt-pricebar-price strong { font: 500 30px/1 var(--vgt-display); color: var(--vgt-forest); }
.vgt-pricebar-actions { display: flex; gap: 10px; }
@media (max-width: 640px) {
  .vgt-hide-sm { display: none; }
  .vgt-pricebar-inner { padding: 10px 16px; }
  .vgt-pricebar-actions { width: 100%; }
  .vgt-root .vgt-pricebar-actions .vgt-btn { flex: 1; padding: 12px 10px; }
  .vgt-stepper-label { display: none; }
  .vgt-stepper-line { margin-bottom: 0; }
  .vgt-root .vgt-card { padding: 18px; }
  .vgt-shapes { grid-template-columns: repeat(2, 1fr); }
}

/* Notices, modale, succès */
.vgt-notice { margin: 12px 0; padding: 12px 16px; border-radius: 12px; font-size: 14px; display: flex; justify-content: space-between; gap: 10px; }
.vgt-notice.is-error { background: #f7e3de; color: #8b2e1f; }
.vgt-notice.is-info { background: #e9eedd; color: var(--vgt-forest); }
.vgt-modal { position: fixed; inset: 0; z-index: 100000; background: rgba(29, 53, 40, .45); display: grid; place-items: center; padding: 20px; animation: vgt-fade .2s both; }
.vgt-root .vgt-modal-box { width: min(480px, 100%); position: relative; }
.vgt-root .vgt-modal-box label { font-size: 13.5px; font-weight: 500; color: var(--vgt-forest); margin: 12px 0 6px; }
.vgt-root .vgt-modal-box .vgt-btn { margin-top: 16px; width: 100%; }
.vgt-modal-close { position: absolute !important; top: 14px; right: 14px; }
.vgt-copy { display: flex; gap: 8px; align-items: center; }
.vgt-root .vgt-copy .vgt-btn { margin: 0; width: auto; }
.vgt-success { max-width: 760px; margin: 0 auto; text-align: center; }
.vgt-success h2 { font-size: 44px; margin: 14px 0 10px; }
.vgt-success-icon { width: 72px; height: 72px; margin: 6px auto 0; border-radius: 50%; background: var(--vgt-sage); color: var(--vgt-forest); display: grid; place-items: center; font-size: 30px; }
.vgt-stats.is-center { margin: 26px 0 0; padding: 20px 0; border-top: 1px solid var(--vgt-line); border-bottom: 1px solid var(--vgt-line); }
