.gv-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    width: 100%;
    background: linear-gradient(135deg, #018b01 0%, #016f01 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.gv-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 108px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gv-header__brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.gv-header__logo {
    width: 125px;
    height: 90px;
    object-fit: cover;
    background: #fff;
    padding: 4px;
}

.gv-header__desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    padding: 10px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gv-header__link {
    color: #0f6c39;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.gv-header__link:hover,
.gv-header__link--active {
    background: #e8f7eb;
    color: #018b01;
}

.gv-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.gv-header__lang {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 400;
    cursor: pointer;
}

.gv-header__lang.is-active {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gv-header__profile-btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.gv-header__profile-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.gv-header__burger {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.gv-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 24, 0.55);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1300;
}

.gv-mobile-backdrop.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gv-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100vh;
    background: linear-gradient(180deg, #071120 0%, #0b1425 100%);
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1350;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 28px;
}

.gv-mobile-drawer.is-open {
    transform: translateX(0);
}

.gv-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.gv-mobile-drawer__logo {
    width: 88px;
    height: 68px;
    object-fit: cover;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
}

.gv-mobile-drawer__close {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.gv-mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.gv-mobile-drawer__link {
    color: #fff;
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 18px 22px;
    border-radius: 18px;
    transition: all 0.25s ease;
}

.gv-mobile-drawer__link:hover,
.gv-mobile-drawer__link--active {
    background: rgba(138, 53, 76, 0.22);
    color: #ff546e;
}

.gv-account-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: flex-end;
    z-index: 1400;
}

.gv-account-modal.is-open {
    display: flex;
}

.gv-account-modal__panel {
    position: relative;
    width: min(100%, 410px);
    height: 100vh;
    background: #fff;
    padding: 28px 22px;
    overflow-y: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
}

.gv-account-modal__close,
.gv-account-modal__back {
    position: absolute;
    top: 18px;
    border: none;
    background: transparent;
    color: #5f6368;
    font-size: 1.4rem;
    cursor: pointer;
}

.gv-account-modal__close {
    right: 18px;
}

.gv-account-modal__back {
    left: 18px;
}

.gv-account-modal__title {
    margin: 10px 0 0;
    text-align: center;
    color: #0f8d43;
    font-size: 1.35rem;
    font-weight: 800;
}

.gv-account-modal__divider {
    border: none;
    border-top: 1px solid #c7e8cf;
    margin: 18px 0;
}

.gv-account-modal__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.gv-account-modal__profile-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.gv-account-modal__upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 10px;
    background: #0f8d43;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
}

.gv-account-modal__user {
    text-align: center;
}

.gv-account-modal__name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.gv-account-modal__email {
    margin: 0;
    color: #0f8d43;
    font-size: 0.96rem;
}

.gv-account-modal__message {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 600;
    margin: 0 0 16px;
}

.gv-account-modal__actions,
.gv-account-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gv-account-modal__action {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.gv-account-modal__action--primary {
    background: #ef4444;
}

.gv-account-modal__action--danger {
    background: #16a34a;
}

.gv-account-modal__action--neutral {
    background: #6b7280;
}

.gv-mobile-drawer__lang {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.notranslate {
    translate: no;
}

iframe.goog-te-banner-frame,
.goog-te-banner-frame {
    display: none !important;
}

.VIpgJd-ZVi9od-ORHb,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe-OiiCO,
.VIpgJd-yAWNEb-L7lbkb,
.VIpgJd-ZVi9od-xl07Ob-lTBxed,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0 !important;
    margin-top: 0 !important;
    position: static !important;
}

body > .skiptranslate {
    display: none !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

@media (max-width: 1100px) {
    .gv-header__desktop-nav {
        display: none;
    }

    .gv-header__burger {
        display: inline-flex;
    }

    .gv-header__inner {
        min-height: 94px;
    }

    .gv-header__logo {
        width: 110px;
        height: 78px;
    }
}

@media (max-width: 640px) {
    .gv-header__inner {
        padding: 12px 16px;
        min-height: 88px;
    }

    .gv-header__logo {
        width: 92px;
        height: 70px;
    }

    .gv-header__actions {
        gap: 10px;
    }

    .gv-header__lang {
        font-size: 1rem;
    }

    .gv-header__profile-img {
        width: 42px;
        height: 42px;
    }

    .gv-mobile-drawer {
        width: min(92vw, 360px);
        padding: 16px;
    }

    .gv-mobile-drawer__link {
        font-size: 1.15rem;
        padding: 16px 18px;
    }

    .gv-account-modal__panel {
        width: 100%;
    }
}