@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --color-oro: #c5a47e;
    --color-negro: #1d1d1b;
    --color-fondo-claro: #f0f0f0;
    --sidebar-width: 320px;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-fondo-claro);
    color: #333;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}

/* =============================================== */
/* == BARRAS LATERALES Y BOTONES DE MENÚ         == */
/* =============================================== */
#left-sidebar, #right-sidebar {
    background-color: var(--color-negro);
    color: white;
    padding: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 0 25px 5px rgba(0, 0, 0, 0.5);
}
#left-sidebar {
    position: fixed;
    left: 0; top: 0; height: 100%;
    width: var(--sidebar-width);
    transform: translateX(0);
    transition: transform 0.4s ease;
}
body.left-sidebar-closed #left-sidebar {
    transform: translateX(calc(-1 * var(--sidebar-width)));
}
#right-sidebar {
    position: fixed;
    right: 0; top: 0; height: 100%;
    width: var(--sidebar-width);
    transform: translateX(0);
    transition: transform 0.4s ease;
}
.sidebar-toggle {
    position: fixed; top: 15px; z-index: 101; background-color: var(--color-negro);
    color: var(--color-oro); border: 1px solid var(--color-oro); width: 40px; height: 40px;
    border-radius: 50%; font-size: 20px; cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sidebar-toggle.left { left: 15px; }
.sidebar-toggle.right { right: 15px; font-size: 24px; }

/* Estilo compartido para ambos botones */
.go-to-simulator-btn-class {
    position: absolute;
    top: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--color-oro);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease;
    z-index: 110;
    background-image: url('images/playera_blanca_front.png');
    background-size: 60% 60%;
    background-repeat: no-repeat;
    background-position: center;
    right: 15px; /* Posición unificada */
}
.go-to-simulator-btn-class:hover {
    transform: scale(1.1);
}

/* =============================================== */
/* == ESTILOS PARA ICONOS DE IMAGEN EN BOTONES   == */
/* =============================================== */

/* Estilos para que la imagen se vea bien en el botón */
.sidebar-toggle {
    background-size: 60% 60%; /* Controla el tamaño del icono dentro del círculo */
    background-repeat: no-repeat;
    background-position: center;
}

/* Asigna la imagen específica para el botón izquierdo */
#toggle-left-sidebar {
    background-image: url('images/icono-izquierdo.png'); 
}

/* Asigna la imagen específica para el botón derecho */
#toggle-right-sidebar {
    background-image: url('images/icono-derecho.png');
}

/* =============================================== */
/* == OVERLAY PARA MÓVILES                       == */
/* =============================================== */
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.4s ease;
}
#page-overlay:not(.hidden) {
    pointer-events: auto;
}
body.left-sidebar-open #page-overlay,
body.right-sidebar-open #page-overlay {
    opacity: 1;
}


/* =============================================== */
/* == ÁREA DE PREVISUALIZACIÓN CENTRAL           == */
/* =============================================== */
.preview-panel {
    position: relative;
    grid-column: 1; padding: 20px; padding-left: calc(var(--sidebar-width) + 40px);
    padding-right: calc(var(--sidebar-width) + 40px); display: flex; flex-direction: column;
    justify-content: center; align-items: center; transition: padding 0.4s ease;
}
body.left-sidebar-closed .preview-panel { padding-left: 80px; }
#initial-logo { max-width: 30%; opacity: 0.7; }

#tshirt-editor-area {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#tshirt-container { position: relative; width: 80%; max-width: 500px; transition: max-width 0.3s ease; }
#tshirt-image { width: 100%; height: auto; }

/* Capa de los contenedores de estampados */
.estampado-view-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 1;
}

/* =============================================== */
/* == CONTENIDO DE LAS BARRAS LATERALES          == */
/* =============================================== */
.logo-container { text-align: center; margin-bottom: 20px; }
.logo { max-width: 120px; }
h2 { color: var(--color-oro); border-bottom: 1px solid var(--color-oro); padding-bottom: 10px; }
h3, h4, h5 { color: var(--color-oro); margin-top: 20px; margin-bottom: 10px; }
h4 { border-bottom: 1px solid #444; padding-bottom: 8px; font-size: 1em; }
h5 { border-bottom: none; font-size: 1.1em; text-align: center; }
.hidden { display: none !important; }
.btn-principal { background-color: var(--color-oro); color: var(--color-negro); border: none; padding: 15px; font-size: 1em; font-weight: bold; cursor: pointer; margin-top: 30px; width: 100%; text-decoration: none; display: inline-block; text-align: center; box-sizing: border-box;}

.btn-back {
    background-color: transparent;
    border: 1px solid var(--color-oro);
    color: var(--color-oro);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    align-self: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover {
    background-color: var(--color-oro);
    color: var(--color-negro);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(197, 164, 126, 0.2);
}

#gender-options-container, #tshirt-types-container { display: flex; flex-direction: column; gap: 15px; margin-top: 15px; }
.gender-card, .tshirt-type-card { background-color: #333; border: 2px solid #555; border-radius: 8px; padding: 15px; cursor: pointer; transition: all 0.2s ease-in-out; }
.gender-card { color: white; text-align: center; font-size: 1.2em; font-weight: bold; }
.gender-card:hover { border-color: var(--color-oro); background-color: #444; transform: translateY(-3px); }
.tshirt-type-card { display: grid; grid-template-columns: 80px 1fr; gap: 15px; align-items: center; }
.tshirt-type-card:hover { border-color: #777; background-color: #3a3a3a; }
.tshirt-type-card.selected { border-color: var(--color-oro); background-color: #444; transform: scale(1.03); box-shadow: 0 0 15px rgba(197, 164, 126, 0.3); }
.tshirt-type-card img { width: 100%; height: auto; background-color: #f0f0f0; border-radius: 5px; }
.tshirt-type-card .card-details h4 { margin: 0 0 8px 0; color: white; font-size: 1.1em; border: none; padding: 0; }
.tshirt-type-card .card-details p { margin: 0 0 10px 0; font-size: 0.8em; color: #ccc; }
#project-list-container { display: flex; flex-direction: column; gap: 10px; }
.project-item { position: relative; background: #333; padding: 15px; border-left: 4px solid transparent; transition: all 0.2s ease; border-radius: 8px;}
.project-item:hover { background: #444; }
.project-item.active { border-left-color: var(--color-oro); background: #4e4e4e; }
.project-item h4 { margin: 0 0 5px 0; color: white; border: none; padding: 0; }
.project-item p { margin: 0; font-size: 0.8em; color: #ccc; }
.delete-project-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    background-color: #616161;
    color: #ccc;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}
.project-item:hover .delete-project-btn { opacity: 1; }
.delete-project-btn:hover { background-color: #c84343; color: white; transform: scale(1.1); }
#finalize-purchase-btn{
    margin-top: 20px;
}

/* =============================================== */
/* == VISTA DE PERSONALIZACIÓN                   == */
/* =============================================== */
.view-switcher { 
    margin-top: 15px;
    background-color: #fff;
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    padding: 5px;
    z-index: 2; 
    transition: margin-bottom 0.3s ease;
}
.view-btn { padding: 8px 16px; border: none; background-color: transparent; color: #333; cursor: pointer; font-size: 14px; border-radius: 6px; transition: background-color 0.3s, color 0.3s; }
.view-btn.active { background-color: var(--color-negro); color: var(--color-oro); }
.btn-upload { display: block; text-align: center; padding: 12px; margin-top: 15px; background-color: transparent; color: var(--color-oro); border: 2px solid var(--color-oro); border-radius: 5px; cursor: pointer; transition: all 0.2s ease-in-out; }
.btn-upload:hover { background-color: var(--color-oro); color: var(--color-negro); transform: translateY(-2px); }
#upload-estampado { display: none; }
.button-group { display: flex; gap: 10px; margin-top: 10px; }
.button-group .btn-option { flex: 1; padding: 10px; width: auto; cursor: pointer; border-radius: 4px; border: 1px solid #888; color: #888; background: none; }
.size-btn { flex: 1; padding: 10px; border: 1px solid #888; color: #888; background: transparent; cursor: pointer; }
.size-btn.active { background-color: var(--color-oro); color: var(--color-negro); border-color: var(--color-oro); }

/* =============================================== */
/* == ESTILOS DE ESTAMPADOS EN EL SIMULADOR      == */
/* =============================================== */
.estampado-container { position: absolute; cursor: move; user-select: none; z-index: 10;}
.estampado-container.active { outline: 2px dashed var(--color-oro); outline-offset: 3px; z-index: 20; }
.estampado-image { width: 100%; height: 100%; pointer-events: none; }
.delete-stamp-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background-color: #c84343;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    z-index: 21;
    display: none;
}
.estampado-container.active .delete-stamp-icon {
    display: flex;
}

/* =============================================== */
/* == ESTILOS DEL BOTÓN DEL CARRITO              == */
/* =============================================== */
#cart-button {
    display: flex; position: fixed; bottom: 20px; right: 20px; width: 60px; height: 60px;
    justify-content: center; align-items: center; z-index: 999; text-decoration: none;
    transition: transform 0.2s ease, opacity 0.4s ease; background-color: transparent;
}
#cart-button::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-negro); border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: -1; transition: transform 0.2s ease-in-out;
}
#cart-button svg { fill: var(--color-oro); width: 60%; height: 60%; }
#cart-button .cart-counter {
    position: absolute; top: 0; right: 0; background-color: #cc0000; color: white;
    font-size: 12px; width: 20px; height: 20px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; font-weight: bold;
}
#cart-button:hover::before { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
#cart-button:hover svg { transform: scale(1.1); }

/* =============================================== */
/* == ESTILOS DEL SELECTOR DE COLOR              == */
/* =============================================== */
#color-selector-container {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: grid; /* Ambos modos usan grid */
    gap: 15px;
    padding: 15px;
    background-color: rgba(29, 29, 27, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 3;
}
.color-selector-single-col {
    grid-template-columns: 1fr; /* Solo una columna */
    width: auto; /* El ancho se ajusta al contenido */
}
.color-selector-multi-col {
    grid-auto-flow: column; /* Flujo por columnas */
    grid-template-rows: repeat(10, auto); /* Máximo 10 filas */
    overflow-x: auto; /* Scroll horizontal */
    overflow-y: hidden;
    width: 100px; /* Ancho para 2 columnas */
    max-height: 70vh; /* Altura máxima con scroll */
}

.color-swatch {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.color-swatch:hover {
    transform: scale(1.1);
}
.color-swatch.active {
    border-color: var(--color-oro);
    transform: scale(1.15);
    box-shadow: 0 0 10px var(--color-oro);
}

.color-swatch[data-color="blanca"] { background-color: #ffffff; }
.color-swatch[data-color="negra"] { background-color: #222222; }
.color-swatch[data-color="roja"] { background-color: #b71c1c; }
.color-swatch[data-color="azul"] { background-color: #1565c0; }
.color-swatch[data-color="gris"] { background-color: #757575; }
.color-swatch[data-color="gris"] { background-color: #757575; }

#color-name-display {
    text-align: center;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: var(--color-negro);
    height: 1.2em;
    transition: color 0.3s ease;
    display: inline-block;
    z-index: 2;
}

/* =============================================== */
/* == ESTILOS DE LA MARCA DE AGUA                == */
/* =============================================== */
.watermark-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url('images/logo_marca_agua.png');
    background-repeat: repeat;
    background-size: 1000px;
    opacity:  0.08;
}

/* =============================================== */
/* == ESTILOS DE LA NOTIFICACIÓN TOAST           == */
/* =============================================== */
#toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-oro);
    color: var(--color-negro);
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1001;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    font-size: 0.9em;
    font-weight: bold;
}
#toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* =============================================== */
/* == VISTA DE CANTIDADES Y TALLAS               == */
/* =============================================== */
#order-color-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
#order-color-selector .color-swatch {
    position: relative;
    border: 3px solid transparent;
}
#order-color-selector .color-swatch.selected {
    border-color: var(--color-oro);
    transform: scale(1.1);
}
#order-color-selector .color-swatch.selected::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-negro);
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 3px white, 0 0 3px white;
}
#quantities-by-color-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}
.quantity-color-block {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--color-oro);
}
.quantity-color-block h5 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    color: white;
}
.size-quantity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.size-quantity-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.size-quantity-row .size-label {
    font-weight: bold;
    color: #ccc;
    width: 30px;
}
.size-quantity-row .quantity-input {
    width: 100%;
    background-color: #555;
    border: 1px solid #777;
    color: white;
    padding: 8px;
    border-radius: 4px;
    font-size: 1em;
    text-align: center;
    -moz-appearance: textfield;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* =============================================== */
/* == REGLAS PARA MÓVILES Y VISIBILIDAD          == */
/* =============================================== */
@media (max-width: 1024px) {
    body { overflow: auto; }
    :root { --sidebar-width: 320px; }
    
    body.left-sidebar-open #left-sidebar { transform: translateX(0); }
    body:not(.left-sidebar-open) #left-sidebar { transform: translateX(-100%); }
    
    #right-sidebar { transform: translateX(100%); }
    body.right-sidebar-open #right-sidebar { transform: translateX(0); }
    
    #left-sidebar, #right-sidebar {
        width: var(--sidebar-width);
        max-width: 90vw;
    }

    .preview-panel { padding: 70px 20px 20px 20px; align-items: center; }
    body.left-sidebar-closed .preview-panel { padding-left: 20px; }

    #tshirt-container { width: 100%; max-width: none; }
    #cart-button { bottom: 30px; right: 30px; }
    
    /* Ocultar botones de menú cuando su respectivo panel está abierto */
    body.left-sidebar-open .sidebar-toggle.left { opacity: 0; pointer-events: none; transform: scale(0.8); }
    body.right-sidebar-open .sidebar-toggle.right { opacity: 0; pointer-events: none; transform: scale(0.8); }

    /* Ocultar el botón del carrito cuando un panel está abierto para evitar superposición */
    body.left-sidebar-open #cart-button,
    body.right-sidebar-open #cart-button {
        opacity: 0;
        pointer-events: none;
    }

    #color-selector-container {
        display: grid; /* Cambiamos a grid */
        grid-template-columns: repeat(6, 1fr); /* Columnas automáticas */
        grid-auto-flow: row;
        gap: 15px; /* Espacio entre los círculos */
        justify-content: center; /* Centra los elementos */
        
        position: static;
        transform: none;
        margin-top: 15px;
        padding: 10px 15px;
        width: 100%; /* Ocupa todo el ancho disponible */
        max-height: none;
        box-sizing: border-box; /* Asegura que el padding no desborde */
    }

    /* Ocultar botón de ir al simulador en desktop */
    .go-to-simulator-btn-class { display: flex; }
    
}

@media (min-width: 1025px) {
    .go-to-simulator-btn-class { display: none; }
    #page-overlay { display: none; }
}

/* Estilos para la barra de scroll en el selector de color */
#color-selector-container::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
#color-selector-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
#color-selector-container::-webkit-scrollbar-thumb {
    background: var(--color-oro);
    border-radius: 10px;
}
#color-selector-container::-webkit-scrollbar-thumb:hover {
    background: #e0bb9a;
}

/* =============================================== */
/* == LOGO SUPERIOR Y MENSAJE DE MARCA DE AGUA   == */
/* =============================================== */
#tshirt-watermark-logo {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    z-index: 25;
    opacity: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

#watermark-message {
    color: #888;
    font-size: 0.8em;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
    z-index: 2;
}

/* =============================================== */
/* == GUÍA DE TALLAS Y BOTÓN DE CONFIRMAR        == */
/* =============================================== */
.size-guide {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.8em;
}

.guide-top-section {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.guide-image-placeholder img,
.features-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.guide-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.guide-info p {
    margin: 0;
    font-weight: bold;
    text-align: center;
}

.tolerance-text {
    color: var(--color-oro);
    margin-bottom: 5px !important;
}

.measure-text {
    margin-bottom: 10px !important;
}

.guide-bottom-section {
    text-align: center;
}

.guide-title {
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
    border-top: 2px solid var(--color-oro);
    border-bottom: 2px solid var(--color-oro);
    padding: 5px 0;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.size-table th, .size-table td {
    border: 1px solid #555;
    padding: 6px;
    text-align: center;
}

.size-table thead {
    background-color: var(--color-oro);
    color: var(--color-negro);
    font-weight: bold;
}

.size-table td:first-child {
    background-color: #333;
    color: var(--color-oro);
    width: 25%;
}

.table-container {
    overflow-x: auto;
    padding-bottom: 8px;
}

.table-container::-webkit-scrollbar {
    height: 6px;
}

.table-container::-webkit-scrollbar-track {
    background: #333;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--color-oro);
    border-radius: 10px;
}

#confirm-quantities-btn {
    margin-top: 25px;
}

/* =============================================== */
/* == DISEÑO COMPLETADO Y CARPETAS DE ESTAMPADOS == */
/* =============================================== */
.completed-icon {
    display: none;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #28a745;
}

.project-item.completed {
    border-left-color: #28a745;
    background: #2b3a2b;
}

.project-item.completed .completed-icon {
    display: block;
}

.project-item.completed h4,
.project-item.completed p {
    padding-left: 28px;
}

.stamp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 0;
}

.stamp-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #333;
    border: 2px solid var(--color-oro);
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 75px;
    box-sizing: border-box;
}

.stamp-grid-item:hover {
    transform: scale(1.05);
}

.stamp-grid-item .folder-icon {
    width: 45px;
    height: 45px;
    fill: var(--color-oro);
    margin-bottom: 5px;
}

.stamp-grid-item .stamp-item-label {
    font-size: 0.8em;
    color: white;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.stamp-grid-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.stamp-grid-item.selected {
    border-width: 3px;
    box-shadow: 0 0 10px var(--color-oro);
    transform: scale(1.05);
}

#back-to-main-view-btn {
    margin-bottom: 0;
}

/* =============================================== */
/* == AJUSTES PARA PANTALLAS DE POCA ALTURA      == */
/* =============================================== */
@media (max-height: 800px) and (min-width: 1025px) {
    .preview-panel {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #tshirt-watermark-logo {
        top: -55px; /* Reducimos drásticamente el espacio superior */
        width: 160px; /* Hacemos el logo un poco más pequeño */
    }

    .view-switcher {
        margin-bottom: 10px; /* Reducimos el margen inferior */
    }

    #tshirt-container {
        max-width: 440px; /* Reducimos el tamaño máximo de la playera */
    }

    #color-name-display {
        margin-bottom: 0;
    }
}