/* ========== PRODUCTS SECTION ========== */
.products-section {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 130px 20px;
}

.product-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* ADDED: Fixed height for scrolling */
  max-height: calc(100vh - 160px);
}

/* Left column */
.product-list {
  background-color: #43b048;
  color: #fff;
  padding: 40px 30px;
  width: 25%;
  min-width: 240px;
  /* ADDED: Scrolling for left sidebar */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* ADDED: Custom scrollbar for webkit browsers */
.product-list::-webkit-scrollbar {
  width: 6px;
}

.product-list::-webkit-scrollbar-track {
  background: transparent;
}

.product-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.product-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.product-list h2 {
  margin-bottom: 20px;
  font-size: 1.8em;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  /* ADDED: Sticky header */
  /* position: sticky; */
  /* top: 0; */
  background-color: #43b048;
  /* padding-bottom: 10px;
  z-index: 1; */
}

.product-list ul {
  list-style: none;
}

.product-list li {
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  font-weight: 500;
}

.product-list li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.product-list li.active {
  background-color: #2d8c3e;
  transform: translateX(5px);
}

/* Right column */
.product-display {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #f1f8e9, #ffffff);
  /* ADDED: Scrolling for right content area */
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #b4d7b0 #f1f8e9;
}

/* ADDED: Custom scrollbar for right side */
.product-display::-webkit-scrollbar {
  width: 8px;
}

.product-display::-webkit-scrollbar-track {
  background: #f1f8e9;
  border-radius: 4px;
}

.product-display::-webkit-scrollbar-thumb {
  background: #43b048;
  border-radius: 4px;
}

.product-display::-webkit-scrollbar-thumb:hover {
  background: #2d8c3e;
}

.product-display h2 {
  margin-bottom: 15px;
  color: #2e7d32;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  text-align: center;
  /* ADDED: Sticky header for product title */
  /* position: sticky; */
  /* top: 0;
  background: linear-gradient(135deg, #f1f8e9, #ffffff);
  padding-bottom: 10px;
  z-index: 1; */
}

.product-display>p {
  margin-bottom: 35px;
  color: #555;
  text-align: center;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  width: 100%;
}

.image-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  /* border: 1px solid var(--primary-green); */
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 10px;
}

.image-card h3 {
  font-size: 1.2rem;
  margin: 15px;
  color: #333;
  font-weight: 600;
}

.image-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 15px 20px 15px;
  line-height: 1.5;
}

.image-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  /* match the img height */
  background: #f5f5f5;
}

.image-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ← contain, not cover */
  padding: 10px;
}

/* ========== MODAL STYLES ========== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  overflow-y: auto;
  padding: 0px;
  /* Added backdrop-filter for better overlay effect */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  /* Enhanced background to ensure full opacity */
  background: #ffffff;
  border-radius: 16px;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  isolation: isolate;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #f44336;
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  /* Added solid background */
  background: #ffffff;
  border-radius: 16px;
}

/* Left side - Images */
.modal-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-main-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Right side - Details */
.modal-details {
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 2rem;
  color: #2e7d32;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #666;
}

.modal-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-section {
  margin-bottom: 25px;
}

.modal-section h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #43b048;
  border-radius: 2px;
}

.modal-section ul {
  list-style: none;
  padding-left: 0;
}

.modal-section li {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.modal-section li::before {
  content: "•";
  color: #43b048;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 0.9rem;
}

.modal-table th,
.modal-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.modal-table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #333;
}

.modal-table td {
  color: #666;
}

/* Added styles for action buttons */
.modal-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.action-button {
  flex: 1;
  padding: 12px;
  border: 2px solid #43b048;
  background: #fff;
  color: #43b048;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.action-button:hover {
  background: #43b048;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 176, 72, 0.3);
}

.modal-cta {
  margin-top: auto;
  padding-top: 20px;
}

.order-button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #43b048, #2d8c3e);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(67, 176, 72, 0.3);
}

.order-button a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}

.order-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(67, 176, 72, 0.4);
}

/* Added styles for Growing Guide popup */
.guide-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 820px;
  width: 100%;
  margin: 40px auto;
  position: relative;
  animation: slideUp 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 40px 10px;
}

.guide-modal-title {
  font-size: 1.8rem;
  color: #2e7d32;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

/* ========== RESPONSIVE ========== */
/* ========== RESPONSIVE STYLES ========== */
/* ========== MOBILE SCROLLBAR FIX ========== */
@media (max-width: 768px) {
  .product-list h2 {
    display: none;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .product-container {
    flex-direction: column;
    /* ADDED: Remove max-height on mobile */
    max-height: none;
  }

  .product-list {
    width: 100%;
    overflow-x: auto !important;
    /* Force scroll */
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 15px;
    background: #43b048;
    border-radius: 0;

    /* Critical for iOS */
    -webkit-overflow-scrolling: touch;

    /* Force scrollbar to always be visible */
    scrollbar-width: thin !important;
    scrollbar-color: rgba(255, 255, 255, 0.3) #43b048 !important;
  }

  .product-list ul {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    /* Add padding to ensure content is scrollable */
    /* padding: 5px 20px 15px 20px; */
  }

  /* WEBKIT BROWSERS (Chrome, Safari, Edge on mobile) */
  .product-list::-webkit-scrollbar {
    height: 8px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .product-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    margin: 0 10px !important;
  }

  .product-list::-webkit-scrollbar-thumb {
    background: #ffffff !important;
    border-radius: 10px !important;
    border: 1px solid #2d8c3e !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
  }

  .product-list::-webkit-scrollbar-thumb:hover {
    background: #f0f0f0 !important;
  }

  .product-list li {
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 0.95rem;
    /* Add min-width to ensure items are wide enough */
    min-width: fit-content;
  }

  /* Added mobile modal fixes at the end of media query */
  .modal-content {
    margin: 20px 10px;
    max-width: calc(100% - 20px);
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
  }

  .modal-main-image {
    height: 250px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .action-button {
    font-size: 0.9rem;
    padding: 12px;
  }

  .order-button {
    font-size: 1rem;
    padding: 12px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .product-list::-webkit-scrollbar {
    height: 6px !important;
  }

  /* Add visual indicator that area is scrollable */
  .product-list {
    position: relative;
  }

  .product-list::before {
    /* content: '← →'; */
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    z-index: 1;
    pointer-events: none;
  }

  /* Even bigger cards on small phones - increased sizes for better mobile experience */
  .product-display {
    padding: 20px 15px;
  }

  .image-card {
    border-radius: 14px;
  }

  .image-card img {
    height: 230px;
  }

  .image-card h3 {
    font-size: 1.3rem;
    margin: 22px;
  }

  .image-card p {
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 22px 30px 22px;
  }
}

/* ========== HOVER OVERLAY WITH SEE DETAIL BUTTON ========== */

/* Add position relative to image cards for absolute positioning of overlay */
.image-card {
  position: relative;
  overflow: hidden;
}

/* Hover overlay with blur effect */
.image-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(67, 176, 72, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
  pointer-events: none;
}

/* Show overlay on card hover */
.image-card:hover .image-card-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* See Detail button */
.see-detail-btn {
  background: #fff;
  color: #43b048;
  border: 2px solid #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.5s ease forwards 0.1s;
}

/* Fade up animation */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset animation when not hovering */
.image-card:not(:hover) .see-detail-btn {
  animation: none;
  opacity: 0;
  transform: translateY(20px);
}

/* Button hover effect */
.see-detail-btn:hover {
  background: #43b048;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(67, 176, 72, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .see-detail-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .image-card-overlay {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}

/* Add this to product-styles.css */
.image-card.active-card {
  border: 3px solid var(--primary-green);
  position: relative;
}

.image-card.active-card::before {
  content: "✓";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 25px;
  height: 25px;
  background: #43b048;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Make sure overlay still works */
.image-card.active-card .image-card-overlay {
  border-radius: 9px;
  /* Adjust for border */
}

/* Guide container styles */
.guide-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.guide-section-title {
  color: #2d8c3e;
  border-left: 5px solid #43b048;
  padding-left: 10px;
  font-size: 1.2rem;
  margin: 20px 0 10px;
}

.guide-bullets {
  list-style: none;
  padding-left: 0;
}

.guide-bullets li {
  padding: 4px 0 4px 20px;
  position: relative;
}

.guide-bullets li::before {
  content: "•";
  color: #43b048;
  font-weight: bold;
  position: absolute;
  left: 0;
}

hr {
  border: 1px dashed #43b048;
  margin: 20px 0;
}

/* Image grids */
.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.image-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.image-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.image-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

/* Water boxes */
.dry-box {
  background: #fff3e0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ffe0b2;
  margin: 10px 0;
}

.rainy-box {
  background: #e3f2fd;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #bbdefb;
  margin: 10px 0;
}

.guide-note {
  background: #fff8e1;
  padding: 8px;
  border-left: 4px solid #ffa000;
  border-radius: 0 8px 8px 0;
}

/* Checkmark list styling */
.checkmark-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2d3748;
}

.checkmark-list span:first-child {
  color: #43b048;
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 20px;
}

/* Image caption styling */
.guide-figure-caption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #718096;
  font-style: italic;
}


/* seed compare */
.kss-compare-wrap {
  background: #f7fbf4;
  padding: 60px 0 72px;
  font-family: 'Poppins', sans-serif;
}

.kss-compare-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.kss-compare-title {
  font-size: 28px;
  font-weight: 700;
  color: #1b5e20;
  margin: 0 0 8px 0;
}

.kss-compare-desc {
  font-size: 14px;
  color: #777;
  margin: 0 0 32px 0;
}

.kss-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.kss-step-num {
  width: 26px;
  height: 26px;
  background: #43b048;
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kss-step-label {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kss-crop-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.kss-pill {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid #c8e6c9;
  background: #fff;
  font-size: 13px;
  color: #388e3c;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.18s;
  font-weight: 500;
}

.kss-pill:hover {
  border-color: #43b048;
  background: #f1f8e9;
}

.kss-pill.kss-active {
  background: #43b048;
  border-color: #43b048;
  color: #fff;
}

.kss-selects {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 28px;
}

.kss-sel-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.kss-sel-label {
  font-size: 11px;
  font-weight: 600;
  color: #388e3c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kss-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1.5px solid #c8e6c9;
  border-radius: 10px;
  font-size: 13px;
  color: #1b5e20;
  background: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%232e7d32' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kss-select:focus {
  outline: none;
  border-color: #43b048;
  box-shadow: 0 0 0 3px rgba(67, 176, 72, 0.15);
}

.kss-vs-badge {
  width: 36px;
  height: 36px;
  background: #43b048;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
  flex-shrink: 0;
  align-self: end;
  margin-bottom: 4px;
}

.kss-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kss-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid #c8e6c9;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.06);
}

.kss-card-head {
  background: linear-gradient(135deg, #1b5e20 0%, #43b048 100%);
  padding: 14px 16px 12px;
}

.kss-card-head .kh-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.kss-card-head .kh-type {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin: 3px 0 0;
}

.kss-card img.kc-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  background: #f1f8e9;
}

.kc-img-ph {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #a5d6a7;
}

.kc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid #f1f8e9;
  gap: 8px;
}

.kc-row:last-child {
  border-bottom: none;
}

.kc-row.kc-win {
  background: #f1f8e9;
}

.kc-lbl {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
}

.kc-val {
  font-size: 12px;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.kc-tag {
  font-size: 10px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.kc-bar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.kc-bar-bg {
  width: 60px;
  height: 5px;
  background: #e8f5e9;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.kc-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: #a5d6a7;
}

.kc-bar-fill.kc-best {
  background: #2e7d32;
}

.kss-warn {
  grid-column: 1/-1;
  text-align: center;
  padding: 32px;
  border: 1.5px dashed #c8e6c9;
  border-radius: 14px;
  color: #aaa;
  font-size: 13px;
  background: #fafffe;
}

.kss-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 20px;
  color: #bbb;
  font-size: 14px;
}

.kss-placeholder .kss-ph-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .kss-selects {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .kss-vs-badge {
    margin: 4px auto;
    align-self: center;
  }

  .kss-cards {
    grid-template-columns: 1fr;
  }

  .kss-compare-title {
    font-size: 22px;
  }
}