.vcpw-car-to-{
	flex-grow: 1;
}

.vcpw-wrapper{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}
.vcpw-categories{
    flex:0 0 10%;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.vcpw-cat-item{
    cursor:pointer;
    text-align:center;
    padding:5px;
    background:transparent;
    border-radius:12px;
    transition:background .3s;
    color:#fff;
}

.vcpw-cat-item.active,
.vcpw-cat-item:hover{
    background:#fff;
    color:#000;
}
.vcpw-cat-item img{
    border-radius:50%;
    width:100px;
    height:100px;
    object-fit:cover;
    margin-bottom:6px;
}
.vcpw-cat-name{
    display:block;
    font-size:14px;
}
.vcpw-products{
    flex:0 0 70%;
    min-width:250px;
}
.vcpw-product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(200px,1fr)) !important;
    gap:15px;
}
.vcpw-product-card{
   /* background: #050527; */
    padding:15px;
    border-radius:14px;
    text-align:center;
    color:#fff;
}
.vcpw-product-image img{
    border-radius:50%;
    width:100% !important;
    height:auto;
}
.vcpw-product-title{
    font-size:18px;
    margin-bottom: 5px !important;
    display: inline-block;
    font-weight: 500;
	line-height: 8px !important;
	text-align: left !important;
}
.vcpw-product-price{
    font-weight:700;
    color:#cfae54;
    display: inline-block;
    margin-left: 0px;
    vertical-align: middle;
}
.vcpw-loading{
    text-align:center;
    padding:40px 0;
    font-style:italic;
    color:#fff;
}
@media(max-width:768px){
    .vcpw-wrapper{
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .vcpw-categories{
        flex: 0 0 30%;
        flex-direction: column;
        overflow-x: visible;
        overflow-y: auto;
        max-height: 80vh;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }
    .vcpw-categories::-webkit-scrollbar {
        display: none;  /* Chrome, Safari, Opera */
    }
    .vcpw-cat-item{
        flex: none;
        min-width: auto;
        margin-bottom: 10px;
    }
    .vcpw-products{
        flex: 1 1 70%;
        min-width: auto;
    }
    .vcpw-product-price{
        text-align:right !important;
		vertical-align: middle !important;
    }
    .vcpw-product-title{
        text-align: left;
    }
    .vcpw-product-card{
        text-align: center !important;
    }
    .vcpw-product-description{
        text-align: center !important;
    }
}
p.vcpw-product-description{
    font-size: 9px;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0;
    padding: 0;    
}

.vcpw-add-to-cart {
    text-align: center;
    margin-top: 10px;
}

.vcpw-add-to-cart .button {
    background-color: #cfae54;
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.vcpw-add-to-cart .button:hover {
    background-color: #b5943f;
    color: #fff;
}

.vcpw-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.vcpw-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 8px;
    padding: 10px;
    box-sizing: border-box;
}

.vcpw-modal-image {
    max-width: 100%;
    max-height: 60vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
	padding-top: 80px;
}

.vcpw-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

.vcpw-modal-title {
    color: #fff;
    font-size: 24px;
    margin: 15px 0 10px;
    text-align: center;
}

.vcpw-modal-description {
    color: #ddd;
    font-size: 16px;
    margin: 0 0 15px;
    text-align: center;
}