.shop-box-2-gifts {
    margin: 20px auto;
    text-align: center;
    max-width: 1200px;
    padding: 20px;
}
h2.shop-box-2-gifts-title {
    font-size: 24px;
    margin-bottom: 50px;
}
.shop-box-2-gifts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.shop-box-2-gift {
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.shop-box-2-gift-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.shop-box-2-gift-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin: auto;
    width: 190px;
}

@media (max-width: 1200px) {
    .shop-box-2-gift {
        width: 250px;
    }
    .shop-box-2-gift-img {
        /*width: 130px;*/
        /*height: 130px;*/
    }
}
@media (max-width: 768px) {
    .shop-box-2-gift {
        width: calc(100% / 3 - 10px);
        padding: 0;
        overflow-wrap: break-word;
    }
    .shop-box-2-gifts-container {
        justify-content: center;
    }
    .shop-box-2-gift-img {
        width: 80px;
        height: 80px;
    }
    .shop-box-2-gift-text {
        font-size: 10px;
        width: 90%;
        font-weight: 600;
    }
}



/*  newItems  */
.home-section-new-items h2 {
    font-size: 24px;
}
.home-section-new-items .item-list-container {
    max-height: unset;
}
.home-section-new-items .item-list {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /*max-height: calc((100vw / 5 - 10px) * 1.25 * 4);*/
}
.home-section-new-items .item-list .shop-item {
    width: calc((100% - 20px) / 6 - 10px);
    padding-top: calc(((100% - 20px) / 6) * 1.25 - 10px + 80px);
}
.home-section-new-items .shop-item-price {
    display: block;
}
.home-section-new-items .home-page-footer-bar {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .home-section-new-items h2 {
        font-size: 18px;
    }
    .home-section-new-items .item-list .shop-item {
        /*width: calc((100% - 5px) / 3 - 5px);*/
        /*padding-top: calc(((100% - 5px) / 3) * 1.25 - 5px);*/
        width: calc((100% - 5px) / 2 - 5px);
        padding-top: calc(((100% - 5px) / 2) * 1.25 - 5px + 80px);
    }
    .shop-item .item-img {
        height: calc(100% - 90px);
    }
    .home-section-new-items .shop-item-rating {
        display: none;
    }
}



.shop-box-filter-line {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    /*background-color: #f9f9f9;*/
    /*border-bottom: 1px solid #ddd;*/
    /*overflow-x: auto;*/
}
.shop-box-filter-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-box-filter-btn,
.shop-box-filter-btn-toggle {
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
}
.shop-box-filter-btn {
    border: 1px solid #ddd;
    background-color: #fff;
}
.shop-box-filter-btn-toggle {
    border: 1px solid #ddd;
    background-color: #f0f0f0;
}
.shop-box-filter-btn-toggle.highlight {
    background-color: #b9d2ea;
    border-color: #b9d2ea;
    color: #000000;
}
.shop-box-filter-btn-toggle.active {
    background-color: #e0f0ff;
    border-color: #007bff;
    color: #007bff;
}
.shop-box-filter-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}
.shop-box-filter-panel.show {
    transform: translateX(0);
}
.shop-box-filter-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #f5f5f5;
}
.shop-box-filter-close {
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
}
.shop-box-filter-panel-body {
    padding: 15px;
}
.shop-box-filter-section {
    margin-bottom: 20px;
}
.shop-box-filter-section h4 {
    margin-bottom: 10px;
}
.shop-box-filter-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-box-filter-section ul li {
    margin-bottom: 5px;
}
.shop-box-filter-apply {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.shop-box-filter-apply:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .shop-box-filter-line {
        /*overflow-x: scroll;*/
    }
    .shop-box-filter-panel {
        width: 100%;
    }
}


.price-filter {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 20px auto;
}

.price-filter .primary-btn {
    background-color: #000000;
    padding: 10px 15px;
    border-radius: 20px;
    height: unset;
}
.price-filter .secondary-btn {
    background-color: #FFFFFF;
    color: #444444;
    border: 1px solid #444444;
    padding: 10px 15px;
    border-radius: 20px;
    height: unset;
}
.price-filter-header h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.price-filter-container {
    position: relative;
    width: calc(100%);
    margin: auto;
    margin-top: 10px;
}
.price-histogram {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 1px;
    margin-bottom: 10px;
    position: relative;
    /*background: #e6e6e6;*/
    overflow: hidden;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
}
.price-histogram div {
    width: 100%;
    /*max-width: 20px;*/
    background-color: black;
    transition: height 0.2s;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.price-slider {
    position: relative;
    display: flex;
    height: 35px;
    margin-top: -24px;
    margin-left: -10px;
    margin-right: -10px;
}
.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    z-index: 2;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    -webkit-appearance: none;
    background-color: #FFFFFF;
}
.price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.price-slider input[type="range"]::-ms-thumb {
    pointer-events: all;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.price-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    z-index: 2;
}
.price-slider input[type="range" i] {
    color: #FFFFFF;
}
.price-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 50%;
    border: 2px solid white;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 3;
}
.price-slider input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    z-index: 3;
}
.price-labels {
    /*display: none; !* Hide values *!*/
    justify-content: space-between;
    /*margin-top: 10px;*/
    font-size: 14px;
    display: flex;
    align-items: center;
}
.price-label {
    border-radius: 20px;
    border: 1px solid #d0d0d0;
    padding: 12px 25px;
}

@media (max-width: 768px) {
    .price-filter-container {
        width: calc(100% - 40px);
    }
    .price-filter .primary-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    .price-filter .secondary-btn {
        padding: 5px 10px;
        font-size: 12px;
    }
    .price-label {
        border: none;
        padding: 0;
        font-weight: 600;
    }
}


