body {
    background-color: #f8f9fa;
}

.categoria-card, .producto-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.categoria-card:hover, .producto-card:hover {
    transform: scale(1.03);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

.precio {
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-bottom: 10px;
}

.btn-detalles {
    background-color: #6f42c1;
    border: none;
    width: 100%;
    color: white;
}

.btn-detalles:hover {
    background-color: #59329c;
}

h2 {
    margin-top: 50px;
    text-align: center;
    font-weight: bold;
    color: #343a40;
}

/* Estilo para las imágenes de productos */
.producto-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Estructura uniforme para tarjetas */
.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    text-align: center;
}

.btn-secondary {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
}

.btn-volver-flotante {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    background-color: #6c757d;
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-volver-flotante:hover {
    background-color: #5a6268;
    color: white;
}
