@media (max-width: 600px) {
  .catalog {
    width: calc(100% - 32px);
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
  }

  .product-image {
    height: 200px;
    aspect-ratio: auto;
  }

  .product-info > div {
    align-items: flex-start;
    font-size: 12px;
    line-height: 16px;
  }

  .product-info > div > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .product-price {
    flex: 0 0 auto;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
  }

  .product-colour {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
  }

  .size-picker {
    padding: 8px;
  }

  .picker-content {
    gap: 8px;
  }

  .picker-content p {
    font-size: 12px;
    line-height: 16px;
  }

  .sizes {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }

  .size {
    min-width: 32px;
    height: 32px;
    padding: 4px;
    font-size: 12px;
  }
}
