@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Montserrat:wght@400;500;600;700&display=swap');

.nls-topbar,
.nls-topbar * {
    box-sizing: border-box;
}

.nls-topbar {
    --nls-gold: #c99a45;
    --nls-gold-light: #f0d18a;
    --nls-burgundy: #74121a;
    --nls-dark: #0d0a08;
    --nls-line: rgba(255,255,255,.12);

    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    overflow: hidden;
    color: #211606;
    background:
        radial-gradient(circle at 12% 28%, rgba(255,255,255,.24), transparent 24%),
        linear-gradient(110deg, #b98531 0%, #c99a45 34%, #e0ba6b 62%, #bf8d38 100%);
    border-bottom: 1px solid rgba(33,22,6,.28);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    font-family: 'Montserrat', Arial, sans-serif;
    z-index: 20;
}

.nls-topbar::before {
    content: "";
    position: absolute;
    left: 4%;
    top: -92px;
    width: 225px;
    height: 225px;
    border: 43px solid rgba(74,39,5,.07);
    border-radius: 50%;
    pointer-events: none;
}

.nls-topbar::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: -105px;
    width: 250px;
    height: 250px;
    border: 48px solid rgba(74,39,5,.08);
    border-radius: 50%;
    pointer-events: none;
}

.nls-topbar-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(1480px, calc(100% - 60px));
    min-height: 50px;
    margin: 0 auto;
}

.nls-topbar-left,
.nls-topbar-right {
    display: flex;
    align-items: center;
}

.nls-topbar-left {
    gap: 24px;
    min-width: 0;
}

.nls-topbar-right {
    gap: 10px;
    justify-content: flex-end;
}

.nls-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #2a1708;
    font-size: 15px;
    line-height: 1.35;
    white-space: nowrap;
}

.nls-topbar-item svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: #74121a;
}

.nls-topbar-item a {
    color: #2a1708 !important;
    text-decoration: none !important;
    transition: color .2s ease;
}

.nls-topbar-item a:hover {
    color: var(--nls-gold-light) !important;
}

.nls-topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(33,22,6,.22);
}

.nls-topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nls-topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #211606 !important;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(33,22,6,.20);
    text-decoration: none !important;
    transition: .2s ease;
}

.nls-topbar-social a:hover {
    color: #fff !important;
    background: #74121a;
    border-color: #74121a;
    transform: translateY(-2px);
}

.nls-topbar-social svg {
    width: 14px;
    height: 14px;
}

.nls-topbar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 14px;
    color: #fff !important;
    background: var(--nls-burgundy);
    border: 1px solid var(--nls-burgundy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .65px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: .22s ease;
}

.nls-topbar-button:hover {
    color: #fff !important;
    background: #98242e;
    border-color: #98242e;
    transform: translateY(-2px);
}

.nls-topbar-button.is-gold {
    color: #211606 !important;
    background: rgba(255,255,255,.28);
    border-color: rgba(33,22,6,.30);
}

.nls-topbar-button.is-gold:hover {
    color: #fff !important;
    background: #211606;
    border-color: #211606;
}


.nls-topbar-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    padding-right: 22px;
    color: #211606 !important;
    font: 700 18px/1.1 'Cinzel', Georgia, serif;
    letter-spacing: .45px;
    white-space: nowrap;
    text-decoration: none !important;
    animation: nlsTopbarBrandIn .95s cubic-bezier(.2,.75,.25,1) both;
}

.nls-topbar-brand::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 22px;
    background: rgba(33,22,6,.26);
}

@keyframes nlsTopbarBrandIn {
    from {
        opacity: 0;
        transform: translateX(-42px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .nls-topbar-brand {
        animation: none;
    }
}

/* TABLET */
@media (min-width: 761px) and (max-width: 1400px) {
    .nls-topbar-inner {
        grid-template-columns: auto minmax(0,1fr) auto;
        width: calc(100% - 28px);
        gap: 10px;
    }

    .nls-topbar-brand {
        padding-right: 10px;
        font-size: 12.5px;
        letter-spacing: .1px;
    }

    .nls-topbar-left {
        gap: 8px;
    }

    .nls-topbar-item {
        gap: 5px;
        font-size: 11.3px;
        line-height: 1.25;
    }

    .nls-topbar-item svg {
        width: 13px;
        height: 13px;
    }

    .nls-topbar-divider {
        height: 15px;
    }

    .nls-topbar-right {
        gap: 6px;
    }

    .nls-topbar-social {
        gap: 4px;
    }

    .nls-topbar-social a {
        width: 27px;
        height: 27px;
    }

    .nls-topbar-social svg {
        width: 12px;
        height: 12px;
    }

    .nls-topbar-button {
        min-height: 29px;
        padding: 7px 9px;
        font-size: 8.3px;
        letter-spacing: .28px;
    }
}

@media (min-width: 761px) and (max-width: 1250px) {
    .nls-topbar-inner {
        gap: 8px;
    }

    .nls-topbar-brand {
        font-size: 11.3px;
        padding-right: 8px;
    }

    .nls-topbar-left {
        gap: 6px;
    }

    .nls-topbar-item {
        font-size: 10.5px;
        gap: 4px;
    }

    .nls-topbar-address {
        font-size: 10.1px;
    }

    .nls-topbar-button {
        padding: 6px 8px;
        font-size: 8px;
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .nls-topbar-address,
    .nls-topbar-address + .nls-topbar-divider {
        display: none;
    }

    .nls-topbar-brand {
        font-size: 10.8px;
    }

    .nls-topbar-item {
        font-size: 10.5px;
    }
}

/* MOBIL */
@media (max-width: 760px) {
    .nls-topbar-inner {
        grid-template-columns: minmax(0,1fr) auto;
        gap: 12px;
        width: calc(100% - 24px);
        min-height: 44px;
    }

    .nls-topbar-left {
        gap: 9px;
        overflow: hidden;
    }

    .nls-topbar-item {
        font-size: 11px;
    }

    .nls-topbar-left,
    .nls-topbar-email,
    .nls-topbar-divider,
    .nls-topbar-social,
    .nls-topbar-button.is-gold {
        display: none;
    }

    .nls-topbar-brand {
        overflow: hidden;
        max-width: 220px;
        min-height: 44px;
        padding-right: 0;
        font-size: 13px;
        text-overflow: ellipsis;
        animation-duration: .7s;
    }

    .nls-topbar-brand::after {
        display: none;
    }

    .nls-topbar-button {
        min-height: 30px;
        padding: 7px 11px;
        font-size: 8px;
        letter-spacing: .45px;
    }
}

@media (max-width: 430px) {
    .nls-topbar-brand {
        max-width: 175px;
        font-size: 10.5px;
        letter-spacing: .2px;
    }

    .nls-topbar-item span {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nls-topbar-button {
        padding-inline: 9px;
    }
}

.nls-topbar-mobile-actions {
    display: none;
}

@media (max-width: 760px) {
    .nls-topbar-inner {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 48px;
        padding: 7px 0;
    }

    .nls-topbar-brand,
    .nls-topbar-left,
    .nls-topbar-right {
        display: none !important;
    }

    .nls-topbar-mobile-actions {
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 7px;
        width: 100%;
    }

    .nls-topbar-mobile-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 8px 7px;
        color: #211606 !important;
        background: rgba(255,255,255,.28);
        border: 1px solid rgba(33,22,6,.28);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .55px;
        line-height: 1;
        text-align: center;
        text-decoration: none !important;
        text-transform: uppercase;
        transition: .2s ease;
    }

    .nls-topbar-mobile-button:hover {
        color: #fff !important;
        background: #74121a;
        border-color: #74121a;
    }

    .nls-topbar-mobile-button.is-dark {
        color: #fff !important;
        background: #74121a;
        border-color: #74121a;
    }

    .nls-topbar-mobile-button.is-dark:hover {
        background: #98242e;
        border-color: #98242e;
    }
}

@media (max-width: 430px) {
    .nls-topbar-mobile-actions {
        gap: 5px;
    }

    .nls-topbar-mobile-button {
        min-height: 32px;
        padding: 7px 4px;
        font-size: 8px;
        letter-spacing: .25px;
    }
}


.nls-ticket,
.nls-ticket * {
    box-sizing: border-box;
}

.nls-ticket {
    --gold: #c99a45;
    --gold-light: #f0d391;
    --red: #74121a;
    --red-light: #9c2630;
    --dark: #0d0b0a;
    --dark-soft: #171310;
    --cream: #f5efe5;
    --line: rgba(255,255,255,.10);

    width: 100%;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(201,154,69,.10), transparent 25%),
        linear-gradient(135deg, #0a0807, #17110e 58%, #0a0807);
    font-family: 'Montserrat', Arial, sans-serif;
}

.nls-ticket a {
    text-decoration: none !important;
}

.nls-ticket-inner {
    width: min(1500px, calc(100% - 60px));
    margin: 0 auto;
    padding: 95px 0 110px;
}

.nls-ticket-top {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr);
    gap: 38px;
    align-items: stretch;
}

.nls-ticket-hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    background: #111;
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.nls-ticket-image {
    position: absolute;
    inset: 0;
    background-position: center 24%;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform .8s ease;
}

.nls-ticket-hero:hover .nls-ticket-image {
    transform: scale(1.04);
}

.nls-ticket-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(5,3,3,.98) 0%, rgba(5,3,3,.70) 45%, rgba(5,3,3,.10) 76%),
        linear-gradient(135deg, rgba(116,18,26,.34), transparent 48%);
}

.nls-ticket-hero::after {
    content: "JEGY";
    position: absolute;
    right: -24px;
    bottom: -44px;
    z-index: 1;
    color: rgba(255,255,255,.045);
    font: 800 clamp(110px, 13vw, 230px)/1 'Cinzel', serif;
    letter-spacing: -9px;
    pointer-events: none;
}

.nls-ticket-hero-content {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    padding: 42px 40px;
}

.nls-ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
    padding: 9px 14px;
    color: #211606;
    background: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nls-ticket-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(116,18,26,.14);
}

.nls-ticket-hero h1 {
    max-width: 880px;
    margin: 0 0 18px;
    color: #fff;
    font: 700 clamp(42px, 4.6vw, 76px)/1.08 'Cinzel', Georgia, serif;
    letter-spacing: -1px;
    text-wrap: balance;
}

.nls-ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

.nls-ticket-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nls-ticket-meta svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.nls-ticket-description {
    max-width: 780px;
    margin: 0;
    color: rgba(255,255,255,.69);
    font-size: 15px;
    line-height: 1.7;
}


.nls-booking-panel {
    position: relative;
    padding: 34px;
    color: #25201b;
    background: var(--cream);
    border-top: 7px solid var(--gold);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.nls-booking-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(201,154,69,.10), transparent 38%);
}

.nls-booking-panel > * {
    position: relative;
    z-index: 1;
}

.nls-booking-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nls-booking-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--red);
}

.nls-booking-panel h2 {
    margin: 0 0 10px;
    color: #1f1813;
    font: 700 clamp(30px, 3vw, 46px)/1.15 'Cinzel', Georgia, serif;
}

.nls-booking-lead {
    margin: 0 0 30px;
    color: #72695f;
    font-size: 14px;
    line-height: 1.65;
}

.nls-booking-step {
    margin-bottom: 27px;
}

.nls-step-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
}

.nls-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    color: #fff;
    background: var(--red);
    font-size: 13px;
    font-weight: 800;
}

.nls-step-head h3 {
    margin: 0;
    color: #211a15;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
}

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

.nls-date-option {
    position: relative;
}

.nls-date-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nls-date-option label {
    display: block;
    min-height: 90px;
    padding: 14px 12px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    border: 1px solid #d7cec1;
    transition: .24s ease;
}

.nls-date-option label:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(77,55,30,.11);
}

.nls-date-option strong {
    display: block;
    margin-bottom: 5px;
    color: #1e1813;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 19px;
    line-height: 1;
}

.nls-date-option span {
    display: block;
    color: #746b61;
    font-size: 12px;
    line-height: 1.45;
}

.nls-date-option input:checked + label {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 12px 28px rgba(116,18,26,.22);
}

.nls-date-option input:checked + label strong,
.nls-date-option input:checked + label span {
    color: #fff;
}

.nls-date-option input:disabled + label {
    cursor: not-allowed;
    background: #efe9e0;
    border-style: dashed;
    opacity: .75;
}

.nls-date-option input:focus-visible + label {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.nls-ticket-types {
    display: grid;
    gap: 10px;
}

.nls-type-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto auto;
    gap: 15px;
    align-items: center;
    padding: 16px 17px;
    background: #fff;
    border: 1px solid #ddd3c6;
    transition: .22s ease;
}

.nls-type-row:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(77,55,30,.08);
}

.nls-type-name strong {
    display: block;
    margin-bottom: 4px;
    color: #1f1813;
    font: 700 16px/1.3 'Cinzel', Georgia, serif;
}

.nls-type-name span {
    display: block;
    color: #7b7268;
    font-size: 12px;
    line-height: 1.45;
}

.nls-type-price {
    color: var(--red);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.nls-qty {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #d5cbbb;
    background: #f8f5f0;
}

.nls-qty button {
    width: 34px;
    height: 34px;
    padding: 0;
    cursor: pointer;
    color: #33271c;
    background: transparent;
    border: 0;
    font-size: 20px;
    transition: .2s ease;
}

.nls-qty button:hover {
    color: #fff;
    background: var(--red);
}

.nls-qty input {
    width: 34px;
    height: 34px;
    padding: 0;
    color: #251c15;
    background: transparent;
    border: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    pointer-events: none;
}

.nls-summary {
    margin-top: 29px;
    padding: 21px;
    color: #fff;
    background: #15110e;
    border-left: 5px solid var(--gold);
}

.nls-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 9px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.nls-summary-row:last-child {
    margin-bottom: 0;
}

.nls-summary-row b {
    color: #fff;
    font-weight: 600;
    text-align: right;
}

.nls-summary-row.is-discount b {
    color: var(--gold-light);
}

.nls-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.nls-summary-total span {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 600;
}

.nls-summary-total strong {
    color: var(--gold-light);
    font: 700 25px/1 'Cinzel', Georgia, serif;
}

.nls-checkout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-top: 14px;
    overflow: hidden;
    color: #211606 !important;
    background: var(--gold);
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: .25s ease;
}

.nls-checkout::after {
    content: "\2192";
    margin-left: 12px;
    font-size: 20px;
    transition: transform .25s ease;
}

.nls-checkout:hover {
    color: #211606 !important;
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

.nls-checkout:hover::after {
    transform: translateX(5px);
}

.nls-checkout[disabled] {
    background: #ddd3c6;
    color: #8b8479 !important;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nls-secure {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #81766a;
    font-size: 11px;
    text-align: center;
}

.nls-secure svg {
    width: 14px;
    height: 14px;
    color: var(--red);
}

.nls-ticket-info {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
    margin-top: 22px;
}

.nls-info-card {
    min-height: 145px;
    padding: 23px 22px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
}

.nls-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
    color: #211606;
    background: var(--gold);
}

.nls-info-icon svg {
    width: 23px;
    height: 23px;
}

.nls-info-card h3 {
    margin: 0 0 7px;
    color: #fff;
    font: 600 17px/1.3 'Cinzel', Georgia, serif;
}

.nls-info-card p {
    margin: 0;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 1150px) {
    .nls-ticket-top {
        grid-template-columns: 1fr;
    }

    .nls-ticket-hero {
        min-height: 620px;
    }
}

@media (max-width: 760px) {
    .nls-ticket-inner {
        width: calc(100% - 30px);
        padding: 60px 0 75px;
    }

    .nls-ticket-hero {
        min-height: 800px;
    }
    
    .nls-ticket-badge { 
    display: none;
        
    }
    
    .nls-ticket-image {
    position: absolute;
    background-position: center 0%;
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .8s ease;
    }

    .nls-ticket-hero-content {
        padding: 28px 22px;
    }

    .nls-ticket-hero h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .nls-booking-panel {
        padding: 26px 20px;
    }

    .nls-date-grid {
        grid-template-columns: 1fr;
    }

    .nls-type-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .nls-type-price {
        font-size: 18px;
    }

    .nls-qty {
        width: max-content;
    }

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

@media (max-width: 520px) {
    .nls-ticket-inner {
        width: calc(100% - 20px);
    }

    .nls-ticket-hero {
        min-height: 600px;
    }

    .nls-ticket-hero::after {
        display: none;
    }

    .nls-ticket-meta {
        display: grid;
        gap: 8px;
    }
}


.nls-seat-app,
.nls-seat-app * {
    box-sizing: border-box;
}

.nls-seat-app {
    --gold: #c99a45;
    --gold-light: #f2d694;
    --red: #74121a;
    --red-light: #9a2630;
    --dark: #0d0b0a;
    --dark-soft: #171310;
    --cream: #f6f0e7;
    --cream-dark: #e9dfd0;
    --ink: #251d17;
    --muted: #756b61;
    --green: #397b59;
    --blue: #355f8b;
    --seat-one: #ffb347;
    --seat-two: #7bd8ff;
    --seat-three: #ff5d9e;
    --seat-disabled: #181818;
    --shadow: 0 28px 75px rgba(0,0,0,.26);

    width: 100%;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 7%, rgba(201,154,69,.12), transparent 24%),
        linear-gradient(135deg, #090706, #17110e 55%, #090706);
    font-family: 'Montserrat', Arial, sans-serif;
}

.nls-seat-app button,
.nls-seat-app a {
    font-family: inherit;
}

.nls-seat-shell {
    width: min(1580px, calc(100% - 48px));
    margin: 0 auto;
    padding: 64px 0 78px;
}

.nls-seat-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.nls-seat-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nls-seat-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.nls-seat-topbar h2 {
    max-width: 980px;
    margin: 0 0 12px;
    color: #fff;
    font: 700 clamp(31px, 4vw, 58px)/1.12 'Cinzel', Georgia, serif;
    text-wrap: balance;
}

.nls-seat-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.5;
}

.nls-seat-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nls-seat-event-meta svg {
    width: 17px;
    height: 17px;
    color: var(--gold-light);
    flex: 0 0 auto;
}

.nls-seat-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 17px;
    color: rgba(255,255,255,.78) !important;
    border: 1px solid rgba(255,255,255,.18);
    text-decoration: none !important;
    white-space: nowrap;
    transition: .22s ease;
}

.nls-seat-back:hover {
    color: #fff !important;
    border-color: var(--gold);
    background: rgba(201,154,69,.10);
}

.nls-seat-steps {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 1px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
}

.nls-seat-step {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 70px;
    padding: 15px 20px;
    color: rgba(255,255,255,.46);
    background: rgba(255,255,255,.035);
}

.nls-seat-step.is-active {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(116,18,26,.68), rgba(116,18,26,.32));
}

.nls-seat-step.is-done {
    color: rgba(255,255,255,.78);
}

.nls-seat-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.nls-seat-step.is-active .nls-seat-step-number {
    color: #201506;
    background: var(--gold);
    border-color: var(--gold);
}

.nls-seat-step strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.nls-seat-step small {
    display: block;
    font-size: 11px;
    opacity: .7;
}

.nls-seat-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(350px,430px);
    gap: 22px;
    align-items: start;
}

.nls-seat-map-panel,
.nls-seat-summary {
    box-shadow: var(--shadow);
}

.nls-seat-map-panel {
    min-width: 0;
    padding: 28px;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid rgba(201,154,69,.28);
}

.nls-seat-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.nls-seat-panel-head h3 {
    margin: 0 0 6px;
    color: var(--ink);
    font: 700 clamp(25px, 2.5vw, 38px)/1.2 'Cinzel', Georgia, serif;
}

.nls-seat-panel-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.nls-seat-tools {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nls-seat-tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 11px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #d8cec0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: .2s ease;
}

.nls-seat-tool:hover {
    color: var(--red);
    border-color: var(--gold);
}

.nls-seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 21px;
    padding: 15px 17px;
    background: rgba(255,255,255,.62);
    border: 1px solid #ded3c5;
}

.nls-seat-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #625950;
    font-size: 12px;
    font-weight: 600;
}

.nls-seat-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px 4px 2px 2px;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,.14);
}

.nls-seat-dot.selected {
    background: var(--red);
    outline: 3px solid rgba(116,18,26,.20);
}

.nls-seat-dot.sold {
    background: var(--seat-disabled);
    opacity: .55;
}

.nls-seat-map-scroll {
    position: relative;
    overflow: auto;
    padding: 4px 4px 24px;
    scrollbar-color: var(--gold) #ddd3c5;
    scrollbar-width: thin;
    min-height: 650px;
    background:
        radial-gradient(ellipse at center top, rgba(201,154,69,.10), transparent 47%);
}

.nls-seat-map {
    position: relative;
    transform-origin: center top;
    transition: transform .22s ease;
}

.nls-seat-stage-wrap {
    width: 92%;
    margin: 0 auto 16px;
    text-align: center;
}

.nls-seat-stage {
    position: relative;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #b6b6b6;
    border: 3px solid #c7c7c7;
    font: 700 24px/1 'Cinzel', serif;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.nls-seat-block-title {
    margin: 0 0 16px;
    text-align: center;
    color: #897b6e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nls-seat-auditorium {
    position: relative;
    padding: 12px 18px;
}

.nls-seat-sector {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 26px;
}

.nls-seat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nls-seat-row-label {
    min-width: 18px;
    color: #897c70;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.nls-seat {
    position: relative;
    width: 32px;
    height: 30px;
    padding: 0;
    flex: 0 0 32px;
    color: #fff;
    background: var(--seat-one);
    border: 2px solid rgba(255,255,255,.38);
    border-radius: 8px 8px 4px 4px;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    box-shadow:
        inset 0 -5px 0 rgba(0,0,0,.14),
        0 2px 5px rgba(0,0,0,.13);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.nls-seat:hover:not(:disabled) {
    z-index: 2;
    transform: translateY(-4px) scale(1.13);
    outline: 4px solid rgba(201,154,69,.28);
    box-shadow:
        inset 0 -5px 0 rgba(0,0,0,.12),
        0 8px 15px rgba(0,0,0,.24);
}

.nls-seat.is-selected {
    background: #74121a !important;
    outline: 3px solid rgba(116,18,26,.23);
    transform: translateY(-3px) scale(1.08);
}

.nls-seat:disabled {
    color: #fff;
    background: var(--seat-disabled);
    cursor: not-allowed;
    opacity: 1;
    box-shadow: none;
}

.nls-seat:focus-visible {
    outline: 4px solid #1b65a5;
    outline-offset: 2px;
}

.nls-seat-hint {
    margin-top: 19px;
    padding: 13px 15px;
    color: #71675d;
    background: #eee5d8;
    border-left: 4px solid var(--gold);
    font-size: 12px;
    line-height: 1.55;
}

.nls-seat-summary {
    position: sticky;
    top: 22px;
    overflow: hidden;
    color: var(--ink);
    background: var(--cream);
    border-top: 7px solid var(--gold);
}

.nls-seat-summary-head {
    padding: 27px 28px 22px;
    background: linear-gradient(135deg, rgba(201,154,69,.14), transparent 48%);
    border-bottom: 1px solid #ddd2c5;
}

.nls-seat-summary-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nls-seat-summary h3 {
    margin: 0;
    color: var(--ink);
    font: 700 30px/1.2 'Cinzel', Georgia, serif;
}

.nls-seat-event-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 15px;
    margin: 22px 28px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid #ddd2c5;
}

.nls-seat-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    color: #fff;
    background: var(--red);
}

.nls-seat-event-date strong {
    font: 700 26px/1 'Cinzel', serif;
}

.nls-seat-event-date span {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nls-seat-event-card h4 {
    margin: 0 0 6px;
    color: var(--ink);
    font: 700 16px/1.35 'Cinzel', Georgia, serif;
}

.nls-seat-event-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.nls-seat-selected {
    padding: 23px 28px 13px;
}

.nls-seat-selected-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.nls-seat-selected-title strong {
    color: var(--ink);
    font-size: 13px;
}

.nls-seat-clear {
    padding: 0;
    color: var(--red);
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.nls-seat-empty {
    padding: 17px;
    color: #8b8177;
    background: #ede5da;
    border: 1px dashed #cabdac;
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.nls-seat-ticket-list {
    display: grid;
    gap: 8px;
}

.nls-seat-ticket {
    display: grid;
    grid-template-columns: 1fr auto 28px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border: 1px solid #ded4c7;
}

.nls-seat-ticket strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 12px;
}

.nls-seat-ticket small {
    display: block;
    color: #8a8076;
    font-size: 10px;
}

.nls-seat-ticket-price {
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.nls-seat-ticket-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #81766b;
    background: #f1e9de;
    border: 0;
    cursor: pointer;
    font-size: 16px;
}

.nls-seat-price-lines {
    margin: 4px 28px 0;
    padding: 17px 0;
    border-top: 1px solid #ddd2c5;
    border-bottom: 1px solid #ddd2c5;
}

.nls-seat-price-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 9px;
    color: #766b61;
    font-size: 12px;
}

.nls-seat-price-line:last-child {
    margin-bottom: 0;
}

.nls-seat-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 21px 28px 8px;
}

.nls-seat-total span {
    color: #74695f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.nls-seat-total strong {
    color: var(--red);
    font: 700 28px/1 'Cinzel', serif;
    white-space: nowrap;
}

.nls-seat-summary-actions {
    padding: 15px 28px 28px;
}

.nls-seat-continue {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 14px 20px;
    color: #fff;
    background: var(--red);
    border: 2px solid var(--red);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: .22s ease;
}

.nls-seat-continue:hover:not(:disabled) {
    background: #951f29;
    border-color: #951f29;
    transform: translateY(-2px);
    box-shadow: 0 13px 25px rgba(116,18,26,.22);
}

.nls-seat-continue:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.nls-seat-safe-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 12px;
    color: #82776d;
    font-size: 10px;
    line-height: 1.45;
}

.nls-seat-safe-note svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: var(--green);
}

.nls-seat-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 999999;
    max-width: calc(100% - 30px);
    padding: 13px 19px;
    color: #fff;
    background: #211914;
    border-left: 4px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0,0,0,.28);
    font-size: 12px;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%,20px);
    transition: .25s ease;
}

.nls-seat-toast.is-visible {
    opacity: 1;
    transform: translate(-50%,0);
}

@media (max-width: 1120px) {
    .nls-seat-layout {
        grid-template-columns: 1fr;
    }

    .nls-seat-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .nls-seat-shell {
        width: calc(100% - 24px);
        padding: 38px 0 54px;
    }

    .nls-seat-topbar {
        display: none;
    }
    
    .nlsz-stage.has-image {
    height: 400px !important;
    background-color: #17110e;
    background-position: center 65% !important;
    background-repeat: no-repeat;
    background-size: cover;
    border: 3px solid rgba(201, 154, 69, .45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

    .nls-seat-back {
        margin-top: 18px;
    }

    .nls-seat-steps {
        grid-template-columns: 1fr;
    }

    .nls-seat-step {
        min-height: 58px;
    }

    .nls-seat-map-panel {
        padding: 20px 13px;
    }

    .nls-seat-panel-head {
        display: block;
    }

    .nls-seat-tools {
        justify-content: flex-start;
        margin-top: 14px;
    }

    .nls-seat-legend {
        gap: 10px 13px;
    }

    .nls-seat-summary-head,
    .nls-seat-selected,
    .nls-seat-summary-actions {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nls-seat-event-card,
    .nls-seat-price-lines {
        margin-left: 20px;
        margin-right: 20px;
    }

    .nls-seat-total {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nls-seat-app *,
    .nls-seat-app *::before,
    .nls-seat-app *::after {
        animation: none !important;
        transition: none !important;
    }
}


.nls-footer,
.nls-footer * {
    box-sizing: border-box;
}

.nls-footer {
    --nls-gold: #c99a45;
    --nls-gold-light: #f2d694;
    --nls-red: #74121a;
    --nls-red-light: #98242e;
    --nls-dark: #0b0908;
    --nls-dark-soft: #16110e;
    --nls-text: rgba(255,255,255,.68);
    --nls-line: rgba(255,255,255,.11);

    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 10% 5%, rgba(201,154,69,.13), transparent 27%),
        linear-gradient(135deg, #090706, #18110e 55%, #090706);
    font-family: 'Montserrat', Arial, sans-serif;
}

.nls-footer a {
    text-decoration: none !important;
}

.nls-footer-inner {
    width: min(1480px, calc(100% - 60px));
    margin: 0 auto;
}

.nls-footer-cta {
    position: relative;
    z-index: 2;
    padding: 46px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #c99a45 0%, #d8ad5d 52%, #b98632 100%);
    border-bottom: 1px solid rgba(33,22,6,.18);
}

.nls-footer-cta::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 72px solid rgba(67,38,7,.08);
    border-radius: 50%;
    pointer-events: none;
}

.nls-footer-cta::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -145px;
    width: 410px;
    height: 410px;
    border: 78px solid rgba(67,38,7,.09);
    border-radius: 50%;
    pointer-events: none;
}

.nls-footer-cta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 42px;
    align-items: center;
}

.nls-footer-cta-kicker {
    display: block;
    margin-bottom: 8px;
    color: #5d3308;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nls-footer-cta h2 {
    margin: 0 0 10px;
    color: #211606;
    font: 700 clamp(27px,3.1vw,46px)/1.2 'Cinzel', Georgia, serif;
}

.nls-footer-cta p {
    max-width: 850px;
    margin: 0;
    color: rgba(33,22,6,.72);
    font-size: 14px;
    line-height: 1.7;
}

.nls-footer-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nls-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 21px;
    color: #fff !important;
    background: #74121a;
    border: 2px solid #74121a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: .22s ease;
}

.nls-footer-button:hover {
    color: #fff !important;
    background: #98242e;
    border-color: #98242e;
    transform: translateY(-3px);
}

.nls-footer-button.is-outline {
    color: #211606 !important;
    background: transparent;
    border-color: rgba(33,22,6,.50);
}

.nls-footer-button.is-outline:hover {
    color: #fff !important;
    background: #211606;
    border-color: #211606;
}

.nls-footer-main {
    position: relative;
    padding: 78px 0 66px;
}

.nls-footer-main::after {
    content: "NLSZ";
    position: absolute;
    right: -35px;
    bottom: -62px;
    color: rgba(255,255,255,.022);
    font: 800 clamp(150px,17vw,310px)/1 'Cinzel', serif;
    letter-spacing: -12px;
    pointer-events: none;
}

/*
 * A lablec felso sava: balra a nev, jobbra a kozossegi ikonok. Alatta
 * harom egyenrangu hasab — igy a tartalom vegigfut a lap szelessegeben,
 * nem egy keskeny oszlopba zsufolva all.
 */
.nls-footer-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 34px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--nls-line);
}

.nls-footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(220px,1fr) minmax(230px,1fr);
    gap: 48px;
    align-items: start;
}

.nls-footer-mark {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.nls-footer-logo {
    display: block;
    width: auto;
    height: 81px;
    flex: 0 0 auto;
    object-fit: contain;
}

.nls-footer-mark-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nls-footer-mark-main {
    color: #fff;
    font: 700 clamp(26px,2.2vw,38px)/1.15 'Cinzel', Georgia, serif;
    letter-spacing: .5px;
}

.nls-footer-mark-sub {
    margin-top: 7px;
    color: var(--nls-gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nls-footer-about {
    max-width: 46ch;
    margin: 0;
    color: var(--nls-text);
    font-size: 13px;
    line-height: 1.75;
}

.nls-footer-contact {
    display: grid;
    gap: 12px;
}

.nls-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    line-height: 1.55;
}

.nls-footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--nls-gold);
}

.nls-footer-contact-item a {
    color: rgba(255,255,255,.75) !important;
    transition: color .2s ease;
}

.nls-footer-contact-item a:hover {
    color: var(--nls-gold-light) !important;
}

.nls-footer-block h3,
.nls-footer-column h3 {
    position: relative;
    margin: 0 0 23px;
    padding-bottom: 13px;
    color: #fff;
    font: 700 18px/1.3 'Cinzel', Georgia, serif;
}

.nls-footer-block h3::after,
.nls-footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--nls-gold);
}

.nls-footer-links,
.nls-footer-links li {
    list-style: none !important;
}

.nls-footer-links {
    margin: 0;
    padding: 0;
}

.nls-footer-links li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.065);
}

.nls-footer-links li:last-child {
    border-bottom: 0;
}

.nls-footer-links a {
    position: relative;
    display: block;
    padding: 9px 0 9px 16px;
    color: var(--nls-text) !important;
    font-size: 12px;
    line-height: 1.45;
    transition: color .2s ease, padding-left .2s ease;
}

.nls-footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: var(--nls-gold);
    transform: rotate(45deg);
}

.nls-footer-links a:hover {
    padding-left: 21px;
    color: var(--nls-gold-light) !important;
}

.nls-footer-social {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
}

.nls-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: #fff !important;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.15);
    transition: .22s ease;
}

.nls-footer-social a:hover {
    color: #211606 !important;
    background: var(--nls-gold);
    border-color: var(--nls-gold);
    transform: translateY(-3px);
}

.nls-footer-social svg {
    width: 19px;
    height: 19px;
}

/* Vasarloi dokumentumok: a ket PDF. A masodik sor mondja meg, mire szamitson
   a latogato, mielott rakattint. */
.nls-footer-docs,
.nls-footer-docs li {
    list-style: none !important;
}

.nls-footer-docs {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nls-footer-docs a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 11px 13px;
    color: rgba(255,255,255,.78) !important;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 12px;
    line-height: 1.45;
    transition: .2s ease;
}

.nls-footer-docs a:hover {
    color: #fff !important;
    background: rgba(201,154,69,.14);
    border-color: rgba(201,154,69,.55);
    transform: translateX(3px);
}

.nls-footer-docs svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--nls-gold);
}

.nls-footer-docs small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.42);
    font-size: 10px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.nls-footer-bottom {
    position: relative;
    z-index: 2;
    padding: 21px 0;
    border-top: 1px solid var(--nls-line);
    background: rgba(0,0,0,.20);
}

.nls-footer-bottom-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nls-footer-copy {
    color: rgba(255,255,255,.45);
    font-size: 10px;
    line-height: 1.5;
}

.nls-footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nls-footer-bottom-links a {
    color: rgba(255,255,255,.48) !important;
    font-size: 10px;
    transition: color .2s ease;
}

.nls-footer-bottom-links a:hover {
    color: var(--nls-gold-light) !important;
}

@media (max-width: 1120px) {
    .nls-footer-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 40px;
    }

    .nls-footer-block:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .nls-footer-cta-grid {
        grid-template-columns: 1fr;
    }

    .nls-footer-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 660px) {
    .nls-footer-inner {
        width: calc(100% - 30px);
    }

    .nls-footer-main {
        padding: 62px 0 48px;
    }

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

    .nls-footer-top {
        align-items: flex-start;
        gap: 22px;
        padding-bottom: 26px;
        margin-bottom: 30px;
    }

    .nls-footer-button {
        width: 100%;
    }

    .nls-footer-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .nls-footer-bottom-grid {
        display: block;
        text-align: center;
    }

    .nls-footer-bottom-links {
        justify-content: center;
        margin-top: 13px;
    }

    .nls-footer-main::after {
        display: none;
    }

    .nls-footer-logo {
        height: 47px;
    }

    .nls-footer-mark {
        gap: 11px;
    }
}
