/**
 * General
 */

@media (min-width: 768px) {
    .ws-flexRow {
        margin-right: -16px;
        margin-left: -16px;
    }
}

.webshop-breadcrumbs, /** We do not use the breadcrumbs of the webshop because guests do not have access to certain categories */
.webshop-back-link,
.wci-category-title,
.show-product-details,
.product-add-to-favorites,
.product-remove-from-favorites {
    display: none;/** Not in the design */
}

.product-quantity {
    position: absolute;
    left: -999em;
}

.categoryList,
.product-list,
.product-actions {
    margin: 0;
    padding: 0;
    list-style: none;
}

.webshop-products {
    margin-bottom: 80px;
}

.product-list > li {
    padding: 32px 0;
    border-bottom: 1px solid #ddd;
}

.product-list > li.last {
    border: 0;
}

/**
 * Category introduction
 */

.webshop-category-introduction {
    display: none;
}

/**
 * Category list
 */

.categoryList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 32px;
}

.categoryListItem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
    text-decoration: none;
}

.categoryList__title {
    font-size: 1.125em;
}

.categoryList__imageWrapper {
    order: -1;
}

.categoryListItem .link-to-category {
    font-family: 'adellesanscondensed', 'Arial Narrow', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.categoryListItem .link-to-category::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/**
 * List items / products
 */

.ws-image {
    display: block;
    text-align: center;
}

.ws-product__title {
    padding: 0;
    line-height: 1.08;
    font-size: 1.444em;
    color: inherit;
}

.ws-product_info {
    line-height: 1.333;
}

.ws-product__link {
    display: block;
    overflow: hidden;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    color: #E98734;
}

@media screen and (max-width: 767px) {
    .ws-detail__image {
        margin-bottom: 2em;
    }

    .ws-product__act {
        margin-top: 2em;
    }
}

/**
 * Detail/product page
 */

.ws-detail {
    margin-bottom: 80px;
}

.ws-detail__title {
    padding-top: 64px;
    font-style: normal;
    color: inherit;
}

.product-details-list {
    clear: left;
    overflow: hidden;
    font-weight: 600;
    color: #3f8bb7;
    margin-bottom: 32px;
}

.product-details-list dt,
.product-details-list dd {
    display: inline-block
}

.product-details-list dd {
    margin-right: 1em;
    margin-left: 0;
}

/**
 * .ws-buyingArea: price and actions
 * in overview and detail page
 */

.ws-buyingArea {
    margin-left: auto;
    display: table;
}

.ws-productPrice {
    display: block;
    margin-bottom: 1em;
    font-weight: 700;
    line-height: 1.08;
    font-size: 1.444em;
    /*color: #3f8bb7;*/
}

.ws-productPrice .action,
.ws-productPrice .regular {
    display: block;
}

.ws-productPrice .action {
    margin-bottom: 1.8em;
}

.ws-productPrice .regular {
    position: absolute;
    margin-top: 1.8em;
    font-weight: 600;
    font-size: 18px;
    text-decoration: line-through;
    color: #333;
}

.add-to-shopping-cart-link {
    position: relative;
    display: block;
    padding: .45em 1.5em;
    text-decoration: none;
    font-family: adellesansbold, Arial, Helvetica, sans-serif !important;
    color: #fff;
}

.add-to-shopping-cart-link::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 1.25em;
    box-shadow: 0 0 0 1px inset;
    background: #86bc25;
}

.add-to-shopping-cart-link:hover:before {
    background: #3333331A;
    box-shadow: 0 0 0 2px inset;
}

.add-to-shopping-cart-link img {
    position: absolute;
    right: 0;
}
