.product-card {
  max-width: 800px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: auto;
  font-family: sans-serif;
  overflow: hidden;
}
.product-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, #00b2e9 0%, #3e61ac 100%);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image {
  max-width: 80%;
  padding: 10px;
}
.favorite-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.product-body {
  padding: 16px;
}
.product-title {
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.product-description {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #555;
  padding: 0px 16px;
  height: auto;
  margin: 8px 0;
}

/*  */

#initial-content img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Tab reset */

table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 0 !important;
}

th,
td {
  padding: 12px 16px;
  text-align: left;
}

th {
  background-color: #2980c3;
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.85rem;
}

tr:nth-child(even) {
  background-color: #f4f4f4;
}

tr:hover {
  background-color: #eaeaea;
}

td {
  color: #333;
  font-size: 0.95rem;
}
