@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&display=swap');

body {
    margin: 0;
    background: #000;
    color: #fff;
}

/* MODAL DE EDAD */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.modal-content {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.modal-content button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

/* ENCABEZADO */
.encabezado {
    text-align: center;
    padding: 20px;
    background: #111;
    font-family: Arial, sans-serif;
}
.titulo {
    text-align: center;
    padding: 20px;
    background: #111;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* SECCIÓN DE PRODUCTOS */
.productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.producto {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.producto img {
    width: 100%;
    border-radius: 10px;
    font-family: Arial, sans-serif;
}

/* Menú de categorías */
.categorias {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: #111;
    padding: 15px;
    flex-wrap: wrap;
}

.categorias button {
    background: #000;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
}

.categorias button:hover {
    background: #222;
}

/* Ocultar categorías */
.productos {
    display: none;
}

/* Mostrar categoría activa */
.productos.activa {
    display: grid;
}

.producto {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.producto:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 30px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ccc;
}

/* Responsive para celulares */
@media (max-width: 768px) {
    .productos {
        grid-template-columns: 1fr; /* 1 producto por fila */
    }
}

.roles-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.roles-list li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd2;
}

.role-delete {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.role-add-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.role-input {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}