.elementor-widget-benk-zones-desservies,
.elementor-widget-benk-before-after {
  --bkr-bg: #080808;
  --bkr-panel: #141414;
  --bkr-text: #f7f7f7;
  --bkr-muted: #ababab;
  --bkr-line: #2c2c2c;
  --bkr-red: #d90429;
  --bkr-red-ink: #ff3153;
  --bkr-radius: 16px;
  color: var(--bkr-text);
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

.bkr-zones,
.bkr-before-after {
  width: 100%;
  background: var(--bkr-bg);
}

.bkr-zones *,
.bkr-before-after * {
  box-sizing: border-box;
}

.bkr-zones__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(48px, 10vw, 150px);
  align-items: end;
}

.bkr-zones__eyebrow,
.bkr-before-after__eyebrow,
.bkr-zone-panel__selected {
  color: var(--bkr-red-ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.27em;
  line-height: 1.5;
  text-transform: uppercase;
}

.bkr-zones__title,
.bkr-before-after__title {
  margin: 18px 0 0;
  color: var(--bkr-text);
  font-size: clamp(42px, 4.5vw, 67px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.bkr-zones__subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--bkr-muted);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
}

.bkr-zones__note {
  position: relative;
  max-width: 470px;
  padding-left: 54px;
  margin-bottom: 17px;
}

.bkr-zones__note::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 31px;
  border-top: 1px solid var(--bkr-red);
  content: "";
}

.bkr-zones__note > span {
  display: block;
  color: #ededed;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.27em;
  line-height: 1.55;
  text-transform: uppercase;
}

.bkr-zones__note p {
  max-width: 410px;
  margin: 14px 0 0;
  color: var(--bkr-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bkr-zones__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.64fr) minmax(300px, 1fr);
  gap: 16px;
  min-height: 660px;
  margin-top: 46px;
}

.bkr-zones__panels,
.bkr-zone-panel {
  min-width: 0;
  min-height: 100%;
}

.bkr-zone-panel,
.bkr-zone-thumb {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.bkr-zone-panel[hidden] {
  display: none;
}

.bkr-zone-panel > img,
.bkr-zone-thumb > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bkr-zone-panel > img {
  animation: bkr-photo-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bkr-zone-panel::after,
.bkr-zone-thumb::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.bkr-zone-panel::after {
  background: linear-gradient(180deg, transparent 20%, #050505d9 100%);
}

.bkr-zone-thumb::after {
  background: linear-gradient(90deg, #080808e8 0%, #08080888 55%, transparent 100%);
}

@keyframes bkr-photo-in {
  from { opacity: 0.4; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.bkr-zone-panel__number {
  position: absolute;
  top: 32px;
  left: 34px;
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--bkr-red-ink);
  font-size: 13px;
  font-weight: 600;
}

.bkr-zone-panel__number i,
.bkr-zone-thumb__number i {
  display: block;
  width: 36px;
  height: 1px;
  background: #ffffffb8;
}

.bkr-zone-panel__content {
  position: absolute;
  right: 34px;
  bottom: 101px;
  left: 34px;
  max-width: 600px;
}

.bkr-zone-panel__selected {
  color: white;
}

.bkr-zone-panel__title {
  margin: 15px 0 0;
  color: white;
  font-size: clamp(34px, 3.2vw, 50px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.bkr-zone-panel__text {
  max-width: 530px;
  margin: 12px 0 0;
  color: #dedede;
  font-size: 14px;
  line-height: 1.65;
}

.bkr-zone-panel__link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--bkr-red);
  color: white;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.bkr-zone-panel__link span {
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.25s ease;
}

.bkr-zone-panel__link:hover,
.bkr-zone-panel__link:focus-visible {
  border-color: white;
  color: white;
}

.bkr-zone-panel__link:hover span {
  transform: translate(3px, -3px);
}

.bkr-zone-panel__controls {
  position: absolute;
  right: 34px;
  bottom: 26px;
  left: 34px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bkr-zone-panel__controls button {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid #ffffff61;
  border-radius: 50%;
  background: #1111114d;
  color: white;
  cursor: pointer;
  font: inherit;
  transition: 0.25s ease;
}

.bkr-zone-panel__controls button:hover,
.bkr-zone-panel__controls button:focus-visible {
  border-color: var(--bkr-red);
  background: var(--bkr-red);
  outline: none;
}

.bkr-zone-panel__controls > i {
  width: 53px;
  height: 1px;
  margin-left: 10px;
  background: #ffffff61;
}

.bkr-zone-panel__controls > span {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: white;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.bkr-zone-panel__controls small {
  color: #a5a5a5;
}

.bkr-zones__thumbs {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 16px;
}

.bkr-zone-thumb {
  min-height: 0;
  padding: 0;
  border: 0;
  color: white;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.bkr-zone-thumb.is-active {
  display: none;
}

.bkr-zone-thumb > img {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bkr-zone-thumb:hover > img,
.bkr-zone-thumb:focus-visible > img {
  transform: scale(1.045);
}

.bkr-zone-thumb:focus-visible {
  outline: 2px solid var(--bkr-red-ink);
  outline-offset: -3px;
}

.bkr-zone-thumb__number {
  position: absolute;
  top: 29px;
  left: 27px;
  display: flex;
  gap: 17px;
  align-items: center;
  color: var(--bkr-red-ink);
  font-size: 12px;
  font-weight: 600;
}

.bkr-zone-thumb__number i {
  width: 28px;
}

.bkr-zone-thumb__copy {
  position: absolute;
  bottom: 30px;
  left: 27px;
}

.bkr-zone-thumb__title,
.bkr-zone-thumb__teaser {
  display: block;
}

.bkr-zone-thumb__title {
  color: white;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.bkr-zone-thumb__teaser {
  margin-top: 5px;
  color: #c6c6c6;
  font-size: 11px;
  font-weight: 300;
}

.bkr-zone-thumb__arrow {
  position: absolute;
  right: 22px;
  bottom: 30px;
  font-size: 19px;
  transition: transform 0.3s ease;
}

.bkr-zone-thumb:hover .bkr-zone-thumb__arrow {
  transform: translate(4px, -4px);
}

.bkr-zones__signature {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
  color: #8f8f8f;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.bkr-zones__signature i {
  width: 31px;
  height: 1px;
  background: #8f8f8f;
}

.bkr-before-after__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.bkr-before-after__layout--media-left .bkr-before-after__copy {
  order: 2;
}

.bkr-before-after__copy {
  width: 100%;
}

.bkr-before-after__title {
  font-size: clamp(38px, 4vw, 62px);
}

.bkr-before-after__description {
  margin-top: 22px;
  color: var(--bkr-muted);
  font-size: 15.5px;
  line-height: 1.75;
}

.bkr-before-after__description > :first-child { margin-top: 0; }
.bkr-before-after__description > :last-child { margin-bottom: 0; }

.bkr-comparison {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 610px;
  border-radius: 18px;
  background: #161616;
  touch-action: pan-y;
}

.bkr-comparison__image,
.bkr-comparison__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bkr-comparison__image {
  display: block;
  object-fit: cover;
}

.bkr-comparison__before {
  z-index: 1;
  overflow: hidden;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--bkr-position)) 0 0);
}

.bkr-comparison__before .bkr-comparison__image {
  width: 100%;
}

.bkr-comparison__label {
  position: absolute;
  z-index: 4;
  top: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #080808b8;
  color: white;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.bkr-comparison__label--before { left: 22px; }
.bkr-comparison__label--after { right: 22px; }

.bkr-comparison__divider {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--bkr-position);
  width: 2px;
  background: var(--bkr-red);
  transform: translateX(-50%);
}

.bkr-comparison__handle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--bkr-position);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--bkr-red);
  color: white;
  box-shadow: 0 8px 24px #0007;
  font-size: 21px;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bkr-comparison__range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.bkr-comparison:focus-within {
  outline: 2px solid var(--bkr-red-ink);
  outline-offset: 4px;
}

@media (max-width: 1023px) {
  .bkr-zones__heading { gap: 56px; }
  .bkr-zones__gallery { grid-template-columns: 1fr; }
  .bkr-zones__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bkr-zone-thumb { min-height: 220px; }
}

@media (max-width: 767px) {
  .bkr-zones,
  .bkr-before-after { padding-top: 80px; padding-bottom: 80px; }
  .bkr-zones__heading,
  .bkr-before-after__layout { grid-template-columns: 1fr; gap: 38px; }
  .bkr-zones__title { font-size: clamp(37px, 11vw, 52px); }
  .bkr-zones__note { padding-left: 43px; margin-bottom: 0; }
  .bkr-zones__gallery { min-height: auto; margin-top: 34px; }
  .bkr-zones__panels { min-height: 540px; }
  .bkr-zone-panel__content { right: 23px; bottom: 103px; left: 23px; }
  .bkr-zone-panel__number { top: 24px; left: 23px; }
  .bkr-zone-panel__controls { right: 23px; bottom: 24px; left: 23px; }
  .bkr-zones__thumbs { grid-template-columns: 1fr; }
  .bkr-zone-thumb { min-height: 190px; }
  .bkr-zones__signature { justify-content: flex-start; line-height: 1.6; }
  .bkr-before-after__layout--media-left .bkr-before-after__copy { order: initial; }
  .bkr-comparison { height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  .bkr-zone-panel > img { animation: none; }
  .bkr-zone-thumb > img,
  .bkr-zone-thumb__arrow,
  .bkr-zone-panel__link,
  .bkr-zone-panel__link span { transition: none; }
}
