@import 'base.css';

.product-images {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
  align-items: center;
}

.product-images img {
  /* margin-top: 5rem; */
  height: 10rem;
  cursor: pointer;
}

.two-column-description {
  display: flex;
  flex-direction: row;
  column-gap: 5rem;
  justify-content: center;
  align-items: center;
  margin-right: 5rem;
  margin-left: 5rem;
  padding-top: 1.25rem;
}

.two-column-description p {
  /* margin-top: 0.5rem; */
  font-size: 1.2rem;
  padding-bottom: 0.5rem;
}

.two-column-description li {
  /* font-size: 1.1rem; */
  font-size: 1.02rem;
  line-height: 1.5rem;
  list-style: disc;
  margin-left: 1.05rem;
}

/* ===================== Mobile-Only Product Styles (max-width: 768px) ===================== */
@media screen and (max-width: 768px) {
  /* Stack product images vertically */
  .product-images {
    flex-direction: column;
    row-gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-images img {
    height: auto;
    max-height: 15rem;
    width: 100%;
    object-fit: contain;
  }

  /* Stack two-column description */
  .two-column-description {
    flex-direction: column;
    row-gap: 1.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 1rem;
  }

  .two-column-description p {
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }

  .two-column-description li {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }
}
