/* =========================================
   FOOTER (KOKORO BEAUTY & CO)
   ========================================= */

.kk-footer {
    background-color: var(--contrast); /* Fondo oscuro elegante */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin-top: auto; /* Empuja el footer al fondo si la página es corta */
}

/* Sección Principal */
.kk-footer-main {
    padding: 5rem 0;
}

/* Marca y Descripción */

.kk-footer-brand {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.kk-footer-brand span {
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 400;
}

.kk-footer-desc {
    font-size: 0.9rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Redes Sociales */
.kk-footer-socials {
    display: flex;
    gap: 15px;
}

.kk-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 !important; /* Estrictamente cuadrado */
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kk-footer-socials a:hover {
    background-color: var(--soft-wine);
    border-color: var(--soft-wine);
    transform: translateY(-3px);
}

/* Títulos de Columnas */
.kk-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.kk-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--soft-wine);
}

/* Enlaces (Links) */
.kk-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kk-footer-links li {
    margin-bottom: 0.8rem;
}

.kk-footer-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.kk-footer-links a:hover {
    color: var(--nude-rose);
    transform: translateX(5px); /* Pequeño desplazamiento a la derecha */
}

/* Formulario Newsletter Cuadrado */
.kk-newsletter-form {
    display: flex;
    width: 100%;
    margin-top: 1rem;
}

.kk-newsletter-input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: #ffffff;
    font-size: 0.9rem;
    border-radius: 0 !important; /* Cuadrado */
    outline: none;
    transition: border-color 0.3s ease;
}

.kk-newsletter-input::placeholder {
    color: #888;
}

.kk-newsletter-input:focus {
    border-color: var(--soft-wine);
    background-color: rgba(255, 255, 255, 0.1);
}

.kk-newsletter-btn {
    background-color: var(--soft-wine);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 0 !important; /* Cuadrado */
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kk-newsletter-btn:hover {
    background-color: #8a3a3a; /* Un tono un poco más claro para el hover */
}

/* Barra Inferior (Copyright) */
.kk-footer-bottom {
    background-color: #111111; /* Un tono más oscuro que el contraste base */
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kk-copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.kk-payment-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media (min-width: 768px) {
    .kk-payment-icons {
        justify-content: flex-end;
    }
}

.kk-payment-icons i {
    color: #888;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.kk-payment-icons i:hover {
    color: #ffffff;
}

.kk-wompi-icon {
    height: 2rem; /* Misma altura que los iconos bi */
    width: auto;
    filter: grayscale(100%) opacity(60%); /* Efecto gris inicial */
    transition: all 0.3s ease;
}

.kk-wompi-icon:hover {
    filter: grayscale(0%) opacity(100%); /* Color total al hover */
}