.wpt-wrapper {
    padding: 60px 0;
}

.wpt-heading {
    text-align: center;
    font-size: 40px;
    margin-bottom: 30px;
}

.wpt-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.wpt-tabs button {
    border: none;
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    background: #fff;
    font-size: 14px;
    font-weight: bold;
}

.wpt-tabs button.active {
    background: #7521b4;
    color: #fff;
}

.wpt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.wpt-card {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    transition: all .3s ease;
}

/* .wpt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
} */

/* .wpt-custom-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff9800;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 9;
} */

/* Active Tab Hover */
.wpt-cart .button:hover,
.wpt-cart .button.active {
    background: #7521b4;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(106, 27, 185, .40);
}

/* No Products */

.wpt-no-products {
    text-align: center;
    font-size: 18px;
    padding: 30px;
    width: 100%;
}

.wpt-image img {
    width: 100%;
    object-fit: cover;
}

.wpt-title {
    font-size: 14px;
    margin: 15px 0;
    color: #333;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Maximum 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
}

.wpt-title a {
    text-decoration: none !important;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.wpt-price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
}

.wpt-cart .button {
    background: #7521b4;
    color: #fff;
    width: 100%;
    border-radius: 30px;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: block;
    transition: .3s;
    /* position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto; */
}

.wpt-view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.wpt-view-all-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #7521b4;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
}

.wpt-view-all-btn:hover {
    border: 2px solid #7521b4;
    background-color: #fff;
    color: #7521b4;
}


@media(max-width:991px) {
    .wpt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:420px) {
    .wpt-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    #wpt-products{
        min-height: auto;
    }
}

#wpt-products {
    min-height: 650px;
}

.wpt-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.wpt-image {
    height: 260px;
}

.wpt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpt-title {
    min-height: 60px;
}

.wpt-title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wpt-price {
    min-height: 40px;
}

.wpt-cart {
    margin-top: auto;
}


.wpt-loader-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:300px;
}

.wpt-loader{
    width:60px;
    height:60px;
    margin:40px auto;
    border:5px solid #7521b4;
    border-radius:50%;
    border-right-color:transparent;
    animation:wpt-spin .8s linear infinite;
}

@keyframes wpt-spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}