/* Minimized Header Styles */
.logo h1 {
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.action-item:hover i {
    color: var(--secondary-color) !important;
}

.action-item:hover span {
    color: var(--secondary-color) !important;
}

.ecommerce-header-search-wrap {
    position: relative;
    width: 100%;
}

.ecommerce-header-search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
}

.ecommerce-header-search-suggestions[hidden] {
    display: none !important;
}

.ecommerce-header-search-group-title {
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
}

.ecommerce-header-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    text-decoration: none;
    color: #212121;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.ecommerce-header-search-item:hover,
.ecommerce-header-search-item.is-active {
    background: #f3f4f6;
    color: #111827;
}

.ecommerce-header-search-item-thumb {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    background: #f2f4f5;
    flex-shrink: 0;
}

.ecommerce-header-search-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eef9ff;
    color: #1bc4f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.ecommerce-header-search-item-label {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ecommerce-header-search-item-meta {
    font-size: 12px;
    color: #6b7280;
    flex-shrink: 0;
}

.ecommerce-header-search-empty {
    padding: 16px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

.navigation .nav-link {
    text-transform: uppercase;
    transition: color 0.3s;
}

.navigation .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navigation .nav-link.active {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 0;
}

@media (max-width: 991px) {
    .navigation {
        display: none;
        /* Simple mobile hide for now */
    }

    .ecommerce-site-header .main-header {
        padding: 0;
    }

    .ecommerce-header-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        min-height: 52px;
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .ecommerce-header-left {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
        flex: 1 1 auto;
        padding-right: 8px;
    }

    .ecommerce-header-logo {
        max-height: 28px;
        width: auto;
        display: block;
    }

    .ecommerce-header-title {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 600;
        color: #212121;
        line-height: 1.2;
    }

    .ecommerce-header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 auto;
        gap: 0;
    }

    .ecommerce-header-icon-btn {
        width: 40px;
        height: 40px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #212121;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
    }

    .ecommerce-header-icon-btn:hover,
    .ecommerce-header-icon-btn:focus {
        color: #212121;
        background: transparent;
    }

    .ecommerce-header-search {
        display: none;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        margin: 0 0 8px;
        order: 3;
    }

    .ecommerce-site-header.is-search-open .ecommerce-header-search {
        display: block;
    }

    .ecommerce-cart-btn {
        min-height: 40px;
        width: 40px;
        padding: 0;
        justify-content: center;
        gap: 0 !important;
    }

    .ecommerce-cart-label {
        display: none;
    }
}

@media (min-width: 992px) {
    .ecommerce-header-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .ecommerce-header-left {
        display: flex;
        align-items: center;
    }

    .ecommerce-header-logo {
        max-height: 50px;
        width: auto;
    }

    .ecommerce-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}