/**
 * Estilos para el Logo de Rattan Hypermarket
 * Mantiene los colores originales del logo (verde y rojo)
 */

.rattan-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.rattan-logo-image {
    height: 60px;
    width: auto;
}

/* Si se usa logo en texto */
.rattan-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 2px;
}

.rattan-logo-text .rattan {
    color: var(--color-rattan-green);
}

.rattan-logo-text .hypermarket {
    color: var(--color-rattan-red);
    font-weight: 600;
    font-size: 18px;
    display: block;
    letter-spacing: 4px;
    margin-top: -8px;
}

/* Logo pequeño para header */
.rattan-logo-small .rattan-logo-image {
    height: 40px;
}

.rattan-logo-small .rattan-logo-text {
    font-size: 24px;
}

.rattan-logo-small .hypermarket {
    font-size: 14px;
}

/* Logo en footer */
.footer-logo .rattan-logo-image {
    height: 50px;
    opacity: 0.9;
}

/* Hover effect */
.rattan-logo:hover .rattan-logo-image {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}