﻿.painel-admin {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
    color: #e8ddff;
}

.galeria-produtos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.produto-box {
    background-color: rgba(30, 22, 50, 0.92);
    border: 1px solid #5e4c8a;
    border-radius: 10px;
    padding: 20px;
    width: 260px;
    box-shadow: 0 0 15px rgba(150, 120, 230, 0.2);
    text-align: left;
}

    .produto-box img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .produto-box h3 {
        font-size: 20px;
        color: #d5bfff;
        margin-bottom: 5px;
    }

    .produto-box p {
        margin: 4px 0;
        font-size: 15px;
    }

.preco-antigo {
    text-decoration: line-through;
    color: #ff9999;
}

.preco-promocional {
    font-weight: bold;
    color: #ffd67c;
}

.imagens-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

    .imagens-extras .miniatura {
        width: 50px;
        height: auto;
        border-radius: 5px;
        border: 1px solid #704caf;
    }
.botao-editar {
    display: inline-block;
    padding: 8px 14px;
    background-color: #6e59c5;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 5px;
    transition: background-color 0.3s ease;
}

    .botao-editar:hover {
        background-color: #8e70dc;
    }
.botao-excluir {
    padding: 8px 14px;
    background-color: #aa4444;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .botao-excluir:hover {
        background-color: #cc6666;
    }
.botao-exportar {
    display: inline-block;
    padding: 10px 18px;
    background-color: #5c87d6;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .botao-exportar:hover {
        background-color: #78a4f8;
    }
.botao-estoque {
    padding: 6px 10px;
    background-color: #4a86e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .botao-estoque:hover {
        background-color: #6fa8dc;
    }
