.ovcm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.ovcm-product {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 20px;
    background: #fff;
}

.ovcm-gallery img {
    width: 100%;
    border-radius: 12px;
}

.ovcm-thumbs {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.ovcm-thumb {
    width: 60px;
    cursor: pointer;
    border-radius: 8px;
}

.ovcm-price {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.ovcm-add {
    background: #000;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    border: none;
    cursor: pointer;
}
