
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Arial Rounded MT", sans-serif;
      background: #FFFDF9;
      color: #4A4A4A;
      line-height: 1.6;
    }

    a { color: inherit; }



    header.hero {
      text-align: center;
      padding: 80px 20px 60px;
      background: linear-gradient(135deg, #F7C9D4, #FFE4D9);
      color: #4A4A4A;
    }

    header.hero h1 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    header.hero p {
      font-size: 16px;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      padding: 12px 26px;
      background: #FFE4D9;
      border-radius: 999px;
      text-decoration: none;
      color: #4A4A4A;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .btn:hover {
      background: #FFF7B2;
    }

    section {
      padding: 50px 20px 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    h2 {
      text-align: center;
      font-size: 24px;
      margin-bottom: 25px;
    }

    .subtext-center {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 30px;
      color: #7A7A7A;
      font-size: 14px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 20px;
    }

    .card {
      background: #FFF7B2;
      padding: 18px 16px;
      border-radius: 18px;
      text-align: center;
      font-size: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    }

    .card-soft-pink { background: #F7C9D4; }
    .card-mint { background: #CFF7E3; }

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border: 1px solid #FFE4D9;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F7C9D4; /* 图片加载前的背景色 */
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保证图片不变形地填满容器 */
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info strong {
  display: block;
  font-size: 18px;
  color: #F28BAA;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: #7A7A7A;
  margin: 0;
}
    .card-lavender { background: #DCCBFF; }
    .card-sky { background: #BEE3FF; }

    .about, .faq, .contact {
      text-align: center;
    }

    .faq p {
      margin: 6px 0;
    }

    /* Contact Form */
    .contact-form {
      padding: 50px 20px;
      background: #FFE4D9;
      border-radius: 20px;
      margin: 40px auto;
      max-width: 900px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .cute-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 500px;
      margin: 0 auto;
    }

    .cute-form label {
      font-weight: bold;
      color: #4A4A4A;
    }

    .cute-form input,
    .cute-form textarea {
      padding: 12px;
      border-radius: 12px;
      border: 1px solid #FFD6C8;
      background: #FFFDF9;
      font-size: 15px;
    }

    .cute-form button {
      margin-top: 10px;
      padding: 12px;
      border-radius: 999px;
      background: #F7C9D4;
      border: none;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }

    .cute-form button:hover {
      background: #FFF7B2;
    }


    footer {
      text-align: center;
      padding: 18px 10px;
      background: #FFE4D9;
      font-size: 13px;
      color: #7A7A7A;
    }

    @media (min-width: 768px) {
      header.hero h1 {
        font-size: 40px;
      }
      header.hero p {
        font-size: 18px;
      }
       /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: 0.25s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}
/* Professional Footer */
.footer {
  background: #FFE4D9;
  padding: 50px 20px;
  margin-top: 40px;
  color: #4A4A4A;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #F28BAA;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #4A4A4A;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #F28BAA;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #F7C9D4;
  font-size: 13px;
  color: #7A7A7A;
}

    /* Professional Enhanced Footer */
.footer {
  background: #FFE4D9;
  padding: 60px 20px;
  margin-top: 60px;
  color: #4A4A4A;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #F28BAA;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #4A4A4A;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #F28BAA;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 22px;
  color: #F28BAA;
}

.social-icons a:hover {
  color: #D46A8C;
}

/* Newsletter */
.newsletter input {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #FFD6C8;
  margin-bottom: 10px;
  background: #FFFDF9;
}

.newsletter button {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  background: #F7C9D4;
  border: none;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.newsletter button:hover {
  background: #FFF7B2;
}

/* Payment Icons */
.payment-icons img {
  height: 28px;
  margin-right: 10px;
}

/* Trust Badges */
.trust-badges span {
  display: inline-block;
  background: #FFF7B2;
  padding: 6px 12px;
  border-radius: 12px;
  margin-right: 8px;
  font-size: 13px;
  font-weight: bold;
  color: #4A4A4A;
}

/* Bow Icon */
.bow-icon {
  font-size: 26px;
  color: #F28BAA;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #F7C9D4;
  font-size: 13px;
  color: #7A7A7A;
}

/* 手机端移动设备优化 - 建议放在 style.css 最底部 */
@media (max-width: 480px) {
  /* 调整首页大标题字号，防止折行过多 */
  header.hero h1 { 
    font-size: 26px !important; 
    line-height: 1.2;
  }

  /* 调整副标题字号 */
  header.hero p {
    font-size: 15px !important;
  }

  /* 让卡片在手机上一行只显示一个，方便阅读 */
  .grid { 
    grid-template-columns: 1fr !important; 
    gap: 15px;
  }

  /* 调整内边距，让手机端看起来不那么拥挤 */
  section {
    padding: 30px 15px;
  }
}