﻿:root {
    --alz-bg: #f5f7fb;
    --alz-bg-2: #ffffff;
    --alz-surface: #ffffff;
    --alz-border: #d9e1ec;
    --alz-text: #101828;
    --alz-text-soft: #667085;
    --alz-accent: #0f172a;
    --alz-accent-2: #1e3a8a;
    --alz-accent-3: #2563eb;
    --alz-sky: #0f766e;
    --alz-shadow: 0 20px 50px rgba(15, 23, 42, .10);
    --alz-radius: 0;
    --alz-container: 100%;
    --alz-gold: #d6a84f;
    --alz-gold-2: #f1d58a;
    --alz-gold-3: #9b6a24;
    --alz-gold-soft: rgba(214, 168, 79, .16);
    --alz-gold-border: rgba(214, 168, 79, .34);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.alz-body {
    margin: 0;
    color: var(--alz-text);
    background: var(--alz-bg);
    font-family: Manrope, Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.alz-container {
    width: min(var(--alz-container), calc(100% - 40px));
    margin: 0 auto;
}

.alz-main {
    min-height: 40vh;
    padding: 26px 0 0;
    background: var(--alz-bg);
}

.alz-section__title,
.alz-hero__title,
.alz-splitBanner__title,
.alz-footer__newsletterTitle,
.alz-footer__brand,
.alz-footer__title,
.alz-header__brandText {
    font-family: Manrope, Arial, Helvetica, sans-serif;
    letter-spacing: .02em;
}

.alz-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: transparent;
}

.alz-header__shell {
    background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(248,250,252,.97) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(15,23,42,.08);
}

.alz-header__main {
    display: grid;
    grid-template-columns: minmax(230px, .75fr) minmax(360px, 620px) minmax(190px, .65fr);
    align-items: center;
    gap: 24px;
    min-height: 92px;
}

.alz-header__brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    text-decoration: none;
}

.alz-header__logo {
    max-height: 76px;
    width: auto;
    object-fit: contain;
}

.alz-header__brandText {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--alz-text);
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

    .alz-header__brandText::after {
        content: "";
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-radius: 999px;
        background: #1e3a8a;
        box-shadow: 0 0 0 5px rgba(30,58,138,.10);
    }

.alz-headerSearch {
    position: relative;
    width: 100%;
    height: 48px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15,23,42,.065);
    overflow: hidden;
}

.alz-headerSearch__icon {
    width: 44px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--alz-text-soft);
}

    .alz-headerSearch__icon svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

.alz-headerSearch__input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--alz-text);
    font-size: 14px;
}

    .alz-headerSearch__input::placeholder {
        color: rgba(107,114,128,.76);
    }

.alz-headerSearch__submit {
    position: relative;
    width: 42px;
    min-width: 42px;
    height: 42px;
    margin-right: 3px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--alz-text-soft);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
    transition: background .2s ease, color .2s ease;
}

    .alz-headerSearch__submit::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 10px;
        width: 15px;
        height: 15px;
        border: 2px solid currentColor;
        border-radius: 999px;
    }

    .alz-headerSearch__submit::after {
        content: "";
        position: absolute;
        left: 25px;
        top: 25px;
        width: 8px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transform: rotate(45deg);
        transform-origin: left center;
    }

    .alz-headerSearch__submit:hover {
        background: rgba(15,23,42,.06);
        color: var(--alz-text);
    }

.alz-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.alz-iconbtn {
    position: relative;
    min-width: 42px;
    height: 42px;
    border: 1px solid rgba(17,24,39,.09);
    background: rgba(255,255,255,.90);
    color: var(--alz-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(16,24,40,.055);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

    .alz-iconbtn:hover {
        background: #ffffff;
        border-color: rgba(30,58,138,.28);
        color: #1e3a8a;
        box-shadow: 0 14px 30px rgba(15,23,42,.09);
        transform: translateY(-1px);
    }

    .alz-iconbtn svg {
        width: 19px;
        height: 19px;
        fill: currentColor;
    }

.alz-search {
    position: relative;
}

.alz-search--compact {
    display: none;
}

.alz-search__drop {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.10);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(15,23,42,.12);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index: 80;
}

.alz-search.is-open .alz-search__drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.alz-search__input {
    width: 100%;
    height: 44px;
    border: 1px solid rgba(16,24,40,.12);
    border-radius: 999px;
    background: #f9fafb;
    padding: 0 15px;
    color: var(--alz-text);
    outline: none;
}

    .alz-search__input:focus {
        background: #ffffff;
        border-color: rgba(16,24,40,.30);
        box-shadow: 0 0 0 4px rgba(16,24,40,.07);
    }

.alz-langwrap,
.alz-accwrap {
    position: relative;
}

.alz-langbtn {
    width: auto;
    min-width: 66px;
    padding: 0 11px;
    gap: 6px;
}

.alz-langbtn__text {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.alz-langbtn__arrow {
    width: 14px !important;
    height: 14px !important;
}

.alz-langmenu,
.alz-accmenu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 250px;
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.10);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(15,23,42,.12);
    padding: 10px;
    z-index: 80;
}

.alz-langmenu__item,
.alz-accmenu__item {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 12px;
    color: #344054;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

    .alz-langmenu__item:hover,
    .alz-accmenu__item:hover {
        background: #f3f4f6;
        color: #101828;
    }

    .alz-langmenu__item.is-current {
        opacity: .6;
        cursor: not-allowed;
    }

.alz-langmenu__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.alz-accmenu__who {
    padding: 10px 12px 12px;
    border-bottom: 1px solid rgba(16,24,40,.10);
    margin-bottom: 4px;
}

.alz-accmenu__whoTitle {
    font-size: 12px;
    color: var(--alz-text-soft);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.alz-accmenu__whoText {
    margin-top: 4px;
    font-size: 14px;
    color: var(--alz-text);
    word-break: break-word;
}

.alz-accmenu__sep {
    height: 1px;
    background: rgba(16,24,40,.10);
    margin: 6px 0;
}

.alz-accmenu__item--danger {
    color: #b42318;
}

.alz-cart__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #1e3a8a;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 8px 18px rgba(30,58,138,.24);
}

.alz-header__navWrap {
    background: rgba(255,255,255,.99);
    border-top: 1px solid rgba(15,23,42,.055);
    border-bottom: 1px solid rgba(15,23,42,.075);
    box-shadow: 0 8px 22px rgba(15,23,42,.040);
}

.alz-nav {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    flex-wrap: nowrap;
    overflow: visible;
}

.alz-nav__link {
    position: relative;
    padding: 19px 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
    color: rgba(16,24,40,.78);
    transition: color .2s ease, transform .2s ease;
    white-space: nowrap;
}

    .alz-nav__link:hover,
    .alz-nav__link.is-active {
        color: #101828;
    }

    .alz-nav__link:hover {
        transform: translateY(-1px);
    }

    .alz-nav__link.is-active::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 12px;
        height: 2px;
        border-radius: 999px;
        background: #344054;
        box-shadow: 0 5px 12px rgba(16,24,40,.10);
    }

.alz-mega {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.alz-mega__btn {
    position: relative;
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid rgba(16,24,40,.12);
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(16,24,40,.055);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

    .alz-mega__btn:hover {
        background: #f8fafc;
        border-color: rgba(16,24,40,.20);
        color: #101828;
        box-shadow: 0 12px 26px rgba(16,24,40,.085);
        transform: translateY(-1px);
    }

.alz-mega__hamburger {
    width: 17px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 17px;
}

    .alz-mega__hamburger span {
        display: block;
        width: 17px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

.alz-mega__btnText {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.alz-nav__mega {
    position: relative;
    display: flex;
    align-items: center;
}

    .alz-nav__mega .alz-mega__btn::after {
        display: none;
    }

    .alz-nav__mega.is-open .alz-mega__btn,
    .alz-nav__mega .alz-mega__btn:hover {
        background: #f8fafc;
        border-color: rgba(16,24,40,.20);
        color: #101828;
    }

.alz-mega__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: min(1120px, calc(100vw - 40px));
    max-height: min(72vh, 640px);
    background: #ffffff;
    border: 1px solid rgba(16,24,40,.10);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
    padding: 22px;
    z-index: 90;
    overflow-y: auto;
    overflow-x: hidden;
}

    .alz-mega__panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        pointer-events: none;
    }

.alz-mega__head,
.alz-mega__grid,
.alz-mega__empty {
    position: relative;
    z-index: 1;
}

.alz-mega__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(16,24,40,.08);
}

.alz-mega__eyebrow {
    margin-bottom: 6px;
    color: #667085;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.alz-mega__title {
    color: #101828;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.alz-mega__allLink {
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(16,24,40,.12);
    border-radius: 999px;
    background: #ffffff;
    color: #344054;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .2s ease;
}

    .alz-mega__allLink:hover {
        background: #f3f4f6;
        border-color: rgba(16,24,40,.20);
        color: #101828;
    }

.alz-mega__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.alz-mega__col {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(16,24,40,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 24px rgba(16,24,40,.035);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

    .alz-mega__col:hover {
        border-color: rgba(30,58,138,.18);
        box-shadow: 0 16px 36px rgba(15,23,42,.08);
        transform: translateY(-2px);
    }

.alz-mega__rootLink {
    position: relative;
    display: block;
    margin-bottom: 12px;
    padding-bottom: 10px;
    color: #101828;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: .025em;
    text-transform: uppercase;
    white-space: normal;
}

    .alz-mega__rootLink::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 34px;
        height: 2px;
        border-radius: 999px;
        background: #98a2b3;
    }

    .alz-mega__rootLink:hover {
        color: #000000;
    }

.alz-mega__list,
.alz-mega__sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alz-mega__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alz-mega__sublist {
    margin-top: 7px;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 1px solid rgba(17,24,39,.10);
}

.alz-mega__childLink {
    display: block;
    font-size: 13px;
    line-height: 1.45;
    color: #344054;
    font-weight: 600;
    transition: color .2s ease;
    white-space: normal;
}

    .alz-mega__childLink:hover {
        color: #101828;
    }

.alz-mega__subLink {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: var(--alz-text-soft);
    transition: color .2s ease;
    white-space: normal;
}

    .alz-mega__subLink:hover {
        color: var(--alz-text);
    }

.alz-mega__empty {
    padding: 16px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 16px;
    background: #ffffff;
    font-size: 14px;
    color: var(--alz-text-soft);
}

.alz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: .2s ease;
}

.alz-btn--primary {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
}

    .alz-btn--primary:hover {
        background: #0b1120;
    }

.alz-btn--ghost {
    border-color: rgba(255,255,255,.65);
    color: #fff;
    background: transparent;
}

    .alz-btn--ghost:hover {
        background: rgba(255,255,255,.1);
    }

.alz-footer {
    margin-top: 56px;
    background: #f4f5f7;
}

.alz-footer__newsletter {
    position: relative;
    padding: 18px 0 28px;
    background: radial-gradient(circle at 50% 0%, rgba(214,168,79,.12), transparent 34%), var(--alz-bg);
}

.alz-footer__newsletterInner {
    text-align: center;
}

.alz-footer__newsletterTitle {
    position: relative;
    display: inline-block;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 850;
    margin: 0 0 10px;
    color: #101828;
    text-transform: uppercase;
    letter-spacing: -.025em;
}

    .alz-footer__newsletterTitle::after {
        content: "";
        display: block;
        width: 54px;
        height: 3px;
        margin: 12px auto 0;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--alz-gold-3), var(--alz-gold), var(--alz-gold-2));
        box-shadow: 0 8px 20px rgba(214,168,79,.22);
    }

.alz-footer__newsletterText {
    margin: 14px 0 20px;
    color: #667085;
    font-size: 14px;
    font-weight: 500;
}

.alz-footer__newsletterForm {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
}

.alz-footer__newsletterInput {
    height: 48px;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 999px;
    background: #ffffff;
    padding: 0 14px;
    outline: none;
    color: #101828;
    box-shadow: 0 12px 28px rgba(15,23,42,.055);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

    .alz-footer__newsletterInput:focus {
        border-color: var(--alz-gold-border);
        box-shadow: 0 0 0 4px rgba(214,168,79,.14), 0 14px 30px rgba(15,23,42,.07);
        background: #ffffff;
    }

.alz-footer__newsletterBtn {
    height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 48%, #f1d58a 100%);
    color: #111827;
    cursor: pointer;
    letter-spacing: .075em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(155,106,36,.20);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

    .alz-footer__newsletterBtn:hover {
        filter: brightness(1.03);
        transform: translateY(-1px);
        box-shadow: 0 20px 38px rgba(155,106,36,.26);
    }

.alz-footer__newsletterResult {
    margin-top: 10px;
    text-align: center;
    color: var(--alz-text-soft);
}

.alz-footer__main {
    padding: 10px 0 24px;
}

.alz-footer__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214,168,79,.20);
    border-radius: 14px;
    background: radial-gradient(circle at 12% 8%, rgba(241,213,138,.18), transparent 28%), radial-gradient(circle at 88% 0%, rgba(214,168,79,.12), transparent 30%), linear-gradient(135deg, #06080d 0%, #111827 46%, #1b1b16 100%);
    color: #f9fafb;
    padding: 34px 32px 18px;
    box-shadow: 0 30px 78px rgba(15,23,42,.24);
}

    .alz-footer__panel::before {
        content: "";
        position: absolute;
        left: 24px;
        right: 24px;
        top: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(241,213,138,.72), transparent);
        pointer-events: none;
    }

    .alz-footer__panel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255,255,255,.035) 0, transparent 18%, transparent 82%, rgba(255,255,255,.025) 100%);
        pointer-events: none;
    }

.alz-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0,1.15fr) minmax(0,.9fr) minmax(0,2.55fr);
    gap: 32px;
    align-items: start;
}

.alz-footer__col {
    min-width: 0;
}

.alz-footer__brand {
    position: relative;
    display: inline-block;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #ffffff;
}

    .alz-footer__brand::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin-top: 12px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--alz-gold), var(--alz-gold-2));
        box-shadow: 0 8px 18px rgba(214,168,79,.28);
    }

.alz-footer__title {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
    margin-bottom: 14px;
    color: var(--alz-gold-2);
}

.alz-footer__desc,
.alz-footer__contactLine,
.alz-footer__contactLink {
    font-size: 14px;
    font-weight: 500;
    color: rgba(249,250,251,.76);
    line-height: 1.75;
}

.alz-footer__contactLink {
    display: block;
    margin-top: 8px;
    transition: color .2s ease;
}

    .alz-footer__contactLink:hover {
        color: var(--alz-gold-2);
    }

.alz-footer__qr {
    margin-top: 16px;
}

    .alz-footer__qr img {
        width: 92px;
        height: 92px;
        object-fit: contain;
        background: #fff;
        padding: 6px;
        border: 1px solid var(--alz-gold-border);
        border-radius: 10px;
        box-shadow: 0 14px 30px rgba(0,0,0,.18);
    }

.alz-footer__qr--mobile {
    display: none;
}

.alz-footer__col--links {
    min-width: 0;
}

.alz-footer__linksWrap {
    min-width: 0;
    width: 100%;
}

    .alz-footer__linksWrap .alz-footerLinkCols {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 28px !important;
        align-items: start;
        width: 100%;
    }

    .alz-footer__linksWrap .alz-footerLinkCols__col {
        min-width: 0;
        width: 100%;
    }

    .alz-footer__linksWrap .alz-footerLinkCols__title {
        margin: 0 0 14px;
        font-family: Manrope, Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .11em;
        text-transform: uppercase;
        color: var(--alz-gold-2) !important;
    }

    .alz-footer__linksWrap .alz-footerLinkCols__list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .alz-footer__linksWrap .alz-footerLinkCols__list li + li {
            margin-top: 9px;
        }

        .alz-footer__linksWrap .alz-footerLinkCols__list a {
            color: rgba(249,250,251,.74) !important;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.7;
            transition: color .2s ease, transform .2s ease;
        }

            .alz-footer__linksWrap .alz-footerLinkCols__list a:hover {
                color: var(--alz-gold-2) !important;
            }

.alz-footer__bottom {
    position: relative;
    z-index: 1;
    margin-top: 26px;
    padding-top: 16px;
    border-top: 1px solid rgba(214,168,79,.20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.alz-footer__copy,
.alz-footer__copy a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(249,250,251,.68);
}

    .alz-footer__copy a {
        color: var(--alz-gold-2);
        font-weight: 800;
    }

        .alz-footer__copy a:hover {
            color: #ffffff;
        }

.alz-footer__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .alz-footer__social a {
        width: 31px;
        height: 31px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(249,250,251,.84);
        border: 1px solid rgba(214,168,79,.28);
        border-radius: 999px;
        background: rgba(255,255,255,.045);
        font-size: 12px;
        transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    }

        .alz-footer__social a:hover {
            background: rgba(214,168,79,.14);
            border-color: rgba(241,213,138,.62);
            color: var(--alz-gold-2);
            transform: translateY(-1px);
        }

.alz-footer__paymentsRow {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(214,168,79,.12);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.alz-footerBadges {
    padding: 0 0 22px;
}

.alz-footerBadges__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.alz-footerBadges__item {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(214,168,79,.18);
    box-shadow: 0 12px 28px rgba(15,23,42,.055);
}

.alz-footerBadges__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(214,168,79,.18), rgba(241,213,138,.20));
    color: #9b6a24;
    border-radius: 999px;
}

    .alz-footerBadges__icon img {
        max-width: 24px;
        max-height: 24px;
        object-fit: contain;
    }

.alz-footerBadges__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--alz-text);
}

.alz-footerBadges__sub {
    margin-top: 4px;
    font-size: 13px;
    color: var(--alz-text-soft);
}

.alz-footerLinks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.alz-footerLinks__title {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 900;
    color: var(--alz-gold-2);
    letter-spacing: .11em;
    text-transform: uppercase;
}

.alz-footerLinks__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .alz-footerLinks__list li + li {
        margin-top: 9px;
    }

    .alz-footerLinks__list a {
        color: rgba(249,250,251,.74);
        font-size: 14px;
        font-weight: 500;
        transition: color .2s ease;
    }

        .alz-footerLinks__list a:hover {
            color: var(--alz-gold-2);
        }

.alz-payLogos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.alz-payLogo__link {
    min-width: 58px;
    height: 34px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(214,168,79,.28);
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .alz-payLogo__link:hover {
        border-color: rgba(214,168,79,.58);
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(0,0,0,.16);
    }

.alz-payLogo__img {
    max-width: 100%;
    max-height: 22px;
    object-fit: contain;
    display: block;
}

.alz-mnav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: none;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e3e8f4;
}

.alz-mnav__item {
    flex: 1 1 0;
    min-height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--alz-text-soft);
}

    .alz-mnav__item.is-active {
        color: var(--alz-accent-2);
    }

.alz-mnav__ic svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.alz-mnav__tx {
    font-size: 11px;
}

.alz-mobileMega {
    display: none;
}

@media (max-width: 1199.98px) {
    .alz-header__main {
        grid-template-columns: minmax(190px, .65fr) minmax(300px, 1fr) auto;
        gap: 16px;
    }

    .alz-header__brandText {
        font-size: 24px;
    }

    .alz-headerSearch {
        max-width: 100%;
    }

    .alz-nav {
        gap: 22px;
    }

    .alz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .alz-footer__col--links {
        grid-column: 1 / -1;
    }

    .alz-footer__linksWrap .alz-footerLinkCols {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }
}

@media (max-width: 991.98px) {
    .alz-header__main {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 12px 0;
    }

    .alz-headerSearch {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .alz-header__actions {
        grid-column: 2;
        grid-row: 1;
    }

    .alz-footerBadges__grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .alz-footerLinks {
        grid-template-columns: 1fr;
    }

    .alz-footer__newsletterForm {
        grid-template-columns: 1fr;
    }

    .alz-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .alz-footer__col--links {
        grid-column: 1 / -1;
    }

    .alz-footer__linksWrap .alz-footerLinkCols {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 20px !important;
    }

    .alz-footer__bottom {
        align-items: flex-start;
    }

    .alz-mega__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .alz-container {
        width: min(100% - 28px, 100%);
    }

    .alz-header {
        position: relative;
    }

    .alz-header__main {
        min-height: auto;
        gap: 12px;
        grid-template-columns: 1fr auto;
        padding: 12px 0;
    }

    .alz-header__brand {
        justify-self: start;
        min-width: 0;
    }

    .alz-header__logo {
        max-height: 62px;
        width: auto;
    }

    .alz-header__brandText {
        font-size: 22px;
    }

    .alz-headerSearch {
        grid-column: 1 / -1;
        grid-row: 2;
        height: 44px;
        grid-template-columns: 42px minmax(0, 1fr);
        order: 3;
    }

    .alz-headerSearch__submit {
        display: none;
    }

    .alz-headerSearch__input {
        height: 44px;
        font-size: 13px;
        padding-right: 14px;
    }

    .alz-headerSearch__icon {
        height: 44px;
    }

    .alz-header__actions {
        justify-self: end;
        gap: 5px;
        min-width: 0;
        padding-right: 0;
    }

    .alz-search--compact {
        display: none;
    }

    .alz-iconbtn {
        min-width: 38px;
        height: 38px;
    }

    .alz-langbtn {
        min-width: 56px;
        padding: 0 9px;
    }

    .tp-cart {
        margin-right: 0;
    }

    .alz-header__navWrap {
        overflow: visible;
    }

    .alz-nav {
        min-height: 50px;
        justify-content: flex-start;
        overflow: auto;
        white-space: nowrap;
        gap: 20px;
        padding: 0 2px;
        flex-wrap: nowrap;
        scrollbar-width: thin;
        scrollbar-color: rgba(15,23,42,.30) rgba(15,23,42,.06);
    }

        .alz-nav::-webkit-scrollbar {
            height: 5px;
        }

        .alz-nav::-webkit-scrollbar-track {
            background: rgba(15,23,42,.06);
        }

        .alz-nav::-webkit-scrollbar-thumb {
            background: rgba(15,23,42,.30);
            border-radius: 999px;
        }

    .alz-search__drop {
        right: 0;
        left: 0;
        min-width: 0;
        max-width: calc(100vw - 28px);
    }

    .alz-nav__mega {
        display: none !important;
    }

    .alz-mobileMega {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }

    .alz-mobileMega__check {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .alz-mobileMega__btn {
        min-height: 50px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 0 12px 0 0;
        color: #344054;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        white-space: nowrap;
        cursor: pointer;
    }

    .alz-mobileMega__hamburger {
        width: 17px;
        display: inline-flex;
        flex-direction: column;
        gap: 4px;
        flex: 0 0 17px;
    }

        .alz-mobileMega__hamburger span {
            display: block;
            width: 17px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
        }

    .alz-mobileMega__overlay {
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(15,23,42,.52);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease;
    }

    .alz-mobileMega__drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 999;
        width: min(380px, 88vw);
        background: #ffffff;
        border-right: 1px solid rgba(15,23,42,.08);
        box-shadow: 24px 0 70px rgba(15,23,42,.20);
        transform: translateX(-100%);
        transition: transform .24s ease;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 18px;
    }

    .alz-mobileMega__check:checked ~ .alz-mobileMega__overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .alz-mobileMega__check:checked ~ .alz-mobileMega__drawer {
        transform: translateX(0);
    }

    .alz-mobileMega__head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        padding-bottom: 16px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .alz-mobileMega__eyebrow {
        margin-bottom: 5px;
        color: #667085;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .alz-mobileMega__title {
        color: #101828;
        font-family: Manrope, Arial, Helvetica, sans-serif;
        font-size: 20px;
        line-height: 1.15;
        font-weight: 850;
        letter-spacing: -.02em;
        text-transform: uppercase;
    }

    .alz-mobileMega__close {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border: 1px solid rgba(15,23,42,.10);
        border-radius: 999px;
        background: #f8fafc;
        color: #101828;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }

    .alz-mobileMega__all {
        min-height: 44px;
        margin-bottom: 14px;
        padding: 0 14px;
        border-radius: 14px;
        background: #101828;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .07em;
        text-transform: uppercase;
    }

    .alz-mobileMega__list {
        display: grid;
        gap: 10px;
    }

    .alz-mobileMega__group {
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 18px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        overflow: hidden;
    }

    .alz-mobileMega__root {
        min-height: 48px;
        padding: 14px 15px;
        display: flex;
        align-items: center;
        color: #101828;
        font-size: 14px;
        font-weight: 850;
        line-height: 1.35;
        text-transform: uppercase;
        letter-spacing: .025em;
        border-bottom: 1px solid rgba(15,23,42,.07);
    }

    .alz-mobileMega__children {
        padding: 10px 12px 12px;
        display: grid;
        gap: 7px;
    }

    .alz-mobileMega__childWrap {
        display: grid;
        gap: 5px;
    }

    .alz-mobileMega__child {
        display: block;
        padding: 9px 10px;
        border-radius: 12px;
        color: #344054;
        background: rgba(255,255,255,.78);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.4;
    }

        .alz-mobileMega__child:hover {
            background: #eef2ff;
            color: #1e3a8a;
        }

    .alz-mobileMega__subs {
        padding-left: 12px;
        display: grid;
        gap: 4px;
        border-left: 1px solid rgba(15,23,42,.10);
    }

    .alz-mobileMega__sub {
        display: block;
        padding: 6px 8px;
        color: #667085;
        font-size: 12px;
        line-height: 1.4;
    }

        .alz-mobileMega__sub:hover {
            color: #101828;
        }

    .alz-mobileMega__empty {
        padding: 14px;
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 14px;
        background: #f8fafc;
        color: #667085;
        font-size: 13px;
        line-height: 1.6;
    }

    .alz-langmenu,
    .alz-accmenu {
        left: auto;
        right: 0;
        min-width: 180px;
        max-width: min(240px, calc(100vw - 28px));
    }

    .alz-langmenu__item,
    .alz-accmenu__item {
        white-space: normal;
        line-height: 1.4;
    }

    .alz-footer__newsletterTitle {
        font-size: 23px;
        line-height: 1.18;
    }

    .alz-footer__newsletterText {
        font-size: 13px;
    }

    .alz-footer__newsletterForm {
        gap: 9px;
    }

    .alz-footer__newsletterInput,
    .alz-footer__newsletterBtn {
        border-radius: 14px;
    }

    .alz-footer__panel {
        border-radius: 14px;
        padding: 24px 18px 16px;
    }

    .alz-footer__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .alz-footer__col--brand,
    .alz-footer__col--contact {
        text-align: center;
    }

    .alz-footer__brand {
        font-size: 22px;
    }

        .alz-footer__brand::after {
            margin-left: auto;
            margin-right: auto;
        }

    .alz-footer__col--links {
        grid-column: auto;
    }

    .alz-footer__linksWrap .alz-footerLinkCols {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 24px !important;
    }

    .alz-footer__linksWrap .alz-footerLinkCols__col {
        text-align: left;
    }

        .alz-footer__linksWrap .alz-footerLinkCols__col:nth-child(1) {
            grid-column: 1;
            grid-row: 1 / span 2;
        }

        .alz-footer__linksWrap .alz-footerLinkCols__col:nth-child(2) {
            grid-column: 2;
            grid-row: 1;
        }

        .alz-footer__linksWrap .alz-footerLinkCols__col:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }

    .alz-footer__title,
    .alz-footer__linksWrap .alz-footerLinkCols__title,
    .alz-footerLinks__title {
        font-size: 11px;
    }

    .alz-footer__desc,
    .alz-footer__contactLine,
    .alz-footer__contactLink,
    .alz-footer__linksWrap a {
        font-size: 13px !important;
    }

    .alz-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .alz-footer__social {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .alz-footer__copy {
        order: 2;
        text-align: center;
    }

    .alz-footer__qr--desktop {
        display: none;
    }

    .alz-footer__qr--mobile {
        display: flex;
        justify-content: center;
        margin-top: 18px;
    }

        .alz-footer__qr--mobile img {
            width: 82px;
            height: 82px;
        }

    .alz-footer__paymentsRow {
        justify-content: center;
    }

    .alz-mnav {
        display: flex;
    }

    body.alz-body {
        padding-bottom: 62px;
    }
}

@media (max-width: 575.98px) {
    .alz-footerBadges__grid {
        grid-template-columns: 1fr;
    }

    .alz-mega__grid {
        grid-template-columns: 1fr;
    }

    .alz-footer__newsletterText {
        font-size: 13px;
    }

    .alz-footer__newsletterBtn,
    .alz-footer__newsletterInput {
        height: 44px;
    }
}
