:root {
    --desktop-orange: #F58220;
    --desktop-green: #006B3F;
    --desktop-white: #ffffff;
    --desktop-bg: #f8faf9;
    --desktop-text: #2d3436;
}

body { 
    background-color: var(--desktop-bg); 
    font-family: 'Segoe UI', Roboto, Helvetica, sans-serif;
    color: var(--desktop-text);
}

/* Conteneur large centré */
.desktop-accueil-container, .desktop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- SECTION MENU --- */
.desktop-menu-header {
    background: var(--desktop-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.desktop-menu-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-menu-logo { height: 70px; }

.desktop-menu-nav {
    display: flex;
    gap: 40px;
}

.desktop-menu-nav-link {
    text-decoration: none;
    color: var(--desktop-text);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: 0.3s;
}

.desktop-menu-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--desktop-orange);
    transition: 0.3s;
}

.desktop-menu-nav-link:hover:after { width: 100%; }
.desktop-menu-nav-link:hover { color: var(--desktop-green); }

.desktop-menu-nav-link-actif:after { width: 100%; transition: 0s; }

.desktop-menu-cart-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    background: var(--desktop-orange);
    padding: 3px 8px;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    display: none;
}

/* --- SECTION CORPS (ACCUEIL) --- */
.desktop-accueil-hero {
    background: linear-gradient(135deg, var(--desktop-green), #004d2e);
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
    overflow: hidden;
}

.desktop-accueil-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.desktop-accueil-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.desktop-accueil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.desktop-accueil-card a { text-decoration: none; color: inherit; }

.desktop-accueil-price { 
    color: var(--desktop-green); 
    font-weight: 800; 
    font-size: 1.4rem;
    margin: 15px 0;
}

.desktop-accueil-action-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-accueil-btn-add {
    background: var(--desktop-orange);
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.desktop-accueil-btn-add:hover { background: #e67616; }

.desktop-share-site-btn {
    background: #006B3F;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.desktop-share-site-btn:hover { background: #004d2e; }

/* Bouton "Difficultés pour commander" — hero (haut de page) */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}
.btn-whatsapp:hover { background: #1ebe57; color: white; }

/* Carte "Difficultés pour commander" — bas de page */
.desktop-difficulte-commande-card {
    max-width: 500px;
    margin: 50px auto 20px;
    padding: 30px;
    text-align: center;
    background: #f7fdf9;
    border: 1px solid #d8f0e3;
    border-radius: 16px;
}
.desktop-difficulte-commande-card i { font-size: 2.5rem; color: #25D366; margin-bottom: 12px; }
.desktop-difficulte-commande-card p { font-weight: 600; color: #333; margin-bottom: 16px; }
.desktop-difficulte-commande-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.desktop-difficulte-commande-btn:hover { background: #1ebe57; color: white; }

.desktop-accueil-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f3f5;
    border-radius: 12px;
    padding: 8px;
}

.desktop-accueil-qty-btn {
    background: var(--desktop-green);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: 0.2s;
}

.desktop-accueil-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.desktop-accueil-comment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

/* --- SECTION FOOTER --- */
.desktop-footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 30px;
}

.desktop-footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    background: white;
    border-radius: 5px;
    padding: 5px;
}


/* --- SECTION DÉTAILS (desktop-detail-...) --- */
.desktop-detail-main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: start;
}

/* Image DÉTAILS */
.desktop-detail-gallery-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: sticky;
    top: 130px;
}
.desktop-detail-main-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s;
}
.desktop-detail-gallery-card:hover .desktop-detail-main-img { transform: scale(1.05); }

/* Infos DÉTAILS */
.desktop-detail-badge {
    display: inline-block;
    background: rgba(0, 107, 63, 0.08);
    color: var(--desktop-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.desktop-detail-title { font-size: 3rem; font-weight: 800; margin-bottom: 10px; }
.desktop-detail-price { font-size: 2.5rem; font-weight: 800; color: var(--desktop-green); margin-bottom: 30px; }

/* Action Box DÉTAILS */
.desktop-detail-purchase-zone {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.desktop-detail-qty-group {
    display: flex;
    align-items: center;
    border: 2px solid #f1f1f1;
    border-radius: 15px;
    padding: 5px;
}
.desktop-detail-qty-btn {
    width: 45px; height: 45px; border: none; background: none;
    font-size: 1.2rem; color: var(--desktop-green); font-weight: bold;
}
.desktop-detail-qty-val { width: 50px; text-align: center; font-weight: 800; font-size: 1.2rem; }

.desktop-detail-btn-add {
    flex-grow: 1;
    background: var(--desktop-orange);
    color: white; border: none;
    border-radius: 15px; font-weight: 700; font-size: 1.1rem;
    transition: 0.3s;
}
.desktop-detail-btn-add:hover { background: #d36a10; transform: translateY(-2px); }

/* Bloc Technique (Composition / Mode d'emploi) DÉTAILS */
.desktop-detail-technical-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
.desktop-detail-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    border-top: 5px solid var(--desktop-green);
}
.desktop-detail-info-card h5 { font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.desktop-detail-info-card p, .desktop-detail-info-card li { font-size: 1.05rem; color: #555; line-height: 1.8; }

/* Similaires */
.desktop-detail-section-title { font-size: 2rem; font-weight: 800; margin-bottom: 40px; text-align: left; }
.desktop-detail-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* Avis DÉTAILS */
.desktop-detail-reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}
.desktop-detail-review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    transition: 0.3s;
}
.desktop-detail-review-card:hover { border-color: var(--desktop-green); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }


/* --- STYLES PANIER (desktop-panier-...) --- */

.desktop-panier-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.desktop-panier-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    align-items: start;
}

.desktop-panier-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* .desktop-panier-card-mb{
    margin-bottom: 30px;
} */

.desktop-panier-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 50px;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.desktop-panier-item:last-child { border-bottom: none; }

.desktop-panier-img {
    width: 80px; height: 80px;
    object-fit: cover; border-radius: 12px;
}

.desktop-panier-qty-controls {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border-radius: 10px;
    padding: 5px;
    justify-content: space-between;
}

.desktop-panier-btn-qty {
    border: none; background: none;
    width: 30px; height: 30px;
    color: var(--desktop-green);
    font-weight: bold;
}

.desktop-panier-remove {
    color: #ff7675;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.desktop-panier-remove:hover { color: #d63031; transform: scale(1.2); }

/* --- SUIVI DE DOSSIER --- */
.desktop-panier-tracking-box {
    background: #eef7f2;
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    border: 1px dashed var(--desktop-green);
}

.desktop-panier-search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.desktop-panier-input {
    flex-grow: 1;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    outline: none;
}

.desktop-panier-input:focus { border-color: var(--desktop-green); }

.desktop-panier-btn-search {
    background: var(--desktop-green);
    color: white; border: none;
    padding: 0 20px; border-radius: 10px;
}

/* Simulation Étapes Dossier */
.desktop-panier-steps {
    list-style: none; padding: 0; position: relative;
}

.desktop-panier-step-item {
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
    color: #999;
}

.desktop-panier-step-item.active { color: var(--desktop-green); font-weight: bold; }

.desktop-panier-step-item::before {
    content: '';
    position: absolute; left: 0; top: 5px;
    width: 15px; height: 15px;
    background: #ddd; border-radius: 50%;
}

.desktop-panier-step-item.active::before { background: var(--desktop-green); box-shadow: 0 0 10px rgba(0,107,63,0.4); }

/* Résumé commande */
.desktop-panier-summary-title { font-weight: 800; margin-bottom: 20px; }
.desktop-panier-total-row {
    display: flex; justify-content: space-between;
    font-size: 1.4rem; font-weight: 800;
    margin: 20px 0; border-top: 2px solid #eee; padding-top: 20px;
}

.desktop-panier-btn-checkout {
    background: var(--desktop-orange);
    color: white; border: none; width: 100%;
    padding: 18px; border-radius: 12px;
    font-weight: 800; font-size: 1.2rem;
    transition: 0.3s;
}
.desktop-panier-btn-checkout:hover { background: #d36a10; transform: translateY(-3px); }


/* --- A PROPOS (DESKTOP) --- */
.desktop-a-propos-container {
    padding: 60px 10%;
    background-color: #f9f9f9;
}
.desktop-a-propos-hero {
    text-align: center;
    margin-bottom: 50px;
}
.desktop-a-propos-hero h2 {
    color: #006B3F;
    font-size: 2.5rem;
}
.desktop-a-propos-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.desktop-a-propos-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #F58220;
    display: inline-block;
    padding-bottom: 5px;
}
.desktop-a-propos-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}
.desktop-a-propos-card {
    background: #f4f7f6;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}
.desktop-a-propos-card:hover {
    transform: translateY(-5px);
}
.desktop-a-propos-whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}
.desktop-a-propos-whatsapp-btn:hover {
    background: #1ebc5a;
    color: white;
}
/* --- COMMENTAIRE (DESKTOP) --- */
.desktop-commentaire-container {
    padding: 60px 5%;
    background-color: #f4f7f6;
    min-height: 80vh;
}
.desktop-commentaire-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.desktop-commentaire-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}
.desktop-commentaire-suggestion-item:hover {
    background-color: #f0f0f0;
}


/* Conteneur principal (Layout flexbox pour mettre le menu à gauche et le contenu à droite) */
.desktop-admin-layout {
    display: flex;
    min-height: 100vh; /* Ajustable selon l'intégration dans votre site */
    background-color: #f4f7f6;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* --- STYLES DU MENU VERTICAL (desktop-admin-) --- */
.desktop-admin-sidebar {
    width: 260px;
    background-color: #1c2833;
    color: white;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.desktop-admin-header {
    padding: 25px 20px;
    text-align: center;
    background: rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.desktop-admin-brand {
    color: #F58220; /* Orange du thème */
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.desktop-admin-menu-list {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex-grow: 1;
}

.desktop-admin-link {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #bdc3c7;
    text-decoration: none;
    border-left: 4px solid transparent;
    font-weight: 500;
    transition: all 0.2s;
}

.desktop-admin-link:hover, .desktop-admin-link.desktop-admin-active {
    background-color: #2c3e50;
    color: white;
    border-left-color: #F58220;
}

.desktop-admin-icon {
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* --- STYLES DU CORPS UTILISATEUR (desktop-utilisateur-) --- */
.desktop-utilisateur-wrapper {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}

.desktop-utilisateur-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.desktop-utilisateur-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    overflow: hidden;
}

.desktop-utilisateur-card-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 25px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.desktop-utilisateur-card-body {
    padding: 25px;
}

.desktop-utilisateur-table {
    width: 100%;
    border-collapse: collapse;
}

.desktop-utilisateur-table th {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-align: left;
}

.desktop-utilisateur-table td {
    vertical-align: middle;
    padding: 15px;
    color: #444;
    border-bottom: 1px solid #f9f9f9;
}

.desktop-utilisateur-badge-admin { background-color: #8e44ad; color: white; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.desktop-utilisateur-badge-user { background-color: #3498db; color: white; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; display: inline-block; }
.desktop-utilisateur-badge-active { background-color: #e8f5e9; color: #2e7d32; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.desktop-utilisateur-badge-inactive { background-color: #ffebee; color: #c62828; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }

.desktop-utilisateur-btn-brand {
    background-color: #006B3F; /* Vert du thème */
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    width: 100%;
    cursor: pointer;
}
.desktop-utilisateur-btn-brand:hover {
    background-color: #005230;
}

.desktop-utilisateur-form-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.desktop-utilisateur-form-control {
    width: 100%;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
}
.desktop-utilisateur-form-control:focus {
    border-color: #006B3F;
}


/* --- STYLES DU CORPS PRODUIT (desktop-produit-) --- */
.desktop-produit-wrapper {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}

.desktop-produit-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.desktop-produit-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    overflow: hidden;
}

.desktop-produit-card-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 25px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.desktop-produit-card-body {
    padding: 25px;
}

.desktop-produit-img-placeholder {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dce1e6;
    cursor: pointer;
    transition: all 0.2s;
}

.desktop-produit-table {
    width: 100%;
    border-collapse: collapse;
}

.desktop-produit-table th {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-align: left;
}

.desktop-produit-table td {
    vertical-align: middle;
    padding: 15px;
    color: #444;
    border-bottom: 1px solid #f9f9f9;
}

.desktop-produit-badge-success { background-color: rgba(46, 204, 113, 0.15); color: #2ecc71; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.desktop-produit-badge-warning { background-color: rgba(241, 196, 15, 0.15); color: #f39c12; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }

.desktop-produit-btn-brand {
    background-color: #006B3F;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    width: 100%;
    cursor: pointer;
}
.desktop-produit-btn-brand:hover {
    background-color: #005230;
}

.desktop-produit-form-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.desktop-produit-form-control {
    width: 100%;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
}
.desktop-produit-form-control:focus {
    border-color: #006B3F;
}

.desktop-produit-price { color: #006B3F; font-weight: bold; }
.desktop-produit-icon-box { width: 45px; height: 45px; background: #f0f0f0; border-radius: 10px; margin-right: 12px; display:flex; align-items:center; justify-content:center; }


/* Animation lors de la mise à jour d'une ligne */
@keyframes highlightRow {
    0% {
        background-color: rgba(243, 156, 18, 0.2);
    }

    100% {
        background-color: transparent;
    }
}

.row-updated td {
    animation: highlightRow 1.5s ease;
}


/* --- STYLES DU CORPS COMMANDE (desktop-commande-) --- */
.desktop-commande-wrapper {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}

.desktop-commande-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.desktop-commande-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 25px;
    overflow: hidden;
}

.desktop-commande-card-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 25px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
}

.desktop-commande-card-body {
    padding: 25px;
}

.desktop-commande-table {
    width: 100%;
    border-collapse: collapse;
}

.desktop-commande-table th {
    color: #7f8c8d;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 15px;
    border-bottom: 2px solid #f0f0f0;
    text-align: left;
}

.desktop-commande-table td {
    vertical-align: middle;
    padding: 15px;
    color: #444;
    border-bottom: 1px solid #f9f9f9;
}

.desktop-commande-badge-info { background-color: rgba(23, 162, 184, 0.15); color: #17a2b8; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.desktop-commande-badge-warning { background-color: rgba(255, 193, 7, 0.15); color: #d39e00; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }
.desktop-commande-badge-success { background-color: rgba(40, 167, 69, 0.15); color: #28a745; padding: 6px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 700; display: inline-block; }

.desktop-commande-btn-update {
    background-color: #ffc107;
    color: #212529;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    width: 100%;
    cursor: pointer;
}
.desktop-commande-btn-update:hover {
    background-color: #e0a800;
}

.desktop-commande-form-label {
    display: block;
    color: #888;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.desktop-commande-form-control {
    width: 100%;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
    outline: none;
}
.desktop-commande-form-control:focus {
    border-color: #ffc107;
}
.desktop-commande-form-control[readonly] {
    font-weight: bold;
    color: #0d6efd;
}

.desktop-commande-price { color: #006B3F; font-weight: bold; }
.desktop-commande-row-highlight { background-color: rgba(255, 193, 7, 0.05); }