.elementor-4568 .elementor-element.elementor-element-a6fa193{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d7397aa */.hornir-global-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: clamp(20px, 4vh, 40px) clamp(20px, 5vw, 60px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 100;
    box-sizing: border-box;
    pointer-events: none;
}

.hornir-header-logo, 
.hornir-header-tagline, 
.hornir-header-actions {
    pointer-events: auto;
}

/* --- Left: Logo --- */
.hornir-header-logo {
    justify-self: start;
    display: flex;
    align-items: center;
    
}

.hornir-header-logo-img {
    height: clamp(24px, 3vw, 40px) !important;
    width: auto;
    max-width: 150px;
    transition: opacity 0.3s ease;
}

.hornir-header-logo a:hover .hornir-header-logo-img {
    opacity: 0.8;
}

/* --- Center: Tagline --- */
.hornir-header-tagline {
    text-align: center;
    color: var(--e-global-color-accent, #E68A36); 
    font-family: var(--e-global-typography-primary-font-family, serif);
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 1px;
}

/* --- Right: Icons --- */
.hornir-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 25px);
}

.hornir-action-icon {
    background: none;
    border: none;
    color: var(--e-global-color-text, #ffffff);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
}

.hornir-action-icon svg {
    width: clamp(20px, 1.5vw, 24px);
    height: clamp(20px, 1.5vw, 24px);
}

.hornir-action-icon:hover {
    color: var(--e-global-color-accent, #E68A36);
}

/* Dynamic Cart Badge */
.hornir-cart-badge {
    position: absolute;
    bottom: -5px;
    right: -8px;
    background-color: var(--e-global-color-error, #D93838); 
    color: #fff;
    font-size: 10px;
    font-family: sans-serif;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Bulletproof Mobile Adjustments --- */
@media (max-width: 768px) {
    .hornir-global-header {
        grid-template-columns: 1fr auto; 
        grid-template-rows: auto auto;
        gap: 0; 
        padding: 20px;
        background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    }
    
    .hornir-header-logo {
        grid-column: 1 / 2;
        grid-row: 1;
        justify-self: start;
        align-self: center;
    }
    
    .hornir-header-actions {
        grid-column: 2 / 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        gap: 18px; 
    }
    
    .hornir-header-tagline {
        grid-column: 1 / 3; 
        grid-row: 2;
        justify-self: center;
        text-align: center;
        width: 100%;
        font-size: 13px;
        line-height: 1.2;
        letter-spacing: 0.5px;
        opacity: 0.9;
        margin-top: 18px; 
    }
}/* End custom CSS */