.custom-site-footer {
  border-top: 1px solid #222;
  background: #fcf8f3;
  color: #090909;
}

.custom-site-footer .container {
  padding-top: 38px;
}

.custom-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .75fr 1fr .65fr;
  gap: 48px;
  align-items: start;
}

.custom-footer-logo {
  display: block;
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

.custom-footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-footer-about address {
  max-width: 270px;
  margin: 0;
  font-style: normal;
}

.custom-footer-about address p {
  margin: 0 0 9px;
  font-size: 15px;
  line-height: 1.55;
}

.custom-footer-about address strong {
  font-weight: 500;
}

.custom-site-footer a {
  color: #090909;
  text-decoration: none;
  transition: color .2s ease;
}

.custom-site-footer a:hover {
  color: #a31d3f;
}

.custom-footer-newsletter {
  max-width: 260px;
  margin-top: 27px;
}

.custom-footer-newsletter label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 500;
}

.custom-footer-email {
  height: 44px;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  background: #ffe89a;
}

.custom-footer-email input {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #15100b;
  font-size: 14px;
}

.custom-footer-email input::placeholder {
  color: #4f4438;
  opacity: 1;
}

.custom-footer-email button {
  width: 50px;
  flex: 0 0 50px;
  border: 0;
  background: transparent;
  color: #0a0908;
  font-size: 21px;
  cursor: pointer;
}

.custom-footer-email button:hover,
.custom-footer-email button:focus-visible {
  color: #a31d3f;
}

.newsletter-status {
  min-height: 18px;
  margin: 5px 0 0;
  color: #6b1a30;
  font-size: 12px;
}

.custom-site-footer h5 {
  margin: 10px 0 20px;
  color: #050505;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
}

.custom-footer-products ul,
.custom-footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-footer-products li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}

.custom-footer-products li img {
  width: 61px;
  height: 63px;
  flex: 0 0 61px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
}

.custom-footer-products li div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.custom-footer-products li a {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.custom-footer-products li span {
  font-size: 15px;
  font-weight: 500;
}

.custom-footer-links li {
  margin-bottom: 14px;
}

.custom-footer-links a {
  font-size: 15px;
  line-height: 1.4;
}

.custom-footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  border-top: 1px solid #ded9d3;
}

.custom-footer-bottom p,
.custom-footer-payment {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.custom-footer-bottom p strong {
  color: #d7194b;
  font-weight: 600;
}

.custom-footer-payment {
  display: flex;
  align-items: center;
  gap: 14px;
}

.custom-footer-payment strong {
  white-space: nowrap;
  font-weight: 600;
}

.custom-footer-payment img {
  display: block;
  width: 223px;
  max-width: 100%;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 1199px) {
  .custom-footer-grid {
    grid-template-columns: 1.2fr 1.2fr .8fr;
    gap: 35px 45px;
  }
}

@media (max-width: 767px) {
  .custom-site-footer .container {
    padding-top: 30px;
  }

  .custom-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 30px;
  }

  .custom-footer-bottom {
    min-height: 110px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
    padding: 20px 0;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .custom-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }



  .custom-site-footer h5 {
    margin-bottom: 14px;
  }

  .custom-footer-products li {
    margin-bottom: 15px;
  }

  .custom-footer-links li {
    margin-bottom: 10px;
  }

  .custom-footer-payment {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
}