
.jaguh-product-grid {
    display: grid;
    gap: 10px;
}
.jaguh-grid-header, .jaguh-grid-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr;
    align-items: center;
    gap: 10px;
}
.qty-control {
    display: flex;
    align-items: center;
}
.qty-control button {
    padding: 5px;
    font-size: 16px;
}
.qty-input {
    width: 50px;
    text-align: center;
    margin: 0 5px;
}
.order-btn {
    background: #25D366;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s ease;
}
.order-btn:hover {
    background: red;
    color: white;
}
.order-btn.disabled {
    background: grey !important;
    pointer-events: none;
    opacity: 0.6;
}
#order-summary {
    background: #f7f7f7;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
}
