/* =============================================================
   Kaidee.live — Reviews / Guides stylesheet
   Load AFTER style.css so it overrides where needed.
   ============================================================= */

/* ---------- HERO v2 (homepage) ---------- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(244, 121, 32, .22), transparent 60%),
              radial-gradient(900px 500px at 90% 110%, rgba(26, 26, 26, .25), transparent 60%),
              linear-gradient(135deg, #fff7ef 0%, #ffe4cc 100%);
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
}
.hero-v2 .hero-content { position: relative; z-index: 2; }
.hero-v2 h1 {
  font-size: clamp(1.9rem, 3.2vw + 1rem, 3.1rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 16px 0 14px;
  letter-spacing: -.01em;
}
.hero-v2 p {
  font-size: clamp(1rem, .4vw + .95rem, 1.15rem);
  max-width: 720px;
  color: #3a2f25;
  line-height: 1.55;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 121, 32, .35);
  color: #b3470d;
  border-radius: 999px;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: 0 4px 16px rgba(244, 121, 32, .12);
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #F47920;
  box-shadow: 0 0 0 4px rgba(244, 121, 32, .25);
  animation: hero-pulse 2s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { transform: scale(1);   box-shadow: 0 0 0 4px rgba(244, 121, 32, .25); }
  50%      { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(244, 121, 32, .12); }
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  z-index: 1;
  pointer-events: none;
  animation: blob-float 16s ease-in-out infinite alternate;
}
.hero-blob--a {
  width: 380px; height: 380px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, #F47920, transparent 70%);
}
.hero-blob--b {
  width: 320px; height: 320px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, #ffb872, transparent 70%);
  animation-delay: -8s;
}
@keyframes blob-float {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 25px) scale(.95); }
}
.hero-quick-chips {
  margin: 22px 0 14px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(26, 26, 26, .1);
  color: #1A1A1A;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero-chip:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}
.hero-chip--primary {
  background: linear-gradient(135deg, #F47920, #ff9a4f);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(244, 121, 32, .35);
}
.hero-chip--primary:hover {
  background: linear-gradient(135deg, #e06a10, #F47920);
  box-shadow: 0 8px 22px rgba(244, 121, 32, .4);
}

/* ---------- Home Editor's Pick section ---------- */
.section-header--gradient .section-kicker,
.section-kicker {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F47920;
  margin-bottom: 6px;
}
.section-sub {
  color: #64605d;
  margin: 4px 0 0;
  font-size: .95rem;
  max-width: 640px;
}
.editors-pick-section,
.guides-section {
  background: linear-gradient(180deg, #fff 0%, #fff9f3 100%);
}
.editors-pick-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.5fr 1fr 1fr;
}
@media (max-width: 900px) {
  .editors-pick-grid { grid-template-columns: 1fr 1fr; }
  .editors-pick-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .editors-pick-grid { grid-template-columns: 1fr; }
}
.guides-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) { .guides-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .guides-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .guides-grid { grid-template-columns: 1fr; } }

/* ---------- Review card ---------- */
.review-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, .06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(26, 26, 26, .1);
}
.review-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.review-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff3e6, #ffe6cf);
}
.review-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.review-card:hover .review-card-thumb img { transform: scale(1.05); }
.review-card-type {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(26, 26, 26, .8);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.review-card-rating {
  position: absolute;
  top: 12px; right: 12px;
  background: #F47920;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(244, 121, 32, .4);
}
.review-card-body {
  padding: 18px 18px 20px;
}
.review-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  color: #1A1A1A;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-excerpt {
  font-size: .9rem;
  color: #64605d;
  margin: 0 0 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card-meta {
  display: flex;
  gap: 14px;
  font-size: .8rem;
  color: #8a8480;
  font-weight: 500;
}
.review-card--large .review-card-title { font-size: 1.4rem; }
.review-card--large .review-card-thumb { aspect-ratio: 16 / 10; }
.review-card--large .review-card-excerpt { -webkit-line-clamp: 3; }

.review-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.review-grid--compact { grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .review-grid, .review-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .review-grid, .review-grid--compact { grid-template-columns: 1fr; } }

/* ---------- Reviews hero / listing ---------- */
.reviews-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3b1b04 60%, #F47920 160%);
  color: #fff;
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.reviews-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 260px at 80% 120%, rgba(244, 121, 32, .6), transparent 60%);
  pointer-events: none;
}
.reviews-hero-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.reviews-hero-title {
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.6rem);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.005em;
}
.reviews-hero-sub {
  color: rgba(255, 255, 255, .85);
  max-width: 720px;
  font-size: 1.05rem;
}
.reviews-page { padding: 32px 0 48px; }
.reviews-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.reviews-filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .12);
  color: #1A1A1A;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .15s ease;
}
.reviews-filter-chip:hover { border-color: #F47920; color: #F47920; }
.reviews-filter-chip.is-active {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
}
.reviews-empty {
  padding: 56px 24px;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed rgba(26, 26, 26, .15);
}
.reviews-empty code {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  background: #f5f3f1;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .85rem;
}
.reviews-featured { margin-bottom: 40px; }
.reviews-featured-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 700px) { .reviews-featured-grid { grid-template-columns: 1fr; } }
.section-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 18px;
}
.section-count {
  font-size: .9rem;
  color: #8a8480;
  font-weight: 500;
  margin-left: 6px;
}

/* ---------- Review detail page ---------- */
.review-detail { color: #1A1A1A; }
.review-detail-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 0 60px;
  position: relative;
}
.review-detail-hero .breadcrumb { color: rgba(255,255,255,.8); margin-bottom: 18px; }
.review-detail-hero .breadcrumb a { color: rgba(255,255,255,.9); }
.review-detail-type {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(244, 121, 32, .95);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.review-detail-title {
  font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -.01em;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}
.review-detail-excerpt {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .9);
  max-width: 760px;
  line-height: 1.55;
  margin: 0 0 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.review-detail-meta {
  display: flex; flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
}
.review-detail-meta .sep { color: rgba(255, 255, 255, .4); }
.review-author-avatar {
  border-radius: 50%;
  border: 2px solid #fff;
}
.review-verdict-chip {
  background: rgba(244, 121, 32, .95);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .85rem;
}
.review-detail-body { padding: 40px 0 56px; max-width: 860px; margin: 0 auto; }

.review-picks-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 26, .08);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  margin-bottom: 40px;
}
.review-picks-card h2 { font-size: 1.25rem; margin: 0 0 18px; }
.review-picks-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.review-pick-item {
  display: grid;
  grid-template-columns: 48px 120px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  background: #faf8f5;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 26, .04);
}
@media (max-width: 600px) {
  .review-pick-item { grid-template-columns: 40px 90px 1fr; gap: 12px; padding: 14px; }
}
.review-pick-rank {
  font-size: 1.25rem;
  font-weight: 800;
  color: #F47920;
  text-align: center;
}
.review-pick-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
}
.review-pick-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.35;
}
.review-pick-body h3 a { color: inherit; text-decoration: none; }
.review-pick-body h3 a:hover { color: #F47920; }
.review-pick-price {
  display: flex; align-items: center; gap: 10px;
  margin: 4px 0 10px;
}
.review-pick-price strong { color: #F47920; font-size: 1.1rem; }
.review-pick-rating {
  background: #fff3e6;
  color: #b3470d;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
}
.review-pick-verdict {
  font-style: italic;
  color: #5a5550;
  margin: 6px 0 10px;
  font-size: .9rem;
  border-left: 3px solid #F47920;
  padding-left: 10px;
}
.review-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 0 0 12px;
  font-size: .85rem;
}
.review-proscons ul { list-style: none; padding: 0; margin: 0; }
.review-proscons .pros li { color: #177a3b; }
.review-proscons .cons li { color: #a8351b; }
.review-pick-cta { display: inline-flex; margin-top: 4px; }

.review-detail-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c2825;
}
.review-detail-content h2,
.review-detail-content h3 {
  font-weight: 700;
  margin: 36px 0 14px;
  color: #1A1A1A;
  line-height: 1.3;
}
.review-detail-content h2 { font-size: 1.55rem; }
.review-detail-content h3 { font-size: 1.2rem; }
.review-detail-content p,
.review-detail-content ul,
.review-detail-content ol { margin: 0 0 16px; }
.review-detail-content ul, .review-detail-content ol { padding-left: 22px; }
.review-detail-content li { margin-bottom: 6px; }
.review-detail-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}
.review-detail-content blockquote {
  border-left: 4px solid #F47920;
  padding: 12px 20px;
  margin: 20px 0;
  background: #fff9f3;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #5a5550;
}
.review-detail-content a { color: #F47920; font-weight: 600; }
.review-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .95rem;
}
.review-detail-content th,
.review-detail-content td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(26, 26, 26, .08);
  text-align: left;
}
.review-detail-content th {
  background: #faf8f5;
  font-weight: 700;
}

.review-bottom-cta {
  margin: 40px 0;
  padding: 28px;
  background: linear-gradient(135deg, #F47920, #ff9a4f);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(244, 121, 32, .3);
}
.review-bottom-cta h3 { margin: 0 0 16px; font-size: 1.3rem; }
.review-bottom-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.review-bottom-cta .btn-buy-main { background: #fff; color: #1A1A1A; font-weight: 700; }
.review-bottom-cta .btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}
.review-bottom-cta .btn-secondary:hover { background: rgba(255,255,255,.25); }

.review-related { margin-top: 40px; }

/* ---------- Product page reviews block ---------- */
.product-reviews { margin: 32px 0; }
.product-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.product-reviews-head h2 { margin: 0; font-size: 1.35rem; }
.product-reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px;
  background: #faf8f5;
  border-radius: 14px;
  margin-bottom: 24px;
}
@media (max-width: 560px) {
  .product-reviews-summary { grid-template-columns: 1fr; text-align: center; }
}
.rv-score { text-align: center; min-width: 140px; }
.rv-score-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: #F47920;
  line-height: 1;
}
.rv-score small { display: block; margin-top: 4px; color: #8a8480; font-size: .8rem; }
.rv-stats { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 560px) { .rv-stats { justify-content: center; } }
.rv-stat { text-align: center; min-width: 72px; }
.rv-stat-num { display: block; font-size: 1.4rem; font-weight: 700; color: #1A1A1A; }
.rv-stat-lbl { font-size: .8rem; color: #8a8480; }
.product-reviews-subhead {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px 0 14px;
}
.product-reviews-empty {
  padding: 28px;
  text-align: center;
  background: #faf8f5;
  border-radius: 14px;
  color: #64605d;
}
.product-reviews-empty p { margin: 0 0 12px; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin: 32px 0 0;
  flex-wrap: wrap;
}
.pagination-btn {
  padding: 8px 14px;
  border-radius: 8px;
  background: #fff;
  color: #1A1A1A;
  border: 1px solid rgba(26,26,26,.1);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: all .15s;
}
.pagination-btn:hover { border-color: #F47920; color: #F47920; }
.pagination-btn.is-active {
  background: #F47920; color: #fff; border-color: #F47920;
}

/* ---------- Nav Reviews link emphasis ---------- */
.nav-reviews {
  position: relative;
}
.nav-reviews::after {
  content: "NEW";
  position: absolute;
  top: 4px; right: -24px;
  background: #F47920;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: .05em;
}

/* ---------- Helpers ---------- */
.btn-secondary {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  color: #F47920;
  border: 1.5px solid #F47920;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.btn-secondary:hover { background: #F47920; color: #fff; }
.section-header--gradient {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}
