﻿/* ==========================================================================
   COMPONENTE: LOGO DE CABECERA (Compartido entre Shop y Checkout)
   Ubicación: assets/wc/css/header-shared.css
   Cargado en: tienda/catálogo/carrito Y checkout
========================================================================== */

/* Wrapper del logo */
.hybinet-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Enlace del logo/nombre → home */
.hybinet-header__logo-home {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--hybinet-color-text-primary);
}

/* Enlace "Tienda" → shop */
.hybinet-header__logo-shop {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hybinet-header__logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--hybinet-color-text-primary);
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Logo imagen — controla el tamaño máximo del logo subido */
.hybinet-header__logo img,
.hybinet-header__logo-home img {
    max-height: 30px;
    width: auto;
    display: block;
}

.hybinet-header__logo-separator {
    color: var(--hybinet-color-text-meta);
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.hybinet-header__logo-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--hybinet-color-text-secondary);
    letter-spacing: 0;
    line-height: 1;
    transition: color 0.15s ease;
}

.hybinet-header__logo-shop:hover .hybinet-header__logo-label {
    color: var(--hybinet-color-text-primary);
}
