/**
 * Styles pour l'interface d'édition Gutenberg seulement
 */

/* Prévisualisation dans l'éditeur */
.carte-produit-edit-preview {
    background: #f8f9fa !important;
    border: 2px dashed #dee2e6 !important;
    margin-bottom: 1.5rem;
    pointer-events: none;
}

.carte-produit-edit-preview .row {
    pointer-events: all;
}

/* Indication pour l'éditeur */
.carte-produit-edit-preview::before {
    content: 'Prévisualisation de la carte produit';
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
    font-style: italic;
    pointer-events: none;
}

/* Ajustements des contrôles */
.components-panel__body .components-base-control {
    margin-bottom: 1.5rem;
}

.components-panel__body .components-base-control__label {
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 0.5rem;
    display: block;
}

.components-panel__body .components-text-control__input,
.components-panel__body .components-textarea-control__input {
    border: 1px solid #8c8f94;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    width: 100%;
    font-size: 0.875rem;
}

.components-panel__body .components-text-control__input:focus,
.components-panel__body .components-textarea-control__input:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: 2px solid transparent;
}

/* Champ prix avec style monétaire */
.components-text-control__input[type="text"] {
    font-family: 'Courier New', monospace;
}

/* Help text */
.components-base-control__help {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.25rem;
    font-style: italic;
}

/* Styles pour la prévisualisation mobile/desktop */
.carte-produit-edit-preview .d-md-block {
    background-color: rgba(25, 135, 84, 0.05);
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    border-left: 3px solid #198754;
}

.carte-produit-edit-preview .d-md-block::before {
    content: 'Description (visible sur ordinateur)';
    display: block;
    font-size: 0.7rem;
    color: #198754;
    margin-bottom: 0.25rem;
    font-weight: 600;
}