.nl-groupement-produits {
    background: #faf7f0;
    border-radius: 12px;
    padding: 30px 25px 20px 25px;
    margin-bottom: 30px;
    max-width: 600px;
}
.nl-groupement-produits h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #7a5c2e;
    text-align: center;
}
.nl-groupement-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.nl-groupement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15em;
    background: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.nl-groupement-price {
    font-weight: 300;
    font-size: 1rem;
    color: #7a5c2e;
}
.nl-groupement-title {
    flex: 1 1 200px;
    font-weight: 300;
    color: #5a3d1b;
    font-size: 1rem;
}
.nl-groupement-item input[type="number"] {
    width: 48px;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 4px;
    border: 1px solid #d6c7b0;
    margin: 0 2px;
    padding: 2px 0;
    /* Masquer les flèches natives sur Chrome, Safari, Edge */
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: textfield;
}
/* Masquer les flèches sur Firefox */
.nl-groupement-item input[type="number"]::-webkit-outer-spin-button,
.nl-groupement-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.nl-groupement-item input[type="number"]::-moz-inner-spin-button,
.nl-groupement-item input[type="number"]::-moz-outer-spin-button {
    -moz-appearance: none;
    margin: 0;
}
.nl-qty-plus, .nl-qty-minus {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #EDE6D4;
    color: #5a3c1a;
    font-size: 24px;
    font-weight: bold;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.nl-qty-plus:hover, .nl-qty-minus:hover {
    background: #eeab00;
}

.nl-groupement-item .woocommerce-Price-amount {
    margin-left: 10px;
    font-weight: 600;
    color: #7a5c2e;
}
.nl-groupement-form .button.alt {
    margin: 20px auto 0 auto;
    display: block;
    background: #7a5c2e;
    color: #fff;
    border-radius: 10px;
    padding: 12px 40px;
    font-size: 1.1em;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.nl-groupement-form .button.alt:hover {
    background: #a07c4b;
}
/* Slide-in panel pour la quickview */
.nl-modal-overlay {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s;
}

.nl-modal-content {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 420px;
    max-width: 95vw;
    background: #fff;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}

.nl-modal-overlay.active .nl-modal-content {
    transform: translateX(0);
}

.nl-modal-close {
    position: absolute;
    top: 16px; right: 24px;
    background: none;
    border: none;
    font-size: 2em;
    color: #7a5c2e;
    cursor: pointer;
    z-index: 2;
}

.nl-modal-body {
    padding: 32px 24px 24px 24px;
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 120px;
}

.nl-modal-body .button.alt {
    display: block;
    background: #EDE6D4;
    color: #fff !important;
    border-radius: 10px;
    padding: 12px 40px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background 0.2s;
    margin: 20px auto 0 auto;
    max-width: fit-content;
}

.nl-modal-body .button.alt:hover {
    background: #eeab00;
}
