/* Generic pages CSS */
.page-hero {
  background: linear-gradient(135deg, #fce4ee 0%, #fdf0f6 100%);
  padding: 64px 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 28px;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.content-img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #fce4ee, #fdf0f6);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 16px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10l4 4L16 6' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.product-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-type-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.2s;
}
.product-type-card:hover { box-shadow: 0 8px 30px rgba(200,0,110,0.1); transform: translateY(-2px); }

.product-type-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
}

.product-type-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s;
  background: #fff;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(200,0,110,0.1); transform: translateY(-2px); }

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #fce4ee, #f5a62330);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-body { padding: 20px; }

.blog-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card-body p { font-size: 14px; color: var(--gray); }

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.help-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
  cursor: pointer;
}
.help-card:hover { border-color: var(--pink); box-shadow: 0 4px 20px rgba(200,0,110,0.08); }

.help-card-icon {
  width: 48px;
  height: 48px;
  background: var(--pink-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.help-card-icon svg { width: 24px; height: 24px; stroke: var(--pink); }

.help-card h4 { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.help-card p { font-size: 14px; color: var(--gray); }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
}

.faq-answer {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 12px;
  display: none;
}
.faq-answer.open { display: block; }

.faq-icon { font-size: 20px; color: var(--pink); flex-shrink: 0; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .product-types { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
}
