/* === 全局 === */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === Hero Banner === */
.hero-banner {
  background: linear-gradient(135deg, #e6007a 0%, #ff6b9d 100%);
  color: white;
  padding: 100px 0;
  display: flex;
  align-items: center;
}
.hero-content {
  flex: 1;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}
.hero-content p {
  font-size: 16px;
  margin: 0 0 20px;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* === HOT DEALS === */
.hot-deals {
  background: #00c8f7;
  color: white;
  padding: 60px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 20px;
  font-weight: 700;
}
.section-title .view-all {
  font-size: 12px;
  margin-left: 10px;
}
.deals-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.deal-card {
  min-width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}
.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e6007a;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50px;
  z-index: 2;
}
.deal-image {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.deal-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.deal-info {
  padding: 16px;
  text-align: center;
}
.deal-info h3 {
  font-size: 14px;
  margin: 0 0 8px;
}
.prices {
  margin: 8px 0;
}
.original {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}
.sale {
  color: #e6007a;
  font-weight: 700;
  font-size: 16px;
}

/* === Promo Bar === */
.promo-bar {
  background: #ffe6f2;
  color: #e6007a;
  padding: 15px 0;
  text-align: center;
  font-weight: 600;
}
.promo-bar .promo-text {
  font-size: 14px;
}

/* === Best-Sellers === */
.best-sellers {
  padding: 80px 0;
  background: #fff;
}
.best-seller-item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.image-wrapper {
  flex: 1;
}
.image-wrapper img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.text-wrapper {
  flex: 1;
}
.text-wrapper h2 {
  font-size: 24px;
  margin: 0 0 12px;
}
.text-wrapper p {
  color: #666;
  margin: 0 0 20px;
}

/* === JUST DROPPED === */
.just-dropped {
  background: #fff;
  padding: 60px 0;
}
.drops-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.drop-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.drop-image {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.drop-image img {
  max-width: 100%;
  max-height: 250px;
  object-fit: contain;
}
.drop-info {
  padding: 16px;
  text-align: center;
}
.drop-info h3 {
  font-size: 14px;
  margin: 0 0 8px;
}
.drop-info .price {
  font-size: 16px;
  color: #e6007a;
  font-weight: 700;
}

/* === Guides Section === */
.guides-section {
  background: #fff;
  padding: 60px 0;
}
.guide-item {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
.guide-item:last-child {
  margin-bottom: 0;
}
.guide-item img {
  width: 700px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.guide-text {
  flex: 1;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.guide-text h3 {
  font-size: 24px;
  margin: 0 0 16px;
}
.guide-text .btn-primary {
  background: #e6007a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 0;
  font-weight: 600;
}

/* === Blog === */
.blog-section {
  background: #fff;
  padding: 80px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.blog-card .blog-image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.blog-card .blog-image img {
  max-width: 100%;
  max-height: 220px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-content h3 {
  font-size: 18px;
  margin: 0 0 12px;
}
.blog-content p {
  color: #666;
  margin: 0 0 16px;
}
.read-more {
  color: #e6007a;
  font-weight: 600;
  text-decoration: none;
}

/* === Footer === */
.site-footer {
  background: #000;
  color: white;
  padding: 60px 0 30px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
}
.footer-cols li {
  margin: 8px 0;
}
.footer-cols a {
  color: #ccc;
  text-decoration: none;
}
.footer-cols a:hover {
  color: white;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.social-links i {
  font-size: 18px;
  color: #ccc;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 0;
}
.newsletter-form button {
  background: #e6007a;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .hero-banner {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-image {
    justify-content: center;
  }
  .best-seller-item {
    flex-direction: column;
  }
  .guide-item {
    flex-direction: column;
  }
  .guide-text {
    margin-top: 20px;
  }
  .drops-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .deals-slider {
    gap: 10px;
  }
  .drop-card {
    min-width: 100%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}