/*************************/
/* footer */
/**************************/
.footer-desc {
  z-index: 2;
}

.footer-desc .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 2rem;
  margin: auto;
  height: 100%;
}

.footer-info {
  color: var(--c-white);
  position: relative;
  background: var(--c-neutral-950);
  overflow: hidden;
}

.footer-info::before {
  content: "";
  position: absolute;
  background-image: url(../../img/bg-footer.webp);

  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.footer__about_desc {
  font-size: var(--fs-14);
  line-height: 1.8;
}

.popmusic-social {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-top: 1rem;
}

.popmusic-social__item {
  display: flex;
  align-items: center;
  border-radius: 50vw;
  font-size: 1.3rem;
  gap: 1rem;
  height: 4.4rem;
  padding: 0.6rem 0.6rem 0.6rem 1.6rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popmusic-social__item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--bg-white-200);
  font-size: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.popmusic-social__item.telegram {
  background: linear-gradient(90deg, #2a79e1, #8cbeff);
}

.popmusic-social__item.telegram:hover {
  box-shadow: 0 6px 20px rgba(42, 121, 225, 0.35),
    0 2px 8px rgba(140, 190, 255, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.popmusic-social__item.telegram:hover i {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(127, 181, 251, 0.4);
}

.popmusic-social__item.telegram i {
  color: #7fb5fb;
}

.popmusic-social__item.instagram {
  background: linear-gradient(90deg, #ffc509, #e12a5a);
}

.popmusic-social__item.instagram:hover {
  box-shadow: 0 6px 20px rgba(225, 42, 90, 0.35),
    0 2px 8px rgba(255, 197, 9, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.popmusic-social__item.instagram:hover i {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(225, 42, 90, 0.4);
}

.popmusic-social__item.instagram i {
  color: #e12a5a;
}

.ft-socials-title {
  font-size: var(--fs-16);
  font-weight: bold;
  margin-bottom: 2rem;
}

.footer-wrapper {
  position: relative;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  height: 12rem;
  bottom: 100%;
  background-color: var(--c-neutral-950);
  left: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

.copyright-container {
  background: #1c1c1c1a;
  backdrop-filter: blur(2px);
  position: relative;
  z-index: 6;
}

.footer-info-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  row-gap: 1.8rem;
  position: relative;
  padding: min(9rem, 12vw) 0 4.5rem 0;
}

.footer-info-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10rem;
  z-index: 3;
  background-image: linear-gradient(to right,
      #ffdd571c,
      #ffdd576e,
      #e12a5aa1,
      #e12a5a30);
  filter: blur(20px);
  width: 100%;
  left: 0;
  top: -8rem;
}

.footer-contact li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-contact li.phones i {}

/* .desktop .footer-contact li.address a:hover {
  color: var(--c-gray-300);
} */

.footer-contact li i {
  font-size: 2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--c-white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: var(--fs-14);
  line-height: 2;
}

.footer-contact li span,
.footer-contact li a {
  opacity: 0.7;
}

.footer-title.ft-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 1.2rem 1.8rem;
}

.footer-title {
  font-size: var(--fs-20);
  margin-bottom: 2.3rem;
  position: relative;
  padding-bottom: 0.2rem;
  font-weight: bold;
  color: var(--c-primary);
}

.footer__menu.nav li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer__menu.nav a {
  display: inline-block;
  position: relative;
}

/* .footer__menu.nav a::before {
  content: "";
  width: 0.6rem;
  background: var(--c-white);
  height: 0.6rem;
  display: inline-block;
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: 0.3s var(--ease2);
  left: 0;
  transform-origin: left;
  border-radius: 50%;
  transform: translateY(-50%);
}
.desktop .footer__menu.nav a:hover::before {
  opacity: 1;
}
.desktop .footer__menu.nav a:hover {
  padding-left: 1.6rem;
  color: var(--c-white);
} */

.footer-contact__link {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  flex-wrap: wrap;
}

.footer-title.ft-accordion i {
  color: var(--c-white);
  font-size: 2.5rem;
}

.footer-title.ft-accordion::after {
  display: none;
}

/* .footer__menu.active .accordion i {
  transform: rotateX(-180deg);
} */
/* .footer__menu.active .footer-title {
  color: var(--c-dark);
} */

.accordion-content.open-in-desktop {
  display: none;
}

.footer-sub-menu {
  font-size: var(--fs-16);
  padding: 1rem 2.5rem 2rem;
}

.footer__menu.footer-desc {
  grid-column: 1/-1;
}

.copyright-wrap {
  overflow: hidden;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.websima-logo {
  max-width: 7.5rem;
}

.footer-editor {
  text-align: center;
  font-size: var(--fs-14);
}

.footer-editor strong {
  font-variation-settings: var(--fw-500);
}

/* nav */
.mobile-bottom-wrapper {
  direction: rtl;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: var(--bg-white-100);
  box-shadow: 0 4px 24px rgba(255, 0, 92, 0.15);
  padding: 1.2rem 0;
  align-items: center;
  z-index: 20;
}

.mobile-bottom-nav {
  display: flex;
  justify-content: space-around;
}

.mobile-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  font-size: var(--fs-14);
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 1;
}

.mobile-bottom-nav__item i {
  font-size: 2.4rem;
  color: var(--c-primary);
  line-height: 1;
}

.mobile-bottom-nav__item.search-i * {
  pointer-events: none;
}

.mobile-bottom-nav__item i.icon-music {
  font-size: 3rem;
}

.mobile-bottom-nav__item:active,
.mobile-bottom-nav__item:hover {
  color: var(--c-primary);
}

/* pwa */
#pwa-popup {
  background: var(--bg-white-100);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 95%;
  z-index: 21;
  border-radius: 4rem 4rem 0 0;
  box-shadow: 0 -6px 30px #0000005c;
  padding: 3rem 2rem;
  display: none;
}

#pwa-popup .logo {
  width: 19rem;
  margin: 0 auto 2rem;
}

#pwa-popup .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 0 5rem;
  text-align: center;
}

#pwa-popup .img {
  text-align: center;
  margin: 0 auto;
  width: 13rem;
}

#pwa-popup .help {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 2rem 0;
}

#pwa-popup .help a {
  display: inline-block;
}

#pwa-popup .help li b {
  color: var(--c-primary);
}

#pwa-popup .help {}

.pwa-close-btn {
  background: var(--c-primary);
  color: var(--c-white);
  width: 80%;
  border-radius: 4rem;
  padding: 0.8rem;
  font-size: 2rem;
  font-weight: bold;
  transition: var(--anim);
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pwa-close-btn:active {
  transform: scale(0.9);
}

/**************************/
/* mobile */
/**************************/
.mobile .footer-desc {
  margin-bottom: 4rem;
}

.mobile .ft-socials-wrap {
  order: -1;
}

.mobile .copyright-wrap {
  flex-direction: column;
}

.mobile .footer__menu.contact,
.mobile .footer__menu.nav {
  background: var(--c-neutral-900);
  border-radius: 8px;
  color: var(--c-white);
}

.mobile .footer-title.ft-accordion {
  color: var(--c-white);
}

.mobile .footer-desc .socials {
  justify-content: center;
}

.mobile .logo-ft {
  left: 50%;
  transform: translateX(-50%);
}

/**************************/
/* desktop */
/**************************/
.desktop .footer__menu.nav a:hover {
  color: var(--c-primary-200);
}

.desktop .footer-title.ft-accordion i {
  display: none;
}

.desktop .footer-title.ft-accordion {
  pointer-events: none;
}

.desktop .footer-title.ft-accordion::after {
  display: block;
}

.desktop .accordion-content.open-in-desktop {
  display: block;
}

.desktop .footer-sub-menu {
  padding: 0;
}

.desktop .footer-title.ft-accordion {
  margin-bottom: 1.3rem;
  padding: 0;
}

.desktop .footer-info::after {
  content: "";
  position: absolute;
  background-image: url(../../img/bg-footer.webp);
  /* z-index: 4; */
  width: 100%;
  height: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  top: 0;
  right: 0;
  transform: rotateY(180deg);
  opacity: 0.6;
}

.desktop .footer-desc .inner {
  align-items: start;
  text-align: unset;
}

.desktop .footer-info-wrap {
  grid-template-columns: 3.8fr 1fr 1fr 1fr 1fr;
}

.desktop .footer__menu.footer-desc {
  grid-column: auto;
  padding-left: 4rem;
  text-align: justify;
}

.desktop .mobile-bottom-nav {
  display: none !important;
}

.search-result-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.5rem;
  row-gap: 3rem;
}

.mobile .search-result-card {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}