.cwp-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    padding:40px 0;
}

.cwp-card {
    background:#0f0f0f;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
    transition:.3s;
}

.cwp-card:hover {
    transform:translateY(-6px);
}

.cwp-card-img img {
    width:100%;
    height:260px;
    object-fit:cover;
}

.cwp-card-body {
    padding:20px;
    text-align:center;
}

.cwp-title {
    color:#fff;
    font-size:18px;
    margin-bottom:10px;
}

.cwp-price {
    color:#ccc;
    margin-bottom:12px;
}

.cwp-variations {
    margin-bottom:15px;
}

.cwp-swatch {
    padding:8px 12px;
    margin:4px;
    border-radius:8px;
    border:1px solid #333;
    background:#1b1b1b;
    color:#fff;
    cursor:pointer;
    transition:.2s;
}

.cwp-swatch:hover,
.cwp-swatch.active {
    border-color:#ff2c6d;
    background:#ff2c6d;
}

.cwp-color {
    width:30px;
    height:30px;
    border-radius:50%;
    padding:0;
}

.cwp-buy,
.cwp-view {
    width:100%;
    display:block;
    padding:14px;
    border-radius:14px;
    font-weight:600;
    text-align:center;
    margin-top:12px;
    transition:.2s;
}

.cwp-buy {
    background:#ff2c6d;
    color:#fff;
    border:none;
}

.cwp-buy:hover {
    background:#ff165a;
}

.cwp-view {
    background:#ff2c6d;
    color:#fff;
    text-decoration:none;
}

.cwp-view:hover {
    background:#ff165a;
}

.cwp-buy:disabled {
    opacity:.4;
    cursor:not-allowed;
}



.cwp-view {
    display:block;
    margin-top:12px;
    color:#aaa;
    font-size:14px;
}

ul.products,
li.product {
    display:none !important;
}

.cwp-grid-wrapper {
    width:100%;
}

.cwp-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}
