.wr-footer-widget {
  --wr-footer-bg: #232120;
  --wr-footer-panel: #151515;
  --wr-footer-text: #ffffff;
  --wr-footer-muted: rgba(255, 255, 255, 0.74);
  --wr-footer-accent: #f21878;
  --wr-footer-line: rgba(255, 255, 255, 0.42);
  --wr-footer-tagline: var(--wr-footer-muted);
  --wr-footer-heading-bg: var(--wr-footer-panel);
  --wr-footer-heading-color: #ffffff;
  --wr-footer-contact-text: #ffffff;
  --wr-footer-contact-icon: #ffffff;
  --wr-footer-menu-color: var(--wr-footer-muted);
  --wr-footer-menu-hover: var(--wr-footer-accent);
  --wr-footer-menu-active: var(--wr-footer-accent);
  --wr-footer-button-bg: var(--wr-footer-accent);
  --wr-footer-button-color: #ffffff;
  --wr-footer-copyright-color: rgba(255, 255, 255, 0.9);
  --wr-footer-copyright-hover: var(--wr-footer-accent);
  --wr-footer-socials-color: var(--wr-footer-accent);
  --wr-footer-socials-hover: var(--wr-footer-text);
  background: var(--wr-footer-bg);
  color: var(--wr-footer-text);
  padding: 48px 40px 22px;
}

.wr-footer-widget a {
  color: inherit;
  text-decoration: none;
}

.wr-footer-widget__top {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 0.82fr) minmax(180px, 0.9fr) minmax(320px, 1.7fr);
  gap: 32px;
  align-items: start;
  grid-template-areas:
    "brand location contact menus"
    "brand . . socials";
}

.wr-footer-widget__brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.wr-footer-widget__logo {
  width: 100%;
  max-width: 280px;
  height: 140px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.wr-footer-widget__tagline {
  color: var(--wr-footer-tagline);
  font-size: 24px;
  line-height: 1.1;
}

.wr-footer-widget__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--wr-footer-button-bg);
  color: var(--wr-footer-button-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wr-footer-widget__button-icon {
  display: inline-flex;
  font-size: 14px;
}

.wr-footer-widget__panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.wr-footer-widget__panel:nth-of-type(2) {
  grid-area: location;
}

.wr-footer-widget__panel:nth-of-type(3) {
  grid-area: contact;
}

.wr-footer-widget__heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 18px;
  background: var(--wr-footer-heading-bg);
  color: var(--wr-footer-heading-color);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wr-footer-widget__entry {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}

.wr-footer-widget__entry-icon {
  display: inline-flex;
  justify-content: center;
  color: var(--wr-footer-contact-icon);
  font-size: 26px;
  line-height: 1;
  margin-top: 2px;
}

.wr-footer-widget__entry-icon i,
.wr-footer-widget__entry-icon svg {
  color: inherit !important;
  fill: currentColor !important;
}

.wr-footer-widget__entry-icon svg *,
.wr-footer-widget__socials a svg * {
  fill: currentColor !important;
}

.wr-footer-widget__entry-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--wr-footer-contact-text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.wr-footer-widget__entry-text a {
  color: inherit !important;
}

.wr-footer-widget__entry-text a:hover,
.wr-footer-widget__menus > ul > li > a:hover {
  color: var(--wr-footer-menu-hover);
}

.wr-footer-widget__menus {
  grid-area: menus;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 32px;
  padding-top: 32px;
  align-self: start;
}

.wr-footer-widget__socials {
  grid-area: socials;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  color: var(--wr-footer-socials-color);
  justify-self: end;
  margin-top: 8px;
}

.wr-footer-widget__socials > a {
  color: var(--wr-footer-socials-color) !important;
}

.wr-footer-widget__socials a i,
.wr-footer-widget__socials a svg {
  color: inherit !important;
  fill: currentColor !important;
}

.wr-footer-widget__socials a {
  font-size: inherit !important;
}

.wr-footer-widget__socials a i {
  font-size: inherit !important;
}

.wr-footer-widget__socials a svg {
  width: 1em !important;
  height: 1em !important;
}

.wr-footer-widget__menus--cols-1 {
  grid-template-columns: minmax(120px, 1fr);
}

.wr-footer-widget__menus--cols-2 {
  grid-template-columns: repeat(2, minmax(120px, 1fr));
}

.wr-footer-widget__menus--cols-4 {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.wr-footer-widget__menus > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wr-footer-widget__menus > ul > li > a {
  color: var(--wr-footer-menu-color);
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

.wr-footer-widget__menus > ul > li.current-menu-item > a,
.wr-footer-widget__menus > ul > li.current_page_item > a,
.wr-footer-widget__menus > ul > li.current-menu-ancestor > a,
.wr-footer-widget__menus > ul > li.current-page-ancestor > a {
  color: var(--wr-footer-menu-active) !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}

.wr-footer-widget__bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--wr-footer-line);
  display: flex;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
}

.wr-footer-widget__copyright {
  color: var(--wr-footer-copyright-color);
  font-size: 14px;
  line-height: 1.4;
  max-width: 100%;
}

.wr-footer-widget__copyright,
.wr-footer-widget__copyright a,
.wr-footer-widget__copyright a span {
  color: inherit !important;
}

.wr-footer-widget__copyright a:hover,
.wr-footer-widget__copyright a:hover span {
  color: var(--wr-footer-copyright-hover) !important;
}

.wr-footer-widget__button i,
.wr-footer-widget__button svg,
.wr-footer-widget__button svg * {
  color: currentColor !important;
  fill: currentColor !important;
}

.wr-footer-widget__socials > a:hover,
.wr-footer-widget__socials > a:hover i,
.wr-footer-widget__socials > a:hover svg,
.wr-footer-widget__socials > a:hover svg * {
  color: var(--wr-footer-socials-hover) !important;
  fill: var(--wr-footer-socials-hover) !important;
}

@media (max-width: 1199px) {
  .wr-footer-widget {
    padding: 40px 28px 20px;
  }

  .wr-footer-widget__top {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr);
    gap: 28px 24px;
    grid-template-areas:
      "brand location contact"
      "menus menus menus"
      "socials socials socials";
  }

  .wr-footer-widget__menus {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 24px;
    padding-top: 4px;
  }

  .wr-footer-widget__socials {
    justify-self: end;
    margin-top: 0;
  }

  .wr-footer-widget__button {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .wr-footer-widget__entry {
    grid-template-columns: 24px 1fr;
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .wr-footer-widget__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas:
      "brand brand"
      "location contact"
      "menus menus"
      "socials socials";
  }

  .wr-footer-widget__brand {
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .wr-footer-widget {
    padding: 30px 20px 18px;
  }

  .wr-footer-widget__top {
    grid-template-columns: 1fr;
    gap: 22px;
    grid-template-areas:
      "brand"
      "location"
      "contact"
      "menus"
      "socials";
  }

  .wr-footer-widget__menus,
  .wr-footer-widget__menus--cols-2,
  .wr-footer-widget__menus--cols-4 {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
  }

  .wr-footer-widget__brand {
    align-items: center;
    text-align: center;
  }

  .wr-footer-widget__logo {
    max-width: min(280px, 100%);
    height: 120px;
    object-position: center center;
  }

  .wr-footer-widget__tagline {
    font-size: 20px;
  }

  .wr-footer-widget__button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .wr-footer-widget__panel {
    gap: 18px;
  }

  .wr-footer-widget__heading {
    width: 100%;
  }

  .wr-footer-widget__entry {
    grid-template-columns: 22px 1fr;
    gap: 12px;
  }

  .wr-footer-widget__entry-icon {
    font-size: 20px;
  }

  .wr-footer-widget__entry-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .wr-footer-widget__menus > ul {
    gap: 10px;
  }

  .wr-footer-widget__menus > ul > li > a {
    display: inline-block;
  }

  .wr-footer-widget__socials {
    justify-self: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
    margin-top: 4px;
  }

  .wr-footer-widget__bottom {
    margin-top: 24px;
    padding-top: 14px;
  }

  .wr-footer-widget__copyright {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 479px) {
  .wr-footer-widget {
    padding-inline: 16px;
  }

  .wr-footer-widget__top {
    gap: 18px;
  }

  .wr-footer-widget__tagline {
    font-size: 18px;
  }

  .wr-footer-widget__button {
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 13px 14px;
  }

  .wr-footer-widget__socials {
    font-size: 22px;
  }
}
