/* Shop */

.shop {
    display: flex;
    width: 100%;
}

/* Left */

.shop .left {
    width: 340px;
    border-right: 1px solid #BBB;
    padding: 40px;
    padding-left: 0;
    padding-top: 0;
}

.shop .left h2 {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 40px;
}

.shop .left .single-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
}

.shop .left .single-choice .checkbox {
    border-radius: 100%;
    border: 1px solid var(--secondary-color);
    width: 12px;
    height: 12px;
    display: flex;
    overflow: hidden;
    padding: 2px;
}

.shop .left .single-choice .checkbox .inner {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.shop .left .single-choice .checkbox .inner.selected {
    background-color: var(--secondary-color);
}

.shop .left .single-choice img {
    width: 40px;
    height: 40px;
}

.shop .left .single-choice p {
    line-height: 1;
    font-size: 18px;
}

.shop .left .single-choice .online {
    margin-top: 5px;
    font-size: 14px;
    color: var(--secondary-color);
}

/* Right */

.shop .right {
    width: calc(100% - 340px);
    padding: 40px;
    padding-right: 0;
    padding-top: 0;
}

.shop .right>h2 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.shop .right .products {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.shop .right .product {
    width: calc(100% / 2);
    padding: 15px;
}

.shop .right .product>div {
    border: 1px solid #CCC;
    border-radius: 15px;
    overflow: hidden;
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
}

.shop .right .product>div:hover {
    border: 1px solid white;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
    scale: 105%;
}

.shop .right .product img {
    height: 280px;
    width: 100%;
    object-fit: contain;
    border-bottom: 2px solid var(--secondary-color);
}

.shop .right .product .info {
    padding: 15px;
    color: var(--primary-color);
}

.shop .right .product h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.shop .right .product .price {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop .right .product .price p {
    padding-right: 10px;
    color: var(--secondary-color);
    font-weight: 700;
}

.shop .right .product .price .btn {
    text-align: center;
}

@media screen and (max-width: 1170px) {
    .shop .right .product .price {
        flex-direction: column;
        align-items: flex-end;
    }
}

@media screen and (max-width: 950px) {
    .main-container {
        padding-top: 0;
    }

    .shop {
        flex-direction: column;
    }

    .shop .left {
        width: 100%;
        border-right: unset;
        padding: 0;
    }

    .shop .left .zauntypen {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .shop .left .kategorien,
    .shop .left .h2kategorien {
        display: none !important;
    }

    .shop .right {
        width: 100%;
        padding: 0;
    }

}

@media screen and (max-width: 600px) {
    .shop .right .product {
        width: 100%
    }
}

@media screen and (max-width: 500px) {
    .shop .left .zauntypen {
        display: block;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
}