:root {
  --bg-store-title: green;
}

#show-store, #show-order {
  h1 {
    font-size: 21px;
    font-weight: 400;
    padding: 1.75rem 1rem;
    background-color: var(--bg-store-title);
    background: #00C9FF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #92FE9D, #00C9FF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #92FE9D, #00C9FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  }

  img {
    object-fit: cover;
  }

  dt,dd {
    display: inline;
  }

  .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    grid-column-gap: 0.75rem;
    grid-row-gap: 1.5rem;

    a {
      text-decoration: none;
    }

    .product-card {
      --bulma-card-radius: 6px;
      --bulma-card-content-padding: 0.75rem;
      --bulma-card-shadow: 0 6px 12px -4px hsla(221deg, 14%, 4%,0.1),0 0px 0 1px hsla(221deg, 14%, 4%,0.02);

      margin-bottom: 0;
      overflow: hidden;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    form {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
  }
  .sold-out {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    background: lightgray;
    border-radius: 4px;
    transform: rotate(-12deg);
  }

  .product-title {
    min-width: 140px;
    font-weight: 500;
  }
  .product-qty {
    display: flex;
    gap: 0.25rem;
  }
  .product-qty-value {
    min-width: 20px;
    text-align: center;
  }

  .available-quantity {
    font-size: 0.8rem;
    color: blueviolet;
  }
}

.cart-items {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-grow: 1;
  margin-right: 1rem;
}
.cart-items form {
  display: flex;
}

#store-thankyou {
  .wrapper {
    padding: 3rem 1rem;
    text-align: center;

    h1 {
      font-size: 21px;
      font-weight: 400;
      margin-bottom: 1rem;
    }
  }
}
