:root {
    --ng-ink: #111013;
    --ng-muted: #6f6b72;
    --ng-pink: #ee126e;
    --ng-lime: #dfff45;
    --ng-paper: #f7f5f2;
    --ng-line: rgba(17, 16, 19, 0.11);
}

html,
body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ng-ink);
    background: var(--ng-paper);
    font-family: 'Poppins', sans-serif;
}

.ng-desktop-page,
.ng-desktop-page * {
    box-sizing: border-box;
}

.ng-desktop-page p,
.ng-desktop-page h1,
.ng-desktop-page h2 {
    margin: 0;
}

.ng-desktop-page {
    width: min(1480px, calc(100% - 48px));
    margin: 0 auto;
}

.ng-desktop-nav {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--ng-line);
}

.ng-desktop-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ng-ink);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.ng-desktop-brand b {
    font-weight: 500;
}

.ng-desktop-brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% 50% 50% 12%;
    color: #fff;
    background: var(--ng-pink);
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.ng-desktop-nav nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ng-desktop-nav nav a,
.ng-desktop-nav nav button {
    padding: 10px 15px;
    border: 0;
    border-radius: 999px;
    color: #4f4c51;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease;
}

.ng-desktop-nav nav a:hover,
.ng-desktop-nav nav a:focus-visible,
.ng-desktop-nav nav button:hover,
.ng-desktop-nav nav button:focus-visible,
.ng-desktop-nav nav button[aria-expanded="true"] {
    color: var(--ng-ink);
    background: var(--ng-lime);
    outline: none;
}

.ng-desktop-nav nav a.is-current {
    color: #fff;
    background: var(--ng-ink);
}

html.ng-city-drawer-open,
body.ng-city-drawer-open {
    overflow: hidden !important;
}

body.ng-city-drawer-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
}

.ng-desktop-city-backdrop {
    position: fixed;
    inset: 0;
    z-index: 148;
    background: rgba(9, 8, 10, 0.72);
    opacity: 0;
    transition: opacity 260ms ease;
}

.ng-desktop-city-backdrop.is-visible {
    opacity: 1;
}

.ng-desktop-city-drawer {
    width: min(520px, 36vw);
    min-width: 370px;
    height: 85dvh;
    padding: 16px;
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 149;
    box-sizing: border-box;
    transform: translate(100%, -50%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ng-desktop-city-drawer.is-open {
    transform: translate(0, -50%);
}

.ng-desktop-city-drawer-inner {
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(17, 16, 19, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 68px rgba(17, 16, 19, 0.28);
    backdrop-filter: blur(22px) saturate(140%);
}

.ng-desktop-city-drawer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.ng-desktop-city-drawer-head p {
    color: #809800;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ng-desktop-city-drawer-head h2 {
    margin-top: 7px;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.ng-desktop-city-drawer-close {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ng-ink);
    background: #efede9;
    font-family: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.ng-desktop-city-drawer-close:hover,
.ng-desktop-city-drawer-close:focus-visible {
    background: var(--ng-lime);
    outline: none;
    transform: rotate(5deg);
}

.ng-desktop-city-current {
    padding: 16px 18px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(157, 190, 0, 0.28);
    border-radius: 20px;
    background: rgba(223, 255, 69, 0.22);
}

.ng-desktop-city-current span {
    color: var(--ng-muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ng-desktop-city-current strong {
    font-size: 22px;
    line-height: 1.1;
}

.ng-desktop-city-list {
    padding: 0 5px;
    display: grid;
    flex: 1;
    align-content: start;
    gap: 10px;
    overflow-y: auto;
    scrollbar-color: rgba(17, 16, 19, 0.22) transparent;
}

.ng-desktop-city-item {
    padding: 15px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid var(--ng-line);
    border-radius: 17px;
    color: var(--ng-ink);
    background: #f7f5f2;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ng-desktop-city-item:hover,
.ng-desktop-city-item:focus-visible {
    border-color: rgba(157, 190, 0, 0.42);
    background: rgba(223, 255, 69, 0.22);
    outline: none;
    transform: translateY(-2px);
}

.ng-desktop-city-item > span {
    font-size: 15px;
    font-weight: 800;
}

.ng-desktop-city-item > strong {
    color: #708500;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ng-desktop-city-item.is-active {
    border-color: rgba(157, 190, 0, 0.38);
    background: var(--ng-lime);
}

html.ng-contact-modal-open,
body.ng-contact-modal-open {
    overflow: hidden !important;
}

body.ng-contact-modal-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
}

.evont-contact-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1018;
    background: rgba(8, 7, 9, 0.78);
    opacity: 0;
    transition: opacity 240ms ease;
}

.evont-contact-modal-backdrop.is-visible {
    opacity: 1;
}

.evont-contact-modal {
    padding: 32px;
    position: fixed;
    inset: 0;
    z-index: 1019;
    display: grid;
    place-items: center;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.evont-contact-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.evont-contact-modal-panel {
    width: min(920px, 100%);
    min-height: 590px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(430px, 1.22fr);
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
    transform: translateY(20px) scale(0.985);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.evont-contact-modal.is-open .evont-contact-modal-panel {
    transform: translateY(0) scale(1);
}

.evont-contact-modal-close {
    width: 42px;
    height: 42px;
    padding: 0;
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--ng-ink);
    background: #efede9;
    font-family: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 180ms ease, transform 180ms ease;
}

.evont-contact-modal-close:hover,
.evont-contact-modal-close:focus-visible {
    background: var(--ng-lime);
    outline: none;
    transform: rotate(5deg);
}

.evont-contact-modal-intro {
    padding: 52px 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 18% 20%, rgba(223, 255, 69, 0.34), transparent 30%),
        linear-gradient(145deg, #09090a 0%, #1a1b14 100%);
}

.evont-contact-modal-intro::before {
    content: "+";
    position: absolute;
    top: -62px;
    left: 16px;
    color: var(--ng-lime);
    font-family: 'Oswald', sans-serif;
    font-size: 230px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.92;
}

.evont-contact-modal-intro > * {
    position: relative;
    z-index: 1;
}

.evont-contact-modal-intro > p {
    color: var(--ng-lime);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.evont-contact-modal-intro h2 {
    margin-top: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 0.96;
    text-transform: uppercase;
}

.evont-contact-modal-intro > span {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.65;
}

.evont-contact-modal-form {
    padding: 72px 46px 42px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
}

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

.evont-contact-modal-fields > .is-full {
    grid-column: 1 / -1;
}

.evont-contact-modal-form label {
    display: grid;
    gap: 7px;
}

.evont-contact-modal-form label > span {
    color: #67636a;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.evont-contact-modal-form input,
.evont-contact-modal-form select,
.evont-contact-modal-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 16, 19, 0.13);
    border-radius: 13px;
    color: var(--ng-ink);
    background: #f7f5f2;
    font: 500 13px/1.5 'Poppins', sans-serif;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.evont-contact-modal-form input,
.evont-contact-modal-form select {
    height: 48px;
    padding: 0 14px;
}

.evont-contact-modal-form textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.evont-contact-modal-form input:focus,
.evont-contact-modal-form select:focus,
.evont-contact-modal-form textarea:focus {
    border-color: #9fbd08;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(223, 255, 69, 0.34);
    outline: none;
}

.evont-contact-modal-company {
    width: 1px;
    height: 1px;
    position: absolute;
    left: -10000px;
    overflow: hidden;
}

.evont-contact-modal-footer {
    min-height: 52px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.evont-contact-modal-footer > p {
    flex: 1;
    color: var(--ng-muted);
    font-size: 11px;
    line-height: 1.45;
}

.evont-contact-modal-footer > p.is-error {
    color: #b42318;
}

.evont-contact-modal-footer > p.is-success {
    color: #647900;
    font-weight: 700;
}

.evont-contact-modal-footer > button {
    min-height: 48px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    border: 0;
    border-radius: 999px;
    color: var(--ng-ink);
    background: var(--ng-lime);
    font-family: inherit;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
    cursor: pointer;
    transition: filter 180ms ease, transform 180ms ease;
}

.evont-contact-modal-footer > button:hover,
.evont-contact-modal-footer > button:focus-visible {
    filter: brightness(0.94);
    outline: none;
    transform: translateY(-2px);
}

.evont-contact-modal-footer > button:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.ng-desktop-hero {
    min-height: min(680px, calc(100vh - 112px));
    margin-top: 24px;
    padding: clamp(48px, 6vw, 96px);
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    overflow: hidden;
    border-radius: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 96, 153, 0.68), transparent 29%),
        radial-gradient(circle at 67% 78%, rgba(103, 30, 73, 0.75), transparent 34%),
        linear-gradient(135deg, #080709 0%, #1b0b17 56%, #3c102c 100%);
}

.ng-desktop-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(90deg, transparent, #000);
}

.ng-desktop-hero-featured {
    position: absolute;
    inset: 0 0 0 47%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.34;
    pointer-events: none;
    isolation: isolate;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .62) 24%, #000 58%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .62) 24%, #000 58%);
}

.ng-desktop-hero-featured::before,
.ng-desktop-hero-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.ng-desktop-hero-featured::before {
    background:
        linear-gradient(90deg, rgba(17, 6, 15, .98) 0%, rgba(31, 9, 25, .66) 30%, rgba(38, 10, 29, .32) 68%, rgba(38, 10, 29, .48) 100%),
        linear-gradient(180deg, rgba(12, 6, 11, .48) 0%, transparent 30%, transparent 66%, rgba(23, 7, 19, .7) 100%);
}

.ng-desktop-hero-featured::after {
    background: radial-gradient(circle at 58% 34%, rgba(238, 18, 110, .08), rgba(16, 7, 14, .48) 78%);
    mix-blend-mode: color;
}

.ng-desktop-hero-featured-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: saturate(.6) contrast(.9) brightness(.72);
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.8s ease, transform 8s ease;
    will-change: opacity, transform;
}

.ng-desktop-hero-featured-slide.is-active {
    opacity: 1;
    transform: scale(1.09);
}

.ng-desktop-hero-copy {
    position: relative;
    z-index: 2;
}

.ng-desktop-eyebrow,
.ng-desktop-section-heading > div > p {
    color: var(--ng-pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ng-desktop-hero .ng-desktop-eyebrow {
    color: var(--ng-lime);
}

.ng-desktop-hero h1 {
    margin: 16px 0 24px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(76px, 8.5vw, 138px);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.78;
    text-transform: uppercase;
}

.ng-desktop-hero h1 span {
    color: var(--ng-pink);
}

.ng-desktop-lead {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.65;
}

.ng-desktop-hero-cta {
    width: fit-content;
    margin-top: 34px;
    padding: 14px 18px;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    border-radius: 999px;
    color: #101010;
    background: var(--ng-lime);
    font-size: 13px;
    font-family: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ng-desktop-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(223, 255, 69, 0.18);
}

.ng-desktop-hero-art {
    min-height: 420px;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
}

.ng-desktop-year {
    position: relative;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(180px, 22vw, 340px);
    font-weight: 700;
    letter-spacing: -0.1em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.38);
    transform: rotate(-7deg) translateX(-4%);
    text-shadow: 0 0 80px rgba(238, 18, 110, 0.32);
}

.ng-desktop-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.orbit-one {
    width: 82%;
    aspect-ratio: 1;
}

.orbit-two {
    width: 60%;
    aspect-ratio: 1;
    border-color: rgba(223, 255, 69, 0.32);
    transform: rotate(24deg);
}

.ng-desktop-featured,
.ng-desktop-city-section,
.ng-desktop-open-air {
    padding: 110px 0 0;
}

.ng-desktop-section-heading {
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.ng-desktop-main-heading {
    display: flex;
    flex-direction: column;
    /* gap: 6px; */
}

.ng-desktop-section-heading h2 {
    margin-top: 7px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(38px, 4vw, 64px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.ng-desktop-section-description {
    max-width: 380px;
    color: var(--ng-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ng-desktop-carousel-controls {
    display: flex;
    gap: 8px;
}

.ng-desktop-carousel-controls button {
    width: 46px;
    height: 46px;
    border: 1px solid var(--ng-line);
    border-radius: 50%;
    color: var(--ng-ink);
    background: #fff;
    font-size: 19px;
    cursor: pointer;
    transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.ng-desktop-carousel-controls button:hover {
    color: #fff;
    background: var(--ng-ink);
    transform: translateY(-2px);
}

.ng-desktop-featured widget.carousel {
    margin: 0;
    padding: 0 0 14px;
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 16, 19, 0.28) transparent;
}

.ng-desktop-featured a.card.desavanje {
    min-width: min(390px, 32vw);
    width: min(390px, 32vw);
    height: 540px;
    min-height: 540px;
    padding: 28px;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background-color: #18151a;
    background-position: center;
    background-size: cover;
    /* box-shadow: 0 18px 45px rgba(17, 16, 19, 0.14); */
    scroll-snap-align: start;
    text-decoration: none;
    transform: translateZ(0);
}

.ng-desktop-featured > a.card.desavanje {
    width: 100%;
    min-width: 100%;
    height: min(620px, 68vh);
}

.ng-desktop-featured a.card.desavanje::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.78) 100%);
}

.ng-desktop-featured a.card.desavanje::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background-image: var(--ng-card-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.001);
    transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.ng-desktop-featured a.card.desavanje:hover::after,
.ng-desktop-featured a.card.desavanje:focus-visible::after {
    transform: scale(1.055);
}

.ng-desktop-featured a.card.desavanje > widget.content {
    min-height: 50%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.ng-desktop-featured a.card.desavanje > widget.content.top {
    justify-content: flex-start;
}

.ng-desktop-featured a.card.desavanje > widget.content.bottom {
    justify-content: flex-end;
}

.ng-desktop-featured element.date.block,
.ng-desktop-featured element.cijena {
    width: fit-content;
    min-width: 62px;
    min-height: 62px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--ng-ink);
    background: #fff;
    line-height: 1;
}

.ng-desktop-featured element.cijena {
    margin-top: 8px;
    color: #fff;
    background: var(--ng-pink);
    font-size: 13px;
    font-weight: 800;
}

.ng-desktop-featured p.datum { font-size: 22px; font-weight: 800; }
.ng-desktop-featured p.mjesec { margin-top: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.ng-desktop-featured p.lokacija { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ng-desktop-featured p.desavanje { margin-top: 8px; font-family: 'Oswald', sans-serif; font-size: clamp(30px, 2.6vw, 43px); font-weight: 650; line-height: 1.03; text-transform: uppercase; }

.ng-desktop-promo {
    margin-top: 58px;
}

.ng-desktop-promo a.banner[type="nova-godina"] {
    min-height: 220px;
    margin: 0;
    padding: 42px 46% 42px 46px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: 26px;
    color: var(--ng-ink);
    background: var(--ng-lime);
    box-shadow: none;
    text-decoration: none;
}

.ng-desktop-promo a.banner[type="nova-godina"]::after {
    content: "OBJAVI";
    position: absolute;
    right: -20px;
    top: 50%;
    color: rgba(17, 16, 19, 0.08);
    font-family: 'Oswald', sans-serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%) rotate(-4deg);
}

.ng-desktop-promo a.banner[type="nova-godina"] > p.title,
.ng-desktop-promo a.banner[type="nova-godina"] > p.kontakt {
    font-size: 23px;
    font-weight: 850;
    line-height: 1.15;
    text-transform: uppercase;
}

.ng-desktop-promo a.banner[type="nova-godina"] > p.subtitle {
    margin: 10px 0 16px;
    font-size: 14px;
    line-height: 1.55;
}

.ng-desktop-promo a.banner[type="nova-godina"] > p.kontakt {
    font-size: 13px;
}

.ng-desktop-accommodations {
    padding: 110px 0 0;
}

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

.ng-desktop-accommodations-grid.is-loading {
    grid-template-rows: repeat(2, 382px);
    max-height: 782px;
    overflow: hidden;
}

.ng-desktop-accommodations-grid.is-loading > .ng-desktop-accommodation-skeleton:nth-child(n + 9) {
    display: none;
}

.ng-desktop-accommodation-card {
    min-width: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    color: var(--ng-ink);
    background: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 180ms ease;
}

.ng-desktop-accommodation-card:hover,
.ng-desktop-accommodation-card:focus-visible {
    background: #f0eeea;
    outline: none;
}

.ng-desktop-accommodation-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(238, 18, 110, 0.22);
}

.ng-desktop-accommodation-media {
    min-height: 240px;
    position: relative;
    display: block;
    background-color: #ddd9d3;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ng-desktop-accommodation-type {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 16, 19, 0.78);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.ng-desktop-accommodation-copy {
    min-height: 142px;
    padding: 20px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.ng-desktop-accommodation-copy > strong {
    overflow-wrap: anywhere;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 650;
    line-height: 1.08;
    text-transform: uppercase;
}

.ng-desktop-accommodation-copy > small {
    margin-top: 8px;
    color: var(--ng-muted);
    font-size: 11px;
    line-height: 1.45;
}

.ng-desktop-accommodation-footer {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
}

.ng-desktop-accommodation-footer b {
    color: var(--ng-pink);
    font-weight: 850;
}

.ng-desktop-accommodation-footer > span {
    color: var(--ng-muted);
    font-weight: 700;
}

.ng-desktop-accommodation-skeleton {
    height: 382px;
    border-radius: 20px;
    background: linear-gradient(100deg, #ebe8e3 25%, #f7f5f2 42%, #ebe8e3 60%);
    background-size: 220% 100%;
    animation: ng-accommodation-loading 1.25s linear infinite;
}

.ng-desktop-accommodations-message {
    padding: 44px;
    border-radius: 20px;
    color: var(--ng-muted);
    background: #fff;
    font-size: 14px;
    text-align: center;
}

.ng-desktop-accommodation-empty-banner {
    min-height: 382px;
    padding: 46px 48px;
    position: relative;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: 48px;
    overflow: hidden;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 22%, rgba(223, 255, 69, 0.24), transparent 25%),
        linear-gradient(135deg, #0b0b0c 0%, #1b1d13 100%);
}

.ng-desktop-accommodation-empty-banner::after {
    content: "STAY";
    position: absolute;
    right: -18px;
    bottom: -42px;
    color: rgba(255, 255, 255, 0.045);
    font-family: 'Oswald', sans-serif;
    font-size: 190px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.ng-desktop-accommodation-empty-copy,
.ng-desktop-accommodation-empty-action {
    position: relative;
    z-index: 1;
}

.ng-desktop-accommodation-empty-copy > p {
    color: var(--ng-lime);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.ng-desktop-accommodation-empty-copy > h3 {
    max-width: 720px;
    margin: 10px 0 15px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(34px, 3.4vw, 52px);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-transform: uppercase;
}

.ng-desktop-accommodation-empty-copy > span {
    max-width: 650px;
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.65;
}

.ng-desktop-accommodation-empty-benefits {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ng-desktop-accommodation-empty-benefits > span {
    padding: 8px 11px;
    border: 1px solid rgba(223, 255, 69, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(223, 255, 69, 0.07);
    font-size: 10px;
    font-weight: 750;
}

.ng-desktop-accommodation-empty-action {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.ng-desktop-accommodation-empty-orb {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -18px;
    right: 24px;
    border-radius: 50%;
    background: var(--ng-lime);
    box-shadow: 0 0 70px rgba(223, 255, 69, 0.22);
    animation: ng-empty-accommodation-orb 4.8s ease-in-out infinite alternate;
}

.ng-desktop-accommodation-empty-action > button {
    min-height: 52px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    border: 0;
    border-radius: 999px;
    color: var(--ng-ink);
    background: var(--ng-lime);
    font-family: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    transition: filter 180ms ease, transform 180ms ease;
}

.ng-desktop-accommodation-empty-action > button:hover,
.ng-desktop-accommodation-empty-action > button:focus-visible {
    filter: brightness(0.94);
    outline: none;
    transform: translateY(-2px);
}

@keyframes ng-empty-accommodation-orb {
    from { transform: translate3d(0, -3px, 0) scale(0.98); }
    to { transform: translate3d(-10px, 9px, 0) scale(1.04); }
}

@keyframes ng-accommodation-loading {
    to { background-position-x: -220%; }
}

.ng-desktop-events {
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ng-desktop-events > module.datum {
    grid-column: 1 / -1;
    margin: 54px 0 4px;
    padding-top: 22px;
    border-top: 1px solid var(--ng-line);
}

.ng-desktop-events > module.datum:first-child {
    margin-top: 4px;
}

.ng-desktop-events > module.datum h1 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 650;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.ng-desktop-events a.desavanje[type="general"] {
    min-height: 162px;
    margin: 0;
    padding: 22px;
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid var(--ng-line);
    border-radius: 18px;
    color: var(--ng-ink);
    background: #fff;
    text-decoration: none;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.ng-desktop-events a.desavanje[type="general"]:hover {
    z-index: 2;
    border-color: rgba(238, 18, 110, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(17, 16, 19, 0.08);
}

.ng-desktop-events a.desavanje.popularno[type="general"] {
    color: #fff;
    background: var(--ng-ink);
    border-color: var(--ng-ink);
}

.ng-desktop-events a.desavanje[type="general"] > element.date {
    min-height: 70px;
    padding-right: 17px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--ng-line);
}

.ng-desktop-events a.desavanje[type="general"] > element.date > p.datum {
    color: var(--ng-pink);
    font-family: 'Oswald', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 1;
}

.ng-desktop-events a.desavanje[type="general"] > element.date > p.mjesec {
    margin-top: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.ng-desktop-events a.desavanje[type="general"] > element.content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ng-desktop-events a.desavanje[type="general"] > element.content > p.dan {
    color: var(--ng-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ng-desktop-events a.desavanje[type="general"] > element.content > p.pop {
    width: fit-content;
    margin: 5px 0;
    padding: 4px 7px;
    border-radius: 4px;
    color: #fff;
    background: var(--ng-pink);
    font-size: 9px;
    line-height: 1;
    text-transform: uppercase;
}

.ng-desktop-events a.desavanje[type="general"] > element.content > p.lokacija {
    margin-top: 4px;
    color: var(--ng-pink);
    font-size: 12px;
    font-weight: 800;
}

.ng-desktop-events a.desavanje[type="general"] > element.content > p.title {
    margin-top: 4px;
    overflow-wrap: anywhere;
    font-family: 'Oswald', sans-serif;
    font-size: 21px;
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.08;
    text-transform: uppercase;
}

.ng-desktop-events ins.adsbygoogle,
.ng-desktop-events > script,
.ng-desktop-events > style {
    grid-column: 1 / -1;
}

.ng-desktop-seo-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .ng-desktop-hero {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
        padding: 54px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .ng-desktop-page * { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    .ng-desktop-hero-featured-slide { transform: none !important; }
}
