/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
}
.nav a:hover {
  color: #007bff;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: left; /* 左对齐 */
}
.section.light {
  background-color: #f9f9f9;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: left; /* 标题左对齐 */
}
.section p,
.section ul,
.section blockquote {
  font-size: 1.1rem;
  color: #555;
  margin: 10px 0;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 1.6;
  text-align: left; /* 文字左对齐 */
}
.section ul {
  list-style-type: disc;
  padding-left: 40px;
}
.section blockquote {
  border-left: 4px solid #007bff;
  margin: 20px 0;
  font-style: italic;
  background: #f0f8ff;
  border-radius: 4px;
  padding: 15px 20px;
}

/* Footer */
.footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}
.footer a {
  color: #0af;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .logo {
    font-size: 1.5rem;
  }
  .section h2 {
    font-size: 1.5rem;
  }
  .section p,
  .section ul,
  .section blockquote {
    font-size: 1rem;
  }
}

.shop-now-wrapper {
  text-align: center;
  margin: 2rem 0;
}

.shop-now-button {
  display: inline-block;
  background-color: #d72424;
  color: #fff;
  padding: 12px 36px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-family: Arial, sans-serif;
}

.shop-now-button:hover {
  background-color: #333;
}

