.product-tab-4 .box-head {
    margin-bottom: 2rem;
}

.product-tab-4 .pt-tab-items {
    text-align: center;
}

.product-tab-4 .pt-tab-items li {
    display: inline-block;
    padding: 0 5px;
}

.product-tab-4 .box-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-tab-4 .box-sort select {
    width: 89%;
    appearance: none;
    border: none;
    font-size: 17px;
    color: #8b8a34;
    outline: 0;
	background-color: transparent;
}

.product-tab-4 .pt-tab-items .pt-item-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #7e7e7e;
    border-radius: 50px;
    color: #7e7e7e;
}

.product-tab-4 .pt-tab-items .active .pt-item-btn {
    background-color: #8b8a34;
    border-color: #8b8a34;
    color: #fff;
}

.product-tab-4 .box-search {
    width: 100%;
    height: 50px;
    position: relative;
}

.product-tab-4 .box-search input {
    width: 100%;
    box-shadow: none;
    border: 1px solid #7e7e7e;
    border-radius: 50px;
    height: 50px;
    padding: 10px 45px;
    font-size: 15px;
}

.product-tab-4 .box-search .s-btn {
    position: absolute;
    top: 17px;
    right: 17px;
    border: none;
    height: auto;
    padding: 0;
    margin: 0;
    background-color: transparent;
    box-shadow: none;
}

.product-tab-4 .product-cover {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tab-4 .product-cover img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: ease .15s;
}

.product-tab-4 .product-item:hover .product-cover img {
    transform: scale(1.2);
}

.product-tab-4 .pt-overly {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 25px;
    text-align: center;
    background: rgb(0,0,0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 50%) 60%);
}

.product-tab-4 .p-item-wrap .product-item {
    display: inline-block;
    background-color: #7e7e7e;
    width: 100%;
    border-radius: 36px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.product-tab-4 .p-title {
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
}

.product-tab-4 .p-item-price {
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

.product-tab-4 .item-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #8b8a34;
    border-radius: 50px;
    margin-top: 10px;
}

.product-tab-4 .pt-overly .item-main-btn svg {
    width: 24px;
    height: 24px;
}

.product-tab-4 .pt-overly .item-main-btn svg path {
    stroke: #fff;
    fill: #fff;
}

.product-tab-4 .product-item .p-excerpt {
    color: #fff;
    font-size: 14px;
}

.product-tab-4 .element-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: #f0f0f0;
    border-radius: 50px;
    height: 15px;
}

.product-tab-4 .element-pagination :is(span, a) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    border-radius: 50px;
    background: rgba(251, 193, 81, 1);
    color: #fff;
    padding: 10px;
    font-size: 17px;
}

.product-tab-4 .element-pagination span {
    background-color: rgba(139, 138, 52, 1);
    transform: scale(1.2);
}

.product-tab-4 .tab-foot {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .product-tab-4 .box-sort {
        justify-content: center;
    }

    .product-tab-4 .box-sort select {
        width: auto;
    }

    .product-tab-4 .box-head .row {
        gap: 15px;
    }

    .product-tab-4 .element-pagination {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
        border-radius: 5px;
    }
}