/* =============================================
   3DVue_Visualisation — WPCode
   CSS spécifique page Visualisation Web 3D
   Le CSS global (variables, sections, grilles, boutons,
   FAQ, CTA, dv-icon, dv-h2, dv-text-body…) est dans
   3DVue_Global_CSS
   ============================================= */

/* ── HERO ── */
.dv-visu-hero {
  background: var(--dv-violet-bg);
  overflow: hidden;
  position: relative;
}

.dv-visu-hero__glow {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 560px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.dv-visu-hero__inner {
  max-width: var(--dv-max-width);
  margin: 0 auto;
  padding: 0 var(--dv-section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: auto;
}

.dv-visu-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.dv-visu-hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

/* Pill label */
.dv-visu-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.16);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: var(--dv-radius-full);
  padding: 6px 14px;
  width: fit-content;
  margin-bottom: 28px;
}

.dv-visu-hero__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dv-violet-light);
  flex-shrink: 0;
}

.dv-visu-hero__pill span {
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-violet-light) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* CTA + micro */
.dv-visu-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.dv-visu-hero__micro {
  font-size: 13px;
  color: rgba(255,255,255,0.3) !important;
}

/* Image + badge */
.dv-visu-hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.dv-visu-hero__img-halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.dv-visu-hero__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 32px 64px rgba(124,58,237,0.3));
}

.dv-visu-hero__badge {
  position: absolute;
  bottom: 32px;
  left: -16px;
  background: var(--dv-violet-surface);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: var(--dv-radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.dv-visu-hero__badge-icon {
  width: 32px;
  height: 32px;
  background: rgba(196,181,253,0.1);
  border-radius: var(--dv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dv-violet-light);
  flex-shrink: 0;
}

.dv-visu-hero__badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dv-visu-hero__badge-label {
  font-size: 11px;
  font-weight: 700;
  color: white !important;
  letter-spacing: 0.02em;
}

.dv-visu-hero__badge-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35) !important;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .dv-visu-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding-top: 64px;
  }
  .dv-visu-hero__left  { padding: 0 0 40px; }
  .dv-visu-hero__right { padding: 0 0 64px; }
  .dv-visu-hero__badge { left: 0; bottom: 16px; }
}


/* ── SECTION 2 : DÉMO VISIONNEUSE ── */
.dv-visu-demo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Colonne gauche — sticky */
.dv-visu-demo__left {
  display: flex;
  flex-direction: column;
  gap: 0px;
  position: sticky;
  top: 88px;
  align-self: start;
  min-width: 0; /* ← ajouter cette ligne */
}

/* Maquette navigateur */
.dv-visu-demo__frame {
  background: var(--dv-bg-soft);
  border: 1px solid var(--dv-border);
  border-radius: var(--dv-radius-lg);
  overflow: hidden;
}

.dv-visu-demo__frame-bar {
  height: 32px;
  background: white;
  border-bottom: 1px solid var(--dv-border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.dv-visu-demo__frame-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dv-border);
}

.dv-visu-demo__viewer {
  position: relative;
  background: #EEEAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(124,58,237,0.3);
  font-size: 13px;
  font-weight: 600;
}

.dv-visu-demo__viewer-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(124,58,237,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Barre d'outils */
.dv-visu-demo__toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: white;
  border-top: 1px solid var(--dv-border);
}

.dv-visu-demo__tool {
  width: 32px;
  height: 32px;
  border-radius: var(--dv-radius-sm);
  background: var(--dv-bg-soft);
  border: 1px solid var(--dv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dv-violet);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.dv-visu-demo__tool:hover {
  background: #EDE9FE;
  border-color: rgba(124,58,237,0.3);
}

.dv-visu-demo__tool--ar {
  margin-left: auto;
  background: #EDE9FE;
  border-color: rgba(124,58,237,0.2);
  width: auto;
  padding: 0 10px;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-violet);
  letter-spacing: 0.04em;
}

.dv-visu-demo__caption {
  font-size: 13px;
  color: var(--dv-grey-light);
  line-height: 1.6;
}

/* Colonne droite — bénéfices */
.dv-visu-demo__right {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.dv-visu-demo__intro {
  margin-bottom: 40px;
}

.dv-visu-benefit {
  padding: 28px 0;
  border-bottom: 1px solid var(--dv-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dv-visu-benefit:first-of-type {
  border-top: 1px solid var(--dv-border);
}

.dv-visu-benefit__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.dv-visu-benefit__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--dv-radius-md);
  background: #EDE9FE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dv-violet);
  flex-shrink: 0;
  margin-top: 2px;
}

.dv-visu-benefit__title {
  font-size: 17px !important;
}

.dv-visu-benefit__body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--dv-grey);
  padding-left: 52px;
}

.dv-visu-benefit__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 52px;
  margin-top: 2px;
}

.dv-visu-benefit__stat-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--dv-violet);
  letter-spacing: -0.5px;
}

.dv-visu-benefit__stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--dv-grey-light);
}

.dv-visu-demo__source {
  font-size: 11px;
  color: var(--dv-grey-light);
  text-align: right;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .dv-visu-demo__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .dv-visu-demo__left { position: static; }
  .dv-visu-benefit__body,
  .dv-visu-benefit__stat { padding-left: 0; }
}


/* ── SECTION 3 : FEATURE CARDS (fond sombre) ── */
.dv-visu-feature-card {
  background: var(--dv-violet-surface);
  border: 1px solid var(--dv-border-dark);
  border-radius: var(--dv-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--dv-duration) var(--dv-ease),
              border-color var(--dv-duration),
              box-shadow var(--dv-duration) var(--dv-ease);
}

.dv-visu-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196,181,253,0.25);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.dv-visu-feature-card__title {
  color: white !important;
  margin-bottom: 14px;
}

.dv-visu-feature-card__body {
  color: rgba(255,255,255,0.45) !important;
  flex: 1;
  margin-bottom: 24px;
}

.dv-visu-feature-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-violet-light) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ── SECTION 4 : CAS D'USAGE (rangées alternées) ── */
.dv-visu-cas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Inversion via order — pas de direction:rtl */
.dv-visu-cas--reverse .dv-visu-cas__img-wrap { order: 2; }
.dv-visu-cas--reverse .dv-visu-cas__text    { order: 1; }

.dv-visu-cas__img-wrap {
  border-radius: var(--dv-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--dv-bg-soft);
}

.dv-visu-cas__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--dv-ease);
}

.dv-visu-cas__img-wrap:hover img {
  transform: scale(1.03);
}

.dv-visu-cas__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Checklist */
.dv-visu-cas__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.dv-visu-cas__check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dv-grey-dark);
}

.dv-visu-cas__check::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #EDE9FE url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%237C3AED' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .dv-visu-cas {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dv-visu-cas--reverse .dv-visu-cas__img-wrap { order: 0; }
  .dv-visu-cas--reverse .dv-visu-cas__text    { order: 0; }
}


/* ── SECTION 5 : INTÉGRATION (fond violet-surface) ── */
.dv-visu-integration {
  background: var(--dv-violet-surface);
  padding: var(--dv-section-py) var(--dv-section-px);
}

.dv-visu-integration__inner {
  max-width: var(--dv-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dv-visu-integration__left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dv-visu-integration__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.55) !important;
  margin-bottom: 28px;
}

/* Steps */
.dv-visu-integration__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.dv-visu-integration__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.dv-visu-integration__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124,58,237,0.4);
  border: 1px solid rgba(196,181,253,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--dv-violet-light) !important;
  flex-shrink: 0;
  margin-top: 1px;
}

.dv-visu-integration__step-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.55) !important;
}

.dv-visu-integration__step-text strong {
  color: white !important;
  font-weight: 600;
}

.dv-visu-integration__note {
  font-size: 13px;
  color: rgba(255,255,255,0.3) !important;
  line-height: 1.6;
}

.dv-visu-integration__note a {
  color: var(--dv-violet-light) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Logos droite */
.dv-visu-integration__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.dv-visu-integration__logos-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.3) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
}

.dv-visu-integration__logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.dv-visu-integration__logo {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--dv-radius-md);
  aspect-ratio: 2/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--dv-ease);
}

.dv-visu-integration__logo:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,181,253,0.2);
  transform: translateY(-3px);
}

.dv-visu-integration__logo img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}

.dv-visu-integration__logo:hover img {
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .dv-visu-integration {
    padding: 64px 24px;
  }
  .dv-visu-integration__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .dv-visu-integration {
    padding: 48px 16px;
  }
  .dv-visu-integration__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =============================================
   JIELDÉ — CONFIGURATEUR (inline)
   WPCode : jielde-cfg-CSS
   ============================================= */

#jielde-cfg {
  --cfg-bg:      #f5f5f5;
  --cfg-border:  #e0e0e0;
  --cfg-accent:  #c8a96e;
  --cfg-radius:  10px;
  --cfg-black:   #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background: var(--cfg-bg);
  border: 1px solid var(--cfg-border);
  border-radius: var(--cfg-radius) var(--cfg-radius) 0 0;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}
/* ── ONGLETS COLLECTIONS ── */
#jielde-cfg .cfg-collections {
  display: flex;
  gap: 0;
  background: white;
  border-bottom: 1px solid var(--cfg-border);
  overflow-x: auto;
  scrollbar-width: none;
}
#jielde-cfg .cfg-collections::-webkit-scrollbar { display: none; }

#jielde-cfg .cfg-col-tab {
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
#jielde-cfg .cfg-col-tab:hover { color: #555; }
#jielde-cfg .cfg-col-tab.active {
  color: var(--cfg-black);
  border-bottom-color: var(--cfg-black);
}

/* ── BANDE VIGNETTES ── */
#jielde-cfg .cfg-thumbs-wrap {
  position: relative;
  background: white;
  border-bottom: 1px solid var(--cfg-border);
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden; /* ← ajouter cette ligne */
}

#jielde-cfg .cfg-thumbs {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 8px 0;
  flex: 1;
  min-width: 0;
  align-items: center;
  height: 80px;
  box-sizing: border-box;
}
#jielde-cfg .cfg-thumbs::-webkit-scrollbar { display: none; }

#jielde-cfg .cfg-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  background: #f0f0f0;
  transition: border-color .2s, transform .15s;
  position: relative;
}
#jielde-cfg .cfg-thumb:hover { transform: scale(1.05); border-color: #bbb; }
#jielde-cfg .cfg-thumb.active { border-color: var(--cfg-black); }

#jielde-cfg .cfg-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 4px;
  display: block;
}
#jielde-cfg .cfg-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; opacity: 0.3;
}

#jielde-cfg .cfg-thumbs-arrow {
  flex-shrink: 0;
  width: 28px !important; height: 28px !important;
  border-radius: 50%;
  border: 1px solid var(--cfg-border);
  background: white;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin: 0 4px;
  transition: all .2s;
  line-height: 1;
}
#jielde-cfg .cfg-thumbs-arrow:hover { background: #f0f0f0; color: #333; }
#jielde-cfg .cfg-thumbs-arrow.hidden { opacity: 0; pointer-events: none; }


/* ── VIEWER ── */
#jielde-cfg .cfg-viewer-wrap {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 400px  !important;
  aspect-ratio: unset !important;
}

/* viewer */
#jielde-cfg viewer-3dvue {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  min-height: 400px  !important;
  aspect-ratio: unset !important;
}

/* iframe interne */
#jielde-cfg viewer-3dvue iframe {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

#jielde-cfg .cfg-model-label {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
  pointer-events: none;
  white-space: nowrap;
}
/* ── BOTTOM ── */
.cfg-bottom {
  background: white;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cfg-bottom .cfg-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.cfg-bottom .cfg-swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.cfg-bottom .cfg-swatch:hover { transform: scale(1.2); }
.cfg-bottom .cfg-swatch.active {
  box-shadow: 0 0 0 2px white, 0 0 0 4px #1a1a1a;
  transform: scale(1.15);
}

.cfg-bottom .cfg-bottom-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cfg-bottom .cfg-finish-tabs {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.cfg-bottom .cfg-ftab {
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #888;
  background: #fafafa;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all .2s;
}
.cfg-bottom .cfg-ftab:hover { color: #333; border-color: #aaa; }
.cfg-bottom .cfg-ftab.active { background: #1a1a1a; color: white; border-color: #1a1a1a; }

.cfg-bottom .cfg-options-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cfg-bottom .cfg-opt-btn {
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: #666;
  background: #fafafa;
  cursor: pointer;
  transition: all .2s;
}
.cfg-bottom .cfg-opt-btn:hover { border-color: #aaa; color: #333; }
.cfg-bottom .cfg-opt-btn.active { background: #1a1a1a; color: white; border-color: #1a1a1a; }
.cfg-bottom .cfg-opt-btn.hidden { display: none; }

.cfg-bottom .cfg-capuchon,
.cfg-bottom .cfg-int {
  display: flex; align-items: center; gap: 6px;
}
.cfg-bottom .cfg-capuchon.hidden,
.cfg-bottom .cfg-int.hidden { display: none; }

.cfg-bottom .cfg-opt-label {
  font-size: 9px; color: #bbb;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

.cfg-bottom .cap-btn,
.cfg-bottom .int-btn {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid #ddd; cursor: pointer;
  transition: border-color .2s, box-shadow .2s; flex-shrink: 0;
}
.cfg-bottom .cap-btn.active,
.cfg-bottom .int-btn.active {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.15);
}
.cfg-bottom .cap-btn-noir { background: #1c1c1c; }
.cfg-bottom .cap-btn-chrome { background: linear-gradient(135deg,#e8e8e8 0%,#a0a0a0 40%,#d8d8d8 60%,#888 100%); }
.cfg-bottom .int-btns { display: flex; gap: 5px; }

/* ── TOOLTIP ── */
#jielde-cfg .cfg-tip {
  position: fixed; z-index: 10000;
  background: rgba(15,15,15,0.9);
  border: 1px solid #333;
  color: #eee; font-size: 10px;
  padding: 3px 8px; border-radius: 4px;
  pointer-events: none; display: none;
  transform: translate(-50%, -130%);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  #jielde-cfg .cfg-thumb { width: 52px; height: 52px; }
  #jielde-cfg .cfg-swatch { width: 20px; height: 20px; }
}

#jielde-cfg button.cfg-thumbs-arrow {
  border-radius: 50% !important;
  padding: 0 !important;
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  line-height: 1 !important;
}

/* ── CTA JIELDÉ ── */
.jielde-cta-wrap {
  margin-top: 16px;
  text-align: center;
}
.jielde-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--dv-violet);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 40px;
  transition: background .2s, transform .15s;
}
.jielde-cta-btn:hover {
  background: var(--dv-violet-dark);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}