/* assets/css/style.css - Versão IDÊNTICA à demonstração */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-demo {
    border-bottom: 1px solid #dee2e6;
}

.produto-item {
    transition: transform 0.2s;
    border-left: 4px solid #dc3545;
}

.produto-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.list-group-item-action.active {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger {
    background-color: #dc3545;
    border-radius: 20px;
    padding: 5px 15px;
}

.card-header {
    font-weight: 600;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

/* Menu de categorias fixo */
@media (min-width: 768px) {
    #categoriasList {
        position: sticky;
        top: 20px;
    }
}

.produto-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
}

.card-img-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.list-group-item {
    border-left: 3px solid #dc3545;
    margin-bottom: 8px;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .produto-card .card-title {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.2rem;
    }
}