/** Shopify CDN: Minification failed

Line 251:1 Expected "}" to go with "{"

**/
.main-footer {
  margin-top: var(--container-vertical-space);
  border-top: 1px solid var(--color-borders-footer);
  background: var(--color-background-footer);
  color: var(--color-text-footer);
}
.main-footer a {
  color: var(--color-text-footer);
  transition: all 100ms linear;
}
.no-touchevents .main-footer a:hover {
  color: var(--color-text-footer);
}
.main-footer .social-icons svg * {
  fill: var(--color-text-footer);
  transition: all 100ms linear;
}
.no-touchevents .main-footer .social-icons a:hover svg * {
  fill: var(--color-text-footer);
}
.main-footer .localization-form__item-text {
  color: var(--color-text-footer);
}
.main-footer .localization-form__item-symbol svg path {
  fill: var(--color-text-footer);
}
.main-footer .footer-item__menu span {
  display: block;
  margin-bottom: 0.3125rem;
}
.main-footer .footer-item__menu--unstyled a {
  border-bottom: none !important;
}

.footer-bottom > div {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-bottom > div {
    flex-direction: column;
  }
  .footer-bottom > div .localization-form {
    margin-inline-start: -0.9375rem;
    margin-top: 0.625rem;
  }
}
.footer-top + .footer-bottom {
  border-top: 1px solid var(--color-borders-footer);
}

.footer-item__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
.footer-item__icons img {
  border-radius: 2px;
}

.footer-item__image-heading {
  margin-bottom: 1em;
}

.footer-item__newsletter input:-webkit-autofill + button[type=submit] svg path {
  stroke: #000;
}

.footer-item__newsletter .form-row {
  padding-top: 0;
}
.footer-item__newsletter input {
  height: 3.125rem;
  padding-inline-end: 2.5rem;
  border-color: var(--color-text-footer);
  color: var(--color-text-footer);
  background-color: transparent;
}
.footer-item__newsletter input::placeholder {
  color: inherit;
}
.footer-item__newsletter input:focus, .footer-item__newsletter input:hover {
  border-color: var(--color-text-footer);
}
.footer-item__newsletter button[type=submit] {
  top: 0;
  position: absolute;
  width: 50px;
  height: 100%;
  padding-top: 9px;
}
html[dir=rtl] .footer-item__newsletter button[type=submit] {
  left: 0;
}
html[dir=ltr] .footer-item__newsletter button[type=submit] {
  right: 0;
}
.no-touchevents .footer-item__newsletter button[type=submit]:hover svg {
  opacity: 1;
}
.footer-item__newsletter button[type=submit] svg {
  width: 65%;
  height: 65%;
  opacity: 0.62;
  transition: all 100ms linear;
}
.footer-item__newsletter button[type=submit] svg path {
  stroke: var(--color-text-footer);
}

.shop-login-button {
  display: block;
}

/* =========================
   FOOTER FIX (Combine)
   - smaller top/bottom paddings
   - underline only on hover
   - menu in 2 columns (desktop)
   ========================= */

/* 1) Відступ 2: верх футера (footer-top) — зменшити */
.main-footer .footer-top.gutter-top--xlarge {
  padding-top: 32px !important; /* було xlarge — стало компактніше */
}

/* 2) Відступ 2: низ футера (footer-top) — зменшити */
.main-footer .footer-top.gutter-bottom--xlarge {
  padding-bottom: 22px !important;
}

/* 3) Відступ 3: нижня смуга footer-bottom — зменшити */
.main-footer .footer-bottom {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

/* Прибираємо зайві маржини у внутрішніх блоків (часто дають “повітря”) */
.main-footer .footer-block,
.main-footer .footer__block {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* =========================
   Links: underline ONLY on hover
   ========================= */
.main-footer a,
.main-footer a:visited {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.no-touchevents .main-footer a:hover,
.main-footer a:focus-visible {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}


.footer-legal-wrapper{
  position: relative;
  width: 100%;
  min-height: 22px;
  font-size: 13px;
}

.footer-legal-left{
  opacity: 1;
}

.footer-legal-center{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: .75;
  white-space: nowrap;
}

.footer-legal-center a{
  text-decoration: none;
  opacity: .85;
}

.footer-legal-center a:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-sep{
  opacity: .6;
}
.footer-bottom .container--large.rte{
.footer-policies{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px;
margin-top:4px;
}

.footer-policies a{
text-decoration:none;
}

.footer-policies a:hover{
text-decoration:underline;
text-underline-offset:3px;
}

.footer-sep{
opacity:.6;
}

/* мобільна адаптація */
@media (max-width:768px){

.footer-legal-wrapper{
display:flex;
flex-direction:column;
align-items:center;
gap:6px;
text-align:center;
}

.footer-legal-left{
text-align:center;
}

.footer-legal-center{
position:static;
transform:none;
white-space:normal;
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:6px;
}

}