



 

.ca-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 10, 16, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.ca-site-header.is-home {
    background: rgba(4, 6, 12, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

 

.ca-header-bar {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 0 5%;
    gap: 24px;
}

 

.ca-header-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ca-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
}

.ca-brand:hover {
    text-decoration: none;
}

.ca-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid var(--color-primary);
    position: relative;
    box-shadow: 0 0 0 6px rgba(var(--color-primary-rgb), 0.12);
}

.ca-brand-mark::after {
    content: "";
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-primary);
}

.ca-brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ca-brand-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.ca-brand-subtitle {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.ca-brand-logo .custom-logo-link,
.ca-brand-logo img {
    display: block;
}

.ca-brand-logo img {
    max-height: 44px;
    width: auto;
}

 

.ca-header-nav {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.ca-top-nav {
    flex: 1;
}

.ca-top-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ca-top-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.ca-top-nav .current-menu-item > a,
.ca-top-nav .current_page_item > a,
.ca-top-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

 

.ca-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ca-header-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}

.ca-header-theme-toggle:hover,
.ca-header-theme-toggle.is-dark {
    background: rgba(255, 255, 255, 0.08);
}

.ca-header-theme-toggle__icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
}

.ca-header-theme-toggle__icon svg {
    width: 100%;
    height: 100%;
}

.ca-header-theme-toggle__icon--sun {
    display: none;
}

.ca-header-theme-toggle.is-dark .ca-header-theme-toggle__icon--sun {
    display: inline-flex;
}

.ca-header-theme-toggle.is-dark .ca-header-theme-toggle__icon--moon {
    display: none;
}

 

.ca-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(var(--color-primary-rgb), 0.45);
    background: rgba(var(--color-primary-rgb), 0.22);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.18s, border-color 0.18s;
}

.ca-header-cta:hover {
    text-decoration: none;
    background: rgba(var(--color-primary-rgb), 0.36);
    border-color: rgba(var(--color-primary-rgb), 0.6);
}

.ca-header-cta__icon {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ca-header-cta__label {
    display: inline;
}

 

.ca-header-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    transition: background 0.18s;
}

.ca-header-account:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

.ca-header-account__icon {
    display: block;
    width: 24px;
    height: 24px;
}

 

.ca-header-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.ca-header-burger__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.ca-header-burger.is-open .ca-header-burger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ca-header-burger.is-open .ca-header-burger__line:nth-child(2) {
    opacity: 0;
}

.ca-header-burger.is-open .ca-header-burger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

 

.ca-offcanvas-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.ca-offcanvas-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.ca-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: min(360px, 85vw);
    background: rgba(7, 10, 16, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ca-offcanvas.is-open {
    transform: translateX(0);
}

.ca-offcanvas__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ca-offcanvas__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.ca-offcanvas__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.18s;
}

.ca-offcanvas__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ca-offcanvas__nav {
    flex: 1;
    padding: 12px 20px;
}

.ca-offcanvas__nav ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ca-offcanvas__nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 16px;
}

.ca-offcanvas__nav a:hover,
.ca-offcanvas__nav .current-menu-item > a,
.ca-offcanvas__nav .current_page_item > a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.ca-offcanvas__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ca-offcanvas__cta,
.ca-offcanvas__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.ca-offcanvas__cta {
    background: rgba(var(--color-primary-rgb), 0.22);
    border: 1px solid rgba(var(--color-primary-rgb), 0.45);
}

.ca-offcanvas__theme-toggle {
    cursor: pointer;
}

.ca-offcanvas__link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.ca-offcanvas__cta:hover,
.ca-offcanvas__link:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
}

body.ca-offcanvas-open {
    overflow: hidden;
}

 

@media (max-width: 1100px) {
    .ca-header-nav {
        display: none;
    }

    .ca-header-brand {
        flex: 1;
    }

    .ca-header-burger {
        display: flex;
    }

     
    .ca-header-cta {
        width: 42px;
        min-height: 42px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: transparent;
    }

    .ca-header-cta__label {
        display: none;
    }

    .ca-header-actions {
        gap: 8px;
    }
}
