body {
  margin: 0;
  background: #f7f8f3;
  color: #2f2a24;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: #426000;
}

.exchange-page {
  box-sizing: border-box;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 16px 42px;
}
.exchange-header,
.exchange-toolbar,
.exchange-date-groups,
.exchange-grid {
  box-sizing: border-box;
  width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.exchange-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.exchange-header > div:first-child {
  flex: 1 1 auto;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2ded6;
}
.exchange-back {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  text-decoration: none;
}

.exchange-kicker {
  margin: 0 0 6px;
  color: #2f2a24;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.exchange-header h1 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.18;
}

.exchange-intro {
  max-width: 660px;
  margin: 0;
  color: #2f2a24;
  line-height: 1.45;
}

.exchange-selection-counter {
  min-width: 168px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #e2ded6;
  border-left: 4px solid #b56a2a;
  color: #2f2a24;
  text-align: right;
border-radius: 7px;
}

.exchange-selection-counter span {
  display: block;
  color: #2f2a24;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.exchange-selection-counter strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.exchange-selection-cta {
  display: flex;
width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin: 10px auto 0;
  padding: 4px 10px;
  border: 1px solid #2e2b26;
  background: #2e2b26;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.exchange-selection-cta:hover,
.exchange-selection-cta:focus {
  border-color: #2f2a24;
  background: #2f2a24;
  color: #fff;
  text-decoration: none;
}
.exchange-type-nav {
  box-sizing: border-box;
  width: min(960px, 100%);
  margin: 0 auto 16px;
  transform: translateY(-22px);
}
.exchange-type-nav a {
  display: inline-block;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: #2f2a24;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.exchange-type-nav a:hover,
.exchange-type-nav a:focus {
  color: #27241f;
  text-decoration: underline;
}
.exchange-type-nav a.is-active {
  background: #b56a2a;
  border-color: #b56a2a;
  color: #fff;
}

.exchange-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d8c8b8;
  color: #2f2a24;
  font-size: 14px;
}

.exchange-toolbar p {
  margin: 0;
}

.exchange-filter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: clamp(200px, 30vw, 400px);
}

.exchange-filter-form label {
  font-weight: 700;
  color: #2f2a24;
}

.exchange-filter-form select {
  min-height: 36px;
  max-width: 280px;
  padding: 6px 30px 6px 9px;
  border: 1px solid #d8c8b8;
  border-radius: 0;
  background: #fff;
  color: #2f2a24;
  font: inherit;
}

.exchange-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.exchange-date-groups {
  display: grid;
  gap: 24px;
}

.exchange-date-group {
  display: grid;
  gap: 12px;
}

.exchange-date-group .exchange-grid {
  width: 100%;
}

.exchange-date-heading {
  margin: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #d8c8b8;
  color: #2f2a24;
  font-size: 20px;
  line-height: 1.25;
}

.exchange-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2ded6;
  border-radius: 7px;
  box-shadow: 0 3px 12px rgba(52, 49, 44, 0.055);
}

.exchange-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background:  #fff;
}

.exchange-card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.exchange-card-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px;
}

.exchange-card-number {
  color: #2f2a24;
  font-size: 12px;
}

.exchange-card-body h2 {
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.25;
font-weight: 400;
}

.exchange-card-body p {
  min-height: 34px;
  margin: 0 0 10px;
  color: #2f2a24;
  font-size: 13px;
  line-height: 1.3;
}

.exchange-card-link {
  padding: 6px 8px;
  font-size: 13px;
}

.exchange-card-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}
.exchange-card-number,
.exchange-card-body h2 {
  grid-column: 1;
}
.exchange-card-body p {
  grid-column: 1 / -1;
}
.exchange-card-actions form {
  margin: 0;
}

.exchange-selection-button {
  display: inline-block;
  min-height: 29px;
  padding: 6px 9px;
  border: 1px solid #b56a2a;
  background: #b56a2a;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-decoration: none;
}
/* Case de sélection dans les cartes du catalogue */
.exchange-card .exchange-selection-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

.exchange-card .exchange-selection-button::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  border: 1px solid #8a8177;
  background: #fff;
}

.exchange-card .exchange-selection-button.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: #5d5548;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.exchange-card .exchange-selection-button.is-selected {
  border: 0;
  background: transparent;
  color: transparent;
}

.exchange-card .exchange-selection-button:hover,
.exchange-card .exchange-selection-button:focus {
  border: 0;
  background: transparent;
  color: transparent;
  text-decoration: none;
}
.exchange-card .exchange-selection-button.is-selected {
  border: 0;
  background: transparent;
  color: #5d5548;
}

.exchange-card .exchange-selection-button:hover,
.exchange-card .exchange-selection-button:focus {
  border: 0;
  background: transparent;
  color:#5d5548;
  text-decoration: none;
}

.exchange-selection-button.is-selected {
  border-color: #b75f28;
  background: #fff;
  color: #6d3513;
}

.exchange-selection-button:hover,
.exchange-card-link:hover,
.exchange-pagination a:hover,
.exchange-type-nav a:hover {
  text-decoration: underline;
}

.exchange-empty {
  padding: 16px;
  background: #fff;
  border: 1px solid #d8c8b8;
}

.exchange-selection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.exchange-selection-actions form {
  margin: 0;
}

.exchange-selection-section {
  margin-top: 24px;
}

.exchange-selection-section h2 {
  margin: 0 0 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d8c8b8;
  font-size: 22px;
}

.exchange-selection-list {
  display: grid;
  gap: 10px;
}

.exchange-selection-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid #e2ded6;
  border-radius: 7px;
  box-shadow: 0 3px 12px rgba(52, 49, 44, 0.055);
}

.exchange-selection-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border: 1px solid #e2ded6;
  border-radius: 7px;
  color: #2f2a24;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
}

.exchange-selection-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.exchange-selection-content strong,
.exchange-selection-content span {
  display: block;
}

.exchange-selection-content strong {
  color: #2f2a24;
}

.exchange-selection-content span {
  margin-top: 3px;
  font-weight: bold;
}

.exchange-selection-content p {
  margin: 5px 0 0;
  color: #2f2a24;
  font-size: 14px;
  line-height: 1.35;
}

.exchange-selection-item form {
  margin: 0;
}

.exchange-selection-button:disabled {
  border-color: #d8c8b8;
  background: #f2eee8;
  color: #2f2a24;
  cursor: not-allowed;
}

.exchange-entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.exchange-entry-card {
  display: block;
  padding: 18px;
  background: #fff;
  border: 1px solid #d8c8b8;
  color: #2f2a24;
  text-decoration: none;
}

.exchange-entry-card strong,
.exchange-entry-card span {
  display: block;
}

.exchange-entry-card strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.exchange-entry-card span {
  color: #2f2a24;
  font-weight: bold;
}

.exchange-entry-card:hover {
  border-color: #d8c8b8;
  text-decoration: underline;
}

.exchange-error {
  padding: 12px;
  background: #fff4ef;
  border: 1px solid #c96535;
  color: #6d3513;
}

.exchange-send-form {
  margin-top: 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid #d8c8b8;
}

.exchange-send-form label {
  display: block;
  margin-bottom: 12px;
}

.exchange-send-form label span {
  display: block;
  margin-bottom: 4px;
  color: #2f2a24;
  font-weight: bold;
}

.exchange-send-form input,
.exchange-send-form textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  padding: 8px;
  border: 1px solid #d8c8b8;
  font: inherit;
}

.exchange-send-form textarea {
  max-width: 100%;
}

.exchange-send-form h2 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.exchange-send-form > .exchange-selection-button {
  margin-top: 14px;
}

.exchange-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
width: min(850px, 100%);
  margin: 28px auto 0;
  padding: 12px 18px;
  border: 1px solid #e2ded6;
  border-radius: 7px;
  background: #faf9f6;
  color: #2f2a24;
}

.exchange-pagination form {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.exchange-pagination label {
  color: #2f2a24;
  font-weight: 600;
}

.exchange-pagination select {
  min-height: 38px;
  padding: 6px 30px 6px 10px;
  border: 1px solid #d8c8b8;
  border-radius: 0;
  background: #fff;
  color: #2f2a24;
  font: inherit;
}

.exchange-pagination span {
  color: #625b50;
}

.exchange-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 8px;
  border: 1px solid #d8c8b8;
  background: #fff;
  color: #2f2a24;
  text-decoration: none;
  line-height: 1;
}

.exchange-pagination a:hover,
.exchange-pagination a:focus {
  border-color: #b56a2a;
  color: #2f2a24;
  text-decoration: none;
}

.exchange-pagination a {
  min-width: 30px;
  min-height: 30px;
  box-sizing: border-box;
  padding: 4px 7px;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.exchange-pagination form {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.exchange-pagination select {
  min-height: 34px;
  padding: 5px 24px 5px 8px;
  border: 1px solid #d8c8b8;
  border-radius: 0;
  background: #fff;
  color: #2f2a24;
  font: inherit;
}

@media (max-width: 700px) {
  .exchange-page {
    padding: 18px 12px 32px;
  }

  .exchange-header {
    display: block;
  }

  .exchange-header h1 {
    font-size: 26px;
  }

  .exchange-selection-counter {
    box-sizing: border-box;
    width: 100%;
    margin-top: 14px;
    text-align: left;
  }

  .exchange-toolbar {
    display: block;
  }

  .exchange-filter-form {
    margin: 10px 0;
    align-items: stretch;
    flex-direction: column;
  }

  .exchange-filter-form select {
    width: 100%;
    max-width: none;
  }

  .exchange-toolbar p + p {
    margin-top: 6px;
  }

  .exchange-grid {
    grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
    gap: 10px;
  }

  .exchange-selection-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .exchange-selection-item form {
    grid-column: 1 / -1;
  }

  .exchange-selection-image {
    width: 70px;
    height: 70px;
  }
}
/* Bandeau photo public sur les pages Echanges */
.exchange-page .exchange-public-banner {
	width: min(960px, 100%);
	margin: 0 auto 30px;
 border-radius: 5px;
        overflow: hidden;
}

.exchange-page .exchange-public-banner img {
	display: block;
	width: 100%;
	max-width: none;
	height: 170px;
	object-fit: cover;
	object-position: center 52%;
}

@media (max-width: 760px) {
	.exchange-page .exchange-public-banner {
		margin-bottom: 24px;
	}

	.exchange-page .exchange-public-banner img {
		height: 170px;
	}
}
/* Boutons principaux techniques des pages Echanges */
.exchange-primary-action {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #2e2b26;
  background: #2e2b26;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.exchange-primary-action:hover,
.exchange-primary-action:focus {
  border-color: #2f2a24;
  background: #2f2a24;
  color: #fff;
  text-decoration: none;
}
/* Boutons secondaires techniques des pages Echanges */
.exchange-secondary-action {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
 min-width: 88px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #2e2b26;
  background: #fff;
  color: #2e2b26;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.exchange-secondary-action:hover,
.exchange-secondary-action:focus {
  border-color: #2f2a24;
  background: #2f2a24;
  color: #fff;
  text-decoration: none;
}

/* Harmonisation pagination catalogue Échanges */
.exchange-pagination {
  color: #b8b2aa;
}

.exchange-pagination label,
.exchange-pagination span {
  color: #b8b2aa;
}

.exchange-pagination select {
  border-color: #b8b2aa;
  color: #b8b2aa;
}

.exchange-pagination a {
  border-color: #b8b2aa;
  color: #b8b2aa;
}

.exchange-pagination a:hover,
.exchange-pagination a:focus {
  border-color: #b8b2aa;
  background: #f7f5f0;
  color: #b8b2aa;
  text-decoration: none;
}
/* Fin harmonisation pagination catalogue Échanges */

/* Case cochée pour retirer un élément depuis Votre sélection */
.exchange-selection-item .exchange-selection-check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

.exchange-selection-item .exchange-selection-check::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  border: 1px solid #8a8177;
  background: #fff;
}

.exchange-selection-item .exchange-selection-check::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  color: #5d5548;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.exchange-selection-item .exchange-selection-check:hover,
.exchange-selection-item .exchange-selection-check:focus {
  border: 0;
  background: transparent;
  color: transparent;
  text-decoration: none;
}
/* Confirmation d'échange : liens de retour plus aérés */
.exchange-confirmation-links {
  transform: none;
  margin-top: 18px;
  margin-bottom: 30px;
  padding-bottom: 8px;
  gap: 18px;
}

.exchange-confirmation-links a {
  display: inline-block;
}
/* Lien Retour avec petite vague orange */
.public-return-with-wave {
	display: inline-flex;
	align-items: center;
	gap: 1px;
	margin-left: -8px;
}

.public-return-with-wave::before {
	content: "";
	display: inline-block;
	width: 48px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='20' viewBox='0 0 54 20'%3E%3Cpath d='M10 10 L17 6 M10 10 L17 14 M10 10 C16 4 22 16 28 10 S40 4 46 10' fill='none' stroke='%23e2831f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.95;
	transform: translateY(1px);
	flex: 0 0 auto;
}
/* Retour commun sous le bandeau de la page Échanges */
.exchange-page-back {
	box-sizing: border-box;
	width: 100%;
	margin: 20px 0 20px;
}

.exchange-page-back .public-page-back__link,
.exchange-page-back .public-page-back__link:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #2f2a24;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	text-decoration: none;
}

.exchange-page-back .public-page-back__link:hover,
.exchange-page-back .public-page-back__link:focus {
	color: #000;
	text-decoration: underline;
}
/* Variante noire du retour avec vague */
.public-return-with-wave--black::before {
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='20' viewBox='0 0 54 20'%3E%3Cpath d='M10 10 L17 6 M10 10 L17 14 M10 10 C16 4 22 16 28 10 S40 4 46 10' fill='none' stroke='%232f2a24' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
       opacity: 1;
}
/* Page catalogue échanges : retour aligné sur le bandeau */
.exchange-page .exchange-page-back {
	box-sizing: border-box;
	width: min(960px, 100%);
	margin: 14px auto 0;
}
/* Page catalogue échanges : pagination harmonisée */
.exchange-page .exchange-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-sizing: border-box;
	width: min(960px, 100%);
	margin: 30px auto 0;
	padding: 20px 0 0;
	border-top: 1px solid #e4e0d7;
	color: #aaa39a;
	font-size: 16px;
	line-height: 1;
	text-align: center;
}

.exchange-page .exchange-pagination form {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: #aaa39a;
}

.exchange-page .exchange-pagination label,
.exchange-page .exchange-pagination span {
	color: #aaa39a;
	font-size: 16px;
	font-weight: 400;
}

.exchange-page .exchange-pagination select {
	box-sizing: border-box;
	min-width: 80px;
	min-height: 42px;
	padding: 0 34px 0 14px;
	border: 1px solid #d2cbc0;
	border-radius: 5px;
	background: #fff;
	color: #aaa39a;
	font-size: 16px;
	line-height: 42px;
}

.exchange-page .exchange-pagination select option {
	color: #aaa39a;
}

.exchange-page .exchange-pagination a,
.exchange-page .exchange-pagination a:visited {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 36px;
	min-height: 36px;
	padding: 0 10px;
	border: 1px solid #d2cbc0;
	border-radius: 5px;
	background: #fff;
	color: #aaa39a !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.exchange-page .exchange-pagination a:hover,
.exchange-page .exchange-pagination a:focus {
	border-color: #5d5548;
	background: #5d5548;
	color: #fff !important;
	text-decoration: none;
}
/* Pages échanges principales : fond gris autour, page blanche au centre */
body {
	background: #ededed;
}

.exchange-page {
	box-sizing: border-box;
	width: min(1040px, calc(100% - 32px));
	margin: 48px auto;
	padding: 28px 40px 38px;
	background: #fff;
	box-shadow: 0 1px 4px rgba(46, 43, 38, 0.08);
}
/* Page confirmation échange : espacer les deux liens de retour */
.exchange-confirmation-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
}
/* Page catalogue échanges : dates de groupes plus discrètes */
.exchange-page .exchange-date-heading {
	margin: 26px 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e4e0d7;
	color: #2f2a24;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
}
/* Page sélection échange : titre aligné sur les dates du catalogue */
.exchange-page .exchange-selection-section h2 {
	margin: 26px 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e4e0d7;
	color: #2f2a24;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
}
/* Orange décorative dans la barre compteur / filtre du catalogue échanges */
.exchange-page .exchange-toolbar {
	position: relative;
	overflow: visible;
}

.exchange-page .exchange-toolbar::before {
	content: "";
	position: absolute;
	left: 28px;
	top: 50%;
	width: 100px;
	height: 100px;
	transform: translateY(-50%);
	background-image: url("../images/orange_detouree.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.22;
	pointer-events: none;
	z-index: 0;
}

.exchange-page .exchange-toolbar > * {
	position: relative;
	z-index: 1;
}
/* Page envoi échange : orange discrète dans la zone message */
.exchange-send-form textarea {
	background-color: #fff;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
		url("../images/orange_detouree.png");
	background-repeat: no-repeat, no-repeat;
	background-position: center, right 155px center;
	background-size: 100% 100%, 160px 160px;
}
/* Page confirmation échange : orange discrète dans le message */
.exchange-page .exchange-confirmation-links + .exchange-header + .exchange-empty {
	position: relative;
	overflow: hidden;
}

.exchange-page .exchange-confirmation-links + .exchange-header + .exchange-empty::after {
	content: "";
	position: absolute;
	right: 220px;
	top: 50%;
	width: 160px;
	height: 160px;
	transform: translateY(-50%);
	background-image: url("../images/orange_detouree.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.14;
	pointer-events: none;
	z-index: 0;
}

.exchange-page .exchange-confirmation-links + .exchange-header + .exchange-empty > * {
	position: relative;
	z-index: 1;
}
/* Page sélection échange : orange discrète près du compteur sélectionné */
.exchange-page .exchange-selection-section h2 {
	position: relative;
}

.exchange-page .exchange-selection-section h2::after {
	content: "";
	display: inline-block;
	width: 46px;
	height: 46px;
	margin-left: 16px;
	vertical-align: middle;
	background-image: url("../images/orange_detouree.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.50;
	pointer-events: none;
transform: translateY(-8px);
}
