/**
 * Ekotaschen / Papirposer — port of the Magento 1.9 "hellux" skin (hellux.css + 2021.css) onto hummingbird.
 * Colours: green #09973f, dark green #10572b, light green #edf1e7, hover orange #e3520f, text #324148.
 */

:root {
  --eko-green: #09973f;
  --eko-green-dark: #10572b;
  --eko-green-light: #edf1e7;
  --eko-green-button: #2da75e;
  --eko-orange: #e3520f;
  --eko-text: #324148;
  --eko-border: silver;
  --eko-footer-link: #8b9d78;
  /* bootstrap (hummingbird) links / primary colour */
  --bs-primary: #09973f;
  --bs-primary-rgb: 9, 151, 63;
  --bs-link-color: #09973f;
  --bs-link-color-rgb: 9, 151, 63;
  --bs-link-hover-color: #10572b;
  --bs-link-hover-color-rgb: 16, 87, 43;
  /* square corners everywhere (Magento look): buttons, fields, pop-ups, alerts, pagination, boxes, pictures */
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0;
  --bs-border-radius-lg: 0;
  --bs-border-radius-xl: 0;
  --bs-border-radius-xxl: 0;
}
/* hummingbird hard-codes the radius of buttons, checkboxes, fields, the close button and the carrier box */
.btn, .btn-sm, .btn-lg, .btn-group-sm > .btn, .btn-group-lg > .btn { --bs-btn-border-radius: 0; }
.form-check-input[type="checkbox"],
.form-control, .form-select, .input-group > *, .btn-close, .delivery-option__item { border-radius: 0; }

/* ---------- base ---------- */
body {
  background: #fff; /* plain white (Magento: striped body_back.jpg) */
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: var(--eko-text);
}
.eko-wrap,
#notifications .container,
#wrapper .columns-container.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#notifications .container,
#wrapper .columns-container.container { padding-left: 15px; padding-right: 15px; }
/* shop messages (e.g. "Ihr Warenkorb enthält …"): content width */
#notifications .container > .alert:first-of-type { margin-top: 0; }
/* ONE gap between the top menu and the content of every page (CMS, listing, product, account, cart, checkout,
   order confirmation, 404 …); first elements of the pages have no top margin of their own */
#wrapper { padding-top: 20px; }
#header { position: relative !important; top: auto !important; background: transparent; box-shadow: none; }
/* white page column (1200px) on the striped Magento background: header, content and footer of every page */
#header,
#wrapper,
#footer {
  background: linear-gradient(to right,
    transparent calc(50% - 600px), #fff calc(50% - 600px),
    #fff calc(50% + 600px), transparent calc(50% + 600px));
}
#header, #wrapper { display: flow-root; } /* child margins stay inside the white column */
@media (max-width: 1199px) {
  #header, #wrapper, #footer { background: #fff; }
}
.btn-primary {
  --bs-btn-bg: var(--eko-green);
  --bs-btn-border-color: var(--eko-green);
  --bs-btn-hover-bg: var(--eko-green-dark);
  --bs-btn-hover-border-color: var(--eko-green-dark);
  --bs-btn-active-bg: var(--eko-green-dark);
  --bs-btn-active-border-color: var(--eko-green-dark);
  --bs-btn-disabled-bg: var(--eko-green);
  --bs-btn-disabled-border-color: var(--eko-green);
}
.btn-outline-primary {
  --bs-btn-color: var(--eko-green);
  --bs-btn-border-color: var(--eko-green);
  --bs-btn-hover-bg: var(--eko-green);
  --bs-btn-hover-border-color: var(--eko-green);
  --bs-btn-active-bg: var(--eko-green);
}
.eko-heading {
  color: var(--eko-green-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}
.eko-heading--h1 { font-size: 22px; }

/* ---------- header ---------- */
.eko-header {
  display: flex;
  align-items: flex-start;
  padding: 10px 15px 15px;
}
.eko-header__main {
  display: flex;
  align-items: flex-start;
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}
.eko-header__logo { flex: 0 0 auto; padding: 20px 0 0 30px; }
.eko-header__logo img { display: block; width: 162px; max-width: 100%; height: auto; }
.eko-search {
  display: flex;
  margin: 30px 8px 0 auto;
}
.eko-search__input {
  width: 355px;
  height: 50px;
  padding: 0 0 0 17px;
  border: 1px solid var(--eko-green);
  border-right: none;
  border-radius: 0;
  color: #555;
  font-size: 14px;
  outline: none;
}
.eko-search__input::placeholder { color: silver; }
.eko-search__button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--eko-green);
  background: var(--eko-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.eko-search__button .material-icons { font-size: 20px; }
.eko-header__links {
  flex: 1 1 auto;
  margin-top: 30px;
  text-align: center;
  font-size: 0;
}
.eko-toplink {
  display: inline-block;
  width: 25%;
  font-size: 12px;
  text-align: center;
  vertical-align: top;
  color: var(--eko-green);
  text-decoration: none;
}
.eko-toplink img { display: block; margin: 0 auto 2px; }
.eko-toplink span {
  font-family: "Myried Pro Regular", serif; /* as rendered by the Magento theme (font not loaded there either) */
  font-weight: 700;
}
.eko-toplink:hover, .eko-toplink:focus { color: var(--eko-orange); text-decoration: none; }
.eko-cartcount:empty { display: none; }

/* ---------- top menu ---------- */
.eko-nav {
  position: relative;
  z-index: 20;
  max-width: 1200px; /* full white column width */
  margin-top: 15px;
  padding: 10px 0;
  background-color: rgba(237, 241, 231, 0.6);
}
.eko-nav__toggle { display: none; }
.eko-menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  margin: 0;
  padding: 0;
}
.eko-menu__item { position: relative; text-align: center; }
.eko-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 10px 15px;
  border-right: 1px solid var(--eko-border);
  color: var(--eko-green);
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}
.eko-menu__item:last-child > .eko-menu__link { border-right: none; }
.eko-menu__item:hover > .eko-menu__link,
.eko-menu__item.is-current > .eko-menu__link { color: var(--eko-orange); }
.eko-menu__sub-toggle { display: none; }
.eko-menu__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  background-color: var(--eko-green-light);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.eko-menu__item:hover > .eko-menu__sub { display: block; }
.eko-menu__sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 7px 20px;
  color: var(--eko-green);
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  transition: padding 0.15s;
}
.eko-menu__sub a:hover { padding-left: 30px; color: var(--eko-green); }

/* ---------- breadcrumb (Magento theme had none) ---------- */
#wrapper .breadcrumb__wrapper { display: none; }

/* ---------- CMS pages (content migrated from Magento, Bootstrap 3 metrics) ---------- */
#cms .page-header h1,
#cms .page-title-section h1 { margin: 0 0 20px; color: #076633; font-size: 18px; font-weight: 400; }
#cms .page-content { line-height: 1.42857; }
#cms .page-content p { margin: 0 0 10px; }
#cms .page-content ul, #cms .page-content ol { margin-bottom: 10px; }
#cms .page-content table,
#cms .page-content td,
#cms .page-content th { border-width: 0; }
#cms .page-content img { max-width: 100%; height: auto; }

/* ---------- homepage ---------- */
.eko-home { padding: 0; }
.eko-home__top { display: flex; align-items: flex-start; }
.eko-home__main { flex: 0 0 66.6667%; max-width: 66.6667%; padding: 10px 15px 0; } /* + 20px of #wrapper = Magento */
.eko-home__side { flex: 0 0 33.3333%; max-width: 33.3333%; padding: 0 15px; }
.eko-home__main .eko-heading { padding-left: 15px; }
.eko-home__slider-title {
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.43;
}
.eko-slider { position: relative; margin: 10px 0; overflow: hidden; }
.eko-slider__track { position: relative; }
.eko-slider__item { display: none; }
.eko-slider__item.is-active { display: block; animation: eko-fade 0.6s; }
.eko-slider__item img { display: block; width: 100%; height: auto; }
@keyframes eko-fade { from { opacity: 0.2; } to { opacity: 1; } }
.eko-slider__dots {
  position: absolute;
  right: 20px;
  bottom: 10px;
  display: flex;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.eko-slider__dots button {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #9d9d9d;
  cursor: pointer;
}
.eko-slider__dots button.is-active { background-color: var(--eko-green-button); }
.eko-catalog {
  display: block;
  margin-bottom: 40px;
  padding: 10px;
  border: 1px solid var(--eko-green-button);
  background-color: var(--eko-green-button);
  color: #fff;
  font-size: 26px;
  line-height: 1.43;
  text-align: center;
  text-decoration: none;
}
.eko-catalog:hover, .eko-catalog:focus { color: #fff; text-decoration: none; }
.eko-catalog .material-icons { font-size: 30px; vertical-align: -6px; }

.eko-hero {
  width: 100%;
  height: 343px;
  margin-bottom: 30px;
  background: url("../img/bg_main_page.png") center / cover;
  color: #fff;
}
.eko-hero__container {
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  background: url("../img/ekotaschen_de.png") no-repeat center right;
}
.eko-hero h1 {
  width: 85%;
  margin: 0;
  padding-top: 16px;
  color: #fff;
  font-size: 63px;
  font-weight: 100;
  line-height: 1.1;
}
.eko-hero h1 span { font-weight: 600; }
.eko-hero p {
  width: 65%;
  margin: 0 0 10px;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 15px;
  line-height: 20px;
  text-align: justify;
}

/* article (ps_customtext = Magento CMS "home" content) */
.eko-home__article { padding: 0 15px; }
.eko-article .main_article_div { position: relative; width: 100%; }
.eko-article .main_article_div > div { display: inline-block; width: 49%; vertical-align: top; }
.eko-article .main_article_div img { max-width: 100%; height: auto; }
.eko-article .main_h2,
.eko-article .main_h3 { font-size: 20px; font-weight: 700; line-height: 1.1; margin: 20px 0 10px; }
.eko-article .main_p { font-size: 14px; line-height: 20px; text-align: justify; margin: 0 0 10px; }
/* the Magento texts next to the images are positioned absolutely (inline style): on narrower screens they ran under the
   next image — normal flow in their column there */
@media (max-width: 1099.98px) {
  .eko-article .main_article_div [style*="position: absolute"] { position: static !important; }
  .eko-article .main_article_div [style*="width: 483px"] { width: auto !important; }
}

/* ---------- product cards (home bestsellers + listings) ---------- */
.eko-products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin: 50px 0; }
.eko-products--cols-3 { grid-template-columns: repeat(3, 1fr); margin: 0 0 20px; }
.eko-card {
  position: relative;
  display: flex;
  background-color: #fff;
  border: 1px solid var(--eko-border);
}
.eko-card__hot { position: absolute; z-index: 5; top: -20px; left: -10px; pointer-events: none; }
.eko-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  padding: 5px;
}
.eko-card__image img { max-height: 135px; max-width: 100%; width: auto; height: auto; }
.eko-card__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}
.eko-card__details { display: flex; flex-direction: column; padding: 5px 5px 0 0; }
.eko-card__name {
  margin: 5px 0 2px;
  color: var(--eko-green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.eko-card__name:hover, .eko-card__name:focus { color: var(--eko-green); text-decoration: none; }
.eko-card__info { margin: 2px 0; color: var(--eko-green); font-size: 12px; font-weight: 700; cursor: help; }
.eko-card__green {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  background-color: var(--eko-green-light);
}
.eko-card__price-box { display: flex; flex-direction: column; }
.eko-card__price { margin: 0; color: var(--eko-green-dark); font-size: 16px; font-weight: 700; }
.eko-card__tax { display: flex; flex-direction: column; margin: 0; font-size: 10px; line-height: 1.4; }
.eko-card__tax a { color: var(--eko-green); }
.eko-card__cart { align-self: stretch; min-width: 52px; margin: 0; }
.eko-card__cart button,
.eko-card__cart--link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 38px;
  border: none;
  background: url("../img/prod-list-basket.png") center center no-repeat;
  cursor: pointer;
}

/* ---------- listing ---------- */
.eko-listing { padding: 0 15px; }
.eko-listing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0 0 20px;
}
.eko-sort { display: flex; align-items: center; }
.eko-sort label { margin: 0 15px 0 0; color: var(--eko-text); font-weight: 700; }
.eko-sort__select {
  display: block;
  width: 200px;
  overflow: hidden;
  padding: 5px 0;
  border: 1px solid #ccc;
  background: #fff url("../img/select_bkg.jpg") left no-repeat;
}
.eko-sort__select select option { color: var(--eko-text); }
.eko-sort__select select {
  width: 100%;
  padding-left: 30px;
  border: 0;
  background: transparent;
  color: var(--eko-text); /* Magento: silver italic — hard to read */
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
.eko-catdesc { margin: 20px 0 0; }
.eko-catdesc__toggle {
  padding: 0 5px;
  border: 0;
  background: none;
  color: var(--eko-green-dark);
  text-transform: uppercase;
  cursor: pointer;
}
.eko-catdesc__toggle .material-icons { font-size: 20px; vertical-align: -5px; transition: transform 0.2s; }
.eko-catdesc__toggle.is-open .material-icons { transform: rotate(180deg); }
.eko-catdesc__body { padding: 0 20px; color: var(--eko-green-dark); }

/* ---------- product page ---------- */
.eko-product { padding: 0 15px; }
.eko-product__name h1 {
  margin: 30px 0 0;
  color: var(--eko-green-dark);
  font-size: 22px;
  font-weight: 700;
}
.eko-product__row { display: flex; gap: 30px; align-items: flex-start; }
.eko-product__left { flex: 0 0 calc(41.6667% - 15px); max-width: calc(41.6667% - 15px); margin-top: 20px; }
.eko-product__right { flex: 1 1 auto; min-width: 0; }

.eko-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 565px;
  border: 1px solid var(--eko-border);
  background: #fff;
  cursor: zoom-in;
}
.eko-gallery__main img { max-width: 100%; max-height: 420px; width: auto; height: auto; }
.eko-gallery__thumbs { display: flex; flex-wrap: wrap; gap: 4px; margin: 10px 0; padding: 0; list-style: none; }
.eko-gallery__thumbs button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 100px;
  padding: 5px 0 0;
  border: 1px solid var(--eko-border);
  background: #fff;
  cursor: pointer;
}
.eko-gallery__thumbs img { max-width: 100%; height: auto; }
.eko-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.eko-lightbox[hidden] { display: none; }
.eko-lightbox p { color: #fff; font-size: 22px; }
.eko-lightbox img { max-width: 90vw; max-height: 80vh; background: #fff; }

.eko-options__head { display: flex; margin: 20px 0; }
.eko-options__title {
  flex: 0 0 58.3333%;
  margin: 0;
  padding: 10px 20px;
  border: 1px solid var(--eko-border);
  background: #fff;
  color: var(--eko-green-dark);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}
.eko-options__guide {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 48px;
  background: var(--eko-green);
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}
.eko-options__guide:hover, .eko-options__guide:focus { color: #fff; text-decoration: none; }
.eko-options__pen-image { margin: 0 auto 20px; max-width: 550px; border: 1px solid #ddd; background: #fff; text-align: center; }
.eko-options__pen-image img { max-width: 100%; height: auto; }

.eko-choice { display: flex; justify-content: space-around; margin: 0 15px; padding-bottom: 10px; border-bottom: 1px solid var(--eko-green); }
.eko-choice--pen { border-bottom: none; margin-bottom: 10px; }
.eko-choice__item {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin: 0;
  padding: 5px 0;
  cursor: pointer;
}
.eko-choice__item input { grid-row: 1; grid-column: 1; margin: 0; accent-color: #2a64f6; }
.eko-choice__item img { grid-row: 1; grid-column: 2; }
.eko-choice__item span {
  grid-row: 2;
  grid-column: 1 / span 2;
  margin: 5px auto 0;
  color: var(--eko-green);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.4;
}
.eko-choice--pen .eko-choice__item { grid-template-columns: auto; }
.eko-choice--pen .eko-choice__item input { justify-self: center; }
.eko-choice--pen .eko-choice__item span { grid-column: 1; }
.eko-choice__item--edge-right { border-right: 1px solid var(--eko-green); }
.eko-choice__item--edge-left { border-left: 1px solid var(--eko-green); }
.eko-choice__second { margin: 0 15px; }
.eko-choice__row { display: flex; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--eko-green); }
.eko-choice__row-label { margin: 0 25px 0 15px; }
.eko-choice__row .eko-choice__item { flex: 0 0 auto; width: 16.6667%; min-width: 105px; }

.eko-price { display: flex; flex-wrap: wrap; flex-direction: row-reverse; margin-top: 10px; }
.eko-price__green { flex-grow: 1; display: flex; flex-direction: column; }
.eko-price__switch { display: flex; width: 100%; }
.eko-price__switch button {
  width: 50%;
  padding: 5px 0;
  border: 0;
  border-top: 1px solid var(--eko-border);
  background: #fff;
  color: var(--eko-text);
  font-size: 14px;
  cursor: pointer;
}
.eko-price__switch button:first-child { border-left: 1px solid var(--eko-border); }
.eko-price__switch button:last-child { border-right: 1px solid var(--eko-border); }
.eko-price__switch button.is-active { border-color: var(--eko-green); background: var(--eko-green); color: #fff; }
.eko-price__box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 15px 10px 0;
  background: var(--eko-green);
  color: #fff;
}
.eko-price__top { display: flex; align-items: center; margin-bottom: 7px; padding-bottom: 7px; border-bottom: 1px solid #fff; }
.eko-price__label, .eko-price__value { font-size: 24px; }
.eko-price__label { margin-right: 20px; }
.eko-price__box p { margin: 0; font-size: 13px; }
.eko-price__box a { color: var(--eko-green-light); font-weight: 700; }
.eko-price__small { font-size: 14px; }
.eko-price__tiers { max-width: 420px; margin-top: 6px !important; font-size: 12px !important; text-align: right; opacity: 0.9; }
.eko-choice__item.is-disabled { opacity: 0.35; cursor: not-allowed; }
.eko-price__qty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--eko-border);
  border-right: none;
  background: #fff;
}
.eko-price__qty label { margin-bottom: 5px; color: var(--eko-green); font-size: 20px; font-weight: 700; }
.eko-price__qty input {
  max-width: 64px;
  margin-bottom: 5px;
  border: 1px solid var(--eko-border);
  color: var(--eko-green);
  font-size: 20px;
  text-align: center;
  -moz-appearance: textfield;
}
.eko-price__qty input::-webkit-outer-spin-button,
.eko-price__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.eko-price__qty p { margin: 0; }
.eko-price__cart { width: 100%; }
.eko-price__cart button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  border: 1px solid var(--eko-border);
  border-top: none;
  background: var(--eko-green-light);
  cursor: pointer;
}
.eko-price__cart button span {
  padding-left: 10px;
  color: var(--eko-green);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.eko-price__cart button:disabled { opacity: 0.6; cursor: not-allowed; }

.eko-specs {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid var(--eko-border);
  background: #fff;
}
.eko-specs__image img { max-height: 230px; width: auto; }
.eko-specs__info { display: grid; grid-template-columns: 30% 70%; flex-grow: 1; font-size: 16px; }
.eko-specs__info div:nth-child(odd) { margin-right: 10px; color: var(--eko-green); font-weight: 700; text-align: right; }

.eko-product__description {
  margin: 20px auto 0;
  padding: 20px;
  border: 1px solid var(--eko-border);
  background: #fff;
}
.eko-product__description p:last-child { margin-bottom: 0; }

.eko-inquiry { margin: 40px 0 0; padding: 0 30px; }
.eko-inquiry[hidden] { display: none; }
.eko-inquiry h2 { margin-bottom: 20px; color: var(--eko-green); font-size: 22px; text-align: center; }
.eko-inquiry__intro { font-size: 13px; }
.eko-inquiry__intro em { color: var(--eko-green); }
.eko-inquiry__intro a { color: var(--eko-text); text-decoration: underline; }
.eko-inquiry__form { padding: 0 15px; }
.eko-inquiry__form label { display: block; font-size: 13px; font-weight: 700; }
.eko-inquiry__form input[type="text"],
.eko-inquiry__form input[type="email"],
.eko-inquiry__form input[type="tel"],
.eko-inquiry__form textarea {
  display: block;
  width: 100%;
  margin-top: 5px;
  padding: 3px 6px;
  border: 1px solid #ccc;
  font-weight: 400;
}
.eko-inquiry__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; }
.eko-inquiry__hint { margin: 15px -15px; font-size: 12px; font-style: italic; }
.eko-inquiry__file { margin-top: 15px; }
.eko-inquiry__label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 700; }
.eko-inquiry__upload { position: relative; display: flex !important; height: 34px; border: 1px solid #ccc; background: #fff; cursor: pointer; }
.eko-inquiry__upload .js-eko-filename { flex: 1 1 auto; padding: 7px 10px; color: #999; font-size: 11px; font-weight: 400; }
.eko-inquiry__upload-btn { display: flex; align-items: center; justify-content: center; width: 200px; background: var(--eko-green); color: #fff; font-weight: 400; }
.eko-inquiry__upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.eko-inquiry__send {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px auto 0;
  padding: 10px 45px;
  min-height: 50px;
  border: none;
  background: var(--eko-green);
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

/* ---------- page titles / contact ---------- */
.eko-page-title h1 { margin: 0 0 20px; color: var(--eko-green-dark); font-size: 22px; font-weight: 400; }
.eko-contact { display: flex; gap: 15px; align-items: flex-start; margin-top: 30px; }
.eko-contact__info { flex: 0 0 calc(33.3333% - 15px); padding: 0 0 0 15px; text-align: center; }
.eko-contact__info p { margin: 0; }
.eko-contact__hours { padding: 15px 0; border: 1px solid var(--eko-border); background: #fff; color: var(--eko-green); }
.eko-contact__grey { color: silver; font-size: 18px; }
.eko-contact__big { font-size: 20px; }
.eko-contact__block { width: 210px; margin: 0 auto; padding: 10px; border-bottom: 1px solid var(--eko-green-dark); color: var(--eko-green); }
.eko-contact__block img { display: block; margin: 10px auto; }
.eko-contact__red, .eko-contact__red a { color: var(--eko-orange); text-decoration: none; }
.eko-contact__form { flex: 1 1 auto; padding: 30px 35px; background: rgba(237, 241, 231, 0.6); }
.eko-contactform__intro { margin-bottom: 20px; }
.eko-contactform__intro em { color: var(--eko-green); }
.eko-contactform__intro a { color: #44666d; font-size: 12px; text-decoration: underline; }
.eko-contactform label { display: block; margin-bottom: 5px; font-size: 13px; font-weight: 700; }
.eko-contactform input[type="text"], .eko-contactform input[type="email"], .eko-contactform input[type="tel"], .eko-contactform textarea, .eko-contactform select {
  display: block; width: 100%; padding: 5px 10px; border: 1px solid #ccc; border-radius: 0; background: #fff;
}
.eko-contactform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 30px; padding: 0 15px; }
.eko-contactform__hint { margin: 20px 0; font-size: 13px; font-style: italic; }
.eko-contactform__full { margin-bottom: 20px; padding: 0 15px; }
.eko-contactform .eko-inquiry__upload-btn { width: 200px; }

/* ---------- forms (module ekotaschen_forms) ---------- */
.eko-form-hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.eko-form-message { margin: 15px; padding: 12px 15px; border: 2px solid; font-size: 15px; text-align: center; }
.eko-form-message p { margin: 0; }
.eko-form-message.is-ok { border-color: var(--eko-green); color: var(--eko-green); }
.eko-form-message.is-error { border-color: #d9042b; color: #d9042b; }
.eko-inquiry .eko-contactform { padding: 25px 20px; background: rgba(237, 241, 231, 0.6); }

/* ---------- checkout /Bestellung (Magento one-step checkout layout, templates: modules/ps_onepagecheckout) ---------- */
.eko-co-title { margin: 0 0 10px; font-size: 22px; font-weight: 700; line-height: 1.1; text-align: center; text-transform: uppercase; }
.eko-co { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px 10px; margin-bottom: 40px; }
.eko-co #opc-form, .eko-co-contents { display: contents; }
.eko-co > .alert, .eko-co #opc-form > .alert, .eko-co #opc-form > .help-block,
.eko-co-box--address, .eko-co-box--review, .eko-co-footer { grid-column: 1 / -1; }
.eko-co .one-page-checkout__section { margin: 0; padding: 0; border: 0; }
.eko-co-box { padding: 0 0 20px; background: #ececec; }
.eko-co-box__title,
.eko-co .one-page-checkout__title { margin: 0 0 10px; padding: 15px 10px; background: var(--eko-green); color: #fff; font-size: 20px; font-weight: 500; line-height: 22px; text-align: center; }
.eko-co-box--address .eko-co-box__title { text-transform: uppercase; }
.eko-co-subtitle { margin: 10px 0 5px; font-size: 16px; font-weight: 700; }

/* 1. address: customer type row + 4-column field grid */
.eko-co-type { display: flex; flex-wrap: wrap; align-items: center; gap: 5px 20px; margin: 0 30px 10px; padding: 5px 5px 10px; border-bottom: 1px solid #fff; }
.eko-co-type__opt { display: flex; align-items: center; gap: 6px; margin: 0; text-transform: uppercase; cursor: pointer; }
.eko-co-type__opt input { accent-color: var(--eko-green); width: 18px; height: 18px; }
.eko-co-type__login { margin-left: auto; font-size: 13px; }
.eko-co-type__required { color: #d9042b; font-size: 14px; }
.eko-co-type__opt + .eko-co-type__opt + .eko-co-type__required { margin-left: auto; }
.eko-co-fields { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 15px; margin: 0 30px; }
.eko-co .eko-f .mb-3 { margin-bottom: 12px !important; }
.eko-co .eko-f .form-label { margin: 0 0 1px 5px; font-size: 14px; font-weight: 400; }
.eko-co .eko-f .form-label.required::after, .eko-co-req { color: #d9042b; }
.eko-co .eko-f .form-control, .eko-co .eko-f .form-select { height: 32px; padding: 5px; border: 1px solid silver; font-size: 14px; line-height: 20px; }
.eko-co .eko-f .form-select { padding-right: 28px; background-position: right 6px center; }
.eko-co .eko-f .form-text { display: none; }
/* Magento order: Vorname, Nachname, E-Mail, Straße | Stadt, PLZ, Land, Telefon (Firma: Firma, USt-IdNr. first) */
.eko-f { order: 11; }
.eko-f--company { order: 1; } .eko-f--vat_number { order: 2; }
.eko-f--firstname { order: 3; } .eko-f--lastname { order: 4; } .eko-f--email { order: 5; } .eko-f--address1 { order: 6; }
.eko-f--city { order: 7; } .eko-f--postcode { order: 8; } .eko-f--id_country { order: 9; } .eko-f--phone { order: 10; }
.eko-f--account, .eko-f--list { order: 0; grid-column: 1 / -1; margin-bottom: 10px; }
.eko-f--wide, .eko-f--dni, .eko-f--id_state { order: 11; }
.eko-f--same { order: 20; grid-column: 1 / -1; margin: 15px 0 0; padding-left: 1.75em; font-weight: 700; }
.eko-f--billing { order: 21; grid-column: 1 / -1; margin-top: 10px; }
.eko-f--consent { order: 19; grid-column: 1 / -1; margin-top: 10px; font-size: 13px; }
.eko-f--consent .mb-3 { margin-bottom: 0 !important; }
.eko-f--alias, .eko-f--address2 { display: none; }
.eko-co-box--address:not(.is-company) .eko-f--company, .eko-co-box--address:not(.is-company) .eko-f--vat_number { display: none; }
#opc-billing-address-fields { margin: 0; }

/* 2. shipping, 3. payment */
.eko-co-box--shipping { grid-column: 1; }
.eko-co-box--payment { grid-column: 2; }
.eko-co-box--shipping > :not(.eko-co-box__title), .eko-co-box--payment .opc-payment-methods-wrapper { margin: 0 15px; }
/* boxes 2 + 3 have the same height (grid row): their options are centred vertically; shipping options also
   horizontally (a block as wide as its content) */
.eko-co-box--shipping, .eko-co-box--payment { display: flex; flex-direction: column; }
.eko-co-box--shipping > .eko-co-box__title, .eko-co-box--payment > .eko-co-box__title { flex: 0 0 auto; }
.eko-co-box--shipping > #opc-delivery-methods, .eko-co-box--payment > .opc-payment-methods-wrapper { margin-top: auto; margin-bottom: auto; }
/* boxes 2 + 3: bottom padding of the grey area (.one-page-checkout__section resets it), so that the gap under
   the last option equals the gap above the first one */
.eko-co-box--payment > .opc-payment-methods-wrapper { padding-top: 10px; }
/* the module gives the wrapper a minimum height: its content (methods / "complete your address" hint) centred in it,
   like the shipping box */
.eko-co-box--payment > .opc-payment-methods-wrapper { display: flex; flex-direction: column; justify-content: center; }
.eko-co .one-page-checkout__section.eko-co-box { padding-bottom: 16px; }
/* loader while the payment methods reload (carrier change): box colour instead of a white rectangle, over the
   whole box width, the current methods dimmed underneath. Its utility classes (bg-white, start-0, end-0) are in
   Hummingbird's @layer utilities and win over any !important here, hence Bootstrap's variables + margins. */
.eko-co #opc-payment-methods-loader { --bs-white-rgb: 236, 236, 236; --bs-bg-opacity: 0.85; margin: 0 -15px; }
.eko-co .delivery-options__list { width: max-content; max-width: 100%; margin: 0 auto; }
.eko-co .delivery-option__label { gap: 4px 40px; }
.eko-co .js-opc-order-options { display: none !important; }
.eko-co .delivery-option__item { margin: 0; padding: 5px 0; border: 0; background: none; }
.eko-co .delivery-option__label { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; margin: 0; padding: 0; border: 0; background: none; cursor: pointer; }
.eko-co .delivery-option__left { display: flex; flex: 1 1 auto; align-items: center; gap: 12px; }
.eko-co .delivery-option__content { order: 3; flex: 1 1 100%; padding-left: 32px; color: #777; font-size: 12px; }
.eko-co .delivery-option__price { color: var(--eko-green); }
/* payment options one below the other, the selected option's information / form under it */
.eko-co #opc-payment-methods { display: block; }
.eko-co .payment-option { display: block; margin: 0; padding: 5px 0; }
.eko-co .payment-option__form-check { margin: 0; }
.eko-co .payment-option__label { font-weight: 700; }
.eko-co .payment-option__label img { max-height: 30px; width: auto; margin-right: 5px; }
.eko-co .payment-option__additional-information { margin: 6px 0 4px 1.5em; padding-block-start: 0; font-size: 13px; }
.eko-co .delivery-option__carrier-logo { max-width: 32px; max-height: 32px; }
.eko-co .delivery-option__carrier--hasLogo { display: flex; align-items: center; gap: 8px; }
.eko-co .delivery-option__price { margin-left: auto; font-size: 13px; text-align: right; white-space: nowrap; }
.eko-co .form-check-input:checked { background-color: var(--eko-green); border-color: var(--eko-green); }
.eko-co .one-page-checkout__placeholder .alert { margin: 0; padding: 8px 10px; border: 0; background: none; color: #3f4d45; font-size: 13px; }

/* 4. order review */
.eko-review { display: flex; margin: 0 30px; }
.eko-review__items { flex: 1 1 auto; min-width: 0; padding-right: 20px; }
.eko-review__head, .eko-review__row { display: grid; grid-template-columns: 110px minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.eko-review__head { padding-bottom: 5px; font-size: 14px; text-align: center; }
.eko-review__row { padding: 10px 0; }
.eko-review__row > * { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.eko-review__row .eko-review__c-price, .eko-review__row .eko-review__c-qty { align-items: center; border-left: 1px solid #ccc; border-right: 1px solid #ccc; }
.eko-review__row .eko-review__c-qty { border-left: 0; }
.eko-review__row .eko-review__c-del { align-items: center; }
.eko-review__row .eko-review__c-name { padding: 0 15px; border-left: 1px solid #ccc; }
.eko-review__c-img { padding-right: 15px; }
.eko-review__c-img img { width: 75px; height: auto; background: #fff; }
.eko-review__name { color: var(--eko-green-dark); font-weight: 700; }
/* variant + 3D design rows: "label: value", same look (module ekotaschen_configurator: .ekoconf-cust__row) */
.eko-review__attr { font-size: 13px; line-height: 1.55; }
.eko-review__attr-k { color: #3f4d45; font-weight: 700; }
.eko-review__name + .ekoconf-line-btn { margin-bottom: 4px; }
.eko-review__row .eko-review__c-price { color: var(--eko-green); font-size: 16px; }
.eko-review__qty { width: 95px; padding: 1px 5px; border: 1px solid silver; background: #fff; text-align: center; }
.eko-review__update { width: 95px; margin-top: 4px; padding: 1px 5px; border: 1px solid silver; background: #f0f0f0; font-size: 14px; }
.eko-review__update:hover { background: #e2e2e2; }
.eko-review__delete { color: var(--eko-text); }
.eko-review__delete .material-icons { font-size: 34px; }
.eko-review__delete:hover { color: #d9042b; }
.eko-review.is-busy { opacity: 0.6; pointer-events: none; }
.eko-review__totals { flex: 0 0 340px; padding: 5px 0 5px 20px; border-left: 1px solid #ccc; font-size: 16px; }
.eko-review__line { display: flex; justify-content: space-between; gap: 15px; padding: 6px 0; }
.eko-review__line--total { margin-top: 15px; padding-top: 20px; border-top: 1px solid #ccc; font-weight: 700; }

/* upload + terms + button */
.eko-co-footer { margin-top: 20px; }
.eko-co-footer__row { display: flex; justify-content: center; align-items: flex-start; gap: 30px; }
.eko-co-footer__upload { flex: 0 0 265px; }
.eko-co-footer__upload .eko-printfiles { margin: 0; padding: 0; border: 0; background: none; text-align: center; }
/* colours as in the cart (module ekotaschen_forms), Magento size / centring */
.eko-co-footer__upload .eko-printfiles__drop { min-height: 150px; flex-direction: column; }
.eko-co-footer__upload .eko-printfiles__list { text-align: left; }
.eko-co-footer__terms { flex: 0 1 455px; padding-top: 50px; }
.eko-co-footer__terms .form-check-input { width: 16px; height: 16px; margin-top: 3px; }
.eko-co-footer__note { display: flex; gap: 8px; margin-top: 10px; }
.eko-co-footer__stars { color: #d9042b; }
.eko-co-footer__note a { color: #d9042b; }
.eko-co-footer__submit { margin-top: 40px; text-align: center; }
.eko-co .one-page-checkout__submit { width: auto; min-width: 360px; padding: 12px 60px; border: 0; background: var(--eko-green); color: #fff; font-size: 18px; line-height: 1.4; text-transform: uppercase; }
.eko-co .one-page-checkout__submit:disabled { background: var(--eko-green); opacity: 0.55; }
.eko-co .one-page-checkout__submit:not(:disabled):hover { background: var(--eko-green-dark); }
/* disabled button: the click goes to its wrapper, which lists what is missing (custom.js) */
.eko-co #opc-pay-button:disabled { pointer-events: none; }
.eko-co-footer__submit:has(#opc-pay-button:disabled) { cursor: pointer; }
.eko-co-missing { max-width: 560px; margin: 0 auto 15px; padding: 10px 15px; border: 2px solid #d9042b; color: #d9042b; text-align: left; }
.eko-co-missing p { margin: 0 0 4px; font-weight: 700; }
.eko-co-missing ul { margin: 0; padding-left: 20px; }
.eko-co-missing button { padding: 0; border: 0; background: none; color: inherit; text-align: left; text-decoration: underline; cursor: pointer; }
.eko-co .form-control.is-invalid, .eko-co .form-select.is-invalid { border-color: #d9042b; }
.eko-co .form-check-input.is-invalid { border-color: #d9042b; box-shadow: 0 0 0 2px rgba(217, 4, 43, 0.25); }

/* ---------- footer ---------- */
#footer { margin-top: 0; display: flow-root; } /* flow-root: keeps .eko-footer margin inside the white column */
.eko-footer {
  max-width: 1200px; /* full white column width */
  margin-top: 50px;
  padding-bottom: 20px;
  background: url("../img/footer-gradient.png") bottom left repeat-x;
}
.eko-footer__row { display: flex; }
.eko-footer__row > div { flex: 0 0 16.6667%; max-width: 16.6667%; padding: 0 15px; }
.eko-footer__tile { min-height: 120px; padding-top: 30px !important; text-align: center; }
.eko-footer__tile--left { border-right: 1px solid var(--eko-border); }
.eko-footer__tile--right { border-left: 1px solid var(--eko-border); }
.eko-footer__tile a { text-decoration: none; }
.eko-footer__tile p { margin-top: 5px; color: var(--eko-green); font-weight: 700; }
.eko-footer__block h3 {
  margin: 0 0 10px;
  color: silver;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}
.eko-footer__block ul { margin: 0; padding: 0; list-style: none; }
.eko-footer__block a { color: var(--eko-footer-link); text-decoration: none; }
.eko-footer__block a:hover, .eko-footer__block a:focus { color: var(--eko-orange); }
.eko-footer__newsletter { max-width: 600px; margin: 20px auto 0; }
.eko-copyright {
  display: block;
  max-width: 1200px; /* full white column width */
  min-height: 60px;
  margin: 0 auto;
  padding-top: 20px;
  background-color: #f5f5f5;
  color: #a0a0a0;
  text-align: center;
  text-decoration: none;
}
.eko-copyright:hover { color: #a0a0a0; text-decoration: none; }
.eko-copyright p { margin: 0 0 10px; }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
  .eko-products--cols-3 { grid-template-columns: repeat(2, 1fr); }
  .eko-hero h1 { font-size: 48px; }
  .eko-hero p { width: 75%; }
}
@media (max-width: 991px) {
  .eko-co { grid-template-columns: minmax(0, 1fr); }
  .eko-co-box--shipping, .eko-co-box--payment { grid-column: 1; }
  .eko-co-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 15px; }
  .eko-co-type { margin: 0 15px 10px; }
  .eko-review { flex-direction: column; margin: 0 15px; }
  .eko-review__items { padding-right: 0; }
  .eko-review__totals { flex: 1 1 auto; margin-top: 10px; padding: 10px 0 0; border-left: 0; border-top: 1px solid #ccc; }
  .eko-co-footer__row { flex-direction: column; align-items: stretch; gap: 20px; margin: 0 15px; }
  .eko-co-footer__upload { flex: 1 1 auto; }
  .eko-co-footer__terms { flex: 1 1 auto; padding-top: 0; }
  .eko-header { flex-wrap: wrap; }
  .eko-header__main { flex: 1 1 100%; max-width: 100%; }
  .eko-header__links { margin-top: 15px; }
  .eko-home__top { flex-direction: column; }
  .eko-home__main, .eko-home__side { flex: 1 1 auto; max-width: 100%; width: 100%; }
  .eko-product__row { flex-direction: column; }
  .eko-product__left { flex: 1 1 auto; max-width: 100%; width: 100%; }
  .eko-product__right { width: 100%; }
  .eko-footer__row { flex-wrap: wrap; }
  .eko-footer__row > div { flex: 0 0 33.3333%; max-width: 33.3333%; margin-bottom: 15px; }
  .eko-footer__tile--left, .eko-footer__tile--right { border: none; }
  .eko-hero { display: none; } /* as in Magento (hidden < 768px); too cramped below ~990px */
}
@media (max-width: 767px) {
  .eko-header__logo { padding-left: 0; }
  .eko-header__logo img { max-width: 160px; }
  .eko-header__main { flex-wrap: wrap; }
  .eko-search { flex: 1 1 100%; margin: 15px 0 0; }
  .eko-search__input { flex: 1 1 auto; width: auto; }
  .eko-header__links { flex: 1 1 100%; }
  .eko-nav { padding: 0; }
  .eko-nav__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 15px;
    border: 0;
    background: transparent;
    color: var(--eko-green);
    font-size: 16px;
  }
  .eko-menu { display: none; flex-direction: column; align-items: stretch; }
  .eko-menu.is-open { display: flex; }
  .eko-menu__item { display: flex; flex-wrap: wrap; text-align: left; border-top: 1px solid rgba(0, 0, 0, 0.08); }
  .eko-menu__link { flex: 1 1 auto; min-height: 0; justify-content: flex-start; border-right: none; }
  .eko-menu__sub-toggle { display: block; padding: 0 15px; border: 0; background: none; color: var(--eko-green); }
  .eko-menu__sub { position: static; flex: 1 1 100%; box-shadow: none; }
  .eko-menu__item:hover > .eko-menu__sub { display: none; }
  .eko-menu__item.is-open > .eko-menu__sub { display: block; }
  .eko-menu__sub a { justify-content: flex-start; min-height: 0; padding: 8px 30px; white-space: normal; }
  .eko-products, .eko-products--cols-3 { grid-template-columns: 1fr; gap: 20px; margin: 20px 0; }
  .eko-article .main_article_div > div { display: block; width: 100% !important; position: static !important; }
  .eko-article .main_article_div > div > div { width: 100% !important; }
  .eko-options__head { flex-direction: column; }
  .eko-choice { flex-direction: column; align-items: flex-start; }
  .eko-choice__item { justify-content: flex-start; grid-template-columns: auto auto auto; grid-template-rows: auto; }
  .eko-choice__item span { grid-row: 1; grid-column: 3; margin: 0; text-align: left; }
  .eko-choice__item--edge-right, .eko-choice__item--edge-left { border: none; }
  .eko-choice__row { flex-wrap: wrap; }
  .eko-choice__row-label { display: none; }
  .eko-choice__row .eko-choice__item { width: 50%; }
  .eko-gallery__main { height: auto; min-height: 300px; }
  .eko-specs { flex-direction: column; }
  .eko-price__qty { flex: 1 1 100%; padding: 10px; border-right: 1px solid var(--eko-border); border-top: none; }
  .eko-price__green { flex: 1 1 100%; }
  .eko-inquiry { padding: 0; }
  .eko-inquiry__grid, .eko-contactform__grid { grid-template-columns: 1fr; }
  .eko-contact { flex-direction: column; }
  .eko-contact__info { flex: 1 1 auto; width: 100%; padding: 0; }
  .eko-contact__form { width: 100%; padding: 20px 10px; }
  .eko-footer__row > div { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
  .eko-co-fields { grid-template-columns: minmax(0, 1fr); }
  .eko-co-type__login { margin-left: 0; flex: 1 1 100%; order: 3; }
  .eko-review__head { display: none; }
  .eko-review__row { grid-template-columns: 70px minmax(0, 1fr) auto; gap: 8px 0; }
  .eko-review__row .eko-review__c-img { padding-right: 10px; }
  .eko-review__row .eko-review__c-name { grid-column: 2 / -1; padding: 0 0 0 10px; }
  .eko-review__row .eko-review__c-price, .eko-review__row .eko-review__c-qty, .eko-review__row .eko-review__c-del { grid-row: 2; border: 0; }
  .eko-review__row .eko-review__c-price { grid-column: 1; align-items: flex-start; }
  .eko-review__row .eko-review__c-qty { grid-column: 2; }
  .eko-review__row .eko-review__c-del { grid-column: 3; }
  .eko-review__c-img img { width: 60px; }
  .eko-co .one-page-checkout__submit { min-width: 0; width: 100%; padding: 12px 20px; }
}

/* category: short intro above the products, additional description (sizes table, FAQ) below them */
.eko-catintro { margin: 0 0 20px; color: var(--eko-green-dark); }
.eko-catintro p:last-child { margin-bottom: 0; }
.eko-catinfo { margin: 30px 0 0; color: var(--eko-green-dark); }
.eko-catinfo h2 { font-size: 20px; margin: 25px 0 10px; }
.eko-catinfo .table-wrap { overflow-x: auto; }
.eko-catinfo table { width: 100%; border-collapse: collapse; margin: 0 0 10px; font-size: 14px; }
.eko-catinfo th, .eko-catinfo td { border: 1px solid #dfe7df; padding: 6px 10px; text-align: left; vertical-align: top; }
.eko-catinfo th { background: #f3f7f3; }
.eko-catinfo ol { list-style: decimal; padding-left: 22px; margin: 0 0 10px; }
.eko-catinfo ol li { margin: 0 0 4px; }

/* Google reCAPTCHA v3 (contact / inquiry forms): badge hidden, notice below the form instead (allowed by Google) */
.grecaptcha-badge { visibility: hidden; }
.eko-recaptcha-note { margin: 10px 0 0; font-size: 11px; line-height: 1.4; color: #777; }
.eko-recaptcha-note a { color: inherit; text-decoration: underline; }

/* CMS texts from Magento use tables for layout (e.g. the green box on "Zusammenarbeit"): hummingbird paints every
   .rich-text table cell white like a Bootstrap table — white text on white; only tables with class "table" keep it */
.rich-text table:not(.table) { border-color: transparent; }
.rich-text table:not(.table) > :not(caption) > * > * { background-color: transparent; box-shadow: none; border-width: 0; }

/* CMS 13 "Zusammenarbeit / Samarbejde" (eko-setup/42): Magento layout rebuilt — photo with the arrow, green info box on the
   photo, two white cards overlapping its lower edge; stacked on phones */
.eko-coop { color: var(--eko-text); }
.eko-coop__lead { font-size: 19px; line-height: 1.6; margin: 0 0 15px; }
.eko-coop__lead strong.eko-coop__hl { color: var(--eko-green); }
.eko-coop__hero { position: relative; margin: 75px 0 130px; padding: 270px 55px 0; border-radius: 24px;
  background: #cdbfae url("/img/cms/m1/bg_image.png") center top / cover no-repeat;
  aspect-ratio: 1200 / 668; display: flex; flex-direction: column; justify-content: flex-end; }
.eko-coop__arrow { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 78px; height: auto; }
.eko-coop__info { display: flex; gap: 25px; align-items: center; background: #158c42; color: #fff; padding: 25px 30px;
  font-size: 17px; line-height: 1.5; }
.eko-coop__info img { flex: 0 0 47px; }
.eko-coop__info p { margin: 0; color: #fff; }
.eko-coop__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: -100px; padding-top: 20px; }
.eko-coop__card { background: #fff; padding: 20px 25px 10px; box-shadow: 0 6px 18px rgba(0, 0, 0, .08); }
.eko-coop__card h2 { color: #158c42; font-size: 21px; font-weight: 700; line-height: 1.4; margin: 0 0 12px; }
.eko-coop__card ul { list-style: disc; padding-left: 20px; margin: 0 0 10px; font-size: 16px; line-height: 2; }
.eko-coop__card a { color: var(--eko-green); }
@media (max-width: 991.98px) {
  /* whole photo on top (not cropped by cover), boxes below it on a light background */
  .eko-coop__hero { padding: calc(52vw - 30px) 25px 25px; margin-bottom: 40px; aspect-ratio: auto;
    background-color: var(--eko-green-light); background-size: 100% auto; }
  .eko-coop__cards { grid-template-columns: 1fr; margin-bottom: 0; }
}
@media (max-width: 575.98px) {
  .eko-coop__lead { font-size: 17px; }
  .eko-coop__hero { padding: calc(52vw - 30px) 12px 12px; border-radius: 16px; margin-top: 55px; }
  .eko-coop__info { flex-direction: column; gap: 12px; padding: 20px; font-size: 16px; text-align: left; }
  .eko-coop__card h2 { font-size: 19px; }
}

/* main menu on tablets (768–1099 px): 7 items did not fit (horizontal scroll at ~800 px) — tighter padding and font */
@media (min-width: 768px) and (max-width: 1099.98px) {
  .eko-menu__link { padding: 8px 8px; font-size: 14px; line-height: 18px; }
}
