.body {
    font-family: 'Arial', sans-serif !important;
}

header {
    position: relative !important;
    width: 100% !important;
    overflow: hidden;
    scrollbar-width: auto;
}

.bg-background {
    background-color: #E6F3F6 !important;
    /* Blanco */
}

.text-foreground {
    color: #013749 !important;
    /* Azul1 */
}

.font-bold {
    font-weight: 700 !important;
}

.text-2xl {
    font-size: 1.5rem !important;
}

.card-header img {
    margin-right: 10px;
}

.preview-producto:hover {
    transform: scale(1.1);
}

/* Additional color classes */
.bg-primary {
    background-color: #FEA901 !important;
    /* Amarillo */
}

.text-primary {
    color: #FEA901 !important;
    /* Amarillo */
}

.bg-secondary {
    background-color: #01435A !important;
    /* Azul2 */
}

.text-secondary {
    color: #01435A !important;
    /* Azul2 */
}

.bg-tertiary {
    background-color: #076481 !important;
    /* Azul3 */
}

.text-tertiary {
    color: #076481 !important;
    /* Azul3 */
}

.bg-muted {
    background-color: #AEC9C9 !important;
    /* Plata */
}

.text-muted {
    color: #AEC9C9 !important;
    /* Plata */
}

.btn-whatsapp {
    background: linear-gradient(90deg, rgba(102, 206, 3, 1) 30%, rgba(10, 206, 3, 1) 100%, rgba(39, 255, 0, 0.36) 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Animaciones suaves */
}

.btn-whatsapp .icon {
    font-size: 24px !important;
    vertical-align: middle !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(90deg, rgba(82, 186, 2, 1) 30%, rgba(8, 186, 2, 1) 100%, rgba(35, 235, 0, 0.36) 100%);
    color: #fff;
    transform: scale(1.02);
    text-decoration: none;
}

.btn-whatsapp:active {
    background-color: #128c7e;
    transform: scale(0.95);
}

/* Contenedor de imagen principal */
.main-image-container {
    background: #fff;
    padding: 20px;
    transition: all 0.3s ease;
}

.main-image-container:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

/* Miniaturas */
.thumb-wrapper {
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumb-wrapper:hover {
    border-color: #0d6efd;
    transform: scale(1.05);
}

/* Efecto en botones */
.btn-lg {
    padding: 12px 25px;
    font-size: 1rem;
}

.shadow-sm-hover {
    transition: background-color 0.2s ease;
}

.shadow-sm-hover:hover {
    background-color: #f8f9fa !important;
}

/* Para asegurar que los títulos largos no rompan el layout móvil */
@media (max-width: 576px) {
    .d-flex.justify-content-between {
        flex-direction: column;
    }
    .text-end {
        text-align: left !important;
        margin-top: 4px;
    }
}

/* Sticky-top mejorado */
@media (min-width: 768px) {
    .sticky-top {
        z-index: 10;
    }
}