

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-light.woff2') format('woff2');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-bold.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto/roboto-black.woff2') format('woff2');
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}


:root {
    --agu-lime: #bed600;
    --agu-lime-dark: #a9c000;
    --agu-lime-soft: #eff7aa;
    --agu-text: #495666;
    --agu-muted: #8b949d;
    --agu-border: #e8e9e9;
    --agu-soft: #f2f2f2;
    --agu-footer: #c2df00;
    --agu-white: #ffffff;
    --site-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #f6f6f6;
    color: var(--agu-text);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

body.public-site {
    min-width: 320px;
    background: linear-gradient(
        90deg,
        #eef0ee 0%,
        #f7f8f7 22%,
        #f7f8f7 78%,
        #eef0ee 100%
    );
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img,
svg {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.site-frame {
    width: min(calc(100% - 32px), var(--site-width));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.button {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 7px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.button--lime {
    background: var(--agu-lime);
    border-color: var(--agu-lime);
    color: #fff;
}

.button--lime:hover,
.button--lime:focus-visible {
    background: var(--agu-lime-dark);
    border-color: var(--agu-lime-dark);
}

.button--light {
    background: #fff;
    border-color: var(--agu-lime);
    color: var(--agu-lime-dark);
}

.button--compact {
    min-height: 30px;
    padding: 6px 16px;
    font-size: 12.5px;
}

.site-header {
    background: #fff;
}

.header-primary {
    display: grid;
    grid-template-columns: max-content minmax(180px, 1fr) auto;
    align-items: center;
    gap: 26px;
    min-height: 106px;
    padding-block: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img,
.mobile-nav-brand img {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-search {
    position: relative;
    width: min(100%, 205px);
    justify-self: center;
}

.site-search__icon {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 15px;
    height: 15px;
    border: 2px solid #9aa1a8;
    border-radius: 50%;
    transform: translateY(-55%);
    pointer-events: none;
}

.site-search__icon::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    background: #9aa1a8;
    transform: rotate(-45deg);
    transform-origin: left center;
}

.site-search input {
    width: 100%;
    height: 36px;
    border: 1px solid #d5d7d9;
    border-radius: 6px;
    outline: 0;
    padding: 0 12px 0 34px;
    color: var(--agu-text);
    background: #fff;
}

.site-search input:focus {
    border-color: var(--agu-lime);
    box-shadow: 0 0 0 2px rgba(190, 214, 0, .15);
}

.site-search__suggestions {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 150;
    width: min(390px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid #d5d7d9;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.site-search__suggestion {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 66px;
    padding: 8px 10px;
    border-bottom: 1px solid #eceeef;
    color: #4d565c;
    text-decoration: none;
}

.site-search__suggestion:hover,
.site-search__suggestion:focus-visible,
.site-search__suggestion.is-active {
    background: #f7f9e8;
    outline: 0;
}

.site-search__suggestion-media {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    overflow: hidden;
    border-radius: 5px;
    background: #f2f3f3;
    color: var(--agu-lime-dark);
    font-size: 11px;
    font-weight: 700;
}

.site-search__suggestion-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-search__suggestion-content {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.site-search__suggestion-content strong,
.site-search__suggestion-content span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-search__suggestion-content strong {
    color: #3d4549;
    font-size: 13px;
    font-weight: 500;
}

.site-search__suggestion-content span {
    color: #8a9195;
    font-size: 11px;
}

.site-search__suggestion-price {
    color: #596166;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.site-search__all-results,
.site-search__suggestions-empty {
    display: block;
    padding: 10px 12px;
    font-size: 12px;
}

.site-search__all-results {
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--agu-lime-dark);
    font: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.site-search__all-results:hover,
.site-search__all-results:focus-visible {
    background: #f7f9e8;
    outline: 0;
}

.site-search__suggestions-empty {
    color: #8a9195;
    text-align: center;
}

.header-info {
    display: grid;
    grid-template-columns: 150px 135px 165px;
    align-items: start;
    gap: 18px;
}

.header-info__item,
.header-account {
    min-width: 0;
}

.header-info__item span {
    display: block;
    color: #969ca2;
    font-size: 12.5px;
    margin-bottom: 3px;
}

.header-info__item strong {
    display: block;
    color: #56616d;
    font-size: 14.5px;
    font-weight: 400;
    white-space: nowrap;
}

.header-info__item a,
.header-account > a {
    display: block;
    color: var(--agu-lime-dark);
    font-size: 12.5px;
    margin-top: 2px;
}

.header-social {
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
}

.header-social-row {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.header-social-row .header-social {
    margin-bottom: 0;
}

.header-account--authenticated .header-social-row {
    gap: 0;
}

.desktop-account {
    position: relative;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid #d9dcde;
}

.desktop-account__toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 2px solid #8e969b;
    border-radius: 50%;
    background: #fff;
    color: #6f7980;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.desktop-account__toggle svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.desktop-account__toggle:hover,
.desktop-account__toggle:focus-visible,
.desktop-account__toggle[aria-expanded="true"] {
    border-color: var(--agu-lime-dark);
    background: #fbfdec;
    color: #7e9000;
    transform: translateY(-1px);
}

.desktop-account__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 9px);
    z-index: 140;
    width: 190px;
    overflow: hidden;
    border: 1px solid var(--agu-border);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.desktop-account__menu a,
.desktop-account__menu button {
    display: block;
    width: 100%;
    border: 0;
    background: #fff;
    padding: 10px 13px;
    color: #7e878d;
    font: inherit;
    font-size: 12.5px;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.desktop-account__menu a + a,
.desktop-account__menu form {
    border-top: 1px solid var(--agu-border);
}

.desktop-account__menu form {
    margin: 0;
}

.desktop-account__menu a:hover,
.desktop-account__menu a:focus-visible,
.desktop-account__menu button:hover,
.desktop-account__menu button:focus-visible {
    background: var(--agu-lime);
    color: #fff;
}

.header-social a {
    display: block;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    opacity: .48;
    transition: opacity .15s ease, transform .15s ease;
}

.header-social img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
    .header-social a:hover,
    .header-social a:focus-visible {
        opacity: 1;
        transform: translateY(-1px);
    }
}

.site-nav-wrap {
    border-top: 3px solid var(--agu-lime);
    border-bottom: 0;
    background: transparent;
}

.site-nav-row {
    position: relative;
    z-index: 2;
    min-height: 73px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-inline: 24px;
    background: #fff;
    border-bottom: 1px solid var(--agu-border);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 5px;
    color: #89929b;
    font-size: 13.5px;
    white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
    background: var(--agu-lime);
    color: #fff;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    border: 1px solid var(--agu-border);
    border-radius: 5px;
    background: #fff;
    color: var(--agu-text);
    padding: 0 12px;
    cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
    width: 19px;
    height: 2px;
    background: currentColor;
}

.nav-toggle__bars {
    position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle__bars::before {
    top: -6px;
}

.nav-toggle__bars::after {
    top: 6px;
}

.cart-link {
    display: grid;
    grid-template-columns: 28px 28px auto;
    align-items: center;
    gap: 6px;
    color: #89929b;
    font-size: 12.5px;
    white-space: nowrap;
}

.cart-link__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: #85919a;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-link__count {
    display: grid;
    width: 24px;
    height: 20px;
    place-items: center;
    border-radius: 7px;
    background: #9099a0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.cart-link.is-restored .cart-link__icon,
.cart-link.is-restored .cart-link__count {
    transform-origin: center;
    animation: cart-restored-pulse .55s ease-in-out 2;
}

@keyframes cart-restored-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cart-link.is-restored .cart-link__icon,
    .cart-link.is-restored .cart-link__count {
        animation: none;
    }
}

.home-feature-zone {
    position: relative;
    background: #fff;
    box-shadow: 0 0 24px rgba(50, 60, 70, .07);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.12fr) minmax(250px, 1fr);
    gap: 14px;
    background: #fff;
}

.hero-banner {
    display: flex;
    min-width: 0;
    min-height: 100%;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: #fff;
}

.hero-banner img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: right center;
}

.hero-banner--empty {
    aspect-ratio: 830 / 450;
    justify-content: center;
    background: #d0d0d0;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: .01em;
}

.latest-articles {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.article-placeholder {
    display: grid;
    min-height: 0;
    place-items: center;
    padding: 20px;
    border: 1px solid #d8d8d8;
    background: #d0d0d0;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.products-section {
    border-top: 1px solid var(--agu-border);
}

.section-heading-row {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    border-bottom: 1px solid var(--agu-border);
}

.section-heading-row h1,
.about-section > h2 {
    margin: 0;
    color: #7f8991;
    font-size: 24px;
    font-weight: 700;
}







.about-section {
    padding: 30px 44px 34px;
    border-top: 1px solid var(--agu-border);
}

.about-section > h2 {
    font-size: 21px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.about-copy-flow {
    display: flow-root;
}

.about-video-shell {
    position: relative;
    float: left;
    width: 36%;
    max-width: 400px;
    min-width: 280px;
    margin: 0 34px 18px 0;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 400 / 224;
}

.about-video-shell iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.homepage-richtext h3 {
    margin: 0 0 12px;
    color: var(--agu-lime-dark);
    font-size: 22px;
    font-weight: 400;
}

.homepage-richtext h3:not(:first-child) {
    margin-top: 20px;
}

.homepage-richtext p,
.homepage-richtext li {
    color: #929aa2;
    font-size: 14.5px;
    line-height: 1.65;
}

.homepage-richtext p {
    margin: 0 0 12px;
}

.homepage-richtext p:last-child {
    margin-bottom: 0;
}

.homepage-richtext ul,
.homepage-richtext ol {
    margin: 10px 0 0 18px;
    padding: 0;
}

.homepage-richtext a {
    color: var(--agu-lime-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.about-copy__toggle-row {
    clear: both;
    padding-top: 12px;
}

.about-copy__toggle {
    min-height: 26px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11.5px;
    line-height: 1;
}

.about-copy__ellipsis {
    white-space: nowrap;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.feature-item {
    display: grid;
    justify-items: center;
    gap: 9px;
    min-width: 0;
    text-align: center;
    color: #8d959c;
}

.feature-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.feature-item strong {
    max-width: 120px;
    font-size: 12.5px;
    line-height: 1.4;
}

.questions-strip {
    background: #e9e9e9;
}

.questions-strip__inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 220px minmax(320px, 1fr);
    align-items: center;
    gap: 18px;
}

.questions-strip__inner > strong {
    font-size: 22px;
    font-weight: 400;
    white-space: nowrap;
}

.questions-strip__button {
    min-width: 200px;
}

.questions-strip__phone-art {
    position: relative;
    display: block;
    width: min(100%, 360px);
    min-width: 0;
    justify-self: end;
    overflow: hidden;
    color: #3d4453;
}

.questions-strip__phone-art img {
    display: block;
    width: 100%;
    height: auto;
}

.questions-strip__phone-art span {
    position: absolute;
    left: 68px;
    top: 4px;
    color: #3d4453;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

body.callback-modal-open {
    overflow: hidden;
}

.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.callback-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(38, 46, 54, .48);
    cursor: pointer;
}

.callback-modal__dialog {
    position: relative;
    width: min(100%, 470px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(73, 86, 102, .12);
    border-top: 4px solid var(--agu-lime);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(25, 33, 40, .24);
}

.callback-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--agu-border);
    padding: 20px 22px 16px;
}

.callback-modal__header > div {
    min-width: 0;
}

.callback-modal__eyebrow {
    display: block;
    width: 38px;
    height: 3px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: var(--agu-lime);
}

.callback-modal__header h2 {
    margin: 0;
    color: #59636b;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
}

.callback-modal__close {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--agu-border);
    border-radius: 50%;
    background: #fff;
    color: #7f8991;
    cursor: pointer;
}

.callback-modal__close:hover,
.callback-modal__close:focus-visible {
    border-color: #cfd3d6;
    background: #f6f7f7;
    color: #59636b;
}

.callback-modal__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.callback-modal__body {
    padding: 20px 22px 22px;
}

.callback-modal__intro {
    margin: 0 0 18px;
    color: #7f8991;
    font-size: 14px;
    line-height: 1.6;
}

.callback-modal__alert {
    margin-bottom: 16px;
    border: 1px solid #e3e6e8;
    border-radius: 8px;
    padding: 11px 13px;
    font-size: 13px;
    line-height: 1.5;
}

.callback-modal__alert--warning {
    border-color: #ead9a4;
    background: #fff8e4;
    color: #7b5b00;
}

.callback-modal__alert--error {
    border-color: #efc3c6;
    background: #fff1f2;
    color: #a51d2d;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.callback-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.callback-form__field > span {
    color: #7f8991;
    font-size: 13px;
    font-weight: 700;
}

.callback-form input {
    width: 100%;
    min-height: 43px;
    border: 1px solid var(--agu-border);
    border-radius: 7px;
    background: #fff;
    color: #59636b;
    padding: 10px 11px;
    outline: none;
    font: inherit;
    font-size: 14px;
}

.callback-form input:focus {
    border-color: var(--agu-lime-dark);
    box-shadow: 0 0 0 3px rgb(190 214 0 / 14%);
}

.callback-form input:disabled,
.callback-form .button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.callback-form__error {
    color: #a51d2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.callback-modal__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 3px;
}

.callback-modal__success {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 4px 0 10px;
    text-align: center;
}

.callback-modal__success svg {
    width: 52px;
    height: 52px;
    border: 2px solid var(--agu-lime);
    border-radius: 50%;
    fill: none;
    stroke: var(--agu-lime-dark);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    padding: 12px;
}

.callback-modal__success p {
    margin: 0;
    color: #59636b;
    font-size: 14px;
    line-height: 1.6;
}

.site-footer {
    background: var(--agu-footer);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.45fr 1fr .95fr;
    gap: 42px;
    padding-block: 28px 22px;
}

.footer-grid h2 {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 5px;
    font-size: 12.5px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, .94);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
    text-decoration: underline;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    height: 40px;
}

.store-badge img {
    display: block;
    width: auto;
    object-fit: contain;
}

.store-badge--apple img {
    height: 40px;
}

.store-badge--google img {
    height: 52px;
}

.footer-bottom {
    padding: 0 0 20px;
    text-align: center;
    font-size: 12px;
}

.category-shortcuts-anchor {
    position: relative;
    height: 0;
}

.category-shortcuts {
    position: absolute;
    left: calc(100% + 10px);
    top: 18px;
    z-index: 8;
    display: grid;
    gap: 8px;
    width: 62px;
}

.category-shortcut {
    display: flex;
    align-items: center;
    width: 62px;
    min-height: 58px;
    overflow: hidden;
    border-radius: 10px;
    background: var(--agu-lime-soft);
    color: var(--agu-lime-dark);
    transition: width .18s ease, background-color .18s ease;
}

.category-shortcut__icon {
    display: block;
    flex: 0 0 62px;
    width: 62px;
    height: 58px;
    overflow: hidden;
}

.category-shortcut__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-shortcut > span:last-child {
    padding-right: 14px;
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
    .category-shortcut:hover,
    .category-shortcut:focus-visible {
        width: 150px;
        background: var(--agu-lime);
    }

    .category-shortcut:hover .category-shortcut__icon img,
    .category-shortcut:focus-visible .category-shortcut__icon img {
        opacity: 1;
    }
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 20;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 0;
    border-radius: 6px;
    background: var(--agu-lime);
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .15s ease, transform .15s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(223, 232, 142, .96);
    border-top: 1px solid rgba(159, 172, 49, .35);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .08);
}

.cookie-consent__main {
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding-block: 10px;
}

.cookie-consent__main p {
    margin: 0;
    color: #4c5154;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.public-site--placeholder {
    background: inherit;
}

.placeholder-page {
    min-height: 420px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 64px;
    padding-bottom: 72px;
}

.placeholder-page__card {
    width: min(100%, 640px);
    border: 1px solid rgba(73, 86, 102, .08);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(50, 60, 70, .07);
    padding: 34px 42px 38px;
    text-align: center;
}

.placeholder-page__eyebrow {
    display: block;
    width: 46px;
    height: 3px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: var(--agu-lime);
}

.brand--center {
    justify-content: center;
    margin-bottom: 30px;
}

.placeholder-page h1 {
    margin: 0 0 12px;
    color: #59636b;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.35;
}

.placeholder-page p {
    max-width: 500px;
    margin: 0 auto 24px;
    color: var(--agu-muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (min-width: 721px) and (max-width: 1560px) {
    .category-shortcuts-anchor {
        width: 100%;
        height: 0;
        margin-inline: 0;
    }

    .category-shortcuts {
        position: absolute;
        left: auto;
        right: 0;
        top: 18px;
        width: 62px;
        grid-template-columns: 62px;
        gap: 8px;
        justify-items: end;
    }

    .category-shortcut {
        width: 62px;
        min-height: 58px;
        justify-self: end;
        flex-direction: row;
        justify-content: flex-start;
        overflow: hidden;
        border-radius: 10px 0 0 10px;
    }

    .category-shortcut__icon {
        flex: 0 0 62px;
        width: 62px;
        height: 58px;
    }

    .category-shortcut > span:last-child {
        padding-right: 14px;
        padding-left: 0;
        color: #fff;
        font-size: 16px;
    }
}

@media (max-width: 980px) {
    .site-nav-row {
        padding-inline: 0;
    }

    .header-primary {
        grid-template-columns: 190px 1fr;
        gap: 16px 24px;
    }

    .site-search {
        justify-self: end;
        width: min(100%, 280px);
    }

    .header-info {
        grid-column: 1 / -1;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        border-top: 1px solid var(--agu-border);
        padding-top: 12px;
    }

    .header-account {
        justify-self: end;
    }

    .site-nav-row {
        min-height: 58px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 1px);
        z-index: 20;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1px;
        padding: 8px;
        border: 1px solid var(--agu-border);
        background: #fff;
        box-shadow: 0 12px 28px rgba(0,0,0,.12);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        min-height: 42px;
    }

    .site-nav-row {
        position: relative;
        justify-content: space-between;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .latest-articles {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .article-placeholder {
        min-height: 150px;
    }

    .about-section {
        padding-inline: 28px;
    }

    .questions-strip__inner {
        grid-template-columns: 1fr auto;
        gap: 12px 18px;
        padding-block: 18px;
    }

    .questions-strip__phone-art {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .site-frame {
        width: min(calc(100% - 24px), var(--site-width));
    }

    .placeholder-page {
        min-height: 350px;
        padding-top: 38px;
        padding-bottom: 48px;
    }

    .placeholder-page__card {
        padding: 28px 22px 30px;
    }

    .placeholder-page h1 {
        font-size: 22px;
    }

    .header-primary {
        grid-template-columns: 1fr auto;
        min-height: 84px;
        padding-block: 14px;
    }

    .site-search {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        width: 100%;
    }

    .header-info {
        grid-template-columns: 1fr 1fr;
        gap: 12px 18px;
    }

    .header-account {
        grid-column: 1 / -1;
        justify-self: start;
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 15px;
    }

    .header-social {
        grid-column: 1 / -1;
    }

    .cart-link__text {
        display: none;
    }

    .cart-link {
        grid-template-columns: 26px 24px;
    }

    .category-shortcuts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
    }

    .latest-articles {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .article-placeholder {
        min-height: 112px;
        font-size: 16px;
    }

    .section-heading-row {
        min-height: 60px;
        padding-inline: 18px;
    }

    .section-heading-row h1 {
        font-size: 22px;
    }

    

    .about-section {
        padding: 25px 20px 30px;
    }

    .about-section > h2 {
        font-size: 18px;
    }

    .about-video-shell {
        float: none;
        width: 100%;
        max-width: 430px;
        min-width: 0;
        margin: 0 0 20px;
    }

    .homepage-richtext h3 {
        font-size: 20px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
    }

    .questions-strip__inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .questions-strip__inner > strong {
        font-size: 19px;
        white-space: normal;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .cookie-consent__main {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-block: 12px;
    }

    .cookie-consent__main p {
        text-align: left;
    }

    .cookie-consent__actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 430px) {
    .site-frame {
        width: min(calc(100% - 16px), var(--site-width));
    }

    .header-primary {
        grid-template-columns: 1fr;
    }

    .brand,
    .site-search {
        justify-self: stretch;
    }

    .brand img {
        width: 165px;
    }

    .header-info {
        grid-template-columns: 1fr;
    }

    .header-account {
        grid-column: 1;
    }

    .category-shortcuts {
        grid-template-columns: 1fr 1fr;
    }

    .category-shortcut {
        min-height: 54px;
    }

    .category-shortcut__icon {
        height: 50px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 12px;
    }

    .questions-strip__button {
        width: 100%;
        min-width: 0;
    }


}

/* Mobile storefront shell inspired by the original AGU mobile navigation. */
.mobile-header-actions,
.mobile-nav-brand,
.mobile-nav-social,
.mobile-nav-backdrop {
    display: none;
}

.nav-toggle--mobile {
    display: none;
}

@media (max-width: 720px) {
    html,
    body.public-site {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header,
    main,
    .questions-strip,
    .site-footer {
        max-width: 100%;
    }

    .header-primary {
        position: relative;
        z-index: 110;
        display: flex;
        min-height: 72px;
        align-items: center;
        gap: 10px;
        padding-block: 8px;
    }

    .brand {
        flex: 0 1 158px;
        min-width: 0;
    }

    .site-search,
    .header-info {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        flex: 1 1 auto;
        align-items: center;
        justify-content: flex-end;
        gap: 10px;
        min-width: 0;
    }

    .mobile-account {
        position: relative;
        flex: 0 0 auto;
    }

    .mobile-account__toggle {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        padding: 0;
        border: 2px solid #8e969b;
        border-radius: 50%;
        background: #fff;
        color: #7f878d;
        cursor: pointer;
    }

    .mobile-account__toggle svg {
        width: 31px;
        height: 31px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.4;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-account__menu {
        position: absolute;
        left: 50%;
        top: calc(100% + 9px);
        z-index: 140;
        width: 178px;
        overflow: hidden;
        border: 1px solid var(--agu-border);
        border-radius: 5px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
        transform: translateX(-50%);
    }

    .mobile-account__menu a,
    .mobile-account__menu button {
        display: block;
        width: 100%;
        border: 0;
        background: #fff;
        padding: 11px 14px;
        color: #7e878d;
        font: inherit;
        font-size: 13px;
        line-height: 1.25;
        text-align: left;
        cursor: pointer;
    }

    .mobile-account__menu form {
        margin: 0;
        border-top: 1px solid var(--agu-border);
    }

    .mobile-account__menu a + a {
        border-top: 1px solid var(--agu-border);
    }

    .mobile-account__menu a:focus-visible,
    .mobile-account__menu a:hover,
    .mobile-account__menu button:focus-visible,
    .mobile-account__menu button:hover {
        background: var(--agu-lime);
        color: #fff;
    }

    .mobile-phone {
        min-width: 0;
        color: #899196;
        font-size: 15px;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-toggle--mobile {
        display: inline-flex;
        width: 42px;
        min-height: 42px;
        justify-content: center;
        border: 0;
        padding: 0;
        color: #7f878d;
    }

    .nav-toggle--mobile .nav-toggle__bars,
    .nav-toggle--mobile .nav-toggle__bars::before,
    .nav-toggle--mobile .nav-toggle__bars::after {
        width: 28px;
        height: 4px;
    }

    .nav-toggle--mobile .nav-toggle__bars::before {
        top: -9px;
    }

    .nav-toggle--mobile .nav-toggle__bars::after {
        top: 9px;
    }

    .site-nav-wrap {
        border-top-width: 2px;
    }

    .site-nav-row {
        width: 100%;
        min-height: 62px;
        justify-content: flex-start;
        padding: 8px 16px;
    }

    .nav-toggle--bar {
        display: none !important;
    }

    .primary-nav {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 120;
        display: flex;
        width: min(72vw, 320px);
        max-width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        border: 0;
        padding: 0 0 28px;
        background: #929a9e;
        box-shadow: 10px 0 28px rgba(0, 0, 0, .16);
        visibility: hidden;
        transform: translateX(-102%);
        transition: transform .2s ease, visibility .2s ease;
    }

    .primary-nav.is-open {
        display: flex;
        visibility: visible;
        transform: translateX(0);
    }

    .mobile-nav-brand {
        display: flex;
        min-height: 78px;
        align-items: center;
        padding: 12px 18px;
        background: #929a9e;
    }

    .mobile-nav-brand a {
        display: inline-flex;
        min-height: 0;
        padding: 0;
        background: transparent !important;
    }

    .primary-nav > a {
        display: flex;
        min-height: 57px;
        align-items: center;
        padding: 0 18px;
        border-radius: 0;
        color: #fff;
        font-size: 15px;
        font-weight: 400;
        white-space: normal;
    }

    .primary-nav > a:hover,
    .primary-nav > a:focus-visible,
    .primary-nav > a.is-active {
        background: #a7bf49;
        color: #fff;
    }

    .mobile-nav-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 28px 26px 0;
    }

    .mobile-nav-social a {
        display: grid;
        width: 34px;
        height: 34px;
        min-height: 0;
        place-items: center;
        overflow: hidden;
        border-radius: 8px;
        padding: 0;
        background: rgba(255, 255, 255, .72);
        opacity: .85;
    }

    .mobile-nav-social img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .mobile-nav-backdrop.is-open {
        position: fixed;
        inset: 0;
        z-index: 115;
        display: block;
        border: 0;
        background: transparent;
        cursor: default;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    .cart-link {
        display: inline-grid;
        width: auto;
        grid-template-columns: 32px 34px auto;
        grid-template-rows: 32px;
        gap: 8px;
        align-items: center;
        justify-content: center;
        color: #899196;
        white-space: nowrap;
    }

    .cart-link__icon {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }

    .cart-link__icon svg {
        width: 30px;
        height: 30px;
        stroke: #899196;
    }

    .cart-link__count {
        grid-column: 2;
        grid-row: 1;
        width: 34px;
        height: 28px;
        justify-self: center;
        border-radius: 14px;
        font-size: 15px;
    }

    .cart-link__text {
        display: block;
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        text-align: left;
        white-space: nowrap;
    }

    .category-shortcuts-anchor {
        display: none;
    }

    .home-feature-zone {
        width: 100%;
        box-shadow: none;
    }

    .public-site--home .latest-articles {
        width: calc(100% - 24px);
        margin: 12px auto 0;
        gap: 10px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .feature-item {
        width: min(100%, 340px);
        grid-template-columns: 70px minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        gap: 18px;
        margin-inline: auto;
        text-align: left;
    }

    .feature-item img {
        width: 56px;
        height: 56px;
        justify-self: center;
    }

    .feature-item strong {
        max-width: none;
        font-size: 15px;
        line-height: 1.35;
    }

    .questions-strip__inner {
        justify-items: center;
        text-align: center;
    }

    .questions-strip__phone-art {
        width: min(100%, 320px);
        justify-self: center;
    }

    .questions-strip__phone-art img {
        display: block;
        width: 100%;
        height: auto;
    }

    .questions-strip__phone-art span {
        left: 19%;
        top: 4px;
        max-width: 78%;
        font-size: clamp(16px, 4.8vw, 19px);
    }

    .cookie-consent {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .cookie-consent__main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 10px 12px;
    }

    .cookie-consent__main > * {
        min-width: 0;
        max-width: 100%;
    }

    .cookie-consent__main p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 12px;
        line-height: 1.35;
        text-align: center;
    }

    .cookie-consent__actions {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .cookie-consent .button {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding-inline: 8px;
        white-space: normal;
    }
}

@media (max-width: 430px) {
    .header-primary {
        gap: 7px;
    }

    .brand {
        flex-basis: 138px;
    }

    .mobile-header-actions {
        gap: 7px;
    }

    .mobile-account__toggle,
    .nav-toggle--mobile {
        width: 39px;
        height: 39px;
        min-height: 39px;
    }

    .mobile-phone {
        font-size: 13px;
    }

    .site-nav-row {
        min-height: 60px;
    }

    .primary-nav {
        width: 70vw;
    }

    .cookie-consent__main {
        padding-inline: 8px;
    }

    .cookie-consent__main p,
    .cookie-consent .button {
        font-size: 11.5px;
    }
}

@media (max-width: 360px) {
    .brand {
        flex-basis: 132px;
    }

    .mobile-phone {
        display: none;
    }
}



/* Informational pages managed through Nexus. */
.site-page-main {
    background: transparent;
}

.site-page-surface {
    padding: 24px 76px 38px;
    background: #fff;
}

.site-page-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
    color: #929aa2;
    font-size: 12px;
    line-height: 1.4;
}

.site-page-breadcrumb a {
    color: #929aa2;
}

.site-page-breadcrumb a:hover,
.site-page-breadcrumb a:focus-visible {
    color: var(--agu-lime-dark);
    text-decoration: underline;
}

.site-page-breadcrumb__current {
    font-weight: 700;
}

.site-page-article > h1 {
    margin: 0 0 24px;
    color: #7f8991;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}

.site-page-content {
    display: flow-root;
    color: #929aa2;
    font-size: 14.5px;
    line-height: 1.65;
}

.site-page-content h2,
.site-page-content h3,
.site-page-content h4 {
    color: var(--agu-lime-dark);
    font-weight: 400;
    line-height: 1.35;
}

.site-page-content h2 {
    margin: 24px 0 12px;
    font-size: 27px;
}

.site-page-content h3 {
    margin: 20px 0 10px;
    font-size: 23px;
}

.site-page-content h4 {
    margin: 18px 0 8px;
    font-size: 19px;
}

.site-page-content > :first-child,
.site-page-content .page-column > :first-child {
    margin-top: 0;
}

.site-page-content p {
    margin: 0;
}

.site-page-content ul,
.site-page-content ol {
    margin: 10px 0 16px 20px;
    padding: 0;
}

.site-page-content a {
    color: var(--agu-lime-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.site-page-content blockquote {
    margin: 16px 0;
    border-left: 3px solid var(--agu-lime);
    background: #f8faf8;
    padding: 10px 14px;
}

.site-page-content hr {
    clear: both;
    margin: 22px 0;
    border: 0;
    border-top: 1px solid var(--agu-border);
}

.site-page-content table {
    width: 100%;
    margin: 16px 0;
    border-collapse: collapse;
}

.site-page-content th,
.site-page-content td {
    border: 1px solid var(--agu-border);
    padding: 8px 10px;
    vertical-align: top;
}

.site-page-content iframe.page-embed-frame {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-page-content .page-columns {
    display: grid;
    clear: both;
    gap: 24px;
    margin: 18px 0;
}

.site-page-content .page-columns--50-50 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.site-page-content .page-columns--40-60 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.site-page-content .page-columns--60-40 {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.site-page-content .page-column {
    min-width: 0;
}

.site-page-content .page-media {
    float: none;
    width: fit-content;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 16px;
}

.site-page-content .page-media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}

.site-page-content .page-media figcaption {
    margin-top: 6px;
    text-align: center;
}

.site-page-content .page-media--left {
    margin-right: auto;
    margin-left: 0;
}

.site-page-content .page-media--right {
    margin-right: 0;
    margin-left: auto;
}

.site-page-content .page-media--center {
    margin-right: auto;
    margin-left: auto;
}

.site-page-content .page-media--center img {
    margin-right: auto;
    margin-left: auto;
}

.site-page-content .page-media--right img {
    margin-left: auto;
}

.site-page-content .page-media--full {
    width: 100% !important;
}

.site-page-content .page-media--full img,
.site-page-content .page-media[style*="width:100%"] img,
.site-page-content .page-media[style*="width: 100%"] img {
    width: 100%;
}

.site-page-content .page-media--wrap.page-media--left {
    float: left;
    margin: 6px 24px 14px 0;
}

.site-page-content .page-media--wrap.page-media--right {
    float: right;
    margin: 6px 0 14px 24px;
}

@media (max-width: 1100px) {
    .site-page-surface {
        padding-right: 44px;
        padding-left: 44px;
    }
}

@media (max-width: 760px) {
    .site-page-surface {
        padding: 20px 20px 30px;
    }

    .site-page-article > h1 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .site-page-content .page-columns,
    .site-page-content .page-columns--50-50,
    .site-page-content .page-columns--40-60,
    .site-page-content .page-columns--60-40 {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .site-page-content .page-media,
    .site-page-content .page-media--left,
    .site-page-content .page-media--right,
    .site-page-content .page-media--center,
    .site-page-content .page-media--full,
    .site-page-content .page-media--wrap.page-media--left,
    .site-page-content .page-media--wrap.page-media--right {
        float: none;
        margin-top: 14px;
        margin-bottom: 14px;
    }

    .site-page-content .page-media--wrap.page-media--left {
        margin-right: auto;
        margin-left: 0;
    }

    .site-page-content .page-media--wrap.page-media--right {
        margin-right: 0;
        margin-left: auto;
    }

    .site-page-content iframe.page-embed-frame {
        min-height: 320px;
    }
}



/* Public contacts module. */
.contacts-page__surface {
    padding-bottom: 46px;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.contacts-page__grid--form-only {
    grid-template-columns: minmax(0, 1fr);
}

.contacts-page__location,
.contacts-form-section {
    min-width: 0;
}

.contacts-page__intro {
    margin-bottom: 22px;
}

.contacts-page__location {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--agu-border);
    border-radius: 10px;
    background: #f8faf8;
}

.contacts-page__location h2,
.contacts-form-section h2,
.contacts-verification h2 {
    margin: 0;
    color: var(--agu-lime-dark);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.35;
}

.contacts-page__location h2 {
    padding: 18px 20px 10px;
}

.contacts-page__address {
    padding: 0 20px 18px;
    color: #7f8991;
    font-size: 14px;
    line-height: 1.6;
}

.contacts-page__map {
    flex: 1 1 auto;
    min-height: 390px;
    border-top: 1px solid var(--agu-border);
    background: #eef1ed;
}

.contacts-page__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
}

.contacts-form-section {
    margin-top: 0;
    border: 1px solid var(--agu-border);
    border-radius: 10px;
    background: #fff;
    padding: 20px;
}

.contacts-form-section > h2 {
    margin-bottom: 16px;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts-form__row {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.contacts-form__row--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contacts-form__row--split > label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.contacts-form label > span,
.contacts-verification label > span {
    color: #7f8991;
    font-size: 13px;
    font-weight: 700;
}

.contacts-form input,
.contacts-form textarea,
.contacts-verification input {
    width: 100%;
    border: 1px solid var(--agu-border);
    border-radius: 7px;
    background: #fff;
    color: #59636b;
    padding: 10px 11px;
    outline: none;
    font: inherit;
    font-size: 14px;
}

.contacts-form input,
.contacts-verification input {
    min-height: 42px;
}

.contacts-form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.55;
}

.contacts-form input:focus,
.contacts-form textarea:focus,
.contacts-verification input:focus {
    border-color: var(--agu-lime-dark);
    box-shadow: 0 0 0 3px rgb(190 214 0 / 14%);
}

.contacts-form__actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 2px;
}

.contacts-form .button:disabled,
.contacts-verification .button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.contacts-field-error {
    color: #a51d2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.contacts-alert {
    margin-bottom: 18px;
    border: 1px solid #dfe5cc;
    border-radius: 8px;
    background: #f6f9e8;
    color: #687500;
    padding: 11px 13px;
    font-size: 13px;
    line-height: 1.5;
}

.contacts-alert--success {
    border-color: #cfe7d8;
    background: #eef8f1;
    color: #18794e;
}

.contacts-alert--warning {
    border-color: #ead9a4;
    background: #fff8e4;
    color: #7b5b00;
}

.contacts-alert--error {
    border-color: #efc3c6;
    background: #fff1f2;
    color: #a51d2d;
}

.contacts-verification {
    margin: 0 0 22px;
    border: 1px solid #dfe5cc;
    border-radius: 10px;
    background: #f8faef;
    padding: 18px 20px;
}

.contacts-verification > p {
    margin: 8px 0 0;
    color: #7f8991;
    font-size: 13.5px;
    line-height: 1.55;
}

.contacts-verification__hint {
    font-size: 12.5px !important;
}

.contacts-verification__form {
    display: grid;
    grid-template-columns: minmax(180px, 260px) auto;
    gap: 12px;
    align-items: end;
    margin-top: 16px;
}

.contacts-verification__form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacts-verification__form input {
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.contacts-verification__form .contacts-field-error {
    grid-column: 1 / -1;
}

.contacts-verification__resend {
    margin-top: 10px;
}

.contacts-text-button {
    border: 0;
    background: transparent;
    color: var(--agu-lime-dark);
    cursor: pointer;
    padding: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 900px) {
    .contacts-page__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

}

@media (max-width: 620px) {
    .contacts-form__row--split,
    .contacts-verification__form {
        grid-template-columns: minmax(0, 1fr);
    }

    .contacts-verification__form .button,
    .contacts-form__actions .button {
        width: 100%;
    }

    .contacts-form-section,
    .contacts-verification {
        padding: 16px;
    }

    .contacts-page__map,
    .contacts-page__map iframe {
        min-height: 280px;
    }

    .callback-modal {
        align-items: end;
        padding: 0;
    }

    .callback-modal__dialog {
        width: 100%;
        max-height: calc(100vh - 18px);
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 15px 15px 0 0;
    }

    .callback-modal__header {
        padding: 18px 18px 14px;
    }

    .callback-modal__body {
        padding: 18px;
    }

    .callback-modal__actions .button {
        width: 100%;
    }
}


/* Public 404 page. */
.site-error-surface {
    padding-top: 22px;
}

.site-error-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0 12px;
}

.site-error-card__image {
    display: block;
    width: min(100%, 360px);
    max-width: 360px;
    height: auto;
    margin: 10px auto 6px;
}

.site-error-card__status {
    margin: 0;
    color: #8b96a0;
    font-size: clamp(72px, 10vw, 96px);
    font-weight: 300;
    line-height: 0.95;
}

.site-error-card__brand {
    margin: 8px 0 0;
    color: #7f8991;
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 300;
    line-height: 1.25;
}

.site-error-card__message {
    max-width: 520px;
    margin: 14px 0 0;
    color: #929aa2;
    font-size: 18px;
    line-height: 1.55;
}

.site-error-card__actions {
    display: flex;
    justify-content: flex-end;
    width: min(100%, 700px);
    margin-top: 22px;
}

.site-error-card__button {
    min-width: 150px;
}

@media (max-width: 780px) {
    .site-error-surface {
        padding-top: 18px;
    }

    .site-error-card__image {
        width: min(100%, 290px);
    }

    .site-error-card__message {
        font-size: 16px;
    }

    .site-error-card__actions {
        justify-content: center;
    }
}







