.section-footer {
  padding: 60px 0 20px;
  position: relative;
}
.section-footer .container {
  position: relative;
  padding: 4px 30px 25px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #fafafa);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
}
.section-footer .container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent);
  pointer-events: none;
}
.section-footer .container a {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.25s ease;
}
.section-footer .container a:hover {
  color: var(--theme-color-100);
  transform: translateX(-3px);
}
.section-footer .container .footer-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.section-footer .container .footer-top img {
  height: 45px;
}
.section-footer .container .footer-top .footer-logo img {
  width: 100px;
  height: 70px;
}
.section-footer .container .footer-top .footer-social {
  display: flex;
  align-items: center;
}
.section-footer .container .footer-top .footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #555;
  margin-left: 10px;
  transition: all 0.3s ease;
  background: #faf7ff;
  border: 1px solid rgba(124, 58, 237, 0.08);
}
.section-footer .container .footer-top .footer-social a:hover {
  background: var(--theme-color-100);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
}
.section-footer .container .footer-main .footer-col {
  text-align: right;
}
.section-footer .container .footer-main .footer-col h4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  position: relative;
}
.section-footer .container .footer-main .footer-col h4::before {
  content: "";
  width: 6px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--theme-color-100), var(--theme-color-200));
}
.section-footer .container .footer-main .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--theme-color-100), transparent);
  border-radius: 2px;
}
.section-footer .container .footer-main .footer-col p.about-footer {
  line-height: 1.7rem;
  color: #666;
}
.section-footer .container .footer-main .footer-col ul li {
  margin-top: 10px;
  color: #666;
}
.section-footer .container .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  margin-top: 25px;
}
.section-footer .container .footer-bottom .footer-copy {
  font-size: 13px;
  color: #9ca3af;
}
.section-footer .container .footer-bottom .footer-badges {
  display: flex;
  align-items: center;
}
.section-footer .container .footer-bottom .footer-badges img {
  height: 75px;
  margin-left: 10px;
  transition: all 0.35s ease;
  position: relative;
  filter: none;
  opacity: 0.9;
}
.section-footer .container .footer-bottom .footer-badges img:hover {
  cursor: pointer;
  transform: translateY(-3px) scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}
@media (max-width: 768px) {
  .section-footer .container {
    padding: 30px 20px;
  }
  .section-footer .container .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .section-footer .container .footer-top .footer-social {
    justify-content: center;
  }
  .section-footer .container .footer-main .footer-col {
    text-align: center;
  }
  .section-footer .container .footer-main .footer-col h4::after {
    right: 50%;
    transform: translateX(50%);
  }
  .section-footer .container .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-footer .container .footer-bottom .footer-badges {
    order: 1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  .section-footer .container .footer-bottom .footer-badges img {
    height: 65px;
    margin: 0;
  }
  .section-footer .container .footer-bottom .footer-copy {
    order: 2;
  }
}
.section-footer .container {
  /* ============================= */
  /* BACK TO TOP */
  /* ============================= */
}
.section-footer .container .back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}
.section-footer .container .back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.section-footer .container .back-to-top:active {
  transform: scale(0.98);
}
.section-footer .container {
  /* ICON WRAPPER */
}
.section-footer .container .back-to-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-100);
  animation: floatIcon 2s ease-in-out infinite;
}
.section-footer .container .back-to-top-icon svg {
  display: block;
}
.section-footer .container {
  /* TEXT */
}
.section-footer .container .back-to-top-text {
  line-height: 1;
}
.section-footer .container {
  /* ============================= */
  /* ANIMATION */
  /* ============================= */
}
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.section-footer .container {
  /* ============================= */
  /* RESPONSIVE */
  /* ============================= */
}
@media (max-width: 576px) {
  .section-footer .container .back-to-top {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .section-footer {
    padding-top: 0;
    padding-bottom: 60px;
  }
}

/* =========================
filter-product
========================= */

/*# sourceMappingURL=app.css.map */
