/**
 * 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;
}

/* ---------- base ---------- */
body {
  background: url("../img/body_back.jpg") top left;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: var(--eko-text);
}
.eko-wrap,
#wrapper .columns-container.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#wrapper .columns-container.container { padding-left: 15px; padding-right: 15px; }
.wrapper { padding-top: 0; }
#header { position: relative !important; top: auto !important; background: transparent; box-shadow: none; }
.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: 1172px;
  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: 20px 0; 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: 30px 15px 0; }
.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: 30px 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; }

/* ---------- 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: 20px 0;
  padding: 20px 0;
}
.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 {
  width: 100%;
  padding-left: 30px;
  border: 0;
  background: transparent;
  color: silver;
  font-style: italic;
  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: 20px 0; 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; }

/* ---------- footer ---------- */
#footer { margin-top: 0; background: transparent; }
.eko-footer {
  max-width: 1172px;
  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: 1172px;
  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-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%; }
}
