
/* =========================================================
   HONFLEUR INSIDER
   PAGE ENERGIE
   ========================================================= */

.rdh-energy-page {
  padding-bottom: 120px;
}


/* INTRO */

.rdh-energy-intro {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px 18px;

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 8px 24px rgba(16,35,90,.06);
}


.rdh-energy-intro-icon {
  flex: 0 0 48px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #fff5df;

  color: #c69248;
}


.rdh-energy-intro-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.rdh-energy-intro strong {
  display: block;

  color: #10235a;

  font-size: 17px;
  font-weight: 800;
}


.rdh-energy-intro span {
  display: block;

  margin-top: 3px;

  color: #75819f;

  font-size: 12px;
  line-height: 1.4;
}


/* CHOIX CARBURANT / ELECTRIQUE */

.rdh-energy-switch {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 10px;

  margin-top: 18px;
}


.rdh-energy-switch-button {
  min-height: 82px;

  border:
    1px solid #e1e6ef;

  border-radius: 18px;

  background: #ffffff;

  color: #10235a;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 12px;

  font-size: 14px;
  font-weight: 800;

  cursor: pointer;
}


.rdh-energy-switch-button.active {
  border-color: #d6a24c;

  background: #fffaf0;
}


.rdh-energy-switch-icon {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #c69248;
}


.rdh-energy-switch-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* SECTIONS */

.rdh-energy-section {
  margin-top: 18px;

  padding: 18px;

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 8px 24px rgba(16,35,90,.06);
}


.rdh-energy-section[hidden] {
  display: none !important;
}


.rdh-energy-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;
}


.rdh-energy-section-head h2 {
  margin: 0;

  color: #10235a;

  font-size: 21px;
  font-weight: 800;
}


.rdh-energy-section-head p {
  margin: 4px 0 0;

  color: #75819f;

  font-size: 12px;
}


.rdh-energy-live-badge {
  flex: 0 0 auto;

  padding: 6px 9px;

  border-radius: 999px;

  background: #eef4ff;

  color: #365486;

  font-size: 9px;
  font-weight: 800;

  white-space: nowrap;
}


/* LISTE */

.rdh-energy-list {
  margin-top: 15px;
}


.rdh-energy-placeholder {
  min-height: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  border-radius: 18px;

  background: #f6f8fc;

  text-align: center;
}


.rdh-energy-placeholder-icon {
  font-size: 31px;
  line-height: 1;
}


.rdh-energy-placeholder strong {
  margin-top: 10px;

  color: #10235a;

  font-size: 15px;
}


.rdh-energy-placeholder span {
  max-width: 330px;

  margin-top: 5px;

  color: #7b87a5;

  font-size: 11px;
  line-height: 1.45;
}


@media (max-width: 390px) {

  .rdh-energy-switch-button {
    min-height: 76px;

    padding: 10px 7px;

    font-size: 12px;
  }


  .rdh-energy-section {
    padding: 15px;
  }


  .rdh-energy-live-badge {
    font-size: 8px;
  }

}



/* =========================================================
   HONFLEUR INSIDER
   ENERGIE - STATIONS-SERVICE DYNAMIQUES
   ========================================================= */

.rdh-energy-loading {
  padding: 30px 16px;

  border-radius: 18px;

  background: #f6f8fc;

  color: #75819f;

  text-align: center;

  font-size: 13px;
  font-weight: 700;
}


.rdh-energy-station-card {
  padding: 16px;

  border-radius: 19px;

  background: #f7f9fd;

  border:
    1px solid
    rgba(16,35,90,.06);
}


.rdh-energy-station-card +
.rdh-energy-station-card {
  margin-top: 11px;
}


.rdh-energy-station-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 12px;
}


.rdh-energy-station-head h3 {
  margin: 0;

  color: #10235a;

  font-size: 17px;
  line-height: 1.25;

  font-weight: 800;
}


.rdh-energy-station-address {
  margin-top: 4px;

  color: #75819f;

  font-size: 11px;
  line-height: 1.35;
}


.rdh-energy-station-distance {
  flex: 0 0 auto;

  padding: 5px 8px;

  border-radius: 999px;

  background: #eef3fc;

  color: #52698d;

  font-size: 10px;
  font-weight: 800;
}


.rdh-energy-fuel-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0,1fr));

  gap: 7px;

  margin-top: 14px;
}


.rdh-energy-fuel-price {
  padding: 10px 7px;

  border-radius: 13px;

  background: #ffffff;

  text-align: center;
}


.rdh-energy-fuel-name {
  display: block;

  color: #75819f;

  font-size: 10px;
  font-weight: 700;
}


.rdh-energy-fuel-price strong {
  display: block;

  margin-top: 4px;

  color: #10235a;

  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
}


.rdh-energy-fuel-price strong small {
  font-size: 8px;

  color: #909bb6;

  font-weight: 600;
}


.rdh-energy-station-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  margin-top: 13px;
}


.rdh-energy-updated {
  color: #8a95ae;

  font-size: 9px;
}


.rdh-energy-guide {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;

  gap: 5px;

  padding: 8px 11px;

  border-radius: 12px;

  background: #10235a;

  color: #ffffff;

  text-decoration: none;

  font-size: 10px;
  font-weight: 800;
}


.rdh-energy-guide svg {
  width: 15px;
  height: 15px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;
}


@media (max-width: 430px) {

  .rdh-energy-fuel-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

}



/* =========================================================
   HONFLEUR INSIDER
   ENERGIE - RECHARGE ELECTRIQUE
   ========================================================= */


.rdh-energy-electric-card {
  padding: 16px;

  border-radius: 19px;

  background: #f7f9fd;

  border:
    1px solid
    rgba(16,35,90,.06);
}


.rdh-energy-electric-card +
.rdh-energy-electric-card {
  margin-top: 11px;
}


.rdh-energy-electric-card h3 {
  margin: 0;

  color: #10235a;

  font-size: 17px;
  line-height: 1.25;

  font-weight: 800;
}


.rdh-energy-electric-operator {
  margin-top: 4px;

  color: #c69248;

  font-size: 10px;
  font-weight: 800;
}


.rdh-energy-electric-main {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-top: 14px;
}


.rdh-energy-electric-power {
  flex: 0 0 72px;

  width: 72px;
  min-height: 62px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 15px;

  background: #ffffff;

  color: #10235a;
}


.rdh-energy-electric-power strong {
  font-size: 21px;
  line-height: 1;

  font-weight: 900;
}


.rdh-energy-electric-power span {
  margin-top: 4px;

  font-size: 8px;
  font-weight: 800;
}


.rdh-energy-electric-power.fast {
  background: #fff5df;

  color: #a36c15;
}


.rdh-energy-electric-power.ultra {
  background: #10235a;

  color: #ffffff;
}


.rdh-energy-electric-summary {
  min-width: 0;
}


.rdh-energy-electric-summary strong {
  display: block;

  color: #10235a;

  font-size: 13px;
  font-weight: 800;
}


.rdh-energy-electric-summary span {
  display: block;

  margin-top: 4px;

  color: #75819f;

  font-size: 10px;
}


.rdh-energy-connectors {
  display: flex;
  flex-wrap: wrap;

  gap: 6px;

  margin-top: 13px;
}


.rdh-energy-connectors span {
  padding: 6px 9px;

  border-radius: 999px;

  background: #ffffff;

  color: #52698d;

  font-size: 10px;
  font-weight: 800;
}


.rdh-energy-electric-details {
  margin-top: 12px;

  padding-top: 11px;

  border-top:
    1px solid
    rgba(16,35,90,.07);

  color: #75819f;

  font-size: 10px;
  line-height: 1.45;
}


.rdh-energy-electric-details strong {
  display: block;

  margin-top: 4px;

  color: #10235a;

  font-size: 11px;
  font-weight: 800;
}




/* =========================================================
   HONFLEUR INSIDER
   ENERGIE - CARTES VISUELLES
   ========================================================= */

.rdh-energy-map-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 20px;
  background: #f6f8fc;
}

.rdh-energy-map-head {
  color: #10235a;
  font-size: 15px;
  font-weight: 800;
}

.rdh-energy-map-help {
  margin-top: 4px;
  color: #75819f;
  font-size: 11px;
  line-height: 1.4;
}

.rdh-energy-map {
  margin-top: 10px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  background: #dde6f5;
}

.rdh-energy-selectable {
  cursor: pointer;
}

.rdh-energy-popup strong {
  display: block;
  color: #10235a;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.rdh-energy-popup-address {
  margin-top: 4px;
  color: #75819f;
  font-size: 11px;
  line-height: 1.35;
}

.rdh-energy-popup-line {
  margin-top: 4px;
  color: #10235a;
  font-size: 11px;
  line-height: 1.35;
}

.rdh-energy-popup-guide {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 10px;
  background: #10235a;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
}

.leaflet-container {
  font-family: inherit;
}

@media (max-width: 430px) {
  .rdh-energy-map {
    height: 240px;
  }
}



/* =========================================================
   HONFLEUR INSIDER
   ENERGIE - ICONE INTRO HARMONISEE
   RDH_ENERGY_INTRO_ICON_ELEGANT_V1
   ========================================================= */

.rdh-energy-intro-icon {
  background: linear-gradient(
    135deg,
    #dcb06a 0%,
    #c89052 100%
  ) !important;

  color: #ffffff !important;

  border-radius: 18px !important;

  box-shadow:
    0 8px 18px rgba(16,35,90,.10) !important;
}

.rdh-energy-intro-icon svg,
.rdh-energy-intro-icon svg * {
  stroke: #ffffff !important;
  fill: none !important;

  stroke-width: 2.2 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;

  opacity: 1 !important;
}

.rdh-energy-intro-icon svg {
  transform: scale(1.10);

  filter:
    drop-shadow(0 1px 1px rgba(0,0,0,.08))
    drop-shadow(0 2px 4px rgba(0,0,0,.06));
}


/* === FIN RDH_ENERGY_INTRO_ICON_ELEGANT_V1 === */


