h1 {
    text-align: center;
    padding-top: 44px;
}

div.plp {
    max-width: 1400px;
    margin: 44px auto;
    padding: 0 22px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;

    article.product {
        background-color: white;
        box-shadow: var(--default-shadow);
        display: flex;
        flex-direction: column;

        img {
            box-shadow: none;
            border: none;
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }

        div.info {
            flex: 1;
            padding: 22px;
            display: flex;
            flex-direction: column;

            div.content {
                flex: 1;

                p {
                    margin-top: 11px;
                }

                div.variants {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 11px;

                    span {
                        background-color: var(--colour-secondary);
                        padding: 6px;
                        color: white;
                        border-radius: 4px;
                        font-size: 0.8rem;
                    }
                }
            }

            a.button {
                margin-top: 11px;
                padding: 11px 22px;

                display: flex;
                align-items: center;
                gap: 11px;
                justify-content: space-between;

                svg {
                    width: 22px;
                    height: auto;
                    fill: white;
                }
            }
        }
    }
}