.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  overflow: hidden;
  height: 423px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b6b;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.product-info {
  padding: 19px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 230px;
}

.product-title {
  font-size: 23px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.product-description {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}


:root {
  --primary-yellow: #FFD700;
  --light-yellow: #FFF9C4;
  --dark-yellow: #FBC02D;
  --accent-color: #FFA000;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.table-container {
  padding: 2rem;

  margin: 0 auto;
}

.comparison-header {
  background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
  color: #333;
  padding: 1.5rem;
  border-radius: 8px 8px 0 0;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.1); */
}

.comparison-table th {
  background-color: var(--primary-yellow);
  color: #333;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
  border: none;
}

.comparison-table td {
  padding: 1.2rem;
  vertical-align: middle;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: white;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--light-yellow);
}

.comparison-table tbody tr:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.highlight-cell {
  position: relative;
  font-weight: 500;
}

.highlight-cell::after {
  content: "✓";
  color: var(--accent-color);
  font-weight: bold;
  margin-left: 8px;
}

.badge-best {
  background-color: var(--accent-color);
  color: white;
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  position: absolute;
  top: -8px;
  right: -8px;
}
.Product-btn-theme {
    border: 1px solid #000;
    border-radius: 60px;
    padding: 8px 15px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s linear;
}
.Product-btn-theme.light:hover {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 13px 0 -5px #000000;
}

@media (max-width: 768px) {
  .product-info {
    height: 222px;
  }
  .product-card {
    height: 425px;
  }

  .product-image {
    height: 190px;
  }

  .product-title {
    font-size: 20px;
  }

  .table-container {
    padding: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .comparison-header {
    font-size: 1.3rem;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .comparison-table {
    display: block;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .comparison-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    width: calc(50% - 1rem);
    padding-right: 1rem;
    text-align: left;
    font-weight: 600;
    color: #333;
  }

  .highlight-cell::after {
    position: absolute;
    right: 1rem;
  }
}

.example-strap {
  background: #fffdf1;
  padding: 10px;
  border-left: 3px solid #ffdc09;
}

@media (max-width: 480px) {
  .product-card {
    max-width: 100%;
    height: 480px;
  }

  .product-info {
    height: 100px;
  }
    .product-image {
        height: 300px;
    }
}