/* Tabs */
.cpp-tabs-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    padding: 28px 0px;
    border-bottom: 1px solid #0079be;
    border-top: 1px solid #0079be;
}

.cpp-tabs-nav li {
        cursor: pointer;
    padding: 12px 26px;
    background: #000;
    border-radius: 24px;
    border: 1px solid #007CC1;
    font-family: "Montserrat", Sans-serif;
    color: #fff;
	font-size: 15px;
}

.cpp-tabs-nav li.active {
    background: #007cc1;
    color: #fff;
}

.cpp-tab-content {
    display: none;
}

.cpp-tab-content.active {
    display: block;
}

/* Grid */
.cpp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Product Card */
.cpp-product-card {
    border: 0px solid #eee;
    border-radius: 0px;
    overflow: hidden;
    background: transparent;
}

.cpp-product-image img {
    width: 100%;
    height: auto !important;
	border-radius: 20px !important;
}



/* Info Section */
.cpp-product-info {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
}

.cpp-product-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
    font-weight: normal;
}

.cpp-sale-price {
    color: #d63638;
    font-weight: bold;
    display: block;
}

.cpp-regular-price {
        color: #ffffff;
    display: block;
    font-size: 14px;
}

.cpp-enquire-btn {
    background: #000;
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.cpp-enquire-btn:hover {
    background: #007cc1;
  color: #fff;
  border-color: #007cc1;
}

.cpp-tab-heading {
    color: #fff;
    font-size: 26px;
    margin-bottom: 32px;
    font-weight: 400;
    margin-top: 40px;
}

.cpp-right {
    padding-top: 6%;
}

/* Mobile */
@media (max-width: 768px) {
    .cpp-products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
	
	.cpp-tabs-nav {
		    overflow-y: scroll;
		    padding: 16px 0px;
	}
	
	.cpp-tabs-nav li{
		text-wrap: nowrap;
		padding: 9px 18px;
		font-size: 13px;
	}
}


