/* ==========================================================================
   HEADERS BASE
   ========================================================================== */

.hs-header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hs-logo a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    letter-spacing: 1px;
}

.hs-main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hs-main-nav a {
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
}

.hs-nav-account {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   HEADER BLANCO
   ========================================================================== */
.hs-header-white {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    padding: 20px 0;
}

/* ==========================================================================
   HEADER NEGRO
   ========================================================================== */
.hs-header-black {
    background-color: #000000;
    color: #FFFFFF;
}

.hs-header-top {
    padding: 20px 0;
    border-bottom: 1px solid #333333;
}

.hs-logo-white a {
    color: #FFFFFF;
}

.hs-nav-white a {
    color: #FFFFFF;
}

.hs-header-bottom {
    background-color: #111111; /* Un negro ligeramente más claro para la barra inferior */
    padding: 15px 0;
}

.hs-header-bottom-inner {
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
}

/* Menú de categorías inferior */
.hs-shop-cats {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hs-cat-dropdown-btn {
    background: transparent;
    border: 1px solid #FFF;
    border-radius: 50px;
    color: #FFF;
    padding: 6px 15px;
    font-family: 'General Sans', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.hs-shop-cats a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s;
}

.hs-shop-cats a:hover {
    color: #FFFFFF;
}

/* Iconos de tienda derecha */
.hs-shop-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.hs-shop-action-link {
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   LA BOLITA MORADA (BADGE)
   ========================================================================== */
.hs-icon-wrapper {
    position: relative;
    display: flex;
}

.hs-badge-purple {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #6143C2; /* El morado de tu diseño */
    color: #FFFFFF;
    font-family: 'General Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}