/* LBAC Logo Preview v2 — intégré page produit WC */

#lbac-logo-field {
    margin: 20px 0;
    padding: 20px;
    background: #f7f9ff;
    border: 1px solid #e0e6ff;
    border-radius: 12px;
}

.lbac-field-label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2D4FBF;
    margin-bottom: 12px;
}

/* Zone drop */
.lbac-drop-zone {
    border: 2px dashed #c0ceff;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.lbac-drop-zone.drag-over {
    border-color: #2D4FBF;
    background: #eef1ff;
}
.lbac-drop-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
}
.lbac-drop-icon { font-size: 28px; }
.lbac-drop-text { font-size: 14px; color: #444; line-height: 1.5; }
.lbac-drop-text strong { color: #2D4FBF; }
.lbac-drop-text small { color: #999; font-size: 12px; }

/* Processing */
#lbac-processing {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    font-size: 14px;
    color: #555;
}
.lbac-spinner {
    width: 24px; height: 24px;
    border: 3px solid #e0e0e0;
    border-top-color: #2D4FBF;
    border-radius: 50%;
    animation: lbac-spin 0.7s linear infinite;
    flex-shrink: 0;
}
@keyframes lbac-spin { to { transform: rotate(360deg); } }

/* Canvas */
#lbac-canvas {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

#lbac-preview {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Controls */
.lbac-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lbac-controls label {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    gap: 4px;
}
.lbac-controls input[type="range"] {
    width: 100%;
    accent-color: #2D4FBF;
}

/* Reset */
.lbac-reset {
    background: none;
    border: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-family: inherit;
}
.lbac-reset:hover { color: #2D4FBF; }

/* Badge offert panier */
.lbac-offert-badge {
    display: inline-block;
    background: #F5A623;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
}
