/* ============================================================
   Econocom × b2b.lease — white-label landing page
   ------------------------------------------------------------
   Re-skins the b2b.lease product surface in Econocom's visual
   identity. Tokens here are the Econocom side; b2b.lease tokens
   only appear where they're hard-coded into shared components.
   ============================================================ */

:root {
  /* Econocom brand */
  --eco-red:        #A954F3;   /* primary accent — purple */
  --eco-red-hover:  #8A3FD0;
  --eco-red-soft:   #EEDDFE;
  --eco-red-tint:   #F7EEFF;

  --eco-bar:        #3E0D81;   /* deep purple used for utility + footer + hero bars */
  --eco-bar-hover:  #4E1A9A;

  --eco-black:      #0E0E0E;
  --eco-ink:        #1A1A1A;
  --eco-charcoal:   #2A2A2A;
  --eco-grey-700:   #4A4A4A;
  --eco-grey-500:   #7A7A7A;
  --eco-grey-300:   #C8C8C8;
  --eco-grey-200:   #E5E5E5;
  --eco-grey-100:   #F2F2F2;
  --eco-grey-50:    #F8F8F8;
  --eco-white:      #FFFFFF;

  /* Type */
  --eco-font: "DM Sans", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --eco-font-tight: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Shadow ladder */
  --eco-shadow-sm: 0 2px 8px rgba(20,20,20,.06);
  --eco-shadow-md: 0 6px 20px rgba(20,20,20,.08);
  --eco-shadow-lg: 0 14px 40px rgba(20,20,20,.12);
  --eco-shadow-red:    0 6px 20px rgba(169,84,243,.30);
  --eco-shadow-red-lg: 0 10px 30px rgba(169,84,243,.38);

  --eco-radius-sm: 4px;
  --eco-radius-md: 6px;
  --eco-radius-lg: 10px;
  --eco-radius-xl: 16px;

  /* Org vars — consumed by shared component templates */
  --org-primary:          #A954F3;
  --org-primary-dark:     #8A3FD0;
  --org-primary-light:    #F7EEFF;
  --org-primary-gradient: linear-gradient(135deg, #A954F3 0%, #8A3FD0 100%);

  --org-shadow-sm: rgba(169, 84, 243, 0.15);
  --org-shadow:    rgba(169, 84, 243, 0.25);
  --org-shadow-md: rgba(169, 84, 243, 0.30);
  --org-shadow-lg: rgba(169, 84, 243, 0.40);

  --cart-primary:         #A954F3;
  --cart-primary-dark:    #8A3FD0;
}

/* ---------- Tabler alert overrides ---------- */
.alert-info {
  --tblr-alert-color: var(--org-primary);
  background: var(--org-primary-light) !important;
  border-left-color: var(--org-primary) !important;
  color: var(--org-primary-dark) !important;
}

/* ---------- Base reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--eco-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--eco-ink);
  background: var(--eco-white);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.eco-app-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.eco-scroll-area {
  flex: 1 1 auto;
  overflow-y: auto;
}
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
}
input { font-family: inherit; }

/* ============================================================
   1) UTILITY BAR (top, dark)
   ============================================================ */
.eco-util {
  background: var(--eco-bar);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .02em;
}
.eco-util__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.eco-util__group { display: flex; align-items: center; gap: 18px; }
.eco-util__lang {
  display: flex; gap: 10px; align-items: center;
  border-right: 1px solid rgba(255,255,255,.18);
  padding-right: 22px;
}
.eco-util__lang button {
  color: rgba(255,255,255,.78);
  padding: 2px 6px;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.eco-util__lang button.is-active { color: var(--eco-white); }
.eco-util__country {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.eco-util__country i { font-size: 13px; }
.eco-util__country .eco-flag {
  display: inline-block;
  width: 18px; height: 12px;
  background: linear-gradient(to bottom, #000 0 33%, #D00 33% 66%, #FFCE00 66%);
  border-radius: 2px;
}

/* ============================================================
   2) NAVBAR
   ============================================================ */
.eco-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--eco-white);
  border-bottom: 1px solid var(--eco-grey-200);
}
.eco-nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.eco-nav__brand {
  display: flex; align-items: center;
  gap: 0;
  cursor: pointer;
}
.eco-nav__brand-mark {
  /* The little square red mark to the left of the wordmark */
  width: 36px; height: 36px;
  background: var(--eco-red);
  border-radius: 4px;
  margin-right: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.eco-nav__brand-wordmark {
  font-family: var(--eco-font);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -.03em;
  color: var(--eco-black);
}

.eco-nav__menu {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
  flex: 1;
}
.eco-nav__link {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--eco-ink);
  display: inline-flex; align-items: center;
  border-radius: 4px;
  position: relative;
  transition: color .15s ease;
}
.eco-nav__link:hover { color: var(--eco-red); text-decoration: none; }
.eco-nav__link.is-active {
  color: var(--eco-red);
}
.eco-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--eco-red);
}
.eco-nav__link i { margin-right: 6px; font-size: 13px; opacity: .7; }

.eco-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Buttons ---------- */
.eco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .01em;
  transition: all .18s ease;
  white-space: nowrap;
}
.eco-btn--primary {
  background: var(--eco-red);
  color: var(--eco-white);
}
.eco-btn--primary:hover {
  background: var(--eco-red-hover);
  box-shadow: var(--eco-shadow-red);
  transform: translateY(-1px);
}
.eco-btn--ghost {
  background: transparent;
  color: var(--eco-ink);
  border: 1px solid var(--eco-grey-300);
}
.eco-btn--ghost:hover {
  border-color: var(--eco-ink);
  background: var(--eco-grey-50);
}
.eco-btn--dark {
  background: var(--eco-black);
  color: var(--eco-white);
}
.eco-btn--dark:hover {
  background: #222;
}
.eco-btn--lg { padding: 14px 28px; font-size: 15px; }

.eco-nav__actions .eco-btn {
  height: 38px;
  padding: 0 18px;
  font-size: 0.8rem;
}

.eco-icon-btn {
  width: 42px; height: 42px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--eco-ink);
  position: relative;
  transition: all .15s ease;
}
.eco-icon-btn:hover { background: var(--eco-grey-100); color: var(--eco-red); }
.eco-icon-btn i { font-size: 18px; }

.eco-cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--eco-red);
  color: white;
  font-size: 11px; font-weight: 700;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--eco-white);
}
.eco-cart-badge.is-zero {
  background: var(--eco-grey-300);
}

/* ============================================================
   3) PARTNER HERO STRIPE  (b2b.lease × Econocom)
   ============================================================ */
.eco-partner-hero {
  background: var(--eco-bar);
  color: var(--eco-white);
  position: relative;
  overflow: hidden;
}
.eco-partner-hero::before {
  /* abstract accent glow in the brand purple */
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: var(--eco-red);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.eco-partner-hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px 12px;
  position: relative;
  z-index: 1;
}
.eco-partner-hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 4px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--eco-white);
  margin-bottom: 8px;
}
.eco-partner-hero__kicker .eco-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--eco-red);
  box-shadow: 0 0 0 4px rgba(169,84,243,.22);
}
.eco-partner-hero__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 6px;
  max-width: 780px;
}
.eco-partner-hero__title .eco-accent { color: var(--eco-red); }
.eco-partner-hero__sub {
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
  max-width: 720px;
  margin: 0;
}

/* ============================================================
   4) MAIN CONTENT WRAPPER
   ============================================================ */
.eco-page {
  background: var(--eco-grey-50);
  min-height: calc(100vh - 0px);
}
.eco-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 32px 48px;
}

/* ============================================================
   5) CONTACT SECTION
   ============================================================ */
.eco-contact {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  box-shadow: var(--eco-shadow-sm);
  border: 1px solid var(--eco-grey-200);
  overflow: hidden;
}

/* ---- Stacked (compact) layout ---- */
.eco-contact--stacked {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 26px;
}
.eco-contact--stacked .eco-contact__photo {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  box-shadow: 0 0 0 3px var(--eco-white), 0 0 0 4px var(--eco-grey-200);
}
.eco-contact--stacked .eco-contact__body { min-width: 0; }
.eco-contact--stacked .eco-contact__role {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--eco-red);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.eco-contact--stacked .eco-contact__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--eco-ink);
  margin: 0 0 4px;
}
.eco-contact--stacked .eco-contact__title-text {
  font-size: 14px;
  color: var(--eco-grey-500);
  margin: 0;
  max-width: 520px;
}
.eco-contact--stacked .eco-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--eco-grey-200);
  padding-left: 28px;
}

/* ---- Split layout (left rail) ---- */
.eco-contact--split {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.eco-contact--split .eco-contact__top {
  display: flex;
  gap: 18px;
  align-items: center;
}
.eco-contact--split .eco-contact__photo {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--eco-white), 0 0 0 4px var(--eco-grey-200);
}
.eco-contact--split .eco-contact__role {
  font-size: 11px;
  font-weight: 600;
  color: var(--eco-red);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.eco-contact--split .eco-contact__name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--eco-ink);
  margin: 0 0 2px;
  line-height: 1.15;
}
.eco-contact--split .eco-contact__title-text {
  font-size: 13.5px;
  color: var(--eco-grey-500);
  margin: 0;
}
.eco-contact--split .eco-contact__intro {
  font-size: 14px;
  line-height: 1.55;
  color: var(--eco-grey-700);
  margin: 0;
  padding-top: 4px;
}
.eco-contact--split .eco-contact__channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--eco-grey-200);
}

/* ---- Channel rows (shared) ---- */
.eco-channel {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--eco-radius-md);
  color: var(--eco-ink);
  transition: background .15s ease;
  font-size: 14px;
}
.eco-channel:hover { background: var(--eco-grey-50); }
.eco-channel__icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--eco-red-tint);
  color: var(--eco-red);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.eco-channel__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--eco-grey-500);
  display: block;
  line-height: 1.2;
  margin-bottom: 1px;
}
.eco-channel__value {
  font-weight: 600;
  color: var(--eco-ink);
  font-size: 14px;
  letter-spacing: -.005em;
}
.eco-channel__value:hover { color: var(--eco-red); }

/* ============================================================
   6) SHOP CTA BANNER
   ============================================================ */
.eco-shop-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: var(--eco-red);
  color: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  box-shadow: var(--eco-shadow-red);
  position: relative;
  overflow: hidden;
}
.eco-shop-cta::after {
  /* subtle diagonal stripes accent */
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 260px;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,.10) 50%, transparent 100%);
  pointer-events: none;
}
.eco-shop-cta__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--eco-white);
  flex-shrink: 0;
}
.eco-shop-cta__body {
  flex: 1;
  min-width: 0;
}
.eco-shop-cta:hover {
  color: var(--eco-white);
}
.eco-shop-cta__title {
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 1px;
  letter-spacing: -.005em;
  color: inherit;
}
.eco-shop-cta__sub {
  font-size: 13px;
  margin: 0;
  opacity: .85;
  color: inherit;
}
.eco-shop-cta__btn {
  position: relative;
  z-index: 1;
  background: var(--eco-white);
  color: var(--eco-red);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s ease;
  white-space: nowrap;
}
.eco-shop-cta__btn:hover {
  background: var(--eco-black);
  color: var(--eco-white);
  transform: translateY(-1px);
}

/* ============================================================
   7) SEARCH / IMPORT BOX
   ============================================================ */
.eco-search-card {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  box-shadow: var(--eco-shadow-md);
  border: 1px solid var(--eco-grey-200);
  padding: 28px;
}

.eco-search-card + .b2bl-journey-section {
  margin-top: -48px;
}
.b2bl-step-num {
  background: var(--eco-red-tint);
}
.eco-search-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.eco-search-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 10px 0 20px;
}
.eco-search-card__sub {
  display: inline-block;
  color: var(--eco-grey-500);
  font-size: 14px;
  font-weight: 400;
  margin-left: 14px;
}
.eco-search-card__powered {
  font-size: 11.5px;
  color: var(--eco-grey-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.eco-search-card__powered b {
  color: var(--eco-ink);
  font-weight: 700;
}
.eco-search-card__powered i {
  color: var(--eco-red);
}
.eco-search-card__powered--below {
  display: flex;
  justify-content: flex-end;
  margin-top: 2px;
}

/* Let the import bar span the full width of the card, matching the box above */
.eco-search-card--full .search-container-redesign {
  max-width: none;
  margin: 0 0 12px;
}

/* Drop the card frame itself — the search bar sits directly on the page */
.eco-search-card--full {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.eco-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: var(--eco-grey-50);
  border: 2px solid var(--eco-grey-200);
  border-radius: var(--eco-radius-lg);
  padding: 8px;
  transition: all .2s ease;
}
.eco-search.is-focused {
  border-color: var(--eco-red);
  background: var(--eco-white);
  box-shadow: 0 0 0 4px var(--eco-red-tint);
}.eco-search__main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-width: 0;
}
.eco-search__icon {
  color: var(--eco-grey-500);
  font-size: 15px;
}
.eco-search__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: var(--eco-ink);
  padding: 12px 0;
  min-width: 0;
}
.eco-search__input::placeholder { color: var(--eco-grey-500); }

.eco-search__actions {
  display: flex;
  gap: 6px;
  align-items: center;
}
.eco-act-btn {
  width: 44px; height: 44px;
  border-radius: var(--eco-radius-md);
  background: var(--eco-white);
  border: 1px solid var(--eco-grey-200);
  color: var(--eco-charcoal);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 15px;
  transition: all .15s ease;
}
.eco-act-btn:hover {
  background: var(--eco-red);
  color: var(--eco-white);
  border-color: var(--eco-red);
}
.eco-act-btn.is-active {
  background: var(--eco-red);
  color: var(--eco-white);
  border-color: var(--eco-red);
}
.eco-act-btn--primary {
  background: var(--eco-red);
  color: var(--eco-white);
  border-color: var(--eco-red);
  width: 48px;
}
.eco-act-btn--primary:hover {
  background: var(--eco-red-hover);
  border-color: var(--eco-red-hover);
}

/* Drawer + upload area */
.eco-drawer {
  margin-top: 16px;
  border: 2px dashed var(--eco-red);
  border-radius: var(--eco-radius-lg);
  padding: 22px;
  background: var(--eco-red-tint);
  text-align: center;
}
.eco-drawer__icon {
  font-size: 32px;
  color: var(--eco-red);
  margin-bottom: 6px;
}
.eco-drawer__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--eco-ink);
  margin: 4px 0;
}
.eco-drawer__desc {
  font-size: 13.5px;
  color: var(--eco-grey-700);
  margin: 0 0 12px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Tabs row showing supported sources */
.eco-sources {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.eco-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--eco-grey-700);
}
.eco-source i {
  color: var(--eco-red);
}

/* ============================================================
   8) JOURNEY / EMPTY-STATE
   ============================================================ */
.eco-journey {
  background: var(--eco-white);
  border-radius: var(--eco-radius-xl);
  border: 1px solid var(--eco-grey-200);
  padding: 28px;
  box-shadow: var(--eco-shadow-sm);
}
.eco-journey__head {
  margin-bottom: 22px;
}
.eco-journey__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: var(--eco-ink);
  letter-spacing: -.01em;
}
.eco-journey__sub {
  font-size: 13.5px;
  color: var(--eco-grey-500);
  margin: 4px 0 0;
}
.eco-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.eco-step {
  background: var(--eco-grey-50);
  border: 1px solid var(--eco-grey-200);
  border-radius: var(--eco-radius-lg);
  padding: 16px 16px 18px;
  transition: all .2s ease;
  position: relative;
}
.eco-step:hover {
  border-color: var(--eco-red);
  background: var(--eco-white);
  transform: translateY(-2px);
  box-shadow: var(--eco-shadow-md);
}
.eco-step__num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 4px;
  background: var(--eco-red);
  color: var(--eco-white);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.eco-step__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--eco-ink);
  margin: 0 0 4px;
}
.eco-step__desc {
  font-size: 12.5px;
  color: var(--eco-grey-500);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   9) FOOTER
   ============================================================ */
.eco-footer {
  background: var(--eco-bar);
  color: rgba(255,255,255,.78);
  padding: 18px 0;
  flex-shrink: 0;
}
.eco-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.eco-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.eco-footer__brand-wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.03em;
  color: var(--eco-white);
  margin-bottom: 10px;
}
.eco-footer__desc {
  font-size: 13px;
  line-height: 1.55;
  max-width: 280px;
  margin: 0 0 14px;
}
.eco-footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--eco-white);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.eco-footer__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}
.eco-footer__list a:hover { color: var(--eco-white); }

.eco-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.eco-footer__legal {
  display: flex; gap: 18px;
}

/* ============================================================
   10) LAYOUT — STACKED vs SPLIT
   ============================================================ */
.eco-grid--stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.eco-grid--split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
  align-items: stretch;
}
.eco-grid--split .eco-search-card { height: 100%; }
.eco-grid--split .eco-journey { grid-column: 1 / -1; }
.eco-grid--split .eco-shop-cta { grid-column: 1 / -1; }

/* In split layout the contact card has its own column */
@media (max-width: 980px) {
  .eco-grid--split { grid-template-columns: 1fr; }
  .eco-contact--split .eco-contact__channels {
    border-top: 1px solid var(--eco-grey-200);
    padding-top: 16px;
    margin-top: 8px;
  }
  .eco-contact--stacked {
    grid-template-columns: auto 1fr;
    grid-template-areas: "photo body" "channels channels";
    gap: 18px;
  }
  .eco-contact--stacked .eco-contact__photo { grid-area: photo; }
  .eco-contact--stacked .eco-contact__body { grid-area: body; }
  .eco-contact--stacked .eco-contact__channels {
    grid-area: channels;
    border-left: none;
    border-top: 1px solid var(--eco-grey-200);
    padding-left: 0;
    padding-top: 14px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .eco-nav__menu { display: none; }
  .eco-journey__grid { grid-template-columns: repeat(2, 1fr); }
  .eco-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .eco-shop-cta { flex-wrap: wrap; }
  .eco-shop-cta__body { flex-basis: 100%; }
  .eco-journey__grid { grid-template-columns: 1fr; }
  .eco-footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .eco-util__inner { padding: 6px 16px; gap: 14px; }
  .eco-nav__inner { padding: 0 16px; height: 64px; gap: 16px; }
  .eco-container { padding: 18px 16px 32px; }
  .eco-partner-hero__inner { padding: 28px 16px; }
  .eco-partner-hero__title { font-size: 22px; }
}

/* ============================================================
   10b) ECONOCOM NAVBAR DROPDOWNS (from org/econocom/navbar.html)
   ============================================================ */
.eco-lang-toggle {
  background: transparent;
  border: 1px solid var(--eco-grey-300, #dee2e6);
  border-radius: 6px;
  padding: 0 10px;
  height: 38px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--eco-ink, #2c3e50);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.eco-lang-toggle:hover { background: var(--eco-grey-50, #f8f9fa); }
.eco-lang-toggle .lang-active { color: var(--eco-red, #A954F3); font-weight: 700; }
.eco-lang-toggle .lang-sep { opacity: 0.4; }

.eco-profile-dropdown { position: relative; }
.eco-profile-btn {
  background: transparent;
  border: 1px solid var(--eco-grey-300, #dee2e6);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--eco-ink, #2c3e50);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.eco-profile-btn:hover { background: var(--eco-grey-50, #f8f9fa); }
.eco-profile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 180px;
  padding: 6px;
  z-index: 1040;
}
.eco-profile-dropdown.show .eco-profile-menu { display: block; }
.eco-profile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.eco-profile-menu-item:hover { background: #f8f9fa; color: #A954F3; }
.eco-profile-menu-divider { height: 1px; background: #e9ecef; margin: 4px 0; }

/* ============================================================
   11) TOAST
   ============================================================ */
.eco-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--eco-black);
  color: var(--eco-white);
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--eco-shadow-lg);
  opacity: 0;
  transition: all .25s ease;
  z-index: 100;
  pointer-events: none;
}
.eco-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

