/* ============================================================
     SCOPED THEME TOKENS — all variables live only inside .fe-ev-hero
     so they cannot collide with any global variables on your site.
     ============================================================ */

     
  .fe-ev-hero {
    --fe-navy: #0f172a;
    --fe-teal: #008C9D;
    --fe-teal-dark: #00A8BD;
    --fe-gray-600: #6b7280;
    --fe-gray-500: #8a93a3;
    --fe-border: #e7eaee;
    --fe-radius-lg: 14px;
    --fe-radius-md: 10px;
    --fe-radius-pill: 50px;

    position: relative;
    background: #ffffff;
    overflow: hidden;
  }

  .fe-ev-hero * {
    box-sizing: border-box;
  }

  /* ----------------------------------------------------------
     Top row: text column + media column
     ---------------------------------------------------------- */
  .fe-ev-hero__row {
    padding-top: 90px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    min-height: 460px;
  }

  .fe-ev-hero__content {
    flex: 1 1 480px;
    
    padding: 56px 48px 40px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .fe-ev-hero__title {
     font-size: 48.256px ; 
    line-height: 1.18;
    font-weight: 800;
    color: var(--fe-navy);
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
  }

  .fe-ev-hero__title-accent {
    display: block;
    color: var(--fe-teal);
  }

  .fe-ev-hero__subtitle {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--fe-gray-600);
    margin: 0 0 28px 0;
    max-width: 420px;
  }

  /* ----------------------------------------------------------
     Search bar
     ---------------------------------------------------------- */
  .fe-ev-hero__search {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .fe-ev-hero__search-field {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-pill);
    padding: 13px 18px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
  }

  .fe-ev-hero__search-field .bi-geo-alt {
    color: var(--fe-gray-500);
    font-size: 1.05rem;
    flex-shrink: 0;
  }

  .fe-ev-hero__search-input {
    flex: 1 1 auto;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--fe-navy);
    min-width: 0;
    padding: 0;
  }

  .fe-ev-hero__search-input::placeholder {
    color: var(--fe-gray-500);
  }

  .fe-ev-hero__search-field .bi-crosshair {
    color: var(--fe-teal);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
  }

  .fe-ev-hero__search-btn {
    flex: 0 0 auto;
    background: var(--fe-teal);
    color: #ffffff;
    border: none;
    border-radius: var(--fe-radius-pill);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease;
  }

  .fe-ev-hero__search-btn:hover {
    background: var(--fe-teal-dark);
  }

  /* ----------------------------------------------------------
     Checklist row
     ---------------------------------------------------------- */
  .fe-ev-hero__checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .fe-ev-hero__checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--fe-navy);
    white-space: nowrap;
  }

  .fe-ev-hero__checklist .bi-check-circle {
    color: var(--fe-teal);
    font-size: 1rem;
  }

  /* ----------------------------------------------------------
     Media column (photo + floating cards)
     ---------------------------------------------------------- */
  .fe-ev-hero__media {
    position: relative;
    flex: 1 1 540px;
    min-height: 420px;
    overflow: hidden;
  }

  .fe-ev-hero__media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
  }

  /* Top-right "EV CERTIFIED" badge */
  .fe-ev-hero__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--fe-radius-md);
    padding: 10px 18px 10px 12px;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.12);
    backdrop-filter: blur(2px);
  }

  .fe-ev-hero__badge-icon {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .fe-ev-hero__badge-icon .bi-shield-fill {
    color: var(--fe-teal);
    font-size: 2rem;
  }

  .fe-ev-hero__badge-icon .bi-lightning-charge-fill {
    position: absolute;
    color: #ffffff;
    font-size: 0.9rem;
  }

  .fe-ev-hero__badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--fe-navy);
    line-height: 1.15;
  }

  .fe-ev-hero__badge-text span {
    display: block;
    color: var(--fe-teal);
    font-weight: 700;
  }

  /* Bottom-right offer card */
  .fe-ev-hero__offer {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #ffffff;
    border-radius: var(--fe-radius-lg);
    padding: 22px 26px;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.18);
    max-width: 300px;
  }

  .fe-ev-hero__offer-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--fe-teal);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transform: rotate(0deg);
  }

  .fe-ev-hero__offer-label {
    margin: 2px 0 6px 0;
    font-size: 0.82rem;
    color: var(--fe-gray-600);
  }

  .fe-ev-hero__offer-upto {
    margin: 0;
    font-size: 0.85rem;
    color: var(--fe-navy);
    font-weight: 500;
  }

  .fe-ev-hero__offer-percent {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--fe-teal);
    line-height: 1.2;
  }

  .fe-ev-hero__offer-sub {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--fe-navy);
  }

  /* ----------------------------------------------------------
     Bottom feature strip
     ---------------------------------------------------------- */
  .fe-ev-hero__features-wrap {
    padding: 32px 56px 48px 56px;
  }

  .fe-ev-hero__features {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-lg);
    overflow: hidden;
  }

  .fe-ev-hero__feature {
    flex: 1 1 220px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 24px;
    border-right: 1px solid var(--fe-border);
  }

  .fe-ev-hero__feature:last-child {
    border-right: none;
  }

  .fe-ev-hero__feature-icon {
    background: linear-gradient(95deg, var(--fe-primary) 0%, var(--fe-accent-cyan) 100%);
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 1.05rem;
  }

  .fe-ev-hero__feature-icon--round {
    border-radius: 50%;
  }

  .fe-ev-hero__feature-title {
    margin: 0 0 4px 0;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--fe-navy);
  }

  .fe-ev-hero__feature-text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--fe-gray-600);
  }

  /* ----------------------------------------------------------
     Responsive
     ---------------------------------------------------------- */
  @media (max-width: 991.98px) {
    .fe-ev-hero__row {
      flex-direction: column;
      min-height: 0;
    }
    .fe-ev-hero__content {
      max-width: 100%;
      padding: 40px 24px 32px 24px;
    }
    .fe-ev-hero__media {
      min-height: 360px;
    }
    .fe-ev-hero__features-wrap {
      padding: 28px 24px 36px 24px;
    }
    .fe-ev-hero__feature {
      flex: 1 1 45%;
      border-right: none;
      border-bottom: 1px solid var(--fe-border);
    }
    .fe-ev-hero__feature:nth-child(even) {
      border-left: 1px solid var(--fe-border);
    }
  }

  @media (max-width: 575.98px) {
    .fe-ev-hero__title {
      font-size: 1.9rem;
    }
    .fe-ev-hero__search {
      flex-direction: column;
      align-items: stretch;
    }
    .fe-ev-hero__search-btn {
      width: 100%;
    }
    .fe-ev-hero__offer {
      position: static;
      margin: 16px;
      max-width: none;
    }
    .fe-ev-hero__badge {
      top: 16px;
      right: 16px;
    }
    .fe-ev-hero__feature {
      flex: 1 1 100%;
      border-left: none !important;
    }
  }
  /* =========================================================================
   EV SHOP LIST — scoped component styles
   Every rule below is nested under ".ec-shop-list" and every class is
   prefixed "ec-", so this will NOT override or be overridden by your
   site's existing CSS or by Bootstrap's own classes/utilities.
   Variables are scoped to .ec-shop-list (not :root) so they can't leak
   into the rest of your page.
   ========================================================================= */

.ec-shop-list {
  --ec-teal: #19796d;
  --ec-teal-dark: #11574e;
  --ec-teal-bg: #e7f5f2;
  --ec-blue-text: #2f8fc2;
  --ec-blue-bg: #eaf5fb;
  --ec-border: #ebedf0;
  --ec-text-dark: #1f2328;
  --ec-text-gray: #6b7280;
  --ec-text-light-gray: #9aa1a9;
  --ec-tag-bg: #f3f4f6;
  --ec-star: #f5b400;
  --ec-radius-lg: 16px;
  --ec-radius-md: 12px;
  --ec-radius-pill: 999px;

  font-family: inherit;
  color: var(--ec-text-dark);
}

.ec-shop-list * {
  box-sizing: border-box;
}

.ec-shop-list .ec-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 24px;
}

.ec-shop-list .ec-row:last-child {
  margin-bottom: 0;
}

/* ---------- image block ---------- */

.ec-shop-list .ec-image-col {
  position: relative;
  flex: 0 0 240px;
  border-radius: var(--ec-radius-lg);
  overflow: hidden;
  background: #1a1d23;
  aspect-ratio: 4 / 3;
}

.ec-shop-list .ec-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ec-shop-list .ec-badge-top-rated {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #1c7a52;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--ec-radius-pill);
  line-height: 1.2;
}

.ec-shop-list .ec-badge-top-rated i {
  font-size: 0.8rem;
}

/* ---------- main card ---------- */

.ec-shop-list .ec-card {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--ec-border);
  border-radius: var(--ec-radius-lg);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.04);
  padding: 22px 24px;
  min-width: 0;
}

.ec-shop-list .ec-info {
  flex: 1;
  min-width: 0;
}

/* ---------- header: logo + name + address ---------- */

.ec-shop-list .ec-header {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
}

.ec-shop-list .ec-logo {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.ec-shop-list .ec-logo-dark {
  background: #14181f;
  color: #fff;
  flex-direction: column;
  gap: 1px;
}

.ec-shop-list .ec-logo-dark i {
  font-size: 0.7rem;
}

.ec-shop-list .ec-logo-outline {
  background: #fff;
  border: 1.5px solid var(--ec-teal);
  color: var(--ec-teal);
  font-size: 1.2rem;
}

.ec-shop-list .ec-logo-light {
  background: #fff;
  border: 1.5px solid var(--ec-border);
  color: #14181f;
  font-size: 1.2rem;
}

.ec-shop-list .ec-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.ec-shop-list .ec-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ec-text-dark);
  margin: 0;
}

.ec-shop-list .ec-cert-badge {
  display: inline-flex;
  align-items: center;
  background: var(--ec-blue-bg);
  color: var(--ec-blue-text);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--ec-radius-pill);
  white-space: nowrap;
}

.ec-shop-list .ec-address {
  font-size: 0.95rem;
  color:#000;
  margin: 0 0 2px 0;
}

.ec-shop-list .ec-distance {
  font-size: 0.8rem;
  color: var(--ec-text-light-gray);
  margin: 0;
}

/* ---------- rating row ---------- */

.ec-shop-list .ec-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.ec-shop-list .ec-stars {
  color: var(--ec-star);
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-flex;
  gap: 1px;
}

.ec-shop-list .ec-stars i {
  font-size: 0.78rem;
}

.ec-shop-list .ec-rating-value {
  font-weight: 700;
  color: var(--ec-text-dark);
  margin-left: 2px;
}

.ec-shop-list .ec-review-count {
  color: var(--ec-text-gray);
}

.ec-shop-list .ec-view-reviews {
  color: var(--ec-teal);
  font-weight: 600;
  text-decoration: none;
}

.ec-shop-list .ec-view-reviews:hover {
  text-decoration: underline;
  color: var(--ec-teal-dark);
}

/* ---------- brand tags ---------- */

.ec-shop-list .ec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ec-shop-list .ec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ec-tag-bg);
  color: var(--ec-text-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--ec-radius-pill);
}

.ec-shop-list .ec-tag i {
  font-size: 0.8rem;
  color: var(--ec-text-gray);
}

.ec-shop-list .ec-tag-more {
  color: var(--ec-text-gray);
}

/* ---------- stats row ---------- */

.ec-shop-list .ec-stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.ec-shop-list .ec-stat {
  display: flex;
  flex-direction: column;
}

.ec-shop-list .ec-stat-label {
  font-size: 0.95rem;
  color: #008C9D;
  margin-bottom: 4px;
  font-weight: 600;
}

.ec-shop-list .ec-stat-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ec-text-dark);
  line-height: 1.3;
}

.ec-shop-list .ec-stat-sub {
  font-size: 0.75rem;
  color: var(--ec-text-light-gray);
  margin-top: 2px;
}

/* ---------- aside: offer / book / save ---------- */

.ec-shop-list .ec-aside {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.ec-shop-list .ec-offer-box {
  background: var(--ec-teal-bg);
  border-radius: var(--ec-radius-md);
  padding: 32px 14px;
  text-align: center;
}

.ec-shop-list .ec-offer-line {
  display: block;
  font-size: 0.78rem;
  color: var(--ec-teal-dark);
  font-weight: 500;
}

.ec-shop-list .ec-offer-amount {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ec-teal-dark);
  line-height: 1.3;
}

.ec-shop-list .ec-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #008C9D;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
  border: 1px solid var(--fe-primary);
}

.ec-shop-list .ec-btn-book:hover {
  background: #00A8BD;
  color: #fff;
}

.ec-shop-list .ec-btn-book i {
  font-size: 0.85rem;
}

.ec-shop-list .ec-save-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ec-text-gray);
  text-decoration: none;
}

.ec-shop-list .ec-save-shop:hover {
  color: var(--ec-text-dark);
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .ec-shop-list .ec-card {
    flex-direction: column;
    gap: 18px;
  }

  .ec-shop-list .ec-aside {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: center;
  }

  .ec-shop-list .ec-offer-box {
    flex: 1;
  }

  .ec-shop-list .ec-btn-book,
  .ec-shop-list .ec-save-shop {
    flex: 0 0 auto;
  }
}

@media (max-width: 700px) {
  .ec-shop-list .ec-row {
    flex-direction: column;
  }

  .ec-shop-list .ec-image-col {
    flex: 0 0 200px;
    width: 100%;
  }

  .ec-shop-list .ec-aside {
    flex-direction: column;
  }

  .ec-shop-list .ec-stats-row {
    gap: 24px;
  }
}