/* Comparison Table Base */
.comparison_table h2 {
  text-align: center;
  font-size: 40px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-family: "Arial", sans-serif;
  font-size: 15px;
  text-align: left;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border: none;
}

/* Table Head */
.comparison-table thead th {
  background: #e53935; /* Red header background */
  color: #fff;
  padding: 14px 12px;
  font-weight: bold;
  text-transform: capitalize;
  border: 1px solid #e53935;
  font-size: 20px;
  line-height: 130%;
  font-family: Titillium Web;
}
.comparison-table thead th:first-child {
  text-align: center;
}
.comparison-table tbody td {
  font-size: 16px;
  line-height: 130%;
  font-family: Titillium Web;
  font-weight: 400;
}
/* Table Body */
.comparison-table tbody td {
  border: 1px solid #ddd;
  padding: 12px 14px;
  vertical-align: top;
  min-height: 88px;
}

/* Product Column */
.comparison-table tbody td:first-child {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Product Image */
.comparison-table img {
  max-width: 70px;
  height: auto;
  border-radius: 4px;
/*   border: 1px solid #ddd; */
}

/* Zebra Row Styling */
.comparison-table tbody tr:nth-child(odd) {
  background: #fafafa;
}

/* Hover Effect */
.comparison-table tbody tr:hover {
  background: #f5f5f5;
  transition: 0.3s;
}
@media (max-width:991px){
  .comparison-table thead th {
    font-size: 14px;
  }

  .comparison-table {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px){
  .comparison_table h2 {
    font-size: 32px;
  }
}
/* Responsive Table */
@media screen and (max-width: 768px) {
  /*   .comparison-table thead {
  display: none; /* Hide table header on mobile */
  /*   } */
  /*   .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
  display: block;
  width: 100%;
}
  .comparison-table tr {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 6px;
  background: #fff;
}
  .comparison-table td {
  border: none;
  padding: 8px 10px;
  text-align: right;
  position: relative;
} */
  .comparison-table thead th {
    min-width: 200px;
    font-size: 14px;
  }

  .comparison-table tbody td {
    min-width: 200px;
  }

  .comparison-table {
    font-size: 14px;
  }

  section.comparison_table {
    overflow: hidden;
    overflow-x: auto;
  }
  .comparison_table h2 {
    font-size: 26px;
  }
}
