/* Estilos personalizados para la tienda online */

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.header {
    background-color: #9e0085 !important;
    color: white;
}

.header h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.product-card {
    border-radius: 8px;
    transition: transform 0.2s ease-in-out;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.card-body {
    padding: 15px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.card-text {
    font-size: 1.1rem;
    color: #28a745;
}

.btn-primary {
    background-color: #9e0085;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #9e0085;
    color: white;
}

.footer {
    background-color: #9e0085;
    color: white;
    text-align: center;
    padding: 10px 0;
}
