/* ═══════════════════════════════════════
   HOMEPAGE HERO
═══════════════════════════════════════ */

.lk-hero {
  background: linear-gradient(160deg, #1a3a00 0%, #2C4F08 100%);
  padding: 52px 0 40px;
  border-bottom: 3px solid var(--lk-bright);
  position: relative;
  overflow: hidden;
}

.lk-hero-glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: var(--lk-bright);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.lk-hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: var(--lk-yellow);
  opacity: 0.04;
  border-radius: 50%;
  pointer-events: none;
}

.lk-hero-inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lk-hero-tag {
  display: inline-block;
  background: var(--lk-yellow);
  color: var(--lk-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.lk-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.lk-hero h1 .lk-hero-highlight { color: var(--lk-bright); }

.lk-hero-sub {
  font-size: 16px;
  color: #9FE1CB;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.lk-hero-search-wrap {
  max-width: 560px;
  margin: 0 auto 24px;
}

.lk-hero-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--lk-bright);
  border-radius: var(--lk-radius-xl);
  padding: 8px 8px 8px 20px;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(137,255,0,0.2);
}

.lk-hero-search input {
  flex: 1;
  border: none;
  font-size: 15px;
  color: var(--lk-gray-800);
  background: transparent;
  min-width: 0;
}

.lk-hero-search input::placeholder { color: var(--lk-gray-400); }

.lk-hero-search-btn {
  background: var(--lk-bright);
  color: var(--lk-dark);
  border: none;
  border-radius: var(--lk-radius-lg);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lk-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.lk-hero-search-btn:hover {
  background: #7aee00;
  transform: translateY(-1px);
}

.lk-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 8px;
}

.lk-hero-stat-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--lk-bright);
}

.lk-hero-stat-lbl {
  font-size: 11px;
  color: #9FE1CB;
  margin-top: 2px;
}

/* CATEGORY FILTER BAR */
.lk-cat-bar {
  background: #fff;
  border-bottom: 1px solid var(--lk-gray-200);
  padding: 0;
  overflow: hidden;
}

.lk-cat-bar-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 10px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lk-cat-bar-inner::-webkit-scrollbar { display: none; }

.lk-cat-pill {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--lk-gray-200);
  cursor: pointer;
  color: var(--lk-gray-600);
  background: #fff;
  transition: var(--lk-transition);
  flex-shrink: 0;
}

.lk-cat-pill:hover {
  border-color: var(--lk-green);
  color: var(--lk-green-600);
  background: var(--lk-green-50);
}

.lk-cat-pill.active {
  background: var(--lk-green-50);
  color: var(--lk-green-600);
  border-color: var(--lk-green);
  font-weight: 600;
}

/* VERDICT CARD — LIST STYLE */
.lk-verdict-card {
  background: #fff;
  border: 0.5px solid var(--lk-gray-200);
  border-left: 3px solid var(--lk-bright);
  border-radius: 0 var(--lk-radius-lg) var(--lk-radius-lg) 0;
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: var(--lk-transition);
  cursor: pointer;
}

.lk-verdict-card:hover {
  border-color: var(--lk-bright);
  box-shadow: var(--lk-shadow-md);
  transform: translateX(2px);
}

.lk-verdict-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.lk-verdict-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-gray-800);
  line-height: 1.4;
}

.lk-verdict-card-meta {
  font-size: 12px;
  color: var(--lk-gray-400);
  margin-bottom: 8px;
}

.lk-verdict-card-body {
  font-size: 13px;
  color: var(--lk-gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.lk-verdict-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* PRODUCT GRID CARDS */
.lk-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.lk-product-card {
  background: #fff;
  border: 0.5px solid var(--lk-gray-200);
  border-radius: var(--lk-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--lk-transition);
}

.lk-product-card:hover {
  border-color: var(--lk-bright);
  box-shadow: var(--lk-shadow-md);
  transform: translateY(-2px);
}

.lk-product-card-img {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  border-bottom: 0.5px solid var(--lk-gray-200);
  position: relative;
  background: var(--lk-gray-50);
}

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

.lk-product-card-img-badge {
  position: absolute;
  top: 8px;
  left: 8px;
}

.lk-product-card-body { padding: 12px 14px; }

.lk-product-card-cat {
  font-size: 10px;
  font-weight: 600;
  color: var(--lk-green-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.lk-product-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-gray-800);
  line-height: 1.4;
  margin-bottom: 8px;
}

.lk-product-card-score-bar {
  height: 4px;
  background: var(--lk-gray-100);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.lk-product-card-score-fill { height: 100%; border-radius: 999px; }

.lk-product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lk-product-card-score { font-size: 11px; font-weight: 600; }
.lk-product-card-price { font-size: 12px; color: var(--lk-green-600); font-weight: 600; }
.lk-product-card-stores { font-size: 10px; color: var(--lk-gray-400); }

/* COMPARISON ENGINE WIDGET — FIXED BUTTON */
.lk-engine-widget {
  background: var(--lk-dark);
  border-radius: var(--lk-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.lk-engine-widget-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--lk-bright);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}

.lk-engine-widget-desc {
  font-size: 12px;
  color: #9FE1CB;
  line-height: 1.5;
  margin-bottom: 12px;
}

.lk-engine-widget-btn {
  display: block;
  width: 100%;
  background: var(--lk-bright);
  color: var(--lk-dark);
  border: none;
  border-radius: var(--lk-radius-md);
  padding: 9px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: var(--lk-transition);
  text-decoration: none;
}

.lk-engine-widget-btn:hover {
  background: #7aee00;
  color: var(--lk-dark);
  transform: translateY(-1px);
}

/* TRENDING WIDGET */
.lk-trending-list { display: flex; flex-direction: column; gap: 9px; }

.lk-trending-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--lk-gray-700);
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--lk-radius-sm);
  transition: var(--lk-transition);
}

.lk-trending-item:hover {
  background: var(--lk-green-50);
  color: var(--lk-green-600);
}

.lk-trending-rank {
  font-size: 11px;
  font-weight: 700;
  color: var(--lk-bright);
  width: 14px;
  flex-shrink: 0;
}

/* BURN RATE WIDGET */
.lk-burn-item { margin-bottom: 10px; }
.lk-burn-item:last-child { margin-bottom: 0; }

.lk-burn-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--lk-gray-600);
  margin-bottom: 5px;
}

.lk-burn-bar {
  height: 5px;
  background: var(--lk-gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.lk-burn-fill { height: 100%; border-radius: 999px; }

/* STAT ROWS */
.lk-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--lk-gray-200);
  color: var(--lk-gray-600);
}

.lk-stat-row:last-child { border-bottom: none; }
.lk-stat-val { font-weight: 600; color: var(--lk-green-600); }

/* NEWSLETTER WIDGET */
.lk-newsletter-widget {
  background: var(--lk-dark);
  border-radius: var(--lk-radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.lk-newsletter-widget-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--lk-yellow);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.lk-newsletter-widget-desc {
  font-size: 12px;
  color: #9FE1CB;
  line-height: 1.5;
  margin-bottom: 10px;
}

.lk-newsletter-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: var(--lk-radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: var(--lk-font-sans);
}

.lk-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }

.lk-newsletter-btn {
  width: 100%;
  background: var(--lk-bright);
  color: var(--lk-dark);
  border: none;
  border-radius: var(--lk-radius-md);
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lk-transition);
}

.lk-newsletter-btn:hover { background: #7aee00; }

/* FOOTER STRIP */
.lk-footer {
  background: var(--lk-dark);
  border-top: 3px solid var(--lk-bright);
  padding: 28px 0 20px;
  margin-top: 48px;
}

.lk-footer-inner {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.lk-footer-col-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--lk-bright);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
}

.lk-footer-link {
  display: block;
  font-size: 13px;
  color: #9FE1CB;
  text-decoration: none;
  margin-bottom: 7px;
  transition: var(--lk-transition);
}

.lk-footer-link:hover { color: var(--lk-bright); }

.lk-footer-bottom {
  max-width: var(--lk-container);
  margin: 0 auto;
  padding: 16px 24px 0;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.lk-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.lk-footer-copy span { color: var(--lk-bright); }

.lk-footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* ═══════════════════════════════════════
   RESPONSIVE — HOMEPAGE
═══════════════════════════════════════ */

@media (max-width: 900px) {
  .lk-hero h1 { font-size: 32px; }
  .lk-hero-stats { gap: 24px; }
  .lk-hero-stat-val { font-size: 18px; }
  .lk-product-grid { grid-template-columns: repeat(2, 1fr); }
  .lk-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 600px) {
  .lk-hero { padding: 36px 0 28px; }
  .lk-hero h1 { font-size: 26px; letter-spacing: -0.3px; }
  .lk-hero-sub { font-size: 14px; }
  .lk-hero-search { padding: 6px 6px 6px 14px; }
  .lk-hero-search input { font-size: 14px; }
  .lk-hero-search-btn { padding: 8px 14px; font-size: 13px; }
  .lk-hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .lk-hero-stat { text-align: center; }
  .lk-product-grid { grid-template-columns: 1fr; }
  .lk-footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .lk-footer-bottom { flex-direction: column; text-align: center; }
  .lk-verdict-card-top { flex-direction: column; gap: 8px; }
  .lk-cat-bar-inner { padding: 8px 16px; }
}

@media (max-width: 400px) {
  .lk-hero h1 { font-size: 22px; }
  .lk-hero-search { flex-direction: column; border-radius: var(--lk-radius-lg); padding: 12px; }
  .lk-hero-search input { width: 100%; text-align: center; }
  .lk-hero-search-btn { width: 100%; }
}
