.elk-nav {
  min-height: 112px;
  padding-top: 12px;
  padding-bottom: 12px;
  align-items: center;
}

.elk-nav > a:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 175px;
}

.elk-nav img {
  display: block;
  width: 175px;
  height: 96px;
  max-height: 96px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .elk-nav {
    min-height: 92px;
  }
  .elk-nav > a:first-child {
    flex-basis: 135px;
  }
  .elk-nav img {
    width: 135px;
    height: 78px;
    max-height: 78px;
  }
}

.header-middle .container,
.header-middle .header-left {
  align-items: center;
}

.header-middle .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 170px;
  width: 170px;
  margin-right: 4rem;
  margin-bottom: 0;
}

.header-middle .logo img {
  display: block;
  width: 170px;
  height: 105px;
  max-width: none;
  object-fit: contain;
}

.working-cart .dropdown-box,
.newsletter-popup {
  display: none !important;
}

@media (max-width: 991px) {
  .header-middle .logo {
    flex-basis: 135px;
    width: 135px;
    margin-right: 2rem;
  }
  .header-middle .logo img {
    width: 135px;
    height: 86px;
  }
}

@media (max-width: 480px) {
  .header-middle .logo {
    flex-basis: 120px;
    width: 120px;
    margin-right: 0;
  }
  .header-middle .logo img {
    width: 120px;
    height: 78px;
  }
}

.shop-product-card {
  display: flex;
  flex-direction: column;
  min-height: 485px;
  height: 100%;
}

.shop-product-card > a {
  display: flex;
  flex-direction: column;
}

.shop-product-card > a > img {
  display: block;
  width: 100%;
  height: 300px;
  aspect-ratio: auto;
  padding: 10px;
  object-fit: contain;
  background: #f7f7f7;
}

.shop-product-card h3 {
  min-height: 50px;
  margin-top: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-product-card .price {
  margin-bottom: 16px;
}

.shop-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.shop-card-actions form,
.shop-card-actions button {
  width: 100%;
}

.cart-toast {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: min(430px, calc(100vw - 30px));
  padding: 15px 18px;
  border-left: 5px solid #299447;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 35px rgba(0,0,0,.22);
  color: #222;
  font-size: 14px;
  animation: cartToastLife 4.2s forwards;
}

.cart-toast-icon {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: #299447;
  color: #fff;
  font-weight: 700;
}

.cart-toast a {
  margin-left: auto;
  white-space: nowrap;
  color: #b98215;
  font-weight: 700;
}

.cart-toast-error { border-left-color: #c53939; }
.cart-toast-error .cart-toast-icon { background: #c53939; }

@keyframes cartToastLife {
  0% { opacity: 0; transform: translateY(-18px); }
  8%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; visibility: hidden; transform: translateY(-18px); }
}

@media (max-width: 767px) {
  .shop-product-card { min-height: 405px; }
  .shop-product-card > a > img { height: 220px; }
  .shop-card-actions { flex-direction: column; }
  .cart-toast { top: 12px; right: 15px; }
}

.hero-inner {
  min-height: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  padding: 18px 0;
  background-position: center 52%;
  background-size: cover;
  text-align: left;
}

.hero-inner .hero-inner-content {
  width: min(1180px, calc(100% - 30px));
  margin: 0 auto;
}

.hero-inner h1 {
  margin: 0 0 4px;
  font-size: 34px;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}

.hero-inner p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}

@media (max-width: 767px) {
  .hero-inner {
    min-height: 120px;
    height: 120px;
    padding: 14px 0;
    background-position: 58% center;
  }
  .hero-inner h1 {
    font-size: 27px;
  }
}
