/* Colores de Paraguay: Rojo (#CE1126), Blanco (#FFFFFF), Azul (#0038A8) */
/* Colores de Bolivia: Rojo (#D52B1E), Amarillo (#FCD116), Verde (#007934) */
/* Colores de Chile: Azul (#0039A6), Blanco (#FFFFFF), Rojo (#D52B1E) */

:root {
    --paraguay-rojo: #CE1126;
    --paraguay-azul: #0038A8;
    --bolivia-rojo: #D52B1E;
    --bolivia-amarillo: #FCD116;
    --bolivia-verde: #007934;
    --chile-azul: #0039A6;
    --chile-blanco: #FFFFFF;
    --chile-rojo: #D52B1E;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar personalizado */
.bg-primary-custom {
    background: linear-gradient(135deg, var(--paraguay-rojo) 0%, var(--bolivia-rojo) 33%, var(--bolivia-verde) 66%, var(--chile-azul) 100%) !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--paraguay-azul) 0%, var(--bolivia-verde) 100%);
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Botones personalizados */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--paraguay-rojo) 0%, var(--bolivia-amarillo) 100%);
    border: none;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}

/* Cards de productos */
.product-card {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-color: var(--bolivia-amarillo);
}

.product-card.paraguaya {
    border-top: 4px solid var(--paraguay-rojo);
}

.product-card.boliviana {
    border-top: 4px solid var(--bolivia-verde);
}

.product-card.chilena {
    border-top: 4px solid var(--chile-azul);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 4rem;
}

.product-card.paraguaya .product-image {
    background: linear-gradient(135deg, var(--paraguay-rojo) 0%, var(--paraguay-azul) 100%);
    opacity: 0.8;
}

.product-card.boliviana .product-image {
    background: linear-gradient(135deg, var(--bolivia-verde) 0%, var(--bolivia-amarillo) 100%);
    opacity: 0.8;
}

.product-card.chilena .product-image {
    background: linear-gradient(135deg, var(--chile-azul) 0%, var(--chile-rojo) 100%);
    opacity: 0.8;
}

.product-body {
    padding: 20px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--paraguay-rojo);
    margin-bottom: 15px;
}

.badge-categoria {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.badge-paraguaya {
    background-color: var(--paraguay-rojo);
    color: white;
}

.badge-boliviana {
    background-color: var(--bolivia-verde);
    color: white;
}

.badge-chilena {
    background-color: var(--chile-azul);
    color: white;
}

/* Carrito */
.carrito-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    background: white;
}

.carrito-item-image {
    width: 100px;
    height: 100px;
    border-radius: 5px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--bolivia-amarillo);
    border-color: var(--bolivia-amarillo);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

/* Secciones */
section {
    padding: 60px 0;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
        min-height: 400px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Animaciones */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner */
.spinner-border-custom {
    color: var(--paraguay-rojo);
}

