.cctv-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

@media (max-width:992px) {
  .cctv-feature-grid {
    grid-template-columns: 1fr;
  }
}

.cctv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);

  display: flex;
  flex-direction: column;
}

.cctv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.cctv-img {
  height: 260px;
  overflow: hidden;
}

.cctv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.cctv-card:hover img {
  transform: scale(1.06);
}

.cctv-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cctv-badge {

  display: inline-block;
  align-self: flex-start;

  background: rgba(0, 102, 255, .08);
  color: var(--primary-blue);

  padding: 8px 16px;

  border-radius: 999px;

  font-size: .82rem;
  font-weight: 700;

  margin-bottom: 18px;
}

.cctv-body h3 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.cctv-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.cctv-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.cctv-feature-list li {

  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--text-secondary);

  font-size: .95rem;
}

.cctv-feature-list i {

  color: #00C853;
  margin-top: 4px;
}

.cctv-btn {

  margin-top: auto;
  width: fit-content;
}

.product-detail-text p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}