.product {
  width: 100%;
  max-width: var(--w-max);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.25rem;
}

.product.reverse {
  justify-content: right;
  flex-direction: row-reverse;
}

.product.reverse .product__container-content {
  text-align: end;
}

.product__container-image {
  width: 30%;
}

.product__image {
  object-fit: cover;
}

.product__container-content {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;

  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8rem;
}

@media (max-width: 768px) {
  .product {
    flex-direction: column;
  }

  .product.reverse {
    flex-direction: column;
    text-align: left;
  }

  .product__container-image {
    width: 90%;
  }

  .product__container-content {
    text-align: left;
    gap: 1rem;
    width: 90%;
  }

  .product.reverse .product__container-content {
    text-align: left;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product {
    max-width: 90%;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .product {
    max-width: 90%;
  }
}
