﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

    .product-item .tag {
        all: unset; /* This will remove all inherited and applied styles */
        position: absolute;
        top: 0;
        left: 0;
        font-size: 16px;
        font-weight: 600;
        color: #001C32;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 24px;
        padding: 1px 14px;
        width: 84px;
        height: 22px;        
    }

        .product-item .tag[data-tag-type="zapchoice"], .product-item .tag[data-tag-type="smartshop"] {
            cursor: pointer;
        }

        .product-item .tag:hover + .tooltiptext {
            visibility: visible;
        }

.best-seller .tag {
    background-color: #3ebf85;
}

.zap-choice .tag {
    background-color: #fba01a;
}

.price-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 180px;
}

    .price-info .discount {
        font-size: 14px;
        background-color: #F54100;
        color: #fff;
        border-radius: 3px;
        padding: 4px;
        font-weight: bold;
    }

    .price-info .old-price {
        font-size: 14px;
        color: #888;
        text-decoration: line-through;
        display: block;
    }

    .price-info .new-price {
        display: inline-block;
    }

        .price-info .new-price .price {
            font-size: 36px;
            font-weight: 700;
            color: #001C32;
        }

    .price-info .final-price {
        display: inline-block;
    }

        .price-info .final-price .price-final {
            font-size: 12px;
            font-weight: 400;
            color: #444749;
        }

        .price-info .final-price .remark-final {
            display: inline-block;
            font-size: 12px;
            font-weight: 400;
            color: #444749;
        }

    .price-info .new-price .remark {
        display: inline-block;
        font-size: 20px;
        font-weight: 600;
        color: #001C32;
    }

    .price-info .new-price.personal .price {
        font-size: 23px;
    }

    .price-info .new-price.personal .remark {
        display: none;
    }

    .price-info .shipping {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
        color: #444749;
    }

    .price-info [data-servicelocation] {
        display: block;
        font-size: 12px;
        color: #444749;
    }

    .price-info [data-servicelocation] {
        display: flex;
        gap: 5px;
    }

    .price-info [data-servicelocation] {
        margin-top: 1px;
    }

    .price-info .no-shipping {
        font-size: 12px;
        font-weight: 400;
        color: #6C6C6C;
        display: flex;
        gap: 5px;
        margin-top: 2px;
        cursor: pointer;
    }

        .price-info .no-shipping .tooltiptext {
            width: max-content;
        }

        .price-info .no-shipping .tooltip-icon {
            width: 12px;
            height: 12px;
        }

    .price-info .shipping.tzimmer-price {
        color: #FFFFFF;
        background-color: #001C32;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 700;
        padding: 4px;
        width: max-content;
    }

    .price-info [data-supplyperiod] {
        font-size: 12px;
        margin-top: 4px;
        color: #001C32
    }

.compare-item-details {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
    min-height: 70px;
    margin: 22px 0;
    border-right: 1px solid #E5E6E5;
    padding-right: 26px;
}

.product-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 41%;
    padding: 20px 20px;
    text-align: right;
    min-height: 112px;
}

    .product-details.hide {
        display: none;
    }

.cell2.height, .compare-item-details.height {
    height: 70px;
    margin: 20px 0;
}

.compare-item-details.height {
    border-right: 0;
}

.product-details .group-title span, .product-details .official-importer-title span, .product-details .parallel-import-title span {
    font-size: 12px;
    font-weight: 700;
    color: #001C32;
}

.product-details .product-name {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #001C32;
}

.product-details .product-description {
    color: #444749;
    overflow: hidden;
    max-height: 72px;
    letter-spacing: 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-align: right;
    font-size: 14px;
}

.product-details .tags-list {
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}

    .product-details .tags-list .param {
        display: flex;
        gap: 5px;
        font-size: 16px;
        font-weight: 400;
        color: #001C32;
    }

.rating {
    font-size: 20px;
    color: #001C32;
}

    .rating .rate {
        font-weight: 700;
    }

    .rating .rate-count {
        font-weight: 400;
    }

.store {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
    color: #333;
    width: 120px;
    margin-right: 5px;
}

    .store [data-href] {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .store img {
        width: 114px;
        height: 50px;
    }

    .store .provided-by {
        font-size: 12px;
        font-weight: 400;
        text-align: right;
        color: #6C6C6C;
    }

.cell2 {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin: 21px 0;
}

    .cell2 .star-wrp {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background-color: #FCB912;
        border-radius: 4.57px;
    }

    .cell2 .smart-shop {
        cursor: pointer;
        position: relative;
    }

        .cell2 .smart-shop .tooltiptext {
            top: auto;
            left: auto;
        }

        .cell2 .smart-shop:hover + .tooltiptext {
            visibility: visible;
            top: 68px;
            right: 162px;
        }

.cell2 {
    border-left: 1px solid #E5E6E5;
}

    .cell2 .last-year-scores,
    .cell2 .total-scores,
    .cell2 .write-review {
        color: #6C6C6C;
        font-size: 12px;
        font-weight: 400;
        text-decoration: underline;
        display: block;
        letter-spacing: 0;
        text-align: right;
    }

.write-review
{
    cursor:pointer;
}

.details-button, .buy-button {
    display: block;
    width: 167px;
    height: 40px;
    line-height: 40px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
}

.details-button {
    background-color: #B1CCFF;
    color: #052C7B;
}

.buy-button {
    background-color: #001C32;
    color: #fff;
}

.title-strip {
    display: flex;
    position: relative;
    place-items: center;
    margin: 20px 0;
}

.model-page-storelist .title-strip h2 {
    padding: 0;
    margin: 0;
}

.product-list .rate-count-wrp {
    display: flex;
    gap: 5px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

/*.model-page-storelist .geo-tooltip {
    width: 70%;
    font-size: 13px;
    position: fixed;
    top: 220px;
    right: calc(15% - 10px);
    z-index: 1000;
    box-shadow: 0px 0px 15px 4px #888888;
    background-color: white;
    padding: 10px;
    display: none;
}

    .model-page-storelist .geo-tooltip .geo-close {
        display: inline-block;
        float: left;
        position: relative;
        width: 14px;
        height: 14px;
        cursor: pointer;
    }

        .model-page-storelist .geo-tooltip .geo-close:before, .model-page-storelist .geo-tooltip .geo-close:after {
            content: '';
            height: 14px;
            width: 2px;
            background-color: #000;
            position: absolute;
            top: 0;
            left: 0;
        }

        .model-page-storelist .geo-tooltip .geo-close:before {
            transform: rotate( 45deg );
        }

        .model-page-storelist .geo-tooltip .geo-close:after {
            transform: rotate( -45deg );
        }

    .model-page-storelist .geo-tooltip .geo-title {
        font-size: 16px;
        font-weight: bold;
        color: #007F90;
    }*/

.product-list .product-details .distance {
    position: absolute;
    top: -1px;
    font-size: 14px;
    color: #5E5E5E;
    line-height: 14px;
    display: none;
    text-align: right;
}

.product-list .group-wraper {
    display: flex;
    padding-left: 8px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product-list .product-details .distance:before {
    content: '';
    width: 10px;
    height: 17px;
    background-size: contain;
    display: inline-block;
    position: relative;
    top: 4px;
    background-color: #5E5E5E;
    -webkit-mask: url(https://img.zap.co.il/imgs/zapmobile/svg/room_black_18dp.svg) no-repeat center;
    mask: url(https://img.zap.co.il/imgs/zapmobile/svg/room_black_18dp.svg) no-repeat center;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    margin-left: 3px;
}

.model-page-storelist .to-all-stores-wrp {
    display: flex;
    height: 40px;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: var(--White, #FFF);
    box-shadow: 0px 7px 9px 0px rgba(103, 164, 255, 0.29);
    width: 285px;
    margin-top: 15px;    
    float: left;
}

.model-page-storelist .toAllStoresBtn {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    color: #001C32;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

    .model-page-storelist .toAllStoresBtn img {
        width: 16px;
        height: 16px;
    }

/*.model-page-storelist .toAllStoresBtn .arrow-left {
        background-color: #fff;
        -webkit-mask: url(https://img.zap.co.il/imgs/zapmobile/svg/arrow-left-white.svg) no-repeat center;
        mask: url(https://img.zap.co.il/imgs/zapmobile/svg/arrow-left-white.svg) no-repeat center;
        -webkit-mask-size: 18px;
        mask-size: 18px;
        width: 18px;
        height: 18px;
        margin-right: 2px;
        display: inline-block;
        vertical-align: sub;
    }*/

.model-page-storelist h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 21px;
    color: #000;
    text-align: right;
}

.add-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F6F6;
    border-radius: 20px 0px 24px 0px;
    padding: 2px 16px;
    width: 112px;
    height: 24px;
    color: #444749;
    font-weight: 600;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
}

.model-page-storelist .compare-item-row.OfflineStoreLine_selected {
    border: 2px solid #001C32;
}

.model-page-storelist .compare-item-row[data-parent-group] .product-name {
    display: inline-block;
}

.model-page-storelist .compare-item-row[data-parent-group] .titles {
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-page-storelist .compare-item-row .titles .all-stores {
    font-size: 18px;
    font-weight: 400;
    flex-grow: 1;
    align-items: self-start;
    color: #0044FF;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
}

    .model-page-storelist .compare-item-row .titles .all-stores small {
        border-left: 1px solid #001C32;
        border-bottom: 1px solid #001C32;
        width: 10px;
        height: 10px;
        display: inline-block;
        transform: rotate( -45deg );
        vertical-align: middle;
        margin-right: 7px;
        margin-top: -4px;
    }

.product-list .november-sale {
    display: inline-flex;
    align-items: center;
    background-color: #001c32;
    color: #fff;
    width: max-content;
    height: 20px;
    padding: 0 5px;
    line-height: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1
}

    .product-list .november-sale .separator {
        color: #fff;
        margin: 0 8px; /* Space around the separator */
    }

.product-list .november-sale-tag {
    height: 20px;
    width: max-content;
    line-height: 20px;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.product-list .november-sale .november-sale-ico {
    border: 0;
}

.product-list .rating-stars {
    width: 80px;
    height: 16px;
    background-color: #000;
    background: url(https://img.zap.co.il/imgs/stars/model/star_gray.svg) repeat-x right transparent;
    background-size: 16px 16px;
    margin-left: 5px;
    display: inline-block;
    float: right;
    cursor: pointer;
}

    .product-list .rating-stars span {
        height: 16px;
        background: url(https://img.zap.co.il/imgs/stars/model/star_yellow.svg) repeat-x right transparent;
        background-size: 16px 16px;
        display: block;
    }

.product-list .provided-by-wrp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

    .product-list .provided-by-wrp .rating-stars-mp {
        display: flex;
        height: 12px;
        justify-content: center;
        align-items: center;
        gap: 4px;
        color: #001C32;
        font-weight: 700;
        font-size: 12px;
    }

        .product-list .provided-by-wrp .rating-stars-mp span {
            height: 12px;
            width: 12px;
            background: url(https://img.zap.co.il/imgs/svg/star_yellow.svg) no-repeat;
            background-size: 12px 12px;
        }

.product-list .cell2 .rate {
    color: #001C32;
    font-size: 16px;
    font-weight: 400;
}

.compare-items-wrapper .product-list {
    margin-top: 20px;
}

.model-page .disclaimer {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 7px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.clear-selected-filter {
    font-size: 15px;
    margin-top: -1px;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
}


.distance-wrapper .distance:before {
    content: '';
    width: 16px;
    height: 16px;
    background-size: contain;
    display: inline-block;
    position: relative;
    top: 4px;
    background-color: #5E5E5E;
    -webkit-mask: url(https://img.zap.co.il/imgs/svg/location.svg) no-repeat center;
    mask: url(https://img.zap.co.il/imgs/svg/location.svg) no-repeat center;
    -webkit-mask-size: 16px;
    mask-size: 16px;
    margin-left: 3px;
}

.tag-container {
    display: flex;
    position: absolute;
    top: -8px;
    right: 15px;
    gap:3px;
}

.distance-wrapper .distance {
    color: var(--Black, #001C32);
    text-align: right;
    leading-trim: both;
    text-edge: cap;
    font-family: Assistant;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 2px 4px 2px 8px;
    line-height: 22px;
}

.distance-wrapper {
    border-radius: 4px;
    background: var(--Gray4, #F6F6F6);
    height: 20px;    
    display: inline-flex;    
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    
}


.site-details .distance-wrapper .distance {
}

.site-details .distance-wrapper {
    position: static;
    top: auto;
    margin-right: 6px;
}


.product-indicators-wrapper {
    position: relative;
    width: 100%;
}

.product-indicators {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    pointer-events: auto; /* Change from none to auto */
    gap: 12px;
    align-items: center;
}

    .product-indicators::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.indicator-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 400;
    color: #001C32;
    white-space: nowrap;
    flex-shrink: 0; /* Prevent items from shrinking */
}

    .indicator-item img {
        flex-shrink: 0;
        vertical-align: middle;
        width: 16px;
        height: 16px;
    }