.smps-product-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  /* margin: 30px 0; */
}

.product-left {
  flex: 1;
  text-align: center;
}
.smps-product-image{
    height: 250px;
}
.smps-product-image img{
width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-left img {
  max-width: 285px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.product-right {
  flex: 2;
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.product-table th,
.product-table td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  text-align: center;
}

.product-table th {
  background: #f4f6f8;
  color: #333;
  font-weight: 600;
}

.product-table tr:nth-child(even) {
  background: #fafafa;
}

@media (max-width: 768px) {
  .product-group{
        margin-bottom: 25px;
       }
  .smps-product-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-left {
    width: 100%;
    text-align: center;
  }

  .smps-product-image {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .smps-product-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
  }

  .product-right {
    width: 95%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
 
  }

  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 3px;
  }

  table tr {
    background: #f9f9f9;
    border-radius: 8px;
  }

  table tr:nth-child(even) {
    background: #f1f1f1;
  }

  table th,
  table td {
    padding: 4px 6px;
    font-size: 13px;
    text-align: left;
  }

  table th {
    width: 30%;
    font-weight: 600;
    color: #333;
  }

  table td {
    color: #555;
  }

  .product-table th, .product-table td {
        padding: 4px 5px;
  }

  table tr td:first-child,
  table tr th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  table tr td:last-child,
  table tr th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
}

