/* ═══════════════════════════════════════
   SINGLE REVIEW PAGE
═══════════════════════════════════════ */

.lk-breadcrumb {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 12px;
  color: var(--lk-gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lk-breadcrumb a { color: var(--lk-green-600); text-decoration: none; }
.lk-breadcrumb a:hover { color: var(--lk-green-800); }
.lk-breadcrumb-sep { color: var(--lk-gray-300); }

.lk-verdict-banner {
  background: linear-gradient(160deg, #1a3a00 0%, #2C4F08 100%);
  padding: 24px 0;
  border-bottom: 3px solid var(--lk-bright);
}

.lk-verdict-banner-inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lk-verdict-banner-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.lk-verdict-banner-text { flex: 1; min-width: 0; }

.lk-verdict-banner-label {
  font-size: 11px;
  color: #9FE1CB;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lk-verdict-banner-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 8px;
}

.lk-verdict-banner-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lk-score-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid var(--lk-bright);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lk-score-circle-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--lk-bright);
  line-height: 1;
}

.lk-score-circle-den { font-size: 10px; color: #9FE1CB; }

/* PRODUCT INFO HEADER */
.lk-product-header {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--lk-gray-200);
  margin-bottom: 20px;
}

.lk-product-header-img {
  width: 110px;
  height: 110px;
  border-radius: var(--lk-radius-lg);
  background: var(--lk-green-50);
  border: 1px solid var(--lk-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-shrink: 0;
  overflow: hidden;
}

.lk-product-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-product-header-info { flex: 1; min-width: 0; }

.lk-product-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--lk-gray-800);
  margin-bottom: 4px;
  line-height: 1.3;
}

.lk-product-sub {
  font-size: 12px;
  color: var(--lk-gray-400);
  margin-bottom: 10px;
}

.lk-product-tags { display: flex; flex-wrap: wrap; gap: 5px; }

.lk-product-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 0.5px solid var(--lk-gray-200);
  color: var(--lk-gray-600);
  background: var(--lk-gray-50);
}

/* RED FLAGS BOX */
.lk-flags-box {
  background: var(--lk-green-50);
  border: 1px solid var(--lk-green-100);
  border-radius: var(--lk-radius-lg);
  padding: 16px;
  margin-bottom: 20px;
}

.lk-flags-box-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--lk-green-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.lk-flags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lk-flag-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: var(--lk-gray-600);
  line-height: 1.4;
}

.lk-flag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* REVIEW CONTENT SECTIONS */
.lk-review-section { margin-bottom: 22px; }

.lk-review-section-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lk-gray-800);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lk-green-100);
  margin-bottom: 12px;
}

.lk-review-section-body {
  font-size: 14px;
  color: var(--lk-gray-600);
  line-height: 1.8;
}

/* SCORE BREAKDOWN */
.lk-score-breakdown { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.lk-sb-row { display: flex; align-items: center; gap: 10px; }
.lk-sb-label { font-size: 12px; color: var(--lk-gray-600); width: 120px; flex-shrink: 0; }
.lk-sb-bar { flex: 1; height: 5px; background: var(--lk-gray-100); border-radius: 999px; overflow: hidden; }
.lk-sb-fill { height: 100%; border-radius: 999px; }
.lk-sb-val { font-size: 11px; font-weight: 600; color: var(--lk-gray-800); width: 30px; text-align: right; }

/* STAR DISTRIBUTION */
.lk-star-dist { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.lk-star-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--lk-gray-600); }
.lk-star-label { width: 36px; }
.lk-star-bar { flex: 1; height: 5px; background: var(--lk-gray-100); border-radius: 999px; overflow: hidden; }
.lk-star-fill { height: 100%; background: var(--lk-bright); border-radius: 999px; }
.lk-star-pct { width: 32px; text-align: right; font-weight: 500; }

/* VERDICT CTA WIDGET */
.lk-verdict-cta {
  background: var(--lk-dark);
  border-radius: var(--lk-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.lk-verdict-cta-label {
  font-size: 10px;
  font-weight: 600;
  color: #9FE1CB;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.lk-verdict-cta-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lk-verdict-cta-btn {
  display: block;
  width: 100%;
  padding: 9px;
  border-radius: var(--lk-radius-md);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--lk-transition);
}

.lk-verdict-cta-btn-safe { background: var(--lk-bright); color: var(--lk-dark); }
.lk-verdict-cta-btn-safe:hover { background: #7aee00; }
.lk-verdict-cta-btn-avoid { background: var(--lk-red-light); color: #A32D2D; }
.lk-verdict-cta-btn-avoid:hover { background: var(--lk-red); color: #fff; }

/* COMPARE WIDGET */
.lk-compare-widget {
  border: 1px solid var(--lk-green-100);
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.lk-compare-widget-head {
  background: var(--lk-green-50);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lk-green-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 0.5px solid var(--lk-green-100);
}

.lk-compare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--lk-gray-200);
  font-size: 12px;
}

.lk-compare-row:last-child { border-bottom: none; }
.lk-compare-store { color: var(--lk-gray-600); }
.lk-compare-price { font-weight: 700; color: var(--lk-green-600); }

.lk-compare-visit-btn {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--lk-green-50);
  color: var(--lk-green-600);
  border: 0.5px solid var(--lk-bright);
  cursor: pointer;
  transition: var(--lk-transition);
  text-decoration: none;
}

.lk-compare-visit-btn:hover {
  background: var(--lk-bright);
  color: var(--lk-dark);
}

/* RELATED REVIEWS */
.lk-related-list { display: flex; flex-direction: column; gap: 10px; }

.lk-related-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--lk-radius-md);
  transition: var(--lk-transition);
}

.lk-related-item:hover { background: var(--lk-green-50); }

.lk-related-img {
  width: 40px;
  height: 40px;
  border-radius: var(--lk-radius-md);
  background: var(--lk-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.lk-related-title { font-size: 12px; font-weight: 500; color: var(--lk-gray-800); line-height: 1.3; }
.lk-related-verdict { font-size: 11px; margin-top: 2px; }

/* ═══════════════════════════════════════
   USER ACCOUNTS
═══════════════════════════════════════ */

.lk-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lk-gray-50);
  padding: 40px 20px;
}

.lk-auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--lk-radius-xl);
  box-shadow: var(--lk-shadow-lg);
  overflow: hidden;
}

.lk-auth-header {
  background: linear-gradient(160deg, #1a3a00 0%, #2C4F08 100%);
  padding: 28px 32px 24px;
  text-align: center;
  border-bottom: 3px solid var(--lk-bright);
}

.lk-auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  text-decoration: none;
}

.lk-auth-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--lk-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lk-auth-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.lk-auth-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.lk-auth-sub { font-size: 13px; color: #9FE1CB; }

.lk-auth-body { padding: 28px 32px; }

.lk-auth-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--lk-gray-200);
  margin-bottom: 24px;
}

.lk-auth-tab {
  flex: 1;
  text-align: center;
  padding: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lk-gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--lk-transition);
}

.lk-auth-tab.active {
  color: var(--lk-green-600);
  border-bottom-color: var(--lk-bright);
  font-weight: 600;
}

.lk-auth-form { display: flex; flex-direction: column; gap: 14px; }

.lk-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0;
}

.lk-auth-divider-line { flex: 1; height: 0.5px; background: var(--lk-gray-200); }
.lk-auth-divider-text { font-size: 12px; color: var(--lk-gray-400); }

.lk-auth-footer {
  text-align: center;
  padding: 16px 32px 24px;
  font-size: 13px;
  color: var(--lk-gray-400);
}

.lk-auth-footer a { color: var(--lk-green-600); font-weight: 500; }

/* USER PROFILE */
.lk-profile-hero {
  background: linear-gradient(160deg, #1a3a00 0%, #2C4F08 100%);
  padding: 32px 0;
  border-bottom: 3px solid var(--lk-bright);
}

.lk-profile-hero-inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lk-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--lk-dark);
  border: 3px solid var(--lk-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--lk-bright);
  flex-shrink: 0;
  overflow: hidden;
}

.lk-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }

.lk-profile-info { flex: 1; }
.lk-profile-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.lk-profile-joined { font-size: 12px; color: #9FE1CB; }

.lk-profile-stats { display: flex; gap: 20px; margin-top: 10px; }
.lk-profile-stat-val { font-size: 18px; font-weight: 700; color: var(--lk-bright); }
.lk-profile-stat-lbl { font-size: 10px; color: #9FE1CB; }

/* PROFILE TABS */
.lk-profile-tabs {
  background: #fff;
  border-bottom: 1px solid var(--lk-gray-200);
}

.lk-profile-tabs-inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.lk-profile-tab {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--lk-gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--lk-transition);
}

.lk-profile-tab:hover { color: var(--lk-green-600); }
.lk-profile-tab.active { color: var(--lk-green-600); border-bottom-color: var(--lk-bright); font-weight: 600; }

/* ═══════════════════════════════════════
   RESPONSIVE — SINGLE & AUTH
═══════════════════════════════════════ */

@media (max-width: 900px) {
  .lk-verdict-banner-inner { flex-wrap: wrap; }
  .lk-verdict-banner-title { font-size: 18px; }
  .lk-score-circle { width: 60px; height: 60px; }
  .lk-score-circle-num { font-size: 18px; }
  .lk-product-header { flex-direction: column; }
  .lk-product-header-img { width: 90px; height: 90px; }
  .lk-flags-grid { grid-template-columns: 1fr; }
  .lk-profile-hero-inner { flex-direction: column; text-align: center; }
  .lk-profile-stats { justify-content: center; }
}

@media (max-width: 600px) {
  .lk-verdict-banner { padding: 18px 0; }
  .lk-verdict-banner-title { font-size: 16px; }
  .lk-verdict-banner-inner { gap: 12px; }
  .lk-verdict-banner-icon { width: 48px; height: 48px; font-size: 22px; }
  .lk-score-circle { width: 52px; height: 52px; }
  .lk-score-circle-num { font-size: 15px; }
  .lk-sb-label { width: 90px; font-size: 11px; }
  .lk-auth-card { border-radius: var(--lk-radius-lg); }
  .lk-auth-header, .lk-auth-body { padding-left: 20px; padding-right: 20px; }
  .lk-auth-footer { padding-left: 20px; padding-right: 20px; }
  .lk-breadcrumb { padding: 10px 16px; }
}

/* ═══════════════════════════════════════
   COMMENTS SECTION
═══════════════════════════════════════ */

.lk-review-section .comment-respond,
.lk-review-section .comments-area {
  margin-top: 0;
}

#comments { width: 100%; }

.comments-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--lk-gray-800);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--lk-green-100);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.comment-list .comment {
  padding: 16px 0;
  border-bottom: 0.5px solid var(--lk-gray-200);
}

.comment-list .comment:last-child { border-bottom: none; }

.comment-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.comment-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--lk-green-100);
}

.comment-author .fn {
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-gray-800);
}

.comment-metadata {
  font-size: 11px;
  color: var(--lk-gray-400);
  margin-left: 46px;
  margin-bottom: 8px;
}

.comment-content p {
  font-size: 13px;
  color: var(--lk-gray-600);
  line-height: 1.7;
  margin-left: 46px;
}

.reply a {
  font-size: 11px;
  color: var(--lk-green-600);
  margin-left: 46px;
  display: inline-block;
  margin-top: 6px;
}

/* COMMENT FORM */
#respond {
  background: var(--lk-gray-50);
  border: 0.5px solid var(--lk-gray-200);
  border-radius: var(--lk-radius-lg);
  padding: 20px;
  margin-top: 16px;
}

#reply-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-gray-800);
  margin-bottom: 16px;
  display: block;
}

#reply-title small { display: none; }

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
  font-size: 12px;
  font-weight: 500;
  color: var(--lk-gray-700);
  display: block;
  margin-bottom: 5px;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
  width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--lk-gray-200);
  border-radius: var(--lk-radius-md);
  font-size: 13px;
  font-family: var(--lk-font-sans);
  color: var(--lk-gray-800);
  background: #fff;
  transition: var(--lk-transition);
  margin-bottom: 12px;
}

.comment-form-comment textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus {
  border-color: var(--lk-green);
  box-shadow: 0 0 0 3px rgba(137,255,0,0.12);
  outline: none;
}

.comment-notes,
.logged-in-as {
  font-size: 12px;
  color: var(--lk-gray-400);
  margin-bottom: 14px;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.comment-form-cookies-consent label {
  font-size: 12px;
  color: var(--lk-gray-600);
}

.form-submit .submit {
  background: var(--lk-bright);
  color: var(--lk-dark);
  border: none;
  border-radius: var(--lk-radius-md);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--lk-font-sans);
  transition: var(--lk-transition);
}

.form-submit .submit:hover {
  background: #7aee00;
  transform: translateY(-1px);
}

/* COMMENT FORM GRID */
.comment-form-author,
.comment-form-email,
.comment-form-url {
  display: inline-block;
  width: 48%;
  margin-right: 2%;
}

.comment-form-url { margin-right: 0; }

@media (max-width: 600px) {
  .comment-form-author,
  .comment-form-email,
  .comment-form-url {
    width: 100%;
    margin-right: 0;
    display: block;
  }
  #respond { padding: 14px; }
  .comment-content p,
  .comment-metadata,
  .reply a { margin-left: 0; }
}
