
.roxika-cfg__h3 { scroll-margin-top: 84px; }

.roxika-cfg-root {
  scroll-margin-top: 84px;

  --rx-ink: #12293D;
  --rx-ink-60: rgba(18, 41, 61, .6);
  --rx-azur: #1567A6;
  --rx-azur-mid: #9CC4DD;
  --rx-azur-light: #DCEEFA;
  --rx-azur-pale: #EAF4FB;
  --rx-sun-pale: #FBE6B8;
  --rx-sun: #F2A83C;
  --rx-white: #FFFFFF;
  --rx-off: #F7FAFC;
  --rx-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --rx-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  font-family: var(--rx-sans);
  color: var(--rx-ink);
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  line-height: 1.5;
  box-sizing: border-box;
}
.roxika-cfg-root *, .roxika-cfg-root *::before, .roxika-cfg-root *::after { box-sizing: inherit; }
:where(.roxika-cfg-root button) { font: inherit; color: inherit; cursor: pointer; background: none; border: none; padding: 0; }

.roxika-cfg__head { text-align: center; margin-bottom: 28px; }
.roxika-cfg__title {
  font-family: var(--rx-serif);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -0.025em;
  margin: 14px 0 22px;
}
.roxika-cfg__title em { font-style: italic; color: var(--rx-azur); }

.roxika-cfg__pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--rx-azur-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}
.roxika-cfg__pill--sun { background: var(--rx-sun-pale); }

.roxika-cfg__stepper {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.roxika-cfg__step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rx-off);
  border: 1.5px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--rx-ink-60);
}
.roxika-cfg__step:disabled { cursor: not-allowed; opacity: .55; }
.roxika-cfg__step.is-current { background: var(--rx-white); border-color: var(--rx-ink); color: var(--rx-ink); }
.roxika-cfg__step.is-done { background: var(--rx-azur-pale); color: var(--rx-azur); }
.roxika-cfg__step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--rx-azur-light);
  font-size: 11px;
  font-weight: 700;
}
.roxika-cfg__step.is-current .roxika-cfg__step-dot { background: var(--rx-ink); color: var(--rx-white); }
.roxika-cfg__step.is-done .roxika-cfg__step-dot { background: var(--rx-azur); color: var(--rx-white); }

@media (max-width: 699px) {
  .roxika-cfg__stepper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding: 2px 10px;
    margin: 0 -10px;
  }
  .roxika-cfg__stepper::-webkit-scrollbar { display: none; }
  .roxika-cfg__stepper {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  .roxika-cfg__stepper > li { flex: 0 0 auto; scroll-snap-align: center; }
  .roxika-cfg__step { white-space: nowrap; }
}

.roxika-cfg__layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 820px) {
  .roxika-cfg__layout { grid-template-columns: 1fr; }
}
.roxika-cfg__side { position: sticky; top: 16px; display: grid; gap: 16px; }

@media (max-width: 820px) {
  .roxika-cfg__side { display: contents; }
  .roxika-cfg__preview { order: 1; }
  .roxika-cfg__panel   { order: 2; }
  .roxika-cfg__recap   { order: 3; }
}

.roxika-cfg__preview {
  background: var(--rx-off);
  border-radius: 24px;
  padding: 18px;
  text-align: center;
}
.roxika-cfg__preview svg { width: 100%; height: auto; display: block; }
.roxika-cfg__caption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rx-ink-60);
}

.roxika-cfg__recap {
  background: var(--rx-white);
  border: 1.5px solid var(--rx-azur-light);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(18, 41, 61, .07);
}
.roxika-cfg__recap-title {
  font-family: var(--rx-serif);
  font-style: italic;
  font-size: 19px;
  margin-bottom: 10px;
}
.roxika-cfg__recap-empty { font-size: 13px; color: var(--rx-ink-60); margin: 0; }
.roxika-cfg__recap-list { margin: 0; display: grid; gap: 6px; }
.roxika-cfg__recap-list > div { display: flex; justify-content: space-between; gap: 14px; font-size: 13px; }
.roxika-cfg__recap-list dt { color: var(--rx-ink-60); flex-shrink: 0; }
.roxika-cfg__recap-list dd { margin: 0; text-align: right; font-weight: 600; }
.roxika-cfg__recap-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1.5px dashed var(--rx-azur-light);
  font-size: 13px;
  color: var(--rx-ink-60);
}
.roxika-cfg__recap-price strong { font-size: 24px; color: var(--rx-azur); font-weight: 700; }

.roxika-cfg__panel {
  background: var(--rx-azur-pale);
  border-radius: 24px;
  padding: 26px 26px 22px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.roxika-cfg__h3 {
  font-family: var(--rx-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.roxika-cfg__sub { font-size: 14px; color: var(--rx-ink-60); margin: 0 0 20px; }

.roxika-cfg__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.roxika-cfg__card {
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 18px 14px;
  display: grid;
  justify-items: center;
  gap: 8px;
  transition: border-color .15s, box-shadow .15s;
}
.roxika-cfg__card:hover { box-shadow: 0 6px 18px rgba(18, 41, 61, .1); }
.roxika-cfg__card.is-selected { border-color: var(--rx-azur); box-shadow: 0 6px 18px rgba(21, 103, 166, .18); }
.roxika-cfg__card-letter {
  font-family: var(--rx-serif);
  font-size: 34px;
  font-weight: 500;
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--rx-azur-light);
  color: var(--rx-azur);
}
.roxika-cfg__card.is-selected .roxika-cfg__card-letter { background: var(--rx-azur); color: var(--rx-white); }
.roxika-cfg__card-name { font-weight: 700; font-size: 15px; }
.roxika-cfg__card-price { font-size: 13px; font-weight: 600; color: var(--rx-azur); }
.roxika-cfg__card-desc { font-size: 12px; color: var(--rx-ink-60); text-align: center; line-height: 1.4; }

.roxika-cfg__cards--six { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.roxika-cfg__card-fiche { font-size: 12px; color: var(--rx-ink-60); text-align: center; line-height: 1.4; }

.roxika-cfg__cards--famille { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.roxika-cfg__cards--famille .roxika-cfg__card { min-height: 124px; }

.roxika-cfg__cards--products { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

.roxika-cfg__cards--ateliers { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.roxika-cfg__card--atelier { min-height: 128px; }

.roxika-cfg__cards--intemporels { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 420px) { .roxika-cfg__cards--intemporels { grid-template-columns: 1fr; } }
.roxika-cfg__intemporel-photo {
  display: block;
  width: 100%;
  height: 92px;
  border-radius: 12px;
  margin-bottom: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--rx-white);
}
.roxika-cfg__card-letter--emoji { font-family: inherit; font-size: 28px; }

.roxika-cfg__cards--leash { margin-bottom: 16px; }

.roxika-cfg__materials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.roxika-cfg__material {
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  display: grid;
  gap: 5px;
  transition: border-color .15s, box-shadow .15s;
}
.roxika-cfg__material:hover { box-shadow: 0 6px 18px rgba(18, 41, 61, .1); }
.roxika-cfg__material.is-selected { border-color: var(--rx-azur); box-shadow: 0 6px 18px rgba(21, 103, 166, .18); }
.roxika-cfg__material:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }
.roxika-cfg__material-name { display: block; font-weight: 700; font-size: 14px; }
.roxika-cfg__material-desc { display: block; font-size: 12px; color: var(--rx-ink-60); line-height: 1.45; }

.roxika-cfg__coloris-head {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  margin: 4px 0 10px;
  font-weight: 700; font-size: 14px;
}
.roxika-cfg__coloris-head span { font-weight: 400; font-size: 12px; color: var(--rx-ink-60); }
.roxika-cfg__weavings + .roxika-cfg__coloris-head {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 41, 61, .1);
}
.roxika-cfg__weave-fam {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--rx-ink-60);
}
.roxika-cfg__weave-fam:first-of-type { margin-top: 4px; }
.roxika-cfg__weave-fam span {
  text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 12px;
}

.roxika-cfg__colormap {
  margin: 0 0 16px;
  background: var(--rx-white);
  border-radius: 16px;
  overflow: hidden;
}
.roxika-cfg__colormap img { display: block; width: 100%; max-width: 380px; margin: 0 auto; }
.roxika-cfg__colormap figcaption {
  padding: 8px 14px 12px;
  font-size: 12px; color: var(--rx-ink-60); text-align: center;
}

.roxika-cfg__weavings {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.roxika-cfg__weaving {
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 8px 8px 10px;
  text-align: center;
  display: grid;
  align-content: start;
  gap: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.roxika-cfg__weaving:hover:not(:disabled) { box-shadow: 0 5px 14px rgba(18, 41, 61, .1); }
.roxika-cfg__weaving.is-selected { border-color: var(--rx-azur); }
.roxika-cfg__weaving:disabled { opacity: .45; cursor: not-allowed; }
.roxika-cfg__weaving-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(18, 41, 61, .12);
}
.roxika-cfg__weaving-photo--empty {
  background: repeating-linear-gradient(45deg, var(--rx-azur-light) 0 8px, var(--rx-azur-pale) 8px 16px);
}
@media (max-width: 699px) {
  .roxika-cfg__weavings:not(.roxika-cfg__weavings--compacte) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}

.roxika-cfg__weavings--compacte {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.roxika-cfg__weavings--compacte .roxika-cfg__weaving {
  grid-template-columns: 56px 1fr;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 8px 12px 8px 8px;
}
.roxika-cfg__weavings--compacte .roxika-cfg__weaving-photo {
  width: 56px;
  aspect-ratio: 1;
  border-radius: 10px;
  grid-row: span 2;
}
.roxika-cfg__weavings--compacte .roxika-cfg__weaving-name { align-self: end; }
.roxika-cfg__weavings--compacte .roxika-cfg__weaving-meta { align-self: start; }

@media (max-width: 699px) {
  .roxika-cfg__weavings--compacte { grid-template-columns: 1fr; gap: 6px; }
}

.roxika-cfg__weaving-name { font-weight: 700; font-size: 13.5px; }
.roxika-cfg__weaving-meta { font-size: 11px; color: var(--rx-ink-60); }
.roxika-cfg__note-box {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: var(--rx-sun-pale);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
}

.roxika-cfg__note-lien {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.roxika-cfg__slots { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.roxika-cfg__slot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rx-white);
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
}
.roxika-cfg__slot.is-active { border-color: var(--rx-ink); }
.roxika-cfg__slot.is-locked { cursor: default; border-color: var(--rx-azur-light); }
.roxika-cfg__slot-dot {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: repeating-conic-gradient(var(--rx-azur-light) 0 25%, var(--rx-white) 0 50%);
  border: 1px solid rgba(18, 41, 61, .2);
}
.roxika-cfg__slot-actions { display: flex; gap: 16px; margin-bottom: 12px; }
.roxika-cfg__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--rx-azur);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.roxika-cfg__swatchbox {
  background: var(--rx-white);
  border-radius: 16px;
  padding: 14px 16px;
  max-height: 340px;
  overflow-y: auto;
  display: grid;
  gap: 12px;
}
.roxika-cfg__nuance-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rx-ink-60);
  margin-bottom: 6px;
}
.roxika-cfg__swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 9px;
}
.roxika-cfg__swatch {
  position: relative;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 2px solid rgba(18, 41, 61, .12);
  transition: transform .12s ease-out, box-shadow .12s;
}
.roxika-cfg__swatch:hover { transform: scale(1.22); box-shadow: 0 4px 12px rgba(18, 41, 61, .3); z-index: 5; }
.roxika-cfg__swatch.is-selected { border-color: var(--rx-ink); box-shadow: 0 0 0 3px var(--rx-sun-pale); }

.roxika-cfg__peek {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s ease-out, left .13s ease-out, top .13s ease-out;
  background: #FFFFFF;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(18, 41, 61, .3), 0 0 0 1px rgba(18, 41, 61, .08);
  text-align: center;
}
.roxika-cfg__peek.is-open { opacity: 1; }
.roxika-cfg__peek-img {
  width: 168px;
  height: 168px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(18, 41, 61, .12);
}
.roxika-cfg__peek-name {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #12293D;
  width: 168px;
}
@media (hover: none) {
  .roxika-cfg__swatch:hover { transform: none; box-shadow: none; }
  .roxika-cfg__peek-img { width: 156px; height: 156px; }
  .roxika-cfg__peek-name { width: 156px; }
}
.roxika-cfg__swatch-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rx-white);
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .5);
}
.roxika-cfg__swatch.is-light .roxika-cfg__swatch-check { color: var(--rx-ink); text-shadow: none; }
.roxika-cfg__chosen-label { font-size: 14px; margin: 12px 0 0; }

.roxika-cfg__size-group { margin-bottom: 18px; }
.roxika-cfg__size-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rx-ink-60);
  margin-bottom: 8px;
}
.roxika-cfg__sizes { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (max-width: 480px) { .roxika-cfg__sizes { grid-template-columns: repeat(3, 1fr); } }
.roxika-cfg__size {
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 10px 6px;
  display: grid;
  justify-items: center;
  gap: 2px;
  transition: border-color .15s;
}
.roxika-cfg__size.is-selected { border-color: var(--rx-azur); }
.roxika-cfg__size-name { font-weight: 800; font-size: 16px; }
.roxika-cfg__size-range { font-size: 10.5px; color: var(--rx-ink-60); white-space: nowrap; }
.roxika-cfg__size-sup { font-size: 11px; font-weight: 700; color: var(--rx-azur); }

.roxika-cfg__cm { display: flex; align-items: center; gap: 10px; }
.roxika-cfg__cm-input {
  width: 130px;
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 22px;
  font-weight: 800;
  color: var(--rx-ink);
  text-align: center;
  transition: border-color .15s;
}
.roxika-cfg__cm-input:focus { outline: none; border-color: var(--rx-azur); }
.roxika-cfg__cm-unite { font-size: 16px; font-weight: 700; color: var(--rx-ink-60); }
.roxika-cfg__hint { font-size: 12.5px; color: var(--rx-ink-60); margin: 8px 0 0; }
.roxika-cfg__alerte {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: var(--rx-sun-pale);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--rx-ink);
}
.roxika-cfg__lien {
  color: var(--rx-azur);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.roxika-cfg__lien-bouton {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--rx-azur);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  white-space: nowrap;
}
.roxika-cfg__lien-bouton:hover { text-decoration-thickness: 2px; }

.roxika-cfg__options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 560px) { .roxika-cfg__options { grid-template-columns: 1fr; } }
.roxika-cfg__option {
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  text-align: left;
  transition: border-color .15s;
}
.roxika-cfg__option.is-selected { border-color: var(--rx-azur); }
.roxika-cfg__options--photos { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }
.roxika-cfg__options--photos .roxika-cfg__option { padding: 8px; gap: 2px; justify-items: center; text-align: center; }
.roxika-cfg__options--photos .roxika-cfg__option-img { max-width: 78px; }
.roxika-cfg__options--photos .roxika-cfg__option-name { font-size: 11.5px; font-weight: 600; line-height: 1.3; }
.roxika-cfg__options--photos .roxika-cfg__option-note { display: none; }
.roxika-cfg__options--duo { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.roxika-cfg__options--duo .roxika-cfg__option { padding: 12px; }
.roxika-cfg__options--duo .roxika-cfg__option-img { max-width: 104px; }
.roxika-cfg__options--duo .roxika-cfg__option-name { font-size: 14px; }
.roxika-cfg__options--duo .roxika-cfg__option-note { display: block; font-size: 12px; line-height: 1.45; }
.roxika-cfg__option-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: #fff center / 82% no-repeat;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--rx-ink-60);
}
.roxika-cfg__option-name { font-weight: 700; font-size: 14.5px; }
.roxika-cfg__option-note { font-size: 12.5px; color: var(--rx-ink-60); line-height: 1.45; }
.roxika-cfg__texte {
  width: 100%;
  max-width: 320px;
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  font-size: 17px;
  color: var(--rx-ink);
  transition: border-color .15s;
}
.roxika-cfg__texte:focus { outline: none; border-color: var(--rx-azur); }
.roxika-cfg__texte--option { max-width: none; margin-top: 10px; }

.roxika-cfg__assorti-libre {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.45;
  opacity: .72;
}

.roxika-cfg__recap-list--full { gap: 10px; background: var(--rx-white); border-radius: 16px; padding: 18px 20px; }
.roxika-cfg__recap-list--full > div { font-size: 14.5px; }
.roxika-cfg__recap-price--full { border-top: none; margin-top: 16px; font-size: 15px; }
.roxika-cfg__recap-price--full strong { font-size: 32px; }
.roxika-cfg__note { font-size: 12.5px; color: var(--rx-ink-60); font-style: italic; }
.roxika-cfg__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.roxika-cfg__actions > .roxika-cfg__btn,
.roxika-cfg__actions > a.roxika-cfg__btn {
  min-width: 260px;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 420px) {
  .roxika-cfg__actions > .roxika-cfg__btn,
  .roxika-cfg__actions > a.roxika-cfg__btn { min-width: 0; width: 100%; }
}

.roxika-cfg__panier-ok {
  margin: 10px 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1f7a4d;
}
.roxika-cfg__note--erreur {
  font-style: normal;
  color: #a3352b;
  background: #fdf2f0;
  border: 1px solid #f0d5d0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.45;
}
.roxika-cfg__soin {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 41, 61, .1);
  font-size: 13px;
  line-height: 1.5;
  color: var(--rx-ink-60);
}
.roxika-cfg__soin--set {
  display: flex;
  gap: 14px;
  align-items: center;
}
.roxika-cfg__soin--set img {
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  display: block;
}
.roxika-cfg__soin--set p { margin: 0; min-width: 0; }

.roxika-cfg__photo {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 41, 61, .1);
}
.roxika-cfg__photo-titre {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rx-ink);
}
.roxika-cfg__photo-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--rx-white);
  border: 1px solid rgba(18, 41, 61, .15);
  font-size: 13px;
  font-weight: 600;
  color: var(--rx-ink);
  cursor: pointer;
}
.roxika-cfg__photo-btn:hover { border-color: var(--rx-azur); color: var(--rx-azur); }
.roxika-cfg__photo-btn input { display: none; }
.roxika-cfg__photo-ok {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 9px 14px;
  border-radius: 12px;
  background: var(--rx-white);
  font-size: 13px;
  font-weight: 600;
}
.roxika-cfg__photo-ok span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.roxika-cfg__photo-x {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--rx-ink-60);
  padding: 0 2px;
}
.roxika-cfg__photo-x:hover { color: var(--rx-ink); }
.roxika-cfg__insta {
  display: block;
  width: 100%;
  max-width: 280px;
  margin-top: 8px;
  background: var(--rx-white);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--rx-ink);
  transition: border-color .15s;
}
.roxika-cfg__insta:focus { outline: none; border-color: var(--rx-azur); }

.roxika-cfg__viewtabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.roxika-cfg__viewtab {
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  background: var(--rx-white);
  border: 1.5px solid transparent;
  color: var(--rx-ink-60);
}
.roxika-cfg__viewtab.is-active { border-color: var(--rx-ink); color: var(--rx-ink); }
.roxika-cfg__viewtab:disabled { opacity: .45; cursor: not-allowed; }

.roxika-cfg__gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.roxika-cfg__gallery-main {
  display: block;
  width: 100%;
  position: relative;
  cursor: zoom-in;
  border-radius: 16px;
  overflow: hidden;
}
.roxika-cfg__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.roxika-cfg__gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .15s, opacity .15s;
  opacity: .75;
}
.roxika-cfg__gallery-thumb .roxika-cfg__gallery-img { border-radius: 10px; }
.roxika-cfg__gallery-thumb:hover { opacity: 1; }
.roxika-cfg__gallery-thumb.is-active { border-color: var(--rx-azur); opacity: 1; }
.roxika-cfg__gallery-thumb.is-weave { opacity: 1; border-style: dashed; border-color: rgba(21, 103, 166, .45); }
.roxika-cfg__gallery-thumb.is-weave.is-active { border-style: solid; border-color: var(--rx-azur); }
.roxika-cfg__gallery-welcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.roxika-cfg__gallery-cell { display: grid; gap: 4px; }
.roxika-cfg__gallery-cell-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--rx-ink-60);
  text-align: center;
}
.roxika-cfg__gallery-note {
  margin: 10px 0 0;
  font-size: 11.5px;
  font-style: italic;
  color: var(--rx-ink-60);
  text-align: center;
}
.roxika-cfg__zoom-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.roxika-cfg__coats { margin-top: 12px; text-align: center; }
.roxika-cfg__coats-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rx-ink-60);
  margin-bottom: 8px;
}
.roxika-cfg__coats-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.roxika-cfg__coat {
  width: 26px; height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(18, 41, 61, .15);
  transition: transform .1s;
}
.roxika-cfg__coat:hover { transform: scale(1.15); }
.roxika-cfg__coat.is-selected { border-color: var(--rx-ink); box-shadow: 0 0 0 3px var(--rx-sun-pale); }
.roxika-cfg__coats-name { margin-top: 6px; font-size: 12.5px; font-weight: 600; color: var(--rx-ink-60); }

.roxika-cfg__preview-zoom { display: block; width: 100%; position: relative; cursor: zoom-in; }
.roxika-cfg__zoom-hint {
  position: absolute;
  right: 8px; bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, .85);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--rx-ink-60);
}
.roxika-cfg__zoom {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(18, 41, 61, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.roxika-cfg__zoom-inner {
  background: var(--rx-white);
  border-radius: 24px;
  padding: 20px;
  max-width: min(860px, 94vw);
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  text-align: center;
  cursor: default;
}
.roxika-cfg__zoom-inner svg { width: 100%; height: auto; }
.roxika-cfg__zoom-close { margin-top: 8px; }

.roxika-cfg__zoom-inner { position: relative; }
.roxika-cfg__zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 2px 12px rgba(18, 41, 61, .28);
  color: #12293d;
  font-size: 30px;
  line-height: 1;
  padding: 0 0 4px;
  cursor: pointer;
}
.roxika-cfg__zoom-nav:hover { background: #fff; }
.roxika-cfg__zoom-nav--prev { left: 26px; }
.roxika-cfg__zoom-nav--next { right: 26px; }
.roxika-cfg__zoom-count {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 58px;
  background: rgba(18, 41, 61, .78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}
@media (max-width: 560px) {
  .roxika-cfg__zoom { padding: 0; }
  .roxika-cfg__zoom-inner { padding: 8px 8px 12px; border-radius: 18px; max-width: 100%; }
  .roxika-cfg__zoom-nav { width: 38px; height: 38px; font-size: 24px; }
  .roxika-cfg__zoom-nav--prev { left: 8px; }
  .roxika-cfg__zoom-nav--next { right: 8px; }
  .roxika-cfg__zoom-count { bottom: 52px; }
}

@media (max-width: 699px) {
  .roxika-cfg__nav {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin: 0 -26px -22px;
    padding: 12px 26px calc(14px + env(safe-area-inset-bottom));
    background: var(--rx-azur-pale);
    border-top: 1px solid rgba(18, 41, 61, .08);
    box-shadow: 0 -6px 18px rgba(18, 41, 61, .06);
  }
}

.roxika-cfg__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}
.roxika-cfg__btn {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  transition: opacity .15s, box-shadow .15s;
}
.roxika-cfg__btn--primary { background: var(--rx-ink); color: var(--rx-white); }
.roxika-cfg__btn--primary:hover:not(:disabled) { opacity: .9; box-shadow: 0 6px 16px rgba(18, 41, 61, .3); }
.roxika-cfg__btn--primary:disabled { opacity: .35; cursor: not-allowed; }
.roxika-cfg__btn--ghost { border: 1.5px solid var(--rx-ink); background: transparent; }
.roxika-cfg__btn--ghost:hover { background: var(--rx-white); }

.roxika-cfg__swb {
  margin-top: 12px;
  background: var(--rx-white);
  border-radius: 16px;
  padding: 12px 14px 14px;
}
.roxika-cfg__swb-head {
  display: grid; gap: 2px;
  font-weight: 700; font-size: 13px;
  margin-bottom: 6px;
}
.roxika-cfg__swb-head span { font-weight: 400; font-size: 11px; color: var(--rx-ink-60); line-height: 1.45; }
.roxika-cfg__swb svg { width: 100%; display: block; }
.roxika-cfg__swb-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 8px; }
.roxika-cfg__swb-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--rx-ink-60); }
.roxika-cfg__swb-dot {
  width: 15px; height: 15px;
  border-radius: 999px;
  border: 1px solid rgba(18, 41, 61, .15);
  background-size: cover; background-position: center;
  flex: 0 0 auto;
}


.roxika-cfg__assorti {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(21, 103, 166, .28);
  border-radius: 16px;
  background: rgba(21, 103, 166, .05);
}
.roxika-cfg__assorti-txt { flex: 1 1 260px; display: grid; gap: 4px; }
.roxika-cfg__assorti-txt strong { font-size: 15px; }
.roxika-cfg__assorti-txt span { font-size: 13px; line-height: 1.5; color: var(--rx-ink-60); }
.roxika-cfg__assorti-act { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.roxika-cfg__assorti-prix { font-size: 18px; font-weight: 700; white-space: nowrap; }
@media (max-width: 520px) {
  .roxika-cfg__assorti-act { margin-left: 0; width: 100%; justify-content: space-between; }
}

.roxika-cfg__card-price--bientot { color: var(--rx-ink-60); font-weight: 600; }
.roxika-cfg__card.is-indispo { opacity: .55; cursor: not-allowed; }
.roxika-cfg__card.is-indispo:hover { box-shadow: none; border-color: transparent; }

.roxika-cfg__gallery-img[data-bg] {
	background-color: var(--rx-azur-pale, #e8f2f9);
}
