/* 店铺介绍页面样式 */

/* 主内容区域 */
.main-content {
  min-height: calc(100vh - 300px);
  background: #FFFFFF;
}

/* 店铺介绍区域 */
.about-section {
  padding: 80px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 左侧文字内容 */
.about-text h2 {
  font-family: Urbanist;
  font-size: 42px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 24px;
}

.about-text h2 .shop-name {
  color: #D8B976;
}

.about-description {
  font-family: Urbanist;
  font-size: 18px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}

/* 联系信息 */
.about-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D8B976 0%, #E8C990 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h4 {
  font-family: Urbanist;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 4px;
}

.info-content p {
  font-family: Urbanist;
  font-size: 16px;
  color: #666666;
}

.info-content a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #D8B976;
}

/* 右侧图片 */
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 图片画廊区域 */
.gallery-section {
  padding: 80px 20px 100px;
  background: #F8F8F8;
}

.gallery-content {
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-content h2 {
  font-family: Urbanist;
  font-size: 36px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}

/* 画廊网格 */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* 加载提示 */
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  font-family: Urbanist;
  font-size: 18px;
  color: #666666;
}

/* 画廊项目 */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .about-text h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-description {
    font-size: 16px;
  }

  .gallery-section {
    padding: 60px 20px 80px;
  }

  .gallery-content h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
  }

  .gallery-item img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 24px;
  }

  .info-item {
    gap: 12px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
