* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2a2a2a;
    background: #fafafa;
    line-height: 1.5;
}

a { color: #963637; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============ HEADER ============ */
.menu1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #3a3a3a;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
}

.menu1 .tr { font-weight: 300; }

.socials { display: flex; gap: 12px; }
.socials a { color: white; font-size: 18px; }
.socials a:hover { color: #cdc3ea; text-decoration: none; }

.bokonzi {
    font-family: 'Anton', sans-serif;
    max-width: 1000px;
    margin: 30px auto 10px;
    color: #3a3a3a;
    font-size: 4em;
    padding: 0 24px;
}
.bokonzi a { color: #3a3a3a; }
.bokonzi p {
    font-size: 14px;
    color: rgba(0,0,0,0.3);
    margin: 0;
}

.menu20 {
    background-color: #fcfcfc;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.menu2 {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.cursor {
    padding: 18px 28px;
    text-align: center;
    color: #3a3a3a;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color .2s;
}
.cursor:hover { background-color: #f4f5f7; text-decoration: none; }
.cursor-user { font-weight: 600; cursor: default; }
.cursor-user:hover { background-color: transparent; }

/* ============ LAYOUT ============ */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 24px;
}

.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 800px) {
    .layout { grid-template-columns: 1fr; }
    .bokonzi { font-size: 2.5em; }
}

/* ============ ARTICLES ============ */
.article-card {
    background: white;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.article-card h2 { margin: 0 0 8px; }
.article-card h2 a { color: #2a2a2a; }

.breadcrumb {
    max-width: 1100px;
    margin: 0 auto 16px;
    font-size: 13px;
    color: #888;
    letter-spacing: .2px;
}
.breadcrumb a {
    color: #963637;
    font-weight: 500;
    border-bottom: 1px dotted rgba(150, 54, 55, .35);
    padding-bottom: 1px;
    transition: border-color .2s, color .2s;
}
.breadcrumb a:hover {
    color: #6f2425;
    border-bottom-color: #963637;
    text-decoration: none;
}

.children {
    max-width: 1100px;
    margin: 40px auto 0;
    padding-top: 28px;
    position: relative;
}
.children::before {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, #963637, transparent);
    border-radius: 2px;
    margin-bottom: 18px;
}
.children > h2 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #3a3a3a;
    letter-spacing: .3px;
}

.child-card {
    background: #fbfbfa;
    border: 1px solid #ececec;
    border-left: 3px solid #d9b3b4;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: border-left-color .25s, box-shadow .25s, transform .25s;
}
.child-card:hover {
    border-left-color: #963637;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateX(2px);
}
.child-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
}
.child-card h3 a {
    color: #2a2a2a;
    transition: color .2s;
}
.child-card h3 a:hover {
    color: #963637;
    text-decoration: none;
}
.child-card .meta {
    font-size: 12px;
    margin-bottom: 10px;
}
.child-card .article-img {
    height: 180px;
    border-radius: 6px;
    margin: 10px 0;
}
.child-card .article-excerpt {
    color: #555;
    font-size: 14px;
    line-height: 1.55;
    margin: 6px 0 8px;
}
.child-card .read-more {
    font-size: 13px;
    color: #963637;
    font-weight: 500;
    margin-top: 4px;
}
.child-card .read-more:hover {
    text-decoration: none;
    color: #6f2425;
}
.meta { color: #95979c; font-size: 13px; margin-bottom: 12px; }
.publie { color: #963637; font-weight: 600; }
.article-img { width: 100%; height: 320px; object-fit: cover; border-radius: 4px; margin: 12px 0; }
.article-excerpt { color: #444; }
.read-more { display: inline-block; margin-top: 8px; font-weight: 600; }

.article-full {
    background: white;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}
.article-full h1 { margin-top: 0; }
.article-body { font-size: 17px; line-height: 1.7; margin-top: 20px; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ============ SIDEBAR ============ */
.sidebar .widget {
    background: white;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.sidebar h3 { margin-top: 0; font-size: 16px; text-transform: uppercase; color: #3a3a3a; letter-spacing: 1px; }

/* ============ FORMS ============ */
.form { display: flex; flex-direction: column; gap: 14px; }
.form label { display: flex; flex-direction: column; font-weight: 600; color: #3a3a3a; font-size: 14px; gap: 6px; }
.form input, .form textarea, .form select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: white;
}
.form input:focus, .form textarea:focus, .form select:focus {
    outline: none;
    border-color: #963637;
    box-shadow: 0 0 0 2px rgba(150,54,55,0.15);
}

.btn-primary {
    background: #963637;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
}
.btn-primary:hover { background: #7a2b2c; }

.btn-danger {
    background: transparent;
    color: #963637;
    border: 1px solid #963637;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.btn-danger:hover { background: #963637; color: white; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #3a3a3a;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    text-decoration: none;
}
.btn-secondary:hover { background: #3a3a3a; color: white; text-decoration: none; }

.auth-card {
    max-width: 460px;
    margin: 20px auto;
    background: white;
    padding: 32px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.auth-card-wide { max-width: 720px; }
.auth-card h1 { margin-top: 0; }

.muted { color: #888; font-size: 14px; }

/* ============ FLASH ============ */
/* Flash banners en haut de page */
.flash {
    padding: 16px 20px;
    border-radius: 8px;
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    animation: flash-in .35s ease-out;
}
.flash::before {
    font-size: 22px;
    flex-shrink: 0;
}
.flash-success {
    background: #e8f5e9;
    color: #1b5e20;
    border-left: 4px solid #2e7d32;
}
.flash-success::before { content: "✅"; }
.flash-error {
    background: #ffebee;
    color: #b71c1c;
    border-left: 4px solid #c62828;
}
.flash-error::before { content: "⚠️"; }
@keyframes flash-in {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Toast persistant en bas de l'écran (mobile-friendly) */
.toast-stack {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    pointer-events: none;
}
.toast {
    background: #2e7d32;
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: toast-in .35s ease-out;
    pointer-events: auto;
}
.toast.error { background: #c62828; }
.toast .toast-icon { font-size: 24px; }
@keyframes toast-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Bandeau utilisateur connecté plus visible */
.cursor-user {
    background: rgba(150, 54, 55, .08);
    border-radius: 6px;
    color: #963637 !important;
}
.cursor-user::before {
    content: "👤 ";
}

/* ============ COMMENTS ============ */
.comments {
    background: white;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.comments h2 { margin-top: 0; }
.comment {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.comment:last-of-type { border-bottom: none; }
.comment-author { font-weight: 600; margin: 0 0 4px; }
.comment-body { margin: 0; color: #444; }
.comment-form { margin-top: 20px; }
.comment-locked {
    margin-top: 20px;
    padding: 16px;
    background: #fafafa;
    border-radius: 4px;
    text-align: center;
    color: #666;
}

/* ============ SOCIAL ADMIN ============ */
.social-list { list-style: none; padding: 0; }
.social-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.social-list li i { font-size: 22px; color: #3a3a3a; }
.social-list li a { flex: 1; color: #555; }
.inline-form { display: inline; margin: 0; }

/* ============ FOOTER ============ */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    font-size: 13px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    background: white;
}

/* ============ EDITOR (new/edit article) ============ */
.editor-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 1000px) {
    .editor-layout { grid-template-columns: 1fr; }
}

.editor-form { margin: 0; max-width: none; }

.editor-preview {
    position: sticky;
    top: 20px;
}
.preview-card { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

.image-preview-wrap img {
    max-width: 100%;
    max-height: 320px;
    border-radius: 4px;
    border: 1px solid #eee;
    display: block;
}

.gallery-fieldset {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 20px;
}
.gallery-fieldset legend { font-weight: 600; padding: 0 6px; }

.gallery-list { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.gallery-item {
    display: flex;
    gap: 14px;
    padding: 10px;
    background: #fafafa;
    border-radius: 4px;
    align-items: flex-start;
}
.gallery-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.gallery-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gallery-meta input[type="text"] { padding: 6px 10px; font-size: 14px; }
.row-label {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 6px;
    font-weight: 400 !important;
    font-size: 13px;
}
.row-label input[type="number"] { width: 70px; padding: 4px 8px; }
.row-label input[type="checkbox"] { width: auto; }

.layout-fieldset {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 16px 20px;
}
.layout-fieldset legend { font-weight: 600; padding: 0 6px; }
.layout-list { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.layout-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: grab;
    user-select: none;
    transition: background-color .15s, box-shadow .15s, transform .15s;
}
.layout-item:hover { background: #f0f0f0; }
.layout-item:active { cursor: grabbing; }
.layout-item.is-dragging {
    opacity: 0.5;
    background: #eeecf9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.layout-grip {
    color: #aaa;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -2px;
    cursor: grab;
}
.layout-pos-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #963637;
    color: white;
    font-weight: 600;
    font-size: 13px;
}
.layout-label { font-weight: 600; color: #3a3a3a; flex: 1; }

/* Affichage public de la galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin: 24px 0;
}
.gallery-fig { margin: 0; }
.gallery-fig img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.gallery-fig figcaption {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    text-align: center;
}

/* ===== Visionneuse "voir la photo entière" ===== */
.img-zoomable { position: relative; display: block; margin: 0; }
.img-zoomable img { cursor: zoom-in; }
.btn-zoom {
    position: absolute;
    bottom: 22px;
    right: 12px;
    background: rgba(0,0,0,.62);
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.btn-zoom:hover { background: rgba(0,0,0,.8); }
.gallery-fig .btn-zoom { bottom: auto; top: 8px; right: 8px; padding: 6px 9px; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
/* Reste masquée tant qu'on n'a pas cliqué une image (l'attribut hidden seul
   ne suffit pas car .lightbox impose display:flex). */
.lightbox[hidden] { display: none; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;   /* PHOTO ENTIÈRE, jamais recadrée */
    border-radius: 4px;
    cursor: zoom-out;
}
.lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    color: #fff;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.4); }

/* ============ ADMIN ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 20px 0 30px;
}
.stat {
    background: #f4f5f7;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-num { font-size: 32px; font-weight: 700; color: #963637; }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #666; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 14px;
}
.admin-table th, .admin-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.admin-table th { background: #fafafa; font-weight: 600; color: #555; }
.admin-table tr:hover { background: #fafafa; }

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}
.badge-admin { background: #963637; color: white; }

.article-actions {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.sources {
    margin-top: 30px;
    padding: 16px 20px;
    background: #fafafa;
    border-left: 3px solid #963637;
    border-radius: 4px;
}
.sources h3 { margin: 0 0 8px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #555; }
.sources ul { margin: 0; padding-left: 20px; }
.sources li { margin: 4px 0; }
.sources a { word-break: break-all; }

/* ============ INSTALL ============ */
.install-body {
    background: #f4f5f7;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.install-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 480px;
    width: 100%;
}
.install-card h1 { margin-top: 0; color: #963637; }

/* ============ ADMIN UX ============ */
.admin-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}
.admin-action {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.admin-action:hover {
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow: 0 12px 30px -12px rgba(0,0,0,0.15);
    border-color: #d5d5d5;
}
.admin-action .ico {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    background: #f4f4f4;
}
.admin-action.green  .ico { background: linear-gradient(135deg, #d1fae5, #6ee7b7); color: #065f46; }
.admin-action.blue   .ico { background: linear-gradient(135deg, #dbeafe, #93c5fd); color: #1e40af; }
.admin-action.amber  .ico { background: linear-gradient(135deg, #fef3c7, #fcd34d); color: #92400e; }
.admin-action.purple .ico { background: linear-gradient(135deg, #ede9fe, #c4b5fd); color: #5b21b6; }
.admin-action.rose   .ico { background: linear-gradient(135deg, #ffe4e6, #fda4af); color: #9f1239; }
.admin-action.slate  .ico { background: linear-gradient(135deg, #e2e8f0, #94a3b8); color: #1e293b; }
.admin-action .body { flex: 1; min-width: 0; }
.admin-action h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}
.admin-action p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
}

/* Section blocks (groupes de champs dans un form admin) */
.section-block {
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 14px;
    background: #fcfcfc;
}
.section-block .section-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #ececec;
}
.section-block .section-head .ico { font-size: 18px; }
.section-block .section-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Checkbox and radio labels — inline row, normal weight */
.form label.checkbox-label,
.form label.radio-label,
.checkbox-label,
.radio-label {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    color: #444;
    font-size: 14px;
    line-height: 1.45;
    cursor: pointer;
}
.checkbox-label input[type=checkbox],
.radio-label input[type=radio] {
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
}
.checkbox-label strong,
.radio-label strong {
    color: #1f2937;
}

/* Copy button (key copy, etc.) */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: background .15s, border-color .15s;
}
.copy-btn:hover { background: #f9fafb; border-color: #9ca3af; }
.copy-btn.copied {
    background: #d1fae5;
    border-color: #34d399;
    color: #065f46;
}
.copy-btn.copied::before { content: "✓ "; }

/* Pill/badge for statuses */
.pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.pill-ok      { background: #d1fae5; color: #065f46; }
.pill-warn    { background: #fef3c7; color: #92400e; }
.pill-danger  { background: #fee2e2; color: #991b1b; }
.pill-neutral { background: #e5e7eb; color: #374151; }

/* Drag-and-drop file area */
.dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}
.dropzone:hover { border-color: #9ca3af; background: #f3f4f6; }
.dropzone.dragover {
    border-color: #2e7d32;
    background: #f0fdf4;
}
.dropzone .dz-icon { font-size: 32px; margin-bottom: 8px; }
.dropzone .dz-main { font-size: 15px; font-weight: 600; color: #374151; }
.dropzone .dz-hint { font-size: 13px; color: #6b7280; margin-top: 4px; }
.dropzone input[type=file] { display: none; }
.dropzone .dz-file {
    margin-top: 10px;
    font-size: 13px;
    color: #2e7d32;
    font-weight: 600;
}

/* Inline stats cards (export summary) */
.mini-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    margin: 12px 0 18px;
}
.mini-stat {
    background: #f9fafb;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
}
.mini-stat .v {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}
.mini-stat .k {
    display: block;
    font-size: 11px;
    color: #6b7280;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Loading state overlay (during sync push) */
.busy-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,0.72);
    display: flex; align-items: center; justify-content: center;
    z-index: 999;
    backdrop-filter: blur(4px);
}
.busy-card {
    background: #fff;
    padding: 28px 32px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
    max-width: 360px;
}
.busy-card .spinner {
    width: 40px; height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: #2e7d32;
    border-radius: 50%;
    margin: 0 auto 14px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.busy-card h3 { margin: 0 0 4px; font-size: 16px; }
.busy-card p { margin: 0; color: #6b7280; font-size: 13px; }

/* Color swatch row (presets) */
.swatch-row {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 10px 0 16px;
}
.swatch {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: transform .15s, border-color .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.swatch:hover { transform: translateY(-1px); border-color: #9ca3af; }
.swatch .dots {
    display: inline-flex;
    gap: 2px;
}
.swatch .dots span {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
}
