@media (max-width: 767px) {
  .minicart-items .product {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .minicart-items .product-item-details {
    order: 1;
  }

  .minicart-items .product-item-photo {
    order: 2;
    align-self: flex-start;
    width: 100px;
  }

  .minicart-items .product-item-photo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .minicart-items .product-item-name {
    word-break: break-word;
  }


}

