.product-detail.container {
  max-width: 1300px;
  margin: auto;
  padding: 40px;
}

.longdescription h1{
    letter-spacing: 1px;
    font-size: 30px;
    color: white;
    margin-bottom: 40px;
}

.image-description {
  /* remove width/height: 350px */
  display: flex;
  align-items: center;
  justify-content: space-around;   /* or space-around */
  gap: 24px;
  background-color: #005f69;
  border-radius: 10px;
  padding: 20px;
}

.image-box {
  width: 350px;
  height: 350px;        /* “reasonable fixed size” */
  flex: 0 0 350px;      /* don’t let it shrink */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;     /* hide any overflow just in case */
  border-radius: 10px;
  background: #fff0;    /* transparent; change if you want a panel */
}

/* narrow this selector so it only styles product images */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* keeps original aspect ratio (no crop) */
  object-position: center;
  display: block;
  border-radius: 10px;
}

/* you can remove the global cap here since the box controls size */
.product-detail img {
  width: 100%;
  height: auto;          /* safe default elsewhere */
  border-radius: 10px;
  display: block;
}


.longdescription {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    font-family: "Lexend", sans-serif;
    color: white;
    font-size: 15px;
    line-height: 2;
    margin: 30px;
}

.features {
    font-family: "Instrument Sans", sans-serif;
    color: white;
    line-height: 2.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.features h3 {
    font-size: 30px;
    color: #005f69;
}

.features ul {
    list-style: none;
    font-size: 18px;
    font-weight: bold;
}

.key-features {
    margin: 0;
}

.feature-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.feature-card {
  background-color: #005f69;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1 1 200px; /* Adjust min width of each card */
  font-size: 0.95rem;
}

.models {
    color: #005f69;
    text-align: center;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}