.skin-selector { margin: 20px 0; padding: 0 6px;}
.color-options, .font-options, .layout-options { 
    display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; 
}

.color-option {
    cursor: pointer; text-align: center;
}
.color-option input { display: none; }
.color-option input:checked + .color-preview {
    outline: 3px solid #3b82f6; outline-offset: 2px;
}
.color-preview {
    display: flex; gap: 4px; padding: 8px; border-radius: 8px;
}
.color-preview span {
    width: 24px; height: 24px; border-radius: 50%; 
    border: 2px solid #ddd; display: block;
}

.font-option {
    cursor: pointer; width: 140px;
}
.font-option input { display: none; }
.font-option input:checked + .font-preview {
    outline: 3px solid #3b82f6; outline-offset: 2px;
}
.font-preview {
    padding: 12px 8px; border: 1px solid #ddd; border-radius: 8px;
    font-size: 11px; line-height: 1.4;
}
.font-preview .word1 { font-weight: bold; display: block; }
.font-preview .word2 { font-style: italic; }
.font-preview .word3 { font-size: 9px; color: #666; }

.layout-option {
    cursor: pointer; padding: 10px 16px; border: 1px solid #ddd; 
    font-size: 14px;
}
.layout-option input { display: none; }
.layout-option input:checked + span {
    background: #3b82f6; color: white;
}



/* static/espacios/css/base.css */
:root {
    --bg: #f8f9fa;
    --text: #333;
    --precio: #10b981;
    --card-bg: white;
}

/* === LAYOUTS REALES === */
.layout-compacto .plato { padding: 8px 12px; margin: 4px 0; }

.layout-elegante .plato { 
    padding: 20px; margin: 16px 0; 
    /*border-bottom: 1px solid var(--precio);
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}
.layout-moderno .plato { 
    display: grid; grid-template-columns: 1fr auto; gap: 12px;
    padding: 16px; background: var(--card-bg);
    margin: 8px 0;
}


/* === LOADING (PRECARGA) === */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    background: var(--primary, #3b82f6);
    color: #fff;
    overflow: hidden;
}
.loading-logo {
    margin-top: -5vh;
    max-width: 200px;
    min-height: 30%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.loading-presenta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
}
.loading-presenta.logo-texto { height: 30%; }
.loading-presenta-text {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    height: 30%; 
}

/* Exit animations for loading */
@keyframes loadingFade {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes loadingFadeUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}
@keyframes loadingFadeDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(20px); }
}
@keyframes loadingFadeLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-20px); }
}
@keyframes loadingFadeRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(20px); }
}
.exit-fade.is-leaving { animation: loadingFade 0.8s ease forwards; }
.exit-up.is-leaving { animation: loadingFadeUp 0.8s ease forwards; }
.exit-down.is-leaving { animation: loadingFadeDown 0.8s ease forwards; }
.exit-left.is-leaving { animation: loadingFadeLeft 0.8s ease forwards; }
.exit-right.is-leaving { animation: loadingFadeRight 0.8s ease forwards; }