/* 全局样式 (Global Styles) */
body {
  font-family: Arial, sans-serif;
  /* 设置全局字体 */
  background-color: #f4f4f4;
  /* 设置页面背景颜色 */
  margin: 0;
  /* 移除 body 默认外边距 */
  padding: 0;
  /* 移除 body 默认内边距 */
  display: flex;
  /* 启用 Flexbox 布局 */
  flex-direction: column;
  /* 设置主轴方向为垂直方向 */
  min-height: 100vh;
  /* 设置最小高度为视口高度，确保页脚在底部 */
}

/* 导航栏样式 (Navbar Styles) */
.navbar {
  background-color: rgba(255, 255, 255, 0.2);
  /* 设置半透明背景颜色 */
  backdrop-filter: blur(10px);
  /* 添加背景模糊效果 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  /* 添加底部边框 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 添加底部阴影 */
}

.nav-list {
  list-style-type: none;
  /* 移除列表默认的项目符号 */
  margin: 0;
  /* 移除列表默认外边距 */
  padding: 0;
  /* 移除列表默认内边距 */
  display: flex;
  /* 启用 Flexbox 布局 */
  justify-content: space-around;
  /* 平均分配子元素之间的空间 */
  align-items: center;
  /* 垂直居中对齐子元素 */
  height: 60px;
  /* 设置导航栏高度 */
}

.nav-item {
  margin: 0 10px;
  /* 设置导航项水平外边距 */
}

.nav-link {
  text-decoration: none;
  /* 移除链接下划线 */
  color: #333;
  /* 设置链接文字颜色 */
  font-weight: bold;
  /* 设置链接文字加粗 */
  transition: color 0.3s ease;
  /* 添加颜色过渡效果 */
}

.nav-link:hover {
  color: #666;
  /* 鼠标悬停时改变链接文字颜色 */
}

/* 图文双列表样式 (Image-Text List Styles) */
/* 图文列表样式 (Grid Layout Styles) */
.content {
  flex: 1;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 30px;
  /* Gap between items */
  width: 100%;
  max-width: 1400px;
  /* Max width for large screens */
  margin: 0 auto;
  /* Center the grid */
}

/* 商品项容器样式 (Product Item Container Styles) */
.product-item {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  width: 100%;
  /* Fill grid cell */
  height: auto;
  /* Auto height */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 商品图片样式 (Product Image Styles) */
.product-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  /* Maintain aspect ratio */
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
  display: block;
}

.product-title {
  margin-top: 10px;
  color: #333;
  font-size: 1.1em;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}

/* 购买按钮样式 (Buy Button Styles) */
.buy-button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 20px auto 0;
}

.buy-button:hover {
  background-color: #0056b3;
}