<style>

/* Custom multi-qty table styling */
.cmq-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
    background: #f7fff7;
    border: 1px solid #ddd;
}

.cmq-table th {
    background: #f0f9f0;
    font-weight: 600;
    padding: 12px;
    border-bottom: 2px solid #ccc;
}

.cmq-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.cmq-input {
    width: 50px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ccc;
    margin: 0 6px;
    border-radius: 4px;
}

.cmq-btn {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.2s;
}

.cmq-btn:hover {
    background: #3d8b40;
}

.cmq-total {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
}

.cmq-total span {
    color: #e53935;
}

#cmq-add-to-cart {
    display: block;
    width: 100%;
    background: #e53935;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

#cmq-add-to-cart:hover {
    background: #c62828;
}

</style>