﻿.webshop {
    width: 100%;
    height: 100%;
}

@media (max-width: 40em) {
    .webshop > .row {
        padding: 0 20px;
    }
}

.webshop__header {
    background: #C7C5C3;
    padding-top: 224px;
    padding-bottom: 153px;
}

    .webshop__header h1,
    .webshop__header h2 {
        color: #fff;
        text-align: center;
        font-weight: 300 !important;
        margin: 0;
    }

    .webshop__header h1 {
        font-size: 72px !important;
        line-height: 82px !important;
        font-weight: 400 !important;
    }

    .webshop__header h2 {
        font-size: 59px !important;
        line-height: 70px !important;
    }

.webshop__categories {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 75vw;
    gap: 70px;
    padding: 70px 0;
}

.webshop__categories-category {
}

    .webshop__categories-category > span {
        display: block;
        margin: 0 auto;
        max-width: 50em;
        margin-bottom: 25px;
    }

    .webshop__categories-category > h2 {
        text-align: center;
    }

.webshop-product {
    width: 400px;
    background: #F2F2F2;
    padding: 21px 30px;
    border-radius: 20px;
}

.webshop-products {
    display: grid;
    justify-content: center;
    gap: 27px;
    grid-template-columns: auto auto auto;
}

.webshop-product__image {
    max-width: 100%;
}

    .webshop-product__image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center center;
    }

.webshop-product__info {
    display: flex;
    flex-direction: column;
}

    .webshop-product__info h3 {
        font-size: 22px;
        line-height: 29px;
        font-weight: 400;
        letter-spacing: -0.025em;
        margin: 10px 0 0;
    }

    .webshop-product__info h4 {
        font-size: 22px;
        line-height: 29px;
        font-weight: 400;
        color: #A5A19A;
        letter-spacing: -0.025em;
        margin: 0;
    }

    .webshop-product__info span {
        font-size: 16px;
        line-height: 18px;
        font-weight: 300;
        letter-spacing: -0.025em;
    }

    .webshop-product__info a {
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        letter-spacing: -0.025em;
        width: fit-content;
    }

.webshop-product__bottom {
    margin-top: 20px;
    display: flex;
}

.webshop-product__bottom-quantity {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .webshop-product__bottom-quantity input {
        -webkit-appearance: none;
        -moz-appearance: textfield;
        border: none !important;
        outline: none !important;
        border-radius: 4px !important;
        width: 46px;
        max-width: 100px;
        text-align: center;
        padding: 3px 9px !important;
        max-height: 35px;
        margin-bottom: 0;
    }

    .webshop-product__bottom-quantity select {
        max-height: 35px;
        height: 100%;
        margin-bottom: 0;
        text-align: center;
        font-size: 16px;
        line-height: 16px;
        color: #000;
        cursor: pointer;
    }

    .webshop-product__bottom-quantity input::placeholder {
        color: #000;
    }

    .webshop-product__bottom-quantity input::-webkit-outer-spin-button,
    .webshop-product__bottom-quantity input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

.webshop-product__bottom button {
    padding: 3px 20px;
    min-width: 207px;
    width: 100%;
    background: #dbdbdb;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    letter-spacing: -0.025em;
    text-align: center;
    height: 25px;
    cursor: pointer;
    margin-top: auto;
    align-self: flex-end;
    margin-left: auto;
    border-radius: 4px;
    transition: border .2s;
    color: #000;
    height: 35px;
    margin-left: 5px;
    border: 2px solid transparent;
}

    .webshop-product__bottom button:hover {
        border: 2px solid #ff5700;
    }

@media (max-width: 70em) {
    .webshop-products {
        grid-template-columns: auto auto;
    }

    .webshop__categories-category {
        margin: 35px 0;
    }

        .webshop__categories-category h2 {
            font-size: 32px;
        }

        .webshop__categories-category > span {
            margin-bottom: 32px;
        }

    .webshop__header {
        padding: 112px 20px 76.5px 20px;
    }

        .webshop__header h2 {
            font-size: 32px !important;
            line-height: 38px !important;
        }

        .webshop__header h1 {
            font-size: 48px !important;
            line-height: 54px !important;
        }
}

@media (max-width: 46em) {

    .webshop__categories {
        max-width: 100%;
        padding: 0 20px;
    }

    .webshop-products {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .webshop__categories-category > span {
        max-width: 400px;
    }
}

@media (max-width: 30em) {
    .webshop-product {
        width: 100%;
    }

    .webshop-product__bottom button {
        min-width: unset;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 18em) {
    .webshop-product__bottom {
        flex-direction: column;
        gap: 5px;
    }
}

.product-page__price {
    padding-right: .625rem;
    padding-left: .625rem;
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
    color: #A5A19A;
    letter-spacing: -0.025em;
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}