/* JOYNING 品牌视觉规范 
   核心：极简、沙砾色系、高留白
*/

/* ===== CSS变量定义 ===== */
:root {
  --bg-main: #FAF9F6;
  --text-primary: #1A1A1A;
  --text-secondary: #65625E;
  --accent-color: #C8B5A1;
  --white: #FFFFFF;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== 基础重置 ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: "Optima", "Didot", "Playfair Display", "PingFang SC", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== 导航栏样式 ===== */
.header {
  background: #FFFFFF;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EAE7E2;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 0;
}

.logo a {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.logo a:hover {
  color: #C8B5A1;
}

.nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav a {
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.nav a:hover {
  color: #C8B5A1;
  background: rgba(200, 181, 161, 0.1);
}

/* ===== Hero区域 ===== */
.hero-home {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  
  background-image: url("../images/joyning-makeup-sponge-foundation-blender-professional.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fefefd;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(25%);  /* 从22%改为25%，向下移动更多 */
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  letter-spacing: 8px;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 
    2px 2px 4px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 2.5rem 0;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 
    1px 1px 3px rgba(0, 0, 0, 0.5),
    0 0 15px rgba(0, 0, 0, 0.3);
}

.cta-button {
  background-color: #FFFFFF;
  color: #1A1A1A;
  padding: 15px 45px;
  border: 2px solid #FFFFFF;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 3px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  margin: 0;
}

.cta-button:hover {
  background-color: transparent;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

/* ===== 产品分类展示区 ===== */
.categories-section {
  padding: 0px 0 100px;  /* 从50px改为0px，减少顶部空间 */
  background: var(--bg-main);
  display: block !important;
  margin-top: 80px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 40px;  /* 增加这一行 */
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-top: 0;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.categories-grid,
.home-categories {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  margin-bottom: 50px;
  width: 100% !important;
}

.categories-grid > *,
.home-categories > * {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
}

.category-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #EAE7E2;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.category-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F9F8F6;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-info {
  padding: 25px 20px;
  text-align: center;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-info h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--text-primary);
  text-transform: uppercase;
}

.category-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== Popular Makeup Sponge Sets 热门套装展示区 ===== */
.popular-sets-section {
  padding: 100px 0;
  background: var(--white);
  display: block !important;
  margin-top: 0;
}

.popular-sets-section .section-title {
  margin-top: 0;
  padding-top: 0;
}

.popular-sets-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  width: 100% !important;
}

.popular-set-card {
  background: var(--bg-main);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #EAE7E2;
  display: flex;
  flex-direction: column;
}

.popular-set-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: var(--accent-color);
}

.popular-set-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.popular-set-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.popular-set-card:hover .popular-set-image img {
  transform: scale(1.08);
}

.popular-set-info {
  padding: 25px 20px 30px;
  text-align: center;
  background: var(--bg-main);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.popular-set-info h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  color: var(--text-primary);
  line-height: 1.4;
}

.popular-set-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 15px;
}

.popular-set-tags .tag {
  display: inline-block;
  background: var(--white);
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid #EAE7E2;
  text-transform: uppercase;
}

.popular-set-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.request-quote-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 12px 30px;
  border: 2px solid var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.request-quote-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 181, 161, 0.3);
}

/* ===== About JOYNING 区域 ===== */
.about-section {
  padding: 120px 0;
  background: var(--white);
  display: block !important;
  margin-top: 80px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.about-text .cta-button {
  margin-top: 25px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.about-text .cta-button:hover {
  background-color: transparent;
  color: #1A1A1A;
}

.about-image {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-categories-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 25px 0;
}

.product-categories-list li {
  font-size: 16px;
  color: #555;
  padding: 8px 0 8px 25px;
  position: relative;
  line-height: 1.6;
}

.product-categories-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 18px;
}

/* ===== Why Choose Us 区域 ===== */
.features-section {
  padding: 0px 0 100px;  /* 从50px改为0px，减少顶部空间 */
  background: var(--bg-main);
  display: block !important;
  margin-top: 80px;
}

.features-section .section-title {
  margin-bottom: 60px;
  margin-top: 40;
  padding-top: 0;
}

.features-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  width: 100% !important;
  margin-top: 0;
}

.features-grid > *,
.feature-card {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #EAE7E2;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CTA区域 (浅色背景) ===== */
.cta-section {
  padding: 50px 0 100px;  /* 从0px改为50px，减少顶部空间 */
  background: #efeeec;
  text-align: center;
  color: #1A1A1A;
  display: block !important;
  margin-top: 80px;
}

.cta-section h2 {
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 36px;
  margin-bottom: 15px;
  margin-top: 40px;  /* 增加这一行 */
  color: #1A1A1A;
}

.cta-section p {
  font-size: 16px;
  color: #65625E;
  margin-bottom: 30px;
}

.cta-section .cta-button {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
}

.cta-section .cta-button:hover {
  background-color: transparent;
  color: #1A1A1A;
}

.cta-button-light {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.cta-button-light:hover {
  background-color: transparent;
  color: #1A1A1A;
}

/* ===== Footer (深色背景) ===== */
.footer {
  background-color: #2D2926;
  color: #FFFFFF;
  padding: 80px 0 40px;
  border-top: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-col p,
.footer-col ul {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a, 
.footer a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #C8B5A1 !important;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== 产品页面布局 ===== */
.product-page {
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-section {
  display: block !important;
  margin-bottom: 100px;
}

.product-category {
  display: block !important;
  width: 100% !important;
  clear: both !important;
  margin-bottom: 100px !important;
  position: relative;
}

.category-header {
  border-bottom: 1px solid #EAE7E2;
  margin-bottom: 40px;
  padding-bottom: 15px;
}

.category-title {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A1A1A;
}

.category-desc {
  color: #666;
  margin-top: 10px;
  font-size: 14px;
}

/* ===== Products page grid FIX ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.product-card {
  background: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f9f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 4px;
}

.product-image-container img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ===== 响应式设计 ===== */

/* 平板 (≤992px) */
@media (max-width: 992px) {
  .categories-grid,
  .home-categories,
  .features-grid,
  .popular-sets-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 手机 (≤768px) */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  
  .logo a {
    font-size: 22px;
  }
  
  .nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .nav a {
    font-size: 14px;
    padding: 6px 10px;
  }
  
  .hero-home {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 0 20px;
    transform: translateY(0);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
  }
  
  .hero-content p {
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    padding: 13px 35px;
    font-size: 0.85rem;
  }
  
  .categories-section,
  .about-section,
  .features-section,
  .cta-section,
  .popular-sets-section {
    margin-top: 48px !important;
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .categories-grid,
  .home-categories,
  .features-grid,
  .popular-sets-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .category-info h3 {
    font-size: 16px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image {
    height: 350px;
  }
  
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
}

/* 通用区块间距 */
section,
.features-section,
.why-choose-us,
.ready-to-start {
  display: block !important;
}

/* ===== Products 页面样式 ===== */

.products-hero {
  padding: 100px 0 60px;
  background: var(--bg-main);
  text-align: center;
}

.products-hero .hero-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.products-hero h1 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.products-hero .hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* View All 链接样式 */
.view-all-link {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.view-all-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

/* Category Header 布局 */
.category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid #EAE7E2;
  padding-bottom: 20px;
}

.category-title-wrap {
  flex: 1;
}

/* ===== 筛选和搜索栏样式 ===== */

.product-filter-bar {
  background: var(--white);
  border-bottom: 1px solid #EAE7E2;
  padding: 20px 0;
  position: sticky;
  top: 71px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* 分类按钮组 */
.category-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 10px 20px;
  border: 1px solid #EAE7E2;
  background: transparent;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-btn:hover {
  background: var(--bg-main);
  border-color: var(--accent-color);
}

.category-btn.active {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}

/* 搜索框 */
.search-box {
  position: relative;
  min-width: 280px;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #EAE7E2;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--bg-main);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--white);
}

.search-input::placeholder {
  color: #999;
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

/* 返回链接（用于详情页）*/
.breadcrumb-link {
  display: inline-block;
  margin: 30px 0 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--accent-color);
  transform: translateX(-5px);
}

/* 响应式 */
@media (max-width: 992px) {
  .filter-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .category-buttons {
    justify-content: center;
  }
  
  .search-box {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .product-filter-bar {
    top: 61px;
  }
  
  .category-btn {
    font-size: 13px;
    padding: 8px 15px;
  }
}

.product-showcase img {
  max-width: 800px;          /* 限制最大宽度，避免太大 */
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 轻微阴影提升高端感 */
}
.image-caption {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}

/* 只针对完整 About Us 页的宽松留白 */
.about-full-page h2 {
  margin: 60px 0 20px;
}

.about-full-page p,
.about-full-page ul {
  margin-bottom: 28px;
}

.about-full-page .product-showcase {
  margin: 50px 0;
}

.about-full-page .about-cta {
  margin-top: 70px;
}

.about-full-page h1 {
  margin-bottom: 40px;
}

/* 如果首页也用了 .about-section，但你不想它受影响，可加 !important 覆盖或重置 */
.about-section:not(.about-full-page) {
  margin: 20px 0;   /* 或根据首页原设计重置 */
  /* 其他首页需要的紧凑样式 */
}

.hero-contact {
  background-image: url('../images/joyning-makeup-sponge-foundation-blender-professional.webp');
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
  color: white;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* 半透明遮罩 */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  top: 50%;
  transform: translateY(-50%);
}

.contact-section {
  padding: 80px 20px;
  background: #FAF6F2; /* 浅米背景 */
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-container { grid-template-columns: 1fr; }
}

.contact-info h2, .contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.8rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.checkbox-group label {
  display: block;
  margin: 0.5rem 0;
}

.required { color: #e74c3c; }

.submit-btn {
  background: #8B4513; /* 深棕 */
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #A0522D;
}

/* ===== News 跳转区域 (基于品牌规范) ===== */
.news-action-container {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--bg-main); /* 使用你定义的沙砾背景色 */
  margin-top: 40px;
  border-top: 1px solid #EAE7E2;
}

.news-action-hint {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.view-more-btn {
  display: inline-block;
  background-color: var(--text-primary); /* 使用品牌深色 */
  color: var(--white);
  padding: 15px 45px;
  border: 2px solid var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition); /* 使用你定义的平滑过渡动画 */
  cursor: pointer;
}

.view-more-btn:hover {
  background-color: transparent;
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.view-more-btn .arrow {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow {
  transform: translateX(8px);
}

.privacy-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}