:root {
    --wgw-shell-bg: #edf0f1;
    --wgw-shell-surface: #fff;
    --wgw-shell-ink: #1f2f39;
    --wgw-shell-muted: #87969b;
    --wgw-shell-line: #d8dfe0;
    --wgw-shell-dark: #071b1c;
    --wgw-shell-dark-soft: #10282b;
    --wgw-shell-brand: #0b6668;
    --wgw-shell-brand-strong: #074f51;
    --wgw-shell-accent: #47d7b0;
    --wgw-shell-radius: 8px;
    --wgw-shell-headline: "Ubuntu", sans-serif;
    --wgw-shell-content: 1320px;
}

html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--wgw-shell-bg);
    padding-top: 0 !important;
}

.helpernav,
.mobilenav {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.appShellHeader {
    background:
        radial-gradient(circle at 88% 12%, rgba(71, 215, 176, 0.10), transparent 34%),
        linear-gradient(105deg, #071b1c 0%, #10282b 58%, #1f3438 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    position: relative;
    z-index: 50;
}

.appShellHeader.is-compact {
    animation: appShellHeaderIn 240ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 14px 34px rgba(7, 27, 28, 0.24);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    will-change: transform;
    z-index: 1000;
}

.appShellHeaderInner {
    align-items: center;
    box-sizing: border-box;
    display: grid;
    gap: 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    height: 96px;
    max-width: var(--wgw-shell-content);
    min-height: 0;
    padding-bottom: 0 !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
    padding-top: 0 !important;
    width: calc(100% - 48px) !important;
}

.appShellHeader.is-compact .appShellHeaderInner {
    height: 58px;
}

.appShellBrand {
    align-items: center;
    display: inline-flex;
    line-height: 1;
}

.appShellBrand img {
    display: block;
    height: auto;
    width: 224px;
}

.appShellHeader.is-compact .appShellBrand img {
    width: 184px;
}

.appShellNav {
    align-items: center;
    display: flex;
    gap: 6px;
    min-width: 0;
}

.appShellMobileAccount {
    display: none;
}

.appShellNav a,
.appShellGhost,
.appShellPrimary {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.appShellNav a {
    color: #d7e3e6;
    font-size: 15px;
    padding: 12px 15px;
}

.appShellHeader.is-compact .appShellNav a {
    padding: 10px 14px;
}

.appShellNav a.active,
.appShellNav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.appShellActions {
    align-items: center;
    display: flex;
    gap: 10px;
}

.appShellGhost,
.appShellPrimary {
    border-radius: var(--wgw-shell-radius);
    font-size: 14px;
    gap: 7px;
    min-height: 42px;
    padding: 0 15px;
}

.appShellHeader.is-compact .appShellGhost,
.appShellHeader.is-compact .appShellPrimary {
    min-height: 38px;
}

.appShellGhost {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #eef6f8 !important;
}

.appShellPrimary {
    background: var(--wgw-shell-brand);
    border-bottom: 2px solid var(--wgw-shell-brand-strong);
    box-shadow: 0 12px 28px rgba(11, 102, 104, 0.3);
    color: #fff !important;
}

.appShellGhost:hover,
.appShellPrimary:hover {
    transform: translateY(-1px);
}

.appShellAccountMenu {
    position: relative;
}

.appShellAccountMenu::after {
    content: "";
    height: 12px;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
}

.appShellAccountTrigger:hover {
    transform: none;
}

.appShellAccountTrigger .la-angle-down {
    font-size: 12px;
    margin-left: 2px;
}

.appShellAccountDropdown {
    background: #fff;
    border: 1px solid rgba(7, 27, 28, 0.12);
    border-radius: var(--wgw-shell-radius);
    box-shadow: 0 18px 42px rgba(7, 27, 28, 0.20);
    display: grid;
    min-width: 220px;
    opacity: 0;
    padding: 8px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
    z-index: 1002;
}

.appShellAccountMenu:hover .appShellAccountDropdown,
.appShellAccountMenu:focus-within .appShellAccountDropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.appShellAccountDropdown a {
    align-items: center;
    border-radius: 6px;
    color: var(--wgw-shell-ink) !important;
    display: flex;
    font-family: var(--wgw-shell-headline);
    font-size: 14px;
    font-weight: 800;
    gap: 9px;
    line-height: 1.2;
    padding: 11px 12px;
    text-decoration: none;
}

.appShellAccountDropdown a > span:not(.appShellMenuBadge),
.appShellMobileAccount a > span:not(.appShellMenuBadge) {
    flex: 1 1 auto;
    min-width: 0;
}

.appShellMenuBadge {
    align-items: center;
    background: #eef5f5;
    border: 1px solid #d8e5e6;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    height: 22px;
    justify-content: center;
    line-height: 1;
    min-width: 22px;
    padding: 0 7px;
}

.appShellAccountDropdown a:hover {
    background: #eef5f5;
    color: var(--wgw-shell-brand) !important;
}

.appShellMenuToggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--wgw-shell-radius);
    color: #fff;
    display: none;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 46px;
}

@keyframes appShellHeaderIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 981px) {
    .appShellHeader {
        height: 96px;
        max-height: 115px;
    }

    .appShellHeaderInner {
        max-height: 96px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .appShellHeader.is-compact {
        height: 58px;
        max-height: 58px;
        min-height: 58px;
    }

    .appShellHeader.is-compact .appShellHeaderInner {
        height: 58px;
        max-height: 58px;
        min-height: 0;
    }

    .appShellHeader.is-compact .appShellBrand img {
        width: 164px;
    }

    .appShellHeader.is-compact .appShellNav a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .appShellHeader.is-compact .appShellGhost,
    .appShellHeader.is-compact .appShellPrimary {
        font-size: 13px;
        min-height: 32px;
        padding: 0 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .appShellHeader.is-compact {
        animation: none;
    }
}

.sectionFooter {
    background:
        radial-gradient(circle at 88% 0%, rgba(71, 215, 176, 0.08), transparent 34%),
        #1f3438 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #c7d4d8;
    margin-top: 54px;
    padding: 46px 0 34px !important;
}

.sectionFooter footer,
.sectionFooter .ctContainer {
    background: transparent !important;
}

.sectionFooter .ctContainer {
    align-items: start;
    box-sizing: border-box;
    display: grid !important;
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: var(--wgw-shell-content);
    padding: 46px 40px 34px !important;
    width: 100% !important;
}

.sectionFooter .footerSection {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
}

.sectionFooter h2 {
    color: #fff !important;
    font-family: var(--wgw-shell-headline);
    font-size: 18px !important;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 0 14px !important;
    padding: 0 !important;
    text-transform: none !important;
}

.sectionFooter p,
.sectionFooter .small {
    color: #b6c8cc !important;
    font-size: 14px !important;
    line-height: 1.55;
    margin: 0 0 14px !important;
    padding: 0 !important;
}

.sectionFooter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sectionFooter li {
    margin: 0 0 9px !important;
    padding: 0 !important;
}

.sectionFooter a {
    color: #d8e4e7 !important;
    font-size: 15px;
    text-decoration: none;
}

.sectionFooter a:hover {
    color: #fff !important;
}

.sectionFooter .countryContainer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    grid-column: 1 / -1;
    margin: 8px 0 0 !important;
    padding: 22px 0 0 !important;
    text-align: left !important;
}

.sectionFooter .clear {
    display: none !important;
}

.appShellLegal {
    background: #071b1c !important;
    box-sizing: border-box;
    color: #90a3a8 !important;
    font-size: 11px !important;
    margin: 0 !important;
    max-width: none;
    padding: 12px 20px !important;
    text-align: center !important;
    width: 100% !important;
}

@media (max-width: 980px) {
    .appShellHeaderInner {
        gap: 12px;
        grid-template-columns: auto 1fr auto;
        height: 78px;
        min-height: 0;
    }

    .appShellBrand img {
        width: 176px;
    }

    .appShellHeader.is-compact .appShellBrand img {
        width: 152px;
    }

    .appShellMenuToggle {
        display: inline-flex;
        grid-column: 3;
        grid-row: 1;
        height: 38px;
        width: 42px;
    }

    .appShellActions {
        display: none;
    }

    .appShellNav {
        background: var(--wgw-shell-dark-soft);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        gap: 4px;
        grid-column: 1 / -1;
        margin: 0 -18px;
        padding: 10px 18px 14px;
    }

    body.app-shell-nav-open .appShellNav {
        display: flex;
    }

    .appShellMobileAccount {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        display: grid;
        gap: 4px;
        margin-top: 8px;
        padding-top: 8px;
        width: 100%;
    }

    .sectionFooter .ctContainer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 26px !important;
        padding-right: 26px !important;
    }
}

@media (max-width: 640px) {
    .appShellHeaderInner {
        height: 68px;
        min-height: 0;
    }

    .appShellBrand img {
        width: 160px;
    }

    .appShellNav {
        align-items: stretch;
        flex-direction: column;
    }

    .appShellNav a {
        justify-content: center;
    }

    .sectionFooter {
        margin-top: 34px;
        padding: 34px 0 28px !important;
    }

    .sectionFooter .ctContainer {
        grid-template-columns: 1fr;
        width: 100% !important;
    }

    .appShellHeaderInner {
        width: calc(100% - 24px) !important;
    }
}

.searchNew {
    background-color: rgba(7, 27, 28, 0.72) !important;
}

.sliderImages--container {
    background-color: rgba(7, 27, 28, 0.62) !important;
}

.sliderImages--container .searchField {
    background: rgba(255, 255, 255, 0.10) !important;
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(7, 27, 28, 0.22);
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1040px;
    padding: 26px 28px 28px !important;
}

.sliderImages--container .labelicon {
    color: var(--wgw-shell-brand) !important;
    font-size: 28px !important;
    line-height: 64px !important;
}

.sliderImages--container .searchField form {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 27, 28, 0.20);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 62px;
    margin: 0 auto 24px;
    max-width: 920px;
    overflow: hidden;
}

.sliderImages--container .searchField .inputContainer {
    background: transparent !important;
    border-radius: 0 !important;
    box-sizing: border-box;
    float: none !important;
    margin: 0 !important;
    min-width: 0;
    padding: 0 !important;
    width: auto !important;
}

.sliderImages--container .searchField .inputContainer .labelicon {
    left: 18px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.sliderImages--container .searchField #searchLocation {
    border-right: 1px solid #dbe4e6;
}

.sliderImages--container .inputContainer input[type=text],
.sliderImages--container .inputContainer input {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box;
    color: var(--wgw-shell-ink);
    min-height: 64px;
    outline: none !important;
    padding: 17px 44px 17px 46px !important;
    width: 100% !important;
}

.sliderImages--container .searchField form:focus-within {
    border-color: rgba(71, 215, 176, 0.64);
    box-shadow: 0 14px 34px rgba(7, 27, 28, 0.20), 0 0 0 3px rgba(71, 215, 176, 0.18);
}

.sliderImages--container .searchField .inputContainer:focus-within {
    background: #f8fbfb !important;
}

.sliderImages--container .inputContainer input[type=text]::placeholder,
.sliderImages--container .inputContainer input::placeholder {
    color: #87969b;
}

.sliderImages--container #searchLocation .la-location-arrow {
    color: #b6c8cc !important;
    font-size: 22px !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.sliderImages--container .search {
    align-items: center;
    background-color: var(--wgw-shell-brand) !important;
    border: 0 !important;
    border-left: 1px solid rgba(7, 27, 28, 0.08) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #fff !important;
    display: inline-flex;
    font-size: 0 !important;
    height: auto !important;
    justify-content: center;
    margin: 0 !important;
    min-height: 64px;
    padding: 0 !important;
    width: 62px !important;
}

.sliderImages--container .search:hover {
    background-color: var(--wgw-shell-brand-strong) !important;
}

.sliderImages--container .search i {
    font-size: 24px;
}

.sliderImages--container .search .only-mobile {
    display: none !important;
}

.autocomplete-suggestions:not(.business) {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px) saturate(1.15);
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    border: 1px solid rgba(216, 226, 228, 0.95) !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 46px rgba(7, 27, 28, 0.22) !important;
    box-sizing: border-box !important;
    margin-top: 12px !important;
    max-height: 300px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    padding: 8px !important;
    scrollbar-color: rgba(7, 87, 91, 0.34) transparent;
    transform: translateY(8px);
    z-index: 20000 !important;
}

.autocomplete-suggestions:not(.business)::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-suggestions:not(.business)::-webkit-scrollbar-thumb {
    background: rgba(7, 87, 91, 0.28);
    border-radius: 999px;
}

.autocomplete-suggestions:not(.business) .autocomplete-suggestion {
    border-radius: 7px !important;
    box-sizing: border-box !important;
    color: #40545b !important;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 10px 12px !important;
}

.autocomplete-suggestions:not(.business) .autocomplete-suggestion:hover,
.autocomplete-suggestions:not(.business) .autocomplete-selected {
    background: #eef8f6 !important;
    color: #07575b !important;
}

.autocomplete-suggestions:not(.business) strong {
    color: #07575b !important;
    font-weight: 800 !important;
}

.searchNew .searchNav li.active {
    background-color: rgba(7, 27, 28, 0.7) !important;
}

.searchNew.searchMini {
    background-color: var(--wgw-shell-brand) !important;
}

.searches li {
    background-color: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.searches li:hover {
    background-color: rgba(71, 215, 176, 0.28) !important;
}

@media (max-width: 980px) {
    .sliderImages--container .searchField {
        max-width: 760px;
        padding: 20px !important;
    }

    .sliderImages--container .searchField form {
        grid-template-columns: 1fr;
    }

    .sliderImages--container .searchField #searchLocation {
        border-bottom: 1px solid #dbe4e6;
        border-right: 0;
    }

    .sliderImages--container .search {
        min-height: 56px;
        width: 100% !important;
    }
}

@media (max-width: 640px) {
    .sliderImages--container .searchField {
        background: rgba(255, 255, 255, 0.08) !important;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
        margin-left: -18px !important;
        margin-right: -18px !important;
        padding: 16px 18px 20px !important;
        width: auto !important;
    }
}

.wgwHomeBlog {
    background: #f4f7f7;
    box-sizing: border-box;
    padding: 32px 72px 38px;
    width: 100%;
}

.wgwHomeBlog .wgwHomeBlogInner {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    padding: 0;
    width: 100%;
}

.wgwHomeBlogHeader {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 0 16px;
}

.wgwHomeBlogHeader h2 {
    color: #24343a;
    font-family: var(--wgw-shell-headline);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
    padding: 0 !important;
    text-transform: none;
}

.wgwHomeBlogGrid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 100%;
}

.wgwHomeBlogGrid article {
    min-width: 0;
}

.wgwHomeBlogCard {
    background: #fff;
    border: 1px solid rgba(207, 218, 222, 0.78);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(12, 28, 34, 0.035);
    box-sizing: border-box;
    display: grid;
    gap: 0;
    grid-template-columns: 156px minmax(0, 1fr);
    min-height: 100%;
    min-width: 0;
    overflow: hidden;
}

.wgwHomeBlogImageLink {
    background: #dce5e7;
    border-radius: 7px;
    display: block;
    height: calc(100% - 20px);
    margin: 10px;
    overflow: hidden;
}

.wgwHomeBlogImage {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    display: block;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 180ms ease, transform 180ms ease;
    width: 100%;
}

.wgwHomeBlogCard:hover .wgwHomeBlogImage {
    opacity: 1;
    transform: scale(1.025);
}

.wgwHomeBlogContent {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    padding: 15px 16px 15px 0;
}

.wgwHomeBlogMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 8px;
}

.wgwHomeBlogMeta span {
    align-items: center;
    background: #f5faf9;
    border: 1px solid #e0eceb;
    border-radius: 999px;
    color: #40545b;
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    gap: 5px;
    line-height: 1;
    padding: 6px 8px;
    white-space: nowrap;
}

.wgwHomeBlogMeta i {
    color: #0f7473;
    font-size: 12px;
}

.wgwHomeBlogCard h3 {
    font-family: var(--wgw-shell-headline);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 8px;
    overflow-wrap: anywhere;
}

.wgwHomeBlogCard h3 a {
    color: #24343a;
    text-decoration: none;
}

.wgwHomeBlogCard h3 a:hover {
    color: #0f7473;
}

.wgwHomeBlogCard p {
    color: #607178;
    display: none;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 14px;
    padding: 0;
}

.wgwHomeBlogReadmore {
    align-items: center;
    color: #0f7473;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    margin-top: auto;
    text-decoration: none;
}

.wgwHomeBlogReadmore:after {
    content: "\2192";
    margin-left: 7px;
}

.wgwHomeBlogAll {
    margin: 18px 0 0;
}

.wgwHomeBlogAllButton {
    background: #07575b;
    border-bottom: 2px solid #04474e;
    border-radius: 8px;
    box-shadow: 0 5px 14px rgba(12, 28, 34, 0.09);
    color: #fff !important;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-size: 14px;
    font-weight: 800;
    padding: 11px 16px;
    text-decoration: none;
}

.wgwHomeBlogAllButton:hover {
    background: #044f57;
}

@media (max-width: 980px) {
    .wgwHomeBlog {
        padding-left: 28px;
        padding-right: 28px;
    }

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

@media (max-width: 680px) {
    .wgwHomeBlog {
        padding: 34px 12px 44px;
    }

    .wgwHomeBlogCard {
        grid-template-columns: 128px minmax(0, 1fr);
    }

    .wgwHomeBlogContent {
        padding: 13px 14px 13px 0;
    }

    .wgwHomeBlogCard h3 {
        font-size: 17px;
    }

    .wgwHomeBlogMeta span {
        font-size: 10px;
        padding: 6px 8px;
    }

    .wgwHomeBlogAllButton {
        justify-content: center;
        width: 100%;
    }
}

.missingBannerWrap {
    background: transparent !important;
    padding: 44px 24px !important;
}

.sectionDarkgray:has(.missing) {
    background: transparent !important;
}

.missing.missingBanner,
.sectionDarkgray .missing {
    align-items: center !important;
    background:
        radial-gradient(circle at 86% 50%, rgba(71, 215, 176, 0.20), transparent 34%),
        linear-gradient(105deg, #071b1c 0%, #075b5c 58%, #0c7b73 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 10px !important;
    box-shadow: 0 16px 34px rgba(12, 28, 34, 0.18) !important;
    box-sizing: border-box !important;
    color: #fff !important;
    display: grid !important;
    gap: 24px !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    max-width: 1180px !important;
    min-height: 128px !important;
    padding: 30px 34px !important;
}

.missingBannerIcon {
    align-items: center !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 50% !important;
    color: #fff !important;
    display: inline-flex !important;
    font-size: 44px !important;
    height: 78px !important;
    justify-content: center !important;
    width: 78px !important;
}

.missing.missingBanner h2,
.missing.missingBanner p,
.sectionDarkgray .missing h2,
.sectionDarkgray .missing p {
    color: inherit !important;
    margin-left: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.missing.missingBanner h2,
.sectionDarkgray .missing h2 {
    color: #fff !important;
    font-family: var(--wgw-shell-headline) !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 0 0 8px !important;
    text-transform: none !important;
}

.missing.missingBanner p,
.sectionDarkgray .missing p {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.missing.missingBanner p strong,
.sectionDarkgray .missing p strong {
    color: #fff !important;
    font-weight: 800 !important;
}

.missingBanner .missingBannerCta,
.sectionDarkgray .missing .primary {
    align-items: center !important;
    background: #fff !important;
    border: 0 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.18) !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20) !important;
    color: #07575b !important;
    display: inline-flex !important;
    font-family: var(--wgw-shell-headline) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    min-width: 200px !important;
    padding: 17px 22px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

@media (max-width: 720px) {
    .missingBannerWrap {
        padding: 28px 12px !important;
    }

    .missing.missingBanner,
    .sectionDarkgray .missing {
        gap: 16px !important;
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        padding: 24px 20px !important;
    }

    .missingBannerIcon {
        font-size: 34px !important;
        height: 62px !important;
        width: 62px !important;
    }

    .missing.missingBanner h2,
    .sectionDarkgray .missing h2 {
        font-size: 24px !important;
    }

    .missingBanner .missingBannerCta,
    .sectionDarkgray .missing .primary {
        width: 100% !important;
    }
}

.merchantDashboard {
    background: #eef1f2;
    color: var(--wgw-shell-ink);
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
}

.merchantDashboard .ctContainer {
    box-sizing: border-box;
    max-width: var(--wgw-shell-content);
    width: calc(100% - 48px) !important;
}

.merchantDashboardEyebrow,
.merchantKicker {
    color: var(--wgw-shell-brand);
    font-family: var(--wgw-shell-headline);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 8px !important;
    padding: 0 !important;
    text-transform: uppercase;
}

.merchantContextPanel,
.merchantPanel,
.merchantStat {
    background: #fff;
    border: 1px solid var(--wgw-shell-line);
    border-radius: var(--wgw-shell-radius);
    box-shadow: 0 12px 28px rgba(31, 47, 57, 0.06);
    box-sizing: border-box;
}

.merchantContextPanel {
    display: grid;
    gap: 12px;
    padding: 18px;
}

.merchantLocationMain img,
.merchantSingleHeader img {
    align-items: center;
    background: #eef2f3;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    color: var(--wgw-shell-brand);
    display: flex;
    font-size: 30px;
    height: 64px;
    justify-content: center;
    object-fit: cover;
    width: 64px;
}

.merchantContextPanel label {
    color: #516168;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
}

.merchantContextPanel select,
.merchantSupportForm input,
.merchantSupportForm select,
.merchantSupportForm textarea {
    background: #fff !important;
    border: 1px solid #cfd8da !important;
    border-radius: 6px !important;
    box-sizing: border-box;
    color: var(--wgw-shell-ink) !important;
    font-size: 16px !important;
    min-height: 44px;
    padding: 10px 12px !important;
    width: 100% !important;
}

.merchantContextActions {
    display: flex;
    gap: 10px;
}

.merchantButton,
.merchantButton:visited {
    align-items: center;
    background: #fff;
    border: 1px solid #cfd8da;
    border-radius: 6px;
    box-sizing: border-box;
    color: var(--wgw-shell-brand) !important;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-size: 14px;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    line-height: 1.2;
    min-height: 40px;
    padding: 10px 13px;
    text-decoration: none;
    white-space: nowrap;
}

.merchantButton:hover {
    background: #eef5f5;
    color: var(--wgw-shell-brand-strong) !important;
}

.merchantButtonPrimary,
.merchantButtonPrimary:visited {
    background: var(--wgw-shell-brand);
    border-color: var(--wgw-shell-brand);
    border-bottom-color: var(--wgw-shell-brand-strong);
    color: #fff !important;
}

.merchantButtonPrimary:hover {
    background: var(--wgw-shell-brand-strong);
    color: #fff !important;
}

.merchantDashboardBody {
    padding: 28px 0 58px;
}

.merchantDashboardBody .ctContainer {
    padding: 0 !important;
}

.merchantOverviewGrid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 20px;
}

.merchantStat {
    display: grid;
    gap: 8px;
    min-height: 104px;
    padding: 18px;
    text-decoration: none;
}

.merchantStat span {
    color: #65757a;
    font-size: 14px;
    font-weight: 700;
}

.merchantStat strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 34px;
    line-height: 1;
}

.merchantStatLink:hover {
    border-color: rgba(11, 102, 104, 0.32);
}

.merchantMainGrid {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) 360px;
}

.merchantPanel {
    padding: 22px;
}

.merchantPanelHeader {
    align-items: center;
    border-bottom: 1px solid var(--wgw-shell-line);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: -2px 0 18px;
    padding-bottom: 16px;
}

.merchantPanelHeader.compact {
    margin-bottom: 14px;
}

.merchantPanel h2,
.merchantPanel h3 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-weight: 800;
    line-height: 1.18;
    margin: 0;
    padding: 0 !important;
}

.merchantPanel h2 {
    font-size: 24px;
}

.merchantPanel h3 {
    font-size: 18px;
}

.merchantPanel p,
.merchantPanel ul {
    padding: 0 !important;
}

.merchantLocationList {
    display: grid;
    gap: 10px;
}

.merchantLocationCard {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 1fr) minmax(110px, auto) minmax(250px, auto);
    padding: 14px;
}

.merchantLocationMain {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 54px minmax(0, 1fr);
    min-width: 0;
}

.merchantLocationMain img {
    border-radius: 7px;
    height: 54px;
    width: 54px;
}

.merchantLocationMain h3 {
    overflow-wrap: anywhere;
}

.merchantLocationMain p,
.merchantLocationMeta span,
.merchantInboxItem small {
    color: #6f7f84;
    font-size: 13px !important;
    margin: 4px 0 0 !important;
}

.merchantLocationStatus {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.merchantBadge {
    background: #eef2f3;
    border: 1px solid #d8e0e2;
    border-radius: 999px;
    color: #516168;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 7px 9px;
}

.merchantBadgeWarning {
    background: #fff4e5;
    border-color: #ffd18e;
    color: #9a5d00;
}

.merchantBadgeGood {
    background: #e9f8f3;
    border-color: #bce7d8;
    color: #0b6b4e;
}

.merchantLocationMeta {
    display: grid;
    gap: 3px;
}

.merchantLocationActions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: flex-end;
}

.merchantLocationActions a {
    align-items: center;
    background: #fff;
    border: 1px solid #d6dee0;
    border-radius: 6px;
    color: var(--wgw-shell-brand) !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 5px;
    min-height: 32px;
    padding: 7px 9px;
    text-decoration: none;
}

.merchantSideStack {
    display: grid;
    gap: 20px;
}

.merchantTaskList {
    display: grid;
    gap: 8px;
    max-height: 560px;
    overflow: auto;
}

.merchantTaskItem,
.merchantTaskItem:visited {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    color: var(--wgw-shell-ink) !important;
    display: grid;
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 11px;
    text-decoration: none;
}

.merchantTaskItem i,
.merchantTaskDone i {
    align-items: center;
    background: #eef5f5;
    border-radius: 50%;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.merchantTaskItem.warning i {
    background: #fff4e5;
    color: #9a5d00;
}

.merchantTaskItem span {
    display: grid;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.merchantTaskItem small {
    color: #728187;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}

.merchantTaskDone {
    align-items: center;
    color: #516168;
    display: flex;
    gap: 10px;
    font-weight: 800;
}

.merchantMessagePreview p,
.merchantAccountSummary p,
.merchantEmpty p,
.merchantInboxThread p {
    color: #637278;
    font-size: 15px !important;
    line-height: 1.45;
    margin: 0 0 14px !important;
}

.merchantAccountSummary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.merchantAccountSummary p {
    flex-basis: 100%;
}

.merchantEmpty {
    background: #fbfcfc;
    border: 1px dashed #c7d2d5;
    border-radius: 7px;
    padding: 26px;
}

.merchantSingleLocation {
    display: grid;
    gap: 18px;
}

.merchantSingleHeader {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 18px;
}

.merchantSingleHeader img {
    height: 88px;
    width: 88px;
}

.merchantSingleHeader p {
    color: #6f7f84;
    font-size: 14px !important;
    margin: 5px 0 10px !important;
}

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

.merchantSingleMetrics div {
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    padding: 15px;
}

.merchantSingleMetrics span {
    color: #65757a;
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.merchantSingleMetrics strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 24px;
    line-height: 1;
}

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

.merchantSingleActions a {
    align-items: center;
    background: #fff;
    border: 1px solid #d6dee0;
    border-radius: 7px;
    color: var(--wgw-shell-brand) !important;
    display: grid;
    font-size: 15px;
    font-weight: 800;
    gap: 10px;
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 56px;
    padding: 12px;
    text-decoration: none;
}

.merchantSingleActions i {
    align-items: center;
    background: #eef5f5;
    border-radius: 50%;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.offerAssistant {
    display: grid;
    gap: 18px;
}

.offerAssistantPreviewNotice {
    align-items: center;
    background: #fff8e8;
    border: 1px solid #ffd89a;
    border-radius: var(--wgw-shell-radius);
    color: #7a4d00;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px 16px;
}

.offerAssistantPreviewNotice i {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.offerAssistantPreviewNotice strong,
.offerAssistantPreviewNotice span {
    display: block;
}

.offerAssistantPreviewNotice strong {
    font-family: var(--wgw-shell-headline);
    font-size: 16px;
    margin-bottom: 2px;
}

.offerAssistantPreviewNotice span {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.offerAssistantTop,
.offerAssistantStore {
    align-items: center;
    display: flex;
}

.offerAssistantTop {
    justify-content: space-between;
    gap: 16px;
}

.offerAssistantHeaderActions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.offerAssistantStore {
    gap: 12px;
    min-width: 0;
}

.offerAssistantStore img {
    background: #eef2f3;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    flex: 0 0 auto;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.offerAssistantStore div {
    min-width: 0;
}

.offerAssistantStore span,
.offerAssistantStore small {
    color: #64747a;
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.offerAssistantStore strong {
    color: var(--wgw-shell-ink);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 22px;
    line-height: 1.15;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offerAssistantStore small {
    margin-top: 3px;
}

.offerAssistantFocus,
.offerAssistantSearchPanel {
    display: grid;
    gap: 14px;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    width: 100%;
}

.offerAssistantFocusTop {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.offerAssistantPills {
    background: #f7faf9;
    border: 1px solid #dce4e6;
    border-radius: 999px;
    display: flex;
    gap: 4px;
    padding: 4px;
    width: 100%;
}

.offerAssistantPills button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #4d5f66;
    cursor: pointer;
    display: inline-flex;
    flex: 1;
    font-family: var(--wgw-shell-headline);
    font-size: 16px;
    font-weight: 900;
    gap: 8px;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
}

.offerAssistantPills button.active {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31, 47, 57, 0.08);
    color: var(--wgw-shell-brand);
}

.offerAssistantPills strong {
    align-items: center;
    background: #eaf6f5;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-size: 15px;
    justify-content: center;
    min-width: 28px;
    padding: 4px 8px;
    transform-origin: center;
}

.offerAssistantPills strong.is-pulsing {
    animation: offerAssistantCountPulse 420ms ease-out;
}

.offerAssistantDecision {
    display: grid;
    gap: 10px;
    min-height: 360px;
}

.offerAssistantDecisionCard,
.offerAssistantDecisionEmpty {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    display: grid;
    gap: 10px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    min-height: 0;
    padding: 16px;
    text-align: left;
}

.offerAssistantPreloader {
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    min-height: 360px;
    padding: 16px;
}

.offerAssistantPreloader div {
    background: #ffffff;
    border: 1px solid #e1e8e9;
    border-radius: 8px;
    display: grid;
    gap: 9px;
    padding: 16px;
}

.offerAssistantPreloader span,
.offerAssistantPreloader strong,
.offerAssistantPreloader small {
    animation: offerAssistantPulse 1.2s ease-in-out infinite;
    background: linear-gradient(90deg, #edf3f3, #f7faf9, #edf3f3);
    background-size: 220% 100%;
    border-radius: 999px;
    display: block;
}

.offerAssistantPreloader span {
    height: 12px;
    width: 80px;
}

.offerAssistantPreloader strong {
    height: 24px;
    width: min(320px, 70%);
}

.offerAssistantPreloader small {
    height: 14px;
    width: min(420px, 86%);
}

.offerAssistantPreloader p {
    align-items: center;
    color: #627278;
    display: flex;
    font-family: var(--wgw-shell-headline);
    font-size: 16px;
    gap: 10px;
    justify-content: center;
    margin: auto 0 0;
}

.offerAssistantPreloader i {
    animation: offerAssistantSpin 800ms linear infinite;
    border: 3px solid #dbe7e8;
    border-top-color: var(--wgw-shell-brand);
    border-radius: 50%;
    display: inline-flex;
    height: 24px;
    width: 24px;
}

@keyframes offerAssistantPulse {
    0% {
        background-position: 120% 0;
    }

    100% {
        background-position: -120% 0;
    }
}

@keyframes offerAssistantSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes offerAssistantCountPulse {
    0% {
        transform: scale(1);
    }

    45% {
        background: var(--wgw-shell-brand);
        color: #ffffff;
        transform: scale(1.22);
    }

    100% {
        transform: scale(1);
    }
}

.offerAssistantDecisionCard.is-featured {
    border-color: rgba(13, 122, 120, 0.34);
    box-shadow: 0 12px 28px rgba(31, 47, 57, 0.07);
}

.offerAssistantDecisionCardLoading {
    pointer-events: none;
}

.offerAssistantDecisionType {
    align-items: center;
    display: inline-flex;
    gap: 9px;
    grid-column: 1;
}

.offerAssistantDecisionType i {
    align-items: center;
    background: #eaf6f5;
    border-radius: 50%;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.offerAssistantDecisionType span,
.offerAssistantSearchResults span,
.offerAssistantItem span,
.offerAssistantActiveList button span {
    color: var(--wgw-shell-brand);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.offerAssistantDecisionCard > strong,
.offerAssistantDecisionEmpty strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 26px;
    grid-column: 1;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.offerAssistantDecisionCard small,
.offerAssistantDecisionEmpty p {
    color: #637278;
    display: block;
    font-size: 15px;
    font-weight: 800;
    grid-column: 1;
    line-height: 1.4;
    margin: 0;
}

.offerAssistantDecisionActions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-content: flex-end;
    margin-top: 0;
}

.offerAssistantDecisionActions button {
    background: #fff;
    border: 1px solid #d6dee0;
    border-radius: 7px;
    color: var(--wgw-shell-brand);
    cursor: pointer;
    font-family: var(--wgw-shell-headline);
    font-size: 14px;
    font-weight: 900;
    min-height: 40px;
    padding: 9px 13px;
}

.offerAssistantDecisionActions button.primary {
    background: var(--wgw-shell-brand);
    border-color: var(--wgw-shell-brand);
    color: #fff;
}

.offerAssistantDecisionCardLoading .offerAssistantDecisionType i,
.offerAssistantDecisionCardLoading .offerAssistantDecisionType span,
.offerAssistantDecisionCardLoading > strong,
.offerAssistantDecisionCardLoading > small,
.offerAssistantDecisionCardLoading .offerAssistantDecisionActions button {
    animation: offerAssistantPulse 1.2s ease-in-out infinite;
    background: linear-gradient(90deg, #edf3f3, #f7faf9, #edf3f3);
    background-size: 220% 100%;
    border: 0;
    border-radius: 999px;
    color: transparent;
}

.offerAssistantDecisionCardLoading .offerAssistantDecisionType i {
    height: 44px;
    width: 44px;
}

.offerAssistantDecisionCardLoading .offerAssistantDecisionType span {
    height: 12px;
    width: 70px;
}

.offerAssistantDecisionCardLoading > strong {
    height: 24px;
    width: min(300px, 70%);
}

.offerAssistantDecisionCardLoading > small {
    height: 14px;
    width: min(420px, 86%);
}

.offerAssistantDecisionCardLoading .offerAssistantDecisionActions button {
    min-width: 110px;
}

.offerAssistantSearch {
    display: grid;
    gap: 10px;
}

.offerAssistantSearchCompact {
    padding: 16px;
}

.offerAssistantDebug {
    display: grid;
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    padding: 16px;
    width: 100%;
}

.offerAssistantDebug[hidden] {
    display: none;
}

.offerAssistantDebugHead {
    align-items: flex-end;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.offerAssistantDebugHead span {
    color: var(--wgw-shell-brand);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offerAssistantDebugHead strong {
    color: var(--wgw-shell-ink);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 18px;
    line-height: 1.2;
}

.offerAssistantDebugHead small {
    color: #66777d;
    font-size: 12px;
    font-weight: 800;
    text-align: right;
}

.offerAssistantDebugList {
    display: grid;
    gap: 8px;
    max-height: 360px;
    overflow: auto;
    padding-right: 4px;
}

.offerAssistantDebugList article {
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    display: grid;
    gap: 8px;
    padding: 12px;
}

.offerAssistantDebugList article > div:first-child {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.offerAssistantDebugList strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 15px;
}

.offerAssistantDebugList small,
.offerAssistantDebugList p,
.offerAssistantDebugList dt {
    color: #66777d;
    font-size: 12px;
    font-weight: 800;
}

.offerAssistantDebugList p {
    line-height: 1.35;
    margin: 0;
}

.offerAssistantDebugList dl {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}

.offerAssistantDebugList dl div {
    align-items: center;
    background: #eef6f6;
    border-radius: 999px;
    display: inline-flex;
    gap: 5px;
    padding: 4px 8px;
}

.offerAssistantDebugList dl div.is-negative {
    background: #fff4e8;
}

.offerAssistantDebugList dl div.is-negative dd {
    color: #9a5a13;
}

.offerAssistantDebugList dt,
.offerAssistantDebugList dd {
    margin: 0;
}

.offerAssistantDebugList dd {
    color: var(--wgw-shell-brand);
    font-family: var(--wgw-shell-headline);
    font-size: 12px;
    font-weight: 900;
}

.offerAssistantDebugNegative {
    color: #9a5a13 !important;
}

.offerAssistantTypeFilter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.offerAssistantTypeFilter button {
    background: #fff;
    border: 1px solid #d6dee0;
    border-radius: 999px;
    color: #516168;
    cursor: pointer;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    min-height: 34px;
    padding: 8px 12px;
}

.offerAssistantTypeFilter button.active {
    background: #e9f5f5;
    border-color: rgba(11, 102, 104, 0.32);
    color: var(--wgw-shell-brand);
}

.offerAssistantSearchInput {
    align-items: center;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
}

.offerAssistantSearchInput i {
    color: var(--wgw-shell-brand);
    font-size: 20px;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    z-index: 1;
}

.offerAssistantSearchInput input {
    background: #fff !important;
    border: 1px solid #cfd8da !important;
    border-radius: 7px !important;
    box-sizing: border-box;
    color: var(--wgw-shell-ink) !important;
    font-size: 16px !important;
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 48px;
    padding: 11px 14px 11px 40px !important;
    width: 100% !important;
}

.offerAssistantSearchResults {
    display: grid;
    gap: 8px;
}

.offerAssistantSearchResults[hidden],
.offerAssistantList[hidden] {
    display: none;
}

.offerAssistantSearchResults button {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    cursor: pointer;
    display: grid;
    gap: 3px 10px;
    grid-template-columns: 34px minmax(0, 1fr);
    justify-items: start;
    padding: 11px 12px;
    text-align: left;
}

.offerAssistantSearchResults button i,
.offerAssistantItem > i {
    align-items: center;
    background: #eaf6f5;
    border-radius: 50%;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 18px;
    grid-row: 1 / span 2;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.offerAssistantSearchResults strong,
.offerAssistantItem strong,
.offerAssistantActiveList button strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 17px;
    line-height: 1.2;
}

.offerAssistantList {
    gap: 10px;
    display: grid;
}

.offerAssistantItem,
.offerAssistantEmpty {
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 8px;
}

.offerAssistantItem {
    align-items: start;
    display: grid;
    gap: 10px;
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
}

.offerAssistantItemActions {
    display: flex;
    gap: 8px;
    grid-column: 2;
}

.offerAssistantItem small {
    color: #728187;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-top: 7px;
}

.offerAssistantItemActions button {
    background: #fff;
    border: 1px solid #d6dee0;
    border-radius: 6px;
    color: var(--wgw-shell-brand);
    cursor: pointer;
    flex: 1;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    min-height: 36px;
    padding: 8px 10px;
}

.offerAssistantItemActions button.primary {
    background: var(--wgw-shell-brand);
    border-color: var(--wgw-shell-brand);
    color: #fff;
}

.offerAssistantItemActions button:disabled {
    cursor: wait;
    opacity: 0.55;
}

.offerAssistantStats {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offerAssistantStats div {
    background: #f7faf9;
    border: 1px solid #dce6e7;
    border-radius: 8px;
    padding: 12px;
}

.offerAssistantStats span {
    color: #65757a;
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
}

.offerAssistantStats strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 27px;
    line-height: 1;
}

.offerAssistantActiveList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 520px;
    overflow: auto;
    padding-right: 3px;
}

.offerAssistantActiveList button {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 999px;
    cursor: pointer;
    display: inline-grid;
    gap: 0 8px;
    grid-template-columns: minmax(0, 1fr) 16px;
    max-width: 100%;
    padding: 8px 10px 8px 12px;
    text-align: left;
}

.offerAssistantActiveList button span,
.offerAssistantActiveList button strong {
    grid-column: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.offerAssistantActiveList button strong {
    font-size: 15px;
}

.offerAssistantActiveList button i {
    color: #819096;
    grid-column: 2;
    grid-row: 1 / span 2;
}

.offerAssistantDisclosure {
    align-items: center;
    appearance: none;
    background: #ffffff;
    border: 1px solid #dce4e6;
    border-radius: 8px;
    color: var(--wgw-shell-ink);
    cursor: pointer;
    display: flex;
    font-family: var(--wgw-shell-headline);
    font-size: 20px;
    justify-content: space-between;
    padding: 14px 16px;
    text-align: left;
}

.offerAssistantDisclosure strong {
    align-items: center;
    background: #eaf6f5;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 15px;
    min-width: 28px;
    justify-content: center;
    padding: 5px 9px;
}

.offerAssistantDrawer {
    display: grid;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
    width: 100%;
}

.offerAssistantDrawerPanel[hidden] {
    display: none;
}

.offerAssistantEmpty {
    color: #637278;
    font-size: 15px;
    font-weight: 700;
    grid-column: 1 / -1;
    padding: 22px;
}

.merchantInboxLayout {
    display: grid;
    gap: 18px;
    grid-template-columns: 330px minmax(0, 1fr);
}

.merchantInboxList {
    border: 1px solid var(--wgw-shell-line);
    border-radius: 7px;
    overflow: hidden;
}

.merchantInboxItem {
    background: #fbfcfc;
    border-bottom: 1px solid var(--wgw-shell-line);
    display: grid;
    gap: 5px;
    padding: 14px;
}

.merchantInboxItem:last-child {
    border-bottom: 0;
}

.merchantInboxItem.active {
    background: #eef5f5;
    border-left: 4px solid var(--wgw-shell-brand);
}

.merchantInboxItem span {
    color: var(--wgw-shell-brand);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.merchantInboxItem strong {
    color: var(--wgw-shell-ink);
    font-size: 15px;
}

.merchantInboxThread {
    background: #fbfcfc;
    border: 1px solid var(--wgw-shell-line);
    border-radius: 7px;
    padding: 24px;
}

.merchantSupportForm {
    display: grid;
    gap: 16px;
}

.merchantChat {
    display: grid;
    gap: 12px;
}

.merchantChatThread {
    background: #f7fafb;
    border: 1px solid var(--wgw-shell-line);
    border-radius: 7px;
    display: grid;
    gap: 12px;
    min-height: 280px;
    padding: 18px;
}

.merchantChatBubble {
    border-radius: 7px;
    box-sizing: border-box;
    max-width: 680px;
    padding: 14px 16px;
}

.merchantChatBubble strong {
    color: var(--wgw-shell-brand);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.merchantChatBubble p {
    color: var(--wgw-shell-ink);
    font-size: 15px !important;
    line-height: 1.5;
    margin: 0 !important;
}

.merchantChatBubbleSupport {
    background: #ffffff;
    border: 1px solid var(--wgw-shell-line);
}

.merchantChatBubbleUser {
    background: var(--wgw-shell-brand);
    border: 1px solid var(--wgw-shell-brand);
    justify-self: end;
}

.merchantChatBubbleUser strong,
.merchantChatBubbleUser p {
    color: #ffffff !important;
}

.merchantChatBubbleTyping {
    width: fit-content;
}

.merchantChatTypingDots {
    align-items: center;
    display: inline-flex;
    gap: 5px;
    height: 18px;
}

.merchantChatTypingDots i {
    animation: merchantChatTyping 1.1s infinite ease-in-out;
    background: var(--wgw-shell-brand);
    border-radius: 50%;
    display: block;
    height: 7px;
    opacity: 0.35;
    width: 7px;
}

.merchantChatTypingDots i:nth-child(2) {
    animation-delay: 0.16s;
}

.merchantChatTypingDots i:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes merchantChatTyping {
    0%,
    80%,
    100% {
        opacity: 0.35;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-4px);
    }
}

.merchantChatHandoff {
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(11, 102, 104, 0.18);
    border-radius: 7px;
    display: grid;
    gap: 10px;
    padding: 12px;
}

.merchantChatHandoff span {
    color: #516168;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.merchantChatHint {
    align-items: flex-start;
    background: #eef5f5;
    border: 1px solid rgba(11, 102, 104, 0.18);
    border-radius: 7px;
    color: #516168;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.45;
    padding: 12px 14px;
}

.merchantChatHint i {
    color: var(--wgw-shell-brand);
    font-size: 18px;
    line-height: 1.1;
}

.merchantChatLabel {
    color: #516168;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.merchantSupportFab {
    align-items: center;
    background: var(--wgw-shell-brand);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    bottom: 24px;
    box-shadow: 0 18px 40px rgba(6, 36, 37, 0.22);
    color: #ffffff !important;
    display: inline-flex;
    font-size: 30px;
    height: 62px;
    justify-content: center;
    position: fixed;
    right: 24px;
    text-decoration: none !important;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
    width: 62px;
    z-index: 10050;
}

.merchantSupportFab:hover,
.merchantSupportFab:focus {
    background: #0d7d80;
    box-shadow: 0 20px 44px rgba(6, 36, 37, 0.28);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.merchantSupportFab:focus {
    outline: 3px solid rgba(14, 181, 185, 0.28);
    outline-offset: 3px;
}

.merchantSupportToggle {
    display: none;
}

.merchantSupportDrawer {
    background: #ffffff;
    border: 1px solid var(--wgw-shell-line);
    border-radius: 8px;
    bottom: 100px;
    box-shadow: 0 26px 70px rgba(6, 36, 37, 0.24);
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    max-height: min(680px, calc(100vh - 128px));
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    right: 24px;
    transform: translateY(12px) scale(0.98);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
    visibility: hidden;
    width: min(420px, calc(100vw - 48px));
    z-index: 10049;
}

.merchantSupportToggle:checked ~ .merchantSupportDrawer {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
    visibility: visible;
}

.merchantSupportDrawerHeader {
    align-items: center;
    background: #0c3438;
    color: #ffffff;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 16px 18px;
}

.merchantSupportDrawerHeader span,
.merchantSupportDrawerHeader strong {
    display: block;
}

.merchantSupportDrawerHeader span {
    color: #80eef0;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.merchantSupportDrawerHeader strong {
    font-family: var(--wgw-shell-headline);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.merchantSupportDrawerHeader label {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 18px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.merchantSupportDrawerBody {
    background: #f7fafb;
    display: grid;
    gap: 12px;
    overflow: auto;
    padding: 16px;
}

.merchantSupportDrawerForm {
    border-top: 1px solid var(--wgw-shell-line);
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
}

.merchantSupportDrawerForm label {
    color: #516168;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.merchantSupportDrawerForm textarea {
    min-height: 94px;
    resize: vertical;
}

.merchantSupportDrawerForm textarea:focus {
    border-color: var(--wgw-shell-brand) !important;
    box-shadow: 0 0 0 3px rgba(11, 102, 104, 0.12);
    outline: 0;
}

.merchantSupportDrawerForm > div {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.merchantSupportDrawerForm .merchantButton {
    min-width: 0;
    width: auto;
}

.merchantSupportDrawerForm .merchantButton.is-loading,
.merchantFormFooter .merchantButton.is-loading {
    opacity: 0.72;
    pointer-events: none;
}

.merchantDeleteLocation {
    background: #eef2f3;
    color: #25323a;
}

.merchantDeleteHero {
    background: #ffffff;
    border-bottom: 1px solid #d8e1e4;
    padding: 52px 0;
}

.merchantDeleteHeroInner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    text-align: left;
}

.merchantDeleteHero h1 {
    color: #25323a;
    font-size: 38px;
    line-height: 1.15;
    margin: 4px 0 12px;
    max-width: 820px;
}

.merchantDeleteHero p {
    color: #5b6870;
    font-size: 18px;
    margin: 0;
    max-width: 700px;
}

.merchantDeleteProfileCard {
    align-items: center;
    background: #f7fafb;
    border: 1px solid #d8e1e4;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(14, 41, 47, 0.08);
    display: grid;
    gap: 18px;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 18px;
}

.merchantDeleteProfileCard img {
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid #d8e1e4;
    border-radius: 8px;
    object-fit: cover;
    width: 96px;
}

.merchantDeleteProfileCard h2 {
    color: #25323a;
    font-size: 25px;
    line-height: 1.2;
    margin: 4px 0 8px;
}

.merchantDeleteProfileCard p:not(.merchantKicker) {
    color: #5b6870;
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

.merchantDeleteProfileMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.merchantDeleteProfileMeta span,
.merchantDeleteProfileMeta a {
    align-items: center;
    border: 1px solid #d8e1e4;
    border-radius: 999px;
    color: #0d7377;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 5px;
    line-height: 1;
    padding: 8px 10px;
    text-decoration: none;
}

.merchantDeleteBody {
    padding: 46px 0 64px;
}

.merchantDeleteBody .ctContainer {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
}

.merchantDeletePanel {
    background: #ffffff;
    border: 1px solid #d8e1e4;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(14, 41, 47, 0.08);
    padding: 28px;
}

.merchantDeletePanel p {
    color: #5b6870;
}

.merchantDeleteNotice,
.merchantDeleteResult {
    align-items: flex-start;
    display: flex;
    gap: 18px;
}

.merchantDeleteNotice > i,
.merchantDeleteResult > i {
    align-items: center;
    background: #e9f7f7;
    border-radius: 50%;
    color: #0d7377;
    display: inline-flex;
    flex: 0 0 48px;
    font-size: 26px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.merchantDeleteNotice h2,
.merchantDeleteResult h2 {
    color: #25323a;
    font-size: 28px;
    margin: 0 0 10px;
}

.merchantDeleteOptions {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.merchantDeleteOption {
    align-items: flex-start;
    border: 1px solid #d8e1e4;
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 14px;
    grid-template-columns: auto 42px minmax(0, 1fr);
    padding: 18px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.merchantDeleteOption:has(input:checked) {
    background: #f0fbfb;
    border-color: #0d7377;
    box-shadow: 0 0 0 2px rgba(13, 115, 119, 0.14);
}

.merchantDeleteOption.is-disabled {
    background: #f5f7f8;
    color: #8b969c;
    cursor: not-allowed;
}

.merchantDeleteOption input {
    margin-top: 12px;
}

.merchantDeleteOptionIcon {
    align-items: center;
    background: #e9f7f7;
    border-radius: 50%;
    color: #0d7377;
    display: inline-flex;
    font-size: 22px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.merchantDeleteOption strong,
.merchantDeleteOption small,
.merchantDeleteOption em {
    display: block;
}

.merchantDeleteOption strong {
    color: #25323a;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 6px;
}

.merchantDeleteOption small {
    color: #5b6870;
    font-size: 16px;
    line-height: 1.45;
}

.merchantDeleteOption em {
    color: #8b5b00;
    font-size: 14px;
    font-style: normal;
    margin-top: 8px;
}

.merchantDeleteConfirm {
    align-items: end;
    border-top: 1px solid #d8e1e4;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 1fr) auto;
    margin-top: 24px;
    padding-top: 22px;
}

.merchantDeleteConfirm label {
    color: #4c5a62;
    display: block;
    font-weight: 700;
    grid-column: 1 / -1;
}

.merchantDeleteConfirm input[type="password"] {
    border: 1px solid #cfdadd;
    border-radius: 8px;
    box-sizing: border-box;
    color: #25323a;
    font-size: 18px;
    min-height: 48px;
    padding: 10px 14px;
    width: 100%;
}

.merchantSupportPanel {
    max-width: 1180px;
    margin: 0 auto;
}

.merchantSupportLayout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: 260px minmax(0, 1fr);
}

.merchantSupportAside {
    background: #f7fafb;
    border: 1px solid var(--wgw-shell-line);
    border-radius: 7px;
    box-sizing: border-box;
    padding: 20px;
}

.merchantSupportAside p {
    color: #637278;
    font-size: 14px !important;
    line-height: 1.45;
    margin: 10px 0 0 !important;
}

.merchantSupportIcon {
    align-items: center;
    background: #e9f5f5;
    border-radius: 50%;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 28px;
    height: 54px;
    justify-content: center;
    margin-bottom: 18px;
    width: 54px;
}

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

.merchantField {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.merchantFieldFull {
    grid-column: 1 / -1;
}

.merchantField label {
    color: #516168;
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.merchantSupportForm input:focus,
.merchantSupportForm select:focus,
.merchantSupportForm textarea:focus {
    border-color: var(--wgw-shell-brand) !important;
    box-shadow: 0 0 0 3px rgba(11, 102, 104, 0.12);
    outline: 0;
}

.merchantSupportForm textarea {
    min-height: 154px;
    resize: vertical;
}

.merchantFormFooter {
    align-items: center;
    border-top: 1px solid var(--wgw-shell-line);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-top: 16px;
}

.accountSettings {
    background: #eef1f2;
    color: var(--wgw-shell-ink);
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
}

.accountSettings .ctContainer {
    box-sizing: border-box;
    max-width: var(--wgw-shell-content);
    width: calc(100% - 48px) !important;
}

.accountSettingsBody {
    padding: 28px 0 58px;
}

.accountSettingsGrid {
    align-items: start;
    display: grid;
    gap: 20px;
    grid-template-columns: 330px minmax(0, 1fr);
    padding: 0 !important;
}

.accountSettingsSummary,
.accountSettingsPanel {
    background: #fff;
    border: 1px solid var(--wgw-shell-line);
    border-radius: var(--wgw-shell-radius);
    box-shadow: 0 12px 28px rgba(31, 47, 57, 0.06);
    box-sizing: border-box;
}

.accountSettingsSummary {
    padding: 24px;
}

.accountAvatar {
    align-items: center;
    background: #e9f5f5;
    border-radius: 50%;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 34px;
    height: 68px;
    justify-content: center;
    margin-bottom: 18px;
    width: 68px;
}

.accountSettingsSummary h2 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 6px;
    padding: 0 !important;
}

.accountSettingsSummary > p {
    color: #637278;
    font-size: 15px !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    overflow-wrap: anywhere;
}

.accountMetaList {
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
}

.accountMetaList div {
    background: #f7fafb;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    display: grid;
    gap: 4px;
    padding: 12px;
}

.accountMetaList dt {
    color: #6f7f84;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.accountMetaList dd {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.accountQuickLinks {
    border-top: 1px solid var(--wgw-shell-line);
    display: grid;
    gap: 6px;
    padding-top: 16px;
}

.accountQuickLinks a,
.accountQuickLinks a:visited {
    align-items: center;
    border-radius: 6px;
    color: var(--wgw-shell-brand) !important;
    display: flex;
    font-family: var(--wgw-shell-headline);
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    padding: 10px;
    text-decoration: none;
}

.accountQuickLinks a:hover {
    background: #eef5f5;
}

.accountPendingMail {
    background: #fff4e5;
    border: 1px solid #ffd18e;
    border-radius: 7px;
    color: #7c520f;
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 14px;
}

.accountPendingMail span {
    overflow-wrap: anywhere;
}

.accountPendingMail a {
    color: #7c520f !important;
    font-weight: 800;
}

.accountSettingsPanel {
    padding: 24px;
}

.accountSettingsForm {
    display: grid;
    gap: 20px;
}

.accountFormSection {
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    padding: 18px;
}

.accountFormSection h3 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 18px;
    margin: 0 0 14px;
    padding: 0 !important;
}

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

.accountSettingsForm input,
.accountSettingsForm select {
    background: #fff !important;
    border: 1px solid #cfd8da !important;
    border-radius: 6px !important;
    box-sizing: border-box;
    color: var(--wgw-shell-ink) !important;
    font-size: 16px !important;
    min-height: 44px;
    padding: 10px 12px !important;
    width: 100% !important;
}

.accountSettingsForm input:disabled {
    background: #eef2f3 !important;
    color: #65757a !important;
}

.accountSettingsForm input.error,
.accountSettingsForm select.error {
    border-color: #cf6b2b !important;
    box-shadow: 0 0 0 3px rgba(207, 107, 43, 0.14);
}

.accountSettingsForm input:focus,
.accountSettingsForm select:focus {
    border-color: var(--wgw-shell-brand) !important;
    box-shadow: 0 0 0 3px rgba(11, 102, 104, 0.12);
    outline: 0;
}

.accountFormHint {
    background: #eef5f5;
    border: 1px solid #cfe1e1;
    border-radius: 7px;
    color: #516168;
    font-size: 14px !important;
    line-height: 1.4;
    margin: 0 !important;
    padding: 12px !important;
}

.merchantStats {
    background: #eef1f2;
    color: var(--wgw-shell-ink);
    font-family: "proxima-nova", Arial, Helvetica, sans-serif;
}

.merchantStats .ctContainer {
    box-sizing: border-box;
    max-width: var(--wgw-shell-content);
    width: calc(100% - 48px) !important;
}

.merchantStatsHero {
    background: #fff;
    border-bottom: 1px solid var(--wgw-shell-line);
    padding: 42px 0 34px;
}

.merchantStatsHeroInner {
    align-items: end;
    display: flex;
    gap: 22px;
    justify-content: space-between;
    padding: 0 !important;
}

.merchantStatsHero h1 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 42px;
    line-height: 1.08;
    margin: 0 0 8px;
    padding: 0;
}

.merchantStatsHero p:last-child {
    color: #637278;
    font-size: 18px !important;
    line-height: 1.35;
    margin: 0;
    padding: 0 !important;
}

.merchantStatsHeroActions {
    display: flex;
    gap: 10px;
}

.merchantStatsBody {
    padding: 28px 0 58px;
}

.merchantStatsGrid {
    display: grid;
    gap: 20px;
    padding: 0 !important;
}

.merchantStatsKpis {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.merchantStatsKpi,
.merchantStatsPanel {
    background: #fff;
    border: 1px solid var(--wgw-shell-line);
    border-radius: var(--wgw-shell-radius);
    box-shadow: 0 12px 28px rgba(31, 47, 57, 0.06);
    box-sizing: border-box;
}

.merchantStatsKpi {
    display: grid;
    gap: 7px;
    min-height: 126px;
    padding: 18px;
}

.merchantStatsKpi span {
    color: var(--wgw-shell-brand);
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.merchantStatsKpi strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 38px;
    line-height: 1;
}

.merchantStatsKpi small {
    color: #6f7f84;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.merchantStatsCharts,
.merchantStatsLower {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.merchantStatsPanel {
    padding: 22px;
}

.merchantStatsPanelHeader {
    align-items: center;
    border-bottom: 1px solid var(--wgw-shell-line);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
}

.merchantStatsPanelHeader h2 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 24px;
    line-height: 1.15;
    margin: 0;
    padding: 0 !important;
}

.merchantStatsPanelHeader > span {
    background: #eef5f5;
    border: 1px solid #cfe1e1;
    border-radius: 999px;
    color: #516168;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 10px;
    white-space: nowrap;
}

.merchantStatsCanvas {
    height: 320px;
    position: relative;
}

.merchantStatsMiniCanvas {
    height: 210px;
    min-width: 0;
    position: relative;
}

.merchantStatsSplit {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: 210px minmax(0, 1fr);
}

.merchantStatsRankList {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.merchantStatsRankList li {
    align-items: center;
    background: #fbfcfc;
    border: 1px solid #dce4e6;
    border-radius: 7px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
}

.merchantStatsRankList span {
    color: var(--wgw-shell-ink);
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.merchantStatsRankList strong {
    background: #eef5f5;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    font-family: var(--wgw-shell-headline);
    font-size: 13px;
    min-width: 34px;
    padding: 6px 9px;
    text-align: center;
}

.merchantStatsEmpty {
    color: #6f7f84;
    font-weight: 700;
}

.merchantNotice {
    border-radius: 7px;
    font-weight: 800;
    margin-bottom: 14px;
    padding: 14px 16px;
}

.merchantNoticeSuccess {
    background: #e9f8f3;
    color: #0b6b4e;
}

.merchantNoticeWarning {
    background: #fff4e5;
    color: #9a5d00;
}

.merchantLoginPage {
    background:
        linear-gradient(180deg, #f7faf9 0%, #eef3f2 100%);
    min-height: calc(100vh - 112px);
    padding: 72px 20px 88px;
}

.merchantLoginShell {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 620px;
}

.merchantLoginCard {
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(21, 45, 50, 0.13);
    padding: 38px;
    width: 100%;
}

.merchantLoginHeader {
    border-bottom: 1px solid #e3eaeb;
    margin-bottom: 26px;
    padding-bottom: 24px;
}

.merchantLoginBadge {
    align-items: center;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 7px;
    letter-spacing: .08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.merchantLoginHeader h1 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 42px;
    line-height: 1.04;
    margin: 0 0 10px;
}

.merchantLoginHeader p {
    color: #68777d;
    font-size: 17px;
    line-height: 1.45;
    margin: 0;
}

.merchantLoginAlert {
    align-items: flex-start;
    background: #fff4e5;
    border: 1px solid #ffd5a1;
    border-radius: 7px;
    color: #8a4c00;
    display: flex;
    gap: 11px;
    margin-bottom: 22px;
    padding: 13px 14px;
}

.merchantLoginAlert i {
    font-size: 22px;
    line-height: 1;
}

.merchantLoginAlert strong,
.merchantLoginAlert span {
    display: block;
}

.merchantLoginAlert strong {
    color: #713d00;
    font-weight: 900;
    margin-bottom: 2px;
}

.merchantLoginForm {
    display: grid;
    gap: 11px;
}

.merchantLoginForm label {
    color: #405158;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
    text-align: left;
}

.merchantLoginField {
    align-items: center;
    background: #f8faf9;
    border: 1px solid #cfdbde;
    border-radius: 7px;
    display: flex;
    gap: 10px;
    min-height: 54px;
    padding: 0 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.merchantLoginField:focus-within {
    background: #ffffff;
    border-color: var(--wgw-shell-brand);
    box-shadow: 0 0 0 4px rgba(13, 122, 120, .12);
}

.merchantLoginField i {
    color: #6d7d83;
    font-size: 20px;
    flex: 0 0 auto;
}

.merchantLoginField input {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: var(--wgw-shell-ink);
    flex: 1;
    font-size: 17px;
    height: auto !important;
    margin: 0 !important;
    min-width: 0;
    padding: 15px 0 !important;
    width: 100% !important;
}

.merchantLoginField input:focus {
    outline: 0;
}

.merchantLoginOptions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin: 5px 0 10px;
}

.merchantLoginOptions a,
.merchantLoginRegister a {
    color: var(--wgw-shell-brand);
    font-weight: 900;
    text-decoration: none;
}

.merchantLoginOptions a:hover,
.merchantLoginRegister a:hover {
    color: #075d5c;
    text-decoration: underline;
}

.merchantLoginRemember {
    align-items: center;
    color: #5f7076 !important;
    display: inline-flex;
    gap: 8px;
    font-size: 15px !important;
    font-weight: 800 !important;
}

.merchantLoginRemember input {
    accent-color: var(--wgw-shell-brand);
    margin: 0;
}

.merchantLoginSubmit {
    align-items: center;
    background: var(--wgw-shell-brand);
    border: 1px solid var(--wgw-shell-brand);
    border-radius: 7px;
    box-shadow: 0 12px 24px rgba(13, 122, 120, .18);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-size: 18px;
    font-weight: 900;
    gap: 9px;
    justify-content: center;
    min-height: 54px;
    padding: 14px 18px;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
    width: 100%;
}

.merchantLoginSubmit:hover,
.merchantLoginSubmit:focus {
    background: #096f6d;
    border-color: #096f6d;
    box-shadow: 0 16px 28px rgba(13, 122, 120, .22);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.merchantLoginRegister {
    align-items: center;
    background: #f5f8f8;
    border: 1px solid #e0e8e9;
    border-radius: 7px;
    color: #68777d;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 22px;
    padding: 14px 16px;
}

.merchantLoginCardSignedIn {
    text-align: center;
}

.merchantRegistrationPage,
.merchantPricingPage {
    background: linear-gradient(180deg, #f7faf9 0%, #eef3f2 100%);
    min-height: calc(100vh - 112px);
}

.merchantRegistrationPage {
    padding: 32px 20px 56px;
}

.merchantRegistrationShell {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 320px) minmax(0, 680px);
    justify-content: center;
    margin: 0 auto;
    max-width: 1040px;
}

.merchantRegistrationSummary,
.merchantRegistrationCard {
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    box-shadow: 0 18px 54px rgba(21, 45, 50, 0.1);
}

.merchantRegistrationSummary {
    padding: 24px;
    position: sticky;
    top: 24px;
}

.merchantRegistrationSummary h1 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 30px;
    line-height: 1.08;
    margin: 0 0 10px;
}

.merchantRegistrationSummary p {
    color: #68777d;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 22px;
}

.merchantSelectedPlan {
    background: #f5f8f8;
    border: 1px solid #dce6e7;
    border-radius: 8px;
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px;
}

.merchantSelectedPlan span,
.merchantSelectedPlan small {
    color: #68777d;
    font-weight: 800;
}

.merchantSelectedPlan strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 23px;
}

.merchantSelectedPlan a {
    color: var(--wgw-shell-brand);
    font-weight: 900;
    margin-top: 4px;
    text-decoration: none;
}

.merchantRegistrationSteps {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.merchantRegistrationSteps li {
    align-items: center;
    color: #405158;
    display: flex;
    font-weight: 900;
    gap: 10px;
}

.merchantRegistrationSteps i {
    align-items: center;
    background: #edf5f5;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.merchantRegistrationCard {
    padding: 24px;
}

.merchantRegisterHeader {
    border-bottom: 1px solid #e3eaeb;
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.merchantRegisterHeader h2 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 29px;
    line-height: 1.05;
    margin: 0 0 8px;
}

.merchantRegisterHeader p {
    color: #68777d;
    font-size: 14px;
    line-height: 1.45;
    margin: 0;
}

.merchantRegisterForm {
    display: grid;
    gap: 12px;
}

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

.merchantRegisterForm label {
    display: grid;
    gap: 5px;
    margin: 0;
    text-align: left;
}

.merchantRegisterForm label span {
    color: #405158;
    font-size: 13px;
    font-weight: 900;
}

.merchantRegisterForm input,
.merchantRegisterForm select,
.merchantRegisterSecondary input {
    background: #f8faf9 !important;
    border: 1px solid #cfdbde !important;
    border-radius: 7px !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    color: var(--wgw-shell-ink);
    font-size: 16px;
    height: auto !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    max-width: none !important;
    min-height: 44px !important;
    padding: 9px 12px !important;
    width: 100% !important;
}

.merchantRegistrationCard .merchantRegisterForm input[type="text"],
.merchantRegistrationCard .merchantRegisterForm input[type="tel"],
.merchantRegistrationCard .merchantRegisterForm input[type="email"],
.merchantRegistrationCard .merchantRegisterForm input[type="password"] {
    max-width: none !important;
    min-height: 44px !important;
    width: 100% !important;
}

.merchantRegisterForm input:focus,
.merchantRegisterForm select:focus,
.merchantRegisterSecondary input:focus {
    background: #ffffff !important;
    border-color: var(--wgw-shell-brand) !important;
    box-shadow: 0 0 0 4px rgba(13, 122, 120, .12) !important;
    outline: 0;
}

.merchantRegisterForm input.error,
.merchantRegisterForm select.error {
    border-color: #d66a2c !important;
}

.merchantRegisterForm small a,
.merchantRegisterSecondary a {
    color: var(--wgw-shell-brand);
    font-weight: 900;
    text-decoration: none;
}

.merchantRegisterAddress {
    display: grid;
    gap: 14px;
}

.merchantRegisterSecondary {
    background: #f5f8f8;
    border: 1px solid #dce6e7;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    margin-top: 24px;
    padding: 18px;
}

.merchantRegisterSecondary strong,
.merchantRegisterSecondary span {
    display: block;
}

.merchantRegisterSecondary strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 20px;
}

.merchantRegisterSecondary span {
    color: #68777d;
    font-weight: 700;
}

.merchantRegisterSecondary form {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.merchantRegisterSecondary button {
    background: var(--wgw-shell-brand);
    border: 1px solid var(--wgw-shell-brand);
    border-radius: 7px;
    color: #ffffff;
    cursor: pointer;
    font-family: var(--wgw-shell-headline);
    font-weight: 900;
    min-height: 52px;
    padding: 12px 18px;
}

.merchantRegisterForm .merchantLoginSubmit {
    min-height: 48px;
    padding: 11px 18px;
}

.merchantRegistrationCard .registration {
    color: #405158;
    display: grid;
    gap: 14px;
    text-align: left;
}

.merchantRegistrationCard .registration + .registration {
    border-top: 1px solid #e3eaeb;
    margin-top: 24px;
    padding-top: 24px;
}

.merchantRegistrationCard .registration h1,
.merchantRegistrationCard .registration h2,
.merchantRegistrationCard .registration h3 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    line-height: 1.1;
    margin: 0 0 8px;
}

.merchantRegistrationCard .registration h1 {
    font-size: 34px;
}

.merchantRegistrationCard .registration h2 {
    font-size: 25px;
}

.merchantRegistrationCard .registration p {
    color: #68777d;
    font-size: 16px;
    line-height: 1.45;
    margin: 0 0 12px;
}

.merchantRegistrationCard .registration a {
    color: var(--wgw-shell-brand);
    font-weight: 900;
}

.merchantRegistrationCard .registration .primary,
.merchantRegistrationCard .registration button.primary {
    align-items: center;
    background: var(--wgw-shell-brand);
    border: 1px solid var(--wgw-shell-brand);
    border-radius: 7px;
    color: #ffffff;
    display: inline-flex;
    font-family: var(--wgw-shell-headline);
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    text-decoration: none;
}

.merchantRegistrationCard .registration input[type="text"] {
    background: #f8faf9 !important;
    border: 1px solid #cfdbde !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    color: var(--wgw-shell-ink);
    font-size: 16px;
    min-height: 48px;
    padding: 11px 13px !important;
}

.merchantPricingHero {
    background: #ffffff;
    border-bottom: 1px solid #dce5e6;
    padding: 58px 0 34px;
}

.merchantPricingHero .ctContainer,
.merchantPricingContent .ctContainer {
    max-width: 1240px;
}

.merchantPricingHero h1 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 10px;
}

.merchantPricingHero p {
    color: #68777d;
    font-size: 19px;
    line-height: 1.45;
    margin: 0;
    max-width: 720px;
}

.merchantPricingHeroSplit {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.merchantPricingListingCard {
    align-items: center;
    background: #f7faf9;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    box-shadow: 0 16px 46px rgba(21, 45, 50, 0.08);
    display: grid;
    gap: 18px;
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 18px;
    text-align: left;
}

.merchantPricingListingCard img {
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    object-fit: contain;
    padding: 8px;
    width: 96px;
}

.merchantPricingListingCard span {
    color: var(--wgw-shell-brand);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.merchantPricingListingCard strong {
    color: var(--wgw-shell-ink);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 25px;
    line-height: 1.1;
}

.merchantPricingListingCard p {
    color: #68777d;
    font-size: 14px;
    line-height: 1.35;
    margin: 8px 0 0;
}

.merchantPricingNotice {
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-left: 4px solid var(--wgw-shell-brand);
    border-radius: 8px;
    box-shadow: 0 16px 46px rgba(21, 45, 50, 0.08);
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    padding: 18px;
}

.merchantPricingNotice > i {
    align-items: center;
    background: #edf5f5;
    border-radius: 999px;
    color: var(--wgw-shell-brand);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.merchantPricingNotice strong {
    color: var(--wgw-shell-ink);
    display: block;
    font-family: var(--wgw-shell-headline);
    font-size: 20px;
    margin-bottom: 5px;
}

.merchantPricingNotice p {
    color: #68777d;
    line-height: 1.45;
    margin: 0;
}

.merchantPricingNoticePromo {
    border-left-color: #d66a2c;
}

.merchantPricingNoticePromo > i {
    background: #fff4e5;
    color: #b85a1b;
}

.merchantBillingToggle {
    align-items: stretch;
    background: #edf5f5;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    display: inline-flex;
    gap: 4px;
    margin-top: 24px;
    padding: 4px;
}

.merchantBillingToggle button {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 6px;
    color: #405158;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    min-width: 150px;
    padding: 10px 16px;
    text-align: center;
}

.merchantBillingToggle button.is-active {
    background: var(--wgw-shell-brand);
    box-shadow: 0 10px 22px rgba(13, 122, 120, 0.18);
    color: #ffffff;
}

.merchantBillingToggle span {
    color: #6f7f84;
    display: block;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2px;
}

.merchantBillingToggle button.is-active span {
    color: rgba(255, 255, 255, 0.78);
}

.merchantPricingContent {
    padding: 34px 0 76px;
}

.merchantPricingGrid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.merchantPricingGridThree {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.merchantPricingCard {
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 16px 46px rgba(21, 45, 50, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 22px;
    position: relative;
}

label.merchantPricingCard {
    cursor: pointer;
}

.merchantPricingCard.is-recommended {
    border-color: var(--wgw-shell-brand);
    box-shadow: 0 22px 58px rgba(13, 122, 120, 0.16);
}

.merchantPricingCard > input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.merchantPricingSelect {
    align-items: center;
    border: 1px solid #cfdcde;
    border-radius: 999px;
    color: transparent;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 30px;
}

.merchantPricingCard > input[type="radio"]:checked + .merchantPricingSelect {
    background: var(--wgw-shell-brand);
    border-color: var(--wgw-shell-brand);
    color: #ffffff;
}

.merchantPricingLabel,
.merchantPricingRibbon {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    padding: 8px 10px;
    text-transform: uppercase;
    width: fit-content;
}

.merchantPricingLabel {
    background: #edf5f5;
    color: var(--wgw-shell-brand);
}

.merchantPricingRibbon {
    background: var(--wgw-shell-brand);
    color: #ffffff;
    position: absolute;
    right: 16px;
    top: -12px;
}

.merchantPricingCard h2 {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 31px;
    line-height: 1;
    margin: 0;
    text-transform: capitalize;
}

.merchantPricingCard p {
    color: #68777d;
    line-height: 1.45;
    margin: 0;
}

.merchantPricingPrice {
    border-bottom: 1px solid #e3eaeb;
    border-top: 1px solid #e3eaeb;
    display: grid;
    gap: 3px;
    padding: 14px 0;
}

.merchantPricingPrice strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 33px;
}

.merchantPricingPrice span {
    color: #68777d;
    font-weight: 800;
}

.merchantPricingCard ul {
    display: grid;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0 !important;
}

.merchantPricingCard li {
    align-items: center;
    color: #405158;
    display: flex;
    font-weight: 800;
    gap: 8px;
}

.merchantPricingCard li i {
    color: var(--wgw-shell-brand);
}

.merchantPricingCard li.is-muted {
    color: #8a989d;
}

.merchantPricingCard li.is-muted i {
    color: #aab5b9;
}

.merchantPricingOptions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.merchantPricingOptions label {
    align-items: center;
    background: #f7faf9;
    border: 1px solid #dce5e6;
    border-radius: 7px;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    text-align: left;
}

.merchantPricingOptions input {
    accent-color: var(--wgw-shell-brand);
    flex: 0 0 auto;
}

.merchantPricingOptions strong,
.merchantPricingOptions small {
    display: block;
}

.merchantPricingOptions strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 22px;
}

.merchantPricingOptions small {
    color: #68777d;
    font-weight: 800;
}

.merchantPricingUnavailable {
    background: #fff4e5;
    border: 1px solid #ffd5a1;
    border-radius: 7px;
    color: #8a4c00;
    font-weight: 800;
    padding: 12px;
}

.merchantPricingFooter {
    align-items: center;
    background: #ffffff;
    border: 1px solid #dce5e6;
    border-radius: 8px;
    box-shadow: 0 16px 46px rgba(21, 45, 50, 0.08);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    margin-top: 40px;
    padding: 22px 24px;
}

.merchantPricingFooter strong {
    color: var(--wgw-shell-ink);
    font-family: var(--wgw-shell-headline);
    font-size: 20px;
}

.merchantPricingFooter p {
    color: #68777d;
    font-size: 13px;
    line-height: 1.45;
    margin: 5px 0 0;
}

@media (max-width: 1120px) {
    .merchantMainGrid,
    .merchantInboxLayout,
    .merchantSupportLayout,
    .merchantDeleteBody .ctContainer,
    .accountSettingsGrid,
    .merchantStatsCharts,
    .merchantStatsLower {
        grid-template-columns: 1fr;
    }

    .merchantStatsKpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .merchantRegistrationShell,
    .merchantPricingHeroSplit,
    .merchantPricingGrid,
    .merchantPricingFooter {
        grid-template-columns: 1fr;
    }

    .merchantRegistrationSummary {
        position: static;
    }

    .merchantStatsHeroInner {
        align-items: stretch;
        flex-direction: column;
    }

    .merchantLocationCard {
        grid-template-columns: minmax(0, 1fr);
    }

    .merchantLocationActions {
        justify-content: flex-start;
    }

    .offerAssistantHeaderActions {
        justify-content: flex-start;
    }

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

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

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

@media (max-width: 760px) {
    .merchantDashboard .ctContainer {
        width: calc(100% - 24px) !important;
    }

    .accountSettings .ctContainer {
        width: calc(100% - 24px) !important;
    }

    .merchantStats .ctContainer {
        width: calc(100% - 24px) !important;
    }

    .merchantDeleteHero {
        padding: 38px 0 32px;
    }

    .merchantDeleteHero h1 {
        font-size: 30px;
    }

    .merchantDeleteProfileCard {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 14px;
    }

    .merchantDeleteProfileCard img {
        width: 72px;
    }

    .merchantDeleteProfileCard h2 {
        font-size: 21px;
    }

    .merchantDeleteBody {
        padding: 28px 0 46px;
    }

    .merchantDeleteBody .ctContainer {
        width: calc(100% - 24px) !important;
    }

    .merchantDeletePanel {
        padding: 22px;
    }

    .merchantDeleteOption {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .merchantDeleteOptionIcon {
        display: none;
    }

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

    .merchantStatsHero {
        padding: 32px 0 24px;
    }

    .merchantStatsHero h1 {
        font-size: 31px;
    }

    .merchantLoginPage {
        min-height: calc(100vh - 92px);
        padding: 36px 12px 56px;
    }

    .merchantLoginCard {
        padding: 24px;
    }

    .merchantLoginHeader h1 {
        font-size: 32px;
    }

    .merchantLoginOptions,
    .merchantLoginRegister {
        align-items: flex-start;
        flex-direction: column;
    }

    .merchantRegistrationPage {
        padding: 32px 12px 56px;
    }

    .merchantRegistrationCard,
    .merchantRegistrationSummary {
        padding: 22px;
    }

    .merchantRegisterHeader h2,
    .merchantRegistrationSummary h1 {
        font-size: 30px;
    }

    .merchantRegisterGrid,
    .merchantRegisterSecondary form {
        grid-template-columns: 1fr;
    }

    .merchantPricingHero {
        padding: 36px 0 26px;
    }

    .merchantPricingHero h1 {
        font-size: 33px;
    }

    .merchantPricingListingCard {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 14px;
    }

    .merchantPricingListingCard img {
        width: 72px;
    }

    .merchantPricingListingCard strong {
        font-size: 21px;
    }

    .merchantPricingNotice {
        display: grid;
        padding: 16px;
    }

    .merchantBillingToggle {
        display: flex;
        width: 100%;
    }

    .merchantBillingToggle button {
        flex: 1;
        min-width: 0;
        padding: 10px 12px;
    }

    .merchantPricingContent {
        padding: 22px 0 48px;
    }

    .merchantOverviewGrid,
    .merchantFormGrid,
    .accountFormGrid,
    .merchantStatsKpis,
    .merchantStatsSplit,
    .offerAssistantStats,
    .offerAssistantSearchResults,
    .offerAssistantList {
        grid-template-columns: 1fr;
    }

    .offerAssistantTop {
        align-items: stretch;
        flex-direction: column;
    }

    .offerAssistantPills {
        border-radius: 8px;
        flex-direction: column;
    }

    .offerAssistantPills button {
        justify-content: space-between;
        width: 100%;
    }

    .offerAssistantDecisionCard,
    .offerAssistantDecisionEmpty {
        padding: 24px;
        grid-template-columns: 1fr;
    }

    .offerAssistantDecision,
    .offerAssistantPreloader {
        min-height: 300px;
    }

    .offerAssistantDecisionCard > strong,
    .offerAssistantDecisionEmpty strong {
        font-size: 24px;
    }

    .offerAssistantDecisionActions {
        flex-direction: column;
        grid-column: 1;
        grid-row: auto;
        width: 100%;
    }

    .merchantContextActions,
    .merchantPanelHeader,
    .merchantLocationActions,
    .merchantFormFooter,
    .offerAssistantHeaderActions,
    .offerAssistantItemActions,
    .merchantStatsHeroActions,
    .merchantStatsPanelHeader {
        align-items: stretch;
        flex-direction: column;
    }

    .merchantButton,
    .merchantLocationActions a {
        width: 100%;
    }

    .merchantSupportFab {
        bottom: 16px;
        font-size: 26px;
        height: 54px;
        right: 16px;
        width: 54px;
    }

    .merchantSupportDrawer {
        bottom: 84px;
        max-height: calc(100vh - 104px);
        right: 12px;
        width: calc(100vw - 24px);
    }

    .merchantSupportDrawerForm > div {
        grid-template-columns: 1fr;
    }

    .merchantLocationMain,
    .merchantSingleHeader {
        grid-template-columns: 1fr;
    }

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

    .merchantPanel {
        padding: 18px;
    }
}
