/* Details section - three column layout with All features */
.details-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .details-three-col {
    grid-template-columns: 1fr;
  }
}
.details-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: normal;
}
.details-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.details-col ul li {
  padding: 0.25rem 0;
}
.details-all-features-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.details-all-features-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #338ff7;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}
.details-all-features-btn:hover {
  background: #2a7ad4;
  color: #fff !important;
}

/* Popover for All features */
.details-popover-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}
.details-popover-container {
  display: none;
  position: fixed;
  /* Center vertically between menu bar (~70px) and bottom of screen */
  top: calc(70px + (100vh - 70px) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  max-height: calc(100vh - 100px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 100000;
  overflow: hidden;
}
.details-popover-header {
  padding: 1rem 3rem 1rem 1.5rem;
  flex-shrink: 0;
  border-bottom: 1px solid #ddd;
}
.details-popover-scroll {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  padding: 1rem 2.5rem 1.5rem 1.5rem;
}
.details-popover-close {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  font-size: 36px;
  font-weight: 200;
  background: none;
  border: none;
  color: #666;
  line-height: 1;
  padding: 0;
  z-index: 1;
}
.details-popover-close:hover {
  color: #333;
}
.details-popover-title {
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
