/** 
 * @package ItticiSurgelati
 * @version 1.0.0
 * 
 */

.gp-header {
    width           : 100%;
    background      : #fff;
    margin-bottom   : 24px;
}

.gp-header-inner {

    max-width   : 1440px;

    margin      : 0 auto;
    padding     : 18px 24px;
    display     : flex;
    align-items : center;
    gap         : 24px;
}

.gp-header-mobile {
    display: none;
}

.gp-header-logo {
    width       : 220px;
    display     : flex;
    flex-shrink : 0;
    align-items : center;
}

.gp-header-logo-link {
    display     : inline-flex;
    align-items : center;
}

.gp-header-logo img {
    display     : block;
    width       : 100%;
    max-width   : 180px;
    height      : auto;
}

.gp-header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.gp-header-search {
    flex: 1;
    max-width: 680px;
}

.gp-header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.gp-mobile-menu-btn {
    width: 28px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.gp-mobile-menu-btn span,
.gp-mobile-menu-btn::before,
.gp-mobile-menu-btn::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #222;
    position: absolute;
    left: 0;
}

.gp-mobile-menu-btn span {
    top: 50%;
    transform: translateY(-50%);
}

.gp-mobile-menu-btn::before {
    top: 0;
}

.gp-mobile-menu-btn::after {
    bottom: 0;
}

@media (max-width: 1199px) {
    .gp-header-inner {
        justify-content: space-between;
    }

    .gp-header-mobile {
        display: flex;
        align-items: center;
    }

    .gp-header-logo {
        flex: 1;
        justify-content: center;
    }

    .gp-header-actions {
        flex: 0 0 auto;
    }

    .gp-header-search {
        display: none;
    }
}

@media (max-width: 575px) {
    .gp-header-inner {
        padding: 14px 16px;
        gap: 16px;
    }

    .gp-header-logo img {
        max-width: 145px;
    }

    .gp-header-icons {
        gap: 12px;
    }
}