/* ===================================================
   SoulHack Reviews — BestPickReviews Clone CSS
   Pixel-perfect affiliate listicle design system
   =================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Istok Web', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #c0392b;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #e74c3c;
  text-decoration: underline;
}

/* --- Top Bar (Orange Gradient) --- */
.top-bar {
  background: linear-gradient(135deg, #e67e22, #f39c12, #e67e22);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- Header / Navigation --- */
.site-header {
  background: #fff;
  border-bottom: 3px solid #e67e22;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  background: #e67e22;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #444;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e67e22;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* --- Main Content Container --- */
.content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* --- Article Title --- */
.article-title {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.5px;
}

/* --- Author Bio --- */
.author-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
}

.author-name::after {
  content: '';
  color: #ccc;
  font-weight: 300;
  margin-left: 6px;
}

.updated-date {
  font-weight: 500;
  color: #555;
  font-size: 15px;
}

.updated-date::before {
  content: '|';
  margin: 0 8px;
  color: #ccc;
  font-weight: 300;
}

.author-credentials {
  font-size: 14px;
  color: #555;
  font-style: italic;
  max-width: 420px;
  line-height: 1.5;
}

.social-share {
  display: flex;
  gap: 10px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
  text-decoration: none;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #333; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

/* --- Hero Image --- */
.hero-image {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 36px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* --- Article Text (PAS sections) --- */
.article-text {
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.article-text p {
  margin-bottom: 18px;
}

.article-text strong {
  color: #222;
}

.text-highlight {
  color: #c0392b;
  font-weight: 700;
}

/* --- Evaluation Criteria Section --- */
.criteria-section {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 40px;
}

.criteria-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: center;
}

.criteria-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.criteria-icon {
  width: 28px;
  height: 28px;
  background: #3498db;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.criteria-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}

.criteria-item p {
  font-size: 13.5px;
  color: #666;
  line-height: 1.5;
}

/* ===================================================
   PRODUCT CARD — Core Component
   =================================================== */

/* --- Pick Badge --- */
.pick-badge {
  display: inline-block;
  background: #3a6cf4;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.pick-badge.pick-secondary {
  background: #c0392b;
}

/* --- Product Card --- */
.product-card {
  background: #f7f8fa;
  border-radius: 0 0 12px 12px;
  padding: 36px 32px;
  margin-bottom: 48px;
}

.product-card.secondary {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
}

.product-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: center;
}

.product-name a {
  color: #1a1a1a;
  text-decoration: none;
}

.product-name a:hover {
  color: #c0392b;
  text-decoration: underline;
}

/* Product top layout: sticky left + scrollable right */
.product-top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: start;
}

/* Left sticky column: image + grade + bars */
.product-left-sticky {
  position: sticky;
  top: 90px;
  align-self: start;
}

/* --- Product Image (bestpickreviews style: clean white box) --- */
.product-image-wrapper {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-image-wrapper a {
  display: block;
  width: 100%;
  line-height: 0;
}

.product-image {
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 6px;
}

/* --- "from [Brand]" label under image --- */
.product-brand-label {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-top: 14px;
  font-weight: 400;
}

/* Right scrollable column: analysis + pros/cons + wrap-up + CTA */
.product-right-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-analysis {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 24px;
}

.analysis-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.analysis-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #444;
}

.analysis-text strong {
  color: #222;
}

/* --- Rating Section (inside sticky left column) --- */
.rating-section {
  margin-bottom: 0;
}

.rating-left {
  text-align: center;
  padding: 20px 0;
}

.product-brand {
  font-size: 15px;
  color: #666;
  margin-bottom: 12px;
}

.grade-display {
  font-size: 96px;
  font-weight: 800;
  color: #2c6fbb;
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
}

.grade-label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}

.stars {
  color: #f1c40f;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

/* Progress Bars */
.progress-item {
  margin-bottom: 14px;
}

.progress-label {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
  font-weight: 500;
}

.progress-bar-track {
  height: 22px;
  background: #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  transition: width 1.2s ease-out;
}

.progress-percent {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

/* --- Pros & Cons (matching bestpickreviews clean style) --- */
.pros-cons {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  border-top: 1px solid #ddd;
  padding-top: 24px;
}

.pros-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a991a;
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 18px;
}

.cons-title {
  font-size: 24px;
  font-weight: 700;
  color: #eb1212;
  font-style: normal;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 18px;
  margin-top: 28px;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  padding: 0 0 15px 0;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  color: #333;
}

.pros-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #1a991a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cons-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #eb1212;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Wrap-Up --- */
.wrapup-section {
  margin-top: 28px;
}

.wrapup-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.wrapup-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #444;
}

/* --- CTA Button --- */
.cta-wrapper {
  text-align: center;
  margin-top: 28px;
}

.cta-button {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 60px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(192, 57, 43, 0.35);
}

.cta-button:hover {
  background: #e74c3c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.45);
  text-decoration: none;
  color: #fff;
}

.cta-button-large {
  padding: 18px 80px;
  font-size: 20px;
}

/* --- Bottom Author Bio --- */
.bottom-author {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  margin: 40px 0 0;
}

.bottom-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
  margin: 0 auto 14px;
}

.bottom-author-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-decoration: underline;
}

.bottom-author-credentials {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* --- Section Divider --- */
.section-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 48px 0;
}

/* --- FAQ Section --- */
.faq-section {
  margin: 48px 0;
}

.faq-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 18px 0;
}

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

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #888;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 14px;
}

/* --- Bottom CTA Banner --- */
.bottom-cta {
  background: #f7f8fa;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  margin: 40px 0;
}

.bottom-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.bottom-cta p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* --- Footer --- */
.site-footer {
  background: #eef0f5;
  color: #555;
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  list-style: none;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #d0d3d9;
}

.footer-links a {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e67e22;
  text-decoration: underline;
}

.footer-logo {
  margin: 16px 0;
}

.footer-logo .logo {
  font-size: 22px;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 12px;
  color: #777;
  line-height: 1.7;
}

.footer-copyright {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #555;
}

/* ===================================================
   RESPONSIVE DESIGN — Mobile First Optimization
   =================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .product-top {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 3px solid #e67e22;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .author-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .author-credentials {
    max-width: 100%;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
  }

  /* Stack to single column on mobile */
  .product-top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-left-sticky {
    position: static;
  }

  /* Center image on mobile */
  .product-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Rating section on mobile */
  .rating-section {
    grid-template-columns: 1fr;
  }

  .rating-left {
    padding: 20px 0;
  }

  .grade-display {
    font-size: 72px;
  }

  /* Product name */
  .product-name {
    font-size: 22px;
    line-height: 1.3;
  }

  /* Analysis text larger on mobile for readability */
  .analysis-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .analysis-text p {
    margin-bottom: 16px;
  }

  /* PROS/CONS mobile optimization */
  .pros-title,
  .cons-title {
    font-size: 22px;
  }

  .pros-list li,
  .cons-list li {
    font-size: 16px;
    padding-bottom: 14px;
    gap: 12px;
    line-height: 1.6;
  }

  .pros-list li::before,
  .cons-list li::before {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 3px;
  }

  /* CTA full-width on mobile for easy tapping */
  .cta-button {
    display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    text-align: center;
    border-radius: 6px;
  }

  .cta-wrapper {
    margin-top: 24px;
  }

  /* Content padding */
  .content-wrapper {
    padding: 20px 16px;
  }

  /* Product card */
  .product-card {
    padding: 20px 16px;
  }

  /* Wrap-up */
  .wrapup-text {
    font-size: 16px;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  /* Pick badge */
  .pick-badge {
    font-size: 13px;
    padding: 6px 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .article-title {
    font-size: 20px;
  }

  .product-card {
    padding: 16px 12px;
  }

  .product-analysis {
    padding: 16px;
  }

  .product-image-wrapper {
    max-width: 280px;
  }

  .grade-display {
    font-size: 64px;
  }

  .stars {
    font-size: 20px;
  }

  .progress-label {
    font-size: 13px;
  }

  .product-name {
    font-size: 20px;
  }

  .cta-button {
    font-size: 17px;
    padding: 16px 16px;
  }

  .content-wrapper {
    padding: 16px 12px;
  }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

