/* JustShop 页脚样式 - 5列布局 */

.justshop-footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.justshop-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

/* 页脚列 */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #F97316;
  display: inline-block;
  width: fit-content;
}

/* 链接列表 */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #F97316;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #F97316;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* 页脚底部 */
.justshop-footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.justshop-footer-bottom p {
  color: #8795a8;
  font-size: 14px;
  margin: 0;
  letter-spacing: 0.5px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .justshop-footer-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .justshop-footer {
    padding: 40px 20px 20px;
  }

  .justshop-footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-column h4 {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .justshop-footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column h4 {
    width: 100%;
    text-align: center;
  }
}
