/* ==========================================
   Top Bar
========================================== */

.top-bar {
    background: #111827;
    color: #ffffff;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 40px;
}

/* ==========================================
   Site Header
========================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

/* ==========================================
   Header Layout
========================================== */

.header {
    display: flex;
    align-items: center;
    gap: 32px;
    min-height: 92px;
}

/* ==========================================
   Logo
========================================== */

.header__logo {
    flex-shrink: 0;
}

.logo {
    display: flex;
    flex-direction: column;

    text-decoration: none;
}

.logo__title {
    color: var(--color-primary);

    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.logo__subtitle {
    margin-top: 6px;

    color: var(--color-text-light);

    font-size: 13px;
    font-weight: 500;
}

/* ==========================================
   Search
========================================== */

.header__search {
    flex: 1;
    max-width: 720px;
}

.header__search .search-form {
    display: flex;
    align-items: center;

    width: 100%;
    height: 52px;

    border: 2px solid #ececec;
    border-radius: 12px;

    background: #ffffff;

    overflow: hidden;

    transition: border-color .25s ease;
}

.header__search .search-form:focus-within {
    border-color: #ff6b00;
}

.header__search .search-field {
    flex: 1;
    height: 100%;
    padding: 0 20px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    transition: color .25s ease;
}
.header__search .search-field::placeholder {
    color: #9ca3af;
}

.header__search .search-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 100%;

    border: none;

    background: transparent;

    cursor: pointer;

    transition: background .25s ease,
                color .25s ease;
}

.header__search .search-submit:hover {
    background: #ff6b00;
    color: #ffffff;
}
/* ==========================================
   Header Actions
========================================== */

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* ==========================================
   Header Action
========================================== */

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.header-action__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #f8fafc;

    transition: .25s ease;
}

.header-action:hover .header-action__icon {
    background: var(--color-primary);
    color: #ffffff;
}

.header-action__content{
    display:flex;
    align-items:center;
}
.header-action__title{
    font-size:15px;
    font-weight:600;
    line-height:1;
}


/* ==========================================
   SVG Icons
========================================== */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex-shrink: 0;
    color: currentColor;
}

.icon svg,
svg.icon {
    width: 100%;
    height: 100%;
}

.icon path,
.icon circle,
.icon rect,
.icon line,
.icon polyline,
.icon polygon {
    stroke: currentColor;
}

/* ==========================================
   Icon Button
========================================== */

.icon-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: #f5f5f5;

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.icon-button:hover {
    background: #ff6b00;
    color: #ffffff;
}

.icon-button:active {
    transform: scale(.96);
}
