* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 18px;
    background: #f7f7f8;
    font-family: Arial, sans-serif;
    color: #111827;
}

/* FORMA */

.form-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.form-card {
    background: #fff;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 14px 40px rgba(0,0,0,.08);
}

h1 {
    margin: 0 0 8px;
    font-size: 30px;
}

.intro {
    margin: 0 0 26px;
    color: #6b7280;
    font-size: 16px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    margin-bottom: 18px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 16px;
}

label span {
    color: #d93025;
}

input,
select {
    width: 100%;
    padding: 17px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    font-size: 17px;
    background: #fafafa;
    outline: none;
}

input:focus,
select:focus {
    border-color: #168a2f;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(22,138,47,.12);
}

select:disabled {
    background: #eeeeee;
    color: #9ca3af;
    cursor: not-allowed;
}

.help {
    font-size: 15px;
    color: #6b7280;
    margin: 9px 0 0;
    line-height: 1.5;
}

.hotel-preview {
    grid-column: 1 / -1;
    margin-bottom: 18px;
}

.hidden {
    display: none !important;
}

.preview-card {
    padding: 16px;
    border-radius: 22px;
    border: 1px solid #e7edf1;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
    margin-bottom: 36px;
}

.reservation-form {
    margin-top: 8px;
    padding-top: 28px;
    border-top: 1px solid #e8edf2;
}

.hold-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #fecaca;
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .14);
    white-space: nowrap;
}

.hold-timer-sticky {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 10000;
    transform: translateX(-50%);
    max-width: calc(100vw - 24px);
}

.hold-timer-icon-img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: block;
}

.hold-timer-label {
    color: #991b1b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.hold-timer-clock {
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
    letter-spacing: .03em;
    color: #dc2626;
    font-variant-numeric: tabular-nums;
}

.hold-timer.is-warning {
    border-color: #fdba74;
    background: #fff7ed;
}

.hold-timer.is-warning .hold-timer-label {
    color: #9a3412;
}

.hold-timer.is-warning .hold-timer-clock {
    color: #ea580c;
}

.hold-timer.is-expired {
    border-color: #fca5a5;
    background: #fef2f2;
}

.hold-timer.is-expired .hold-timer-label {
    color: #7f1d1d;
}

.hold-timer.is-expired .hold-timer-clock {
    color: #b91c1c;
}

@media (max-width: 600px) {
    .hold-timer-sticky {
        bottom: 12px;
        padding: 9px 12px;
        gap: 8px;
    }
    .hold-timer-label {
        font-size: 13px;
    }
    .hold-timer-clock {
        font-size: 18px;
    }
}

body {
    padding-bottom: 88px;
}

.reservation-form .grid {
    gap: 22px 20px;
}

.reservation-form .field {
    margin-bottom: 4px;
}

.form-price-box,
.price-summary.form-price-box {
    margin-top: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.form-price-box .offer-old,
.price-summary.form-price-box .offer-old {
    color: #6b7280 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: line-through !important;
    margin: 0 !important;
}

.form-price-box .form-price-label {
    color: #5b6b7c;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.form-price-box strong,
.hotel-info .form-price-box strong,
.price-summary.form-price-box strong {
    display: block !important;
    margin: 0 !important;
    color: #168a2f !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
}

.hotel-card-big {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 22px;
    align-items: stretch;
}

.hotel-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hotel-gallery .hotel-image:first-child {
    grid-column: 1 / -1;
    height: 215px;
}

.hotel-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
}

.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    height: 220px;
}

.hotel-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.top-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.top-line small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.promo-badge {
    background: #ecfdf3;
    color: #168a2f;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 13px;
    border-radius: 999px;
}

.hotel-info strong {
    color: #111827;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
}

.included-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 8px 0 6px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #65728d;
    font-size: 13px;
    font-weight: 600;
}

.included-icon {
    width: 18px;
    height: 18px;
    color: #65728d;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.included-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.included-text strong {
    font-size: 13px;
    color: #65728d;
    font-weight: 600;
}

.stay-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.stay-line span {
    background: #f3f6f8;
    color: #546178;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 11px;
    border-radius: 999px;
}

.description-bubble {
    margin-top: 8px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.description-bubble summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 900;
    color: #374151;
}

.description-bubble summary::-webkit-details-marker {
    display: none;
}

.description-bubble summary::after {
    content: "+";
    float: right;
    font-size: 18px;
    color: #168a2f;
}

.description-bubble[open] summary::after {
    content: "−";
}

.description-bubble div,
.description-bubble p {
    margin: 0;
    padding: 4px 14px 16px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.price-box {
    margin-top: auto;
    align-self: flex-end;
    text-align: right;
    padding-top: 8px;
}

.old-price {
    color: #6b7280;
    font-size: 15px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-label {
    color: #65728d;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin-right: 6px;
}

.new-price {
    display: inline-block;
    color: #111827;
    font-size: 28px;
    font-weight: 950;
    line-height: 1;
}

/* PAYMENT */

.payment-clean {
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #fff;
    padding: 22px;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid #a7d8b0;
    background: linear-gradient(90deg,#f4fff6,#ffffff);
    border-radius: 17px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.5;
}

.payment-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #e9f8ec;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    flex-shrink: 0;
}

.payment-info strong,
.payment-info b {
    color: #168a2f;
    font-weight: 800;
}

.pay-row {
    display: grid !important;
    grid-template-columns: 24px 48px 1fr;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 17px;
    background: #fff;
    margin: 0 0 13px 0 !important;
    cursor: pointer;
}

.pay-row:hover {
    border-color: #168a2f;
    background: #f7fff8;
}

.pay-row input[type="radio"] {
    display: none !important;
}

.dot {
    width: 22px;
    height: 22px;
    border: 2px solid #8a8a8a;
    border-radius: 50%;
    position: relative;
}

.pay-row input[type="radio"]:checked + .dot {
    border-color: #168a2f;
}

.pay-row input[type="radio"]:checked + .dot::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #168a2f;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.pay-icon {
    width: 48px;
    height: 48px;
    border-left: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    padding-left: 14px;
}

.pay-content strong {
    display: block;
    font-size: 16px;
    line-height: 1.35;
    color: #111827;
    font-weight: 800;
}

.pay-content small {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.pay-logo-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin: 28px 0 4px;
}

.pay-logo-line div {
    height: 1px;
    background: #d1d5db;
}

.pay-logo-line img {
    max-width: 320px;
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 10px 14px;
}

.submit-btn {
    width: 100%;
    border: 0;
    background: linear-gradient(90deg,#168a2f,#2f963c);
    color: #fff;
    padding: 21px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 28px;
    box-shadow: 0 8px 20px rgba(22,138,47,.22);
}

.submit-btn:hover {
    background: linear-gradient(90deg,#0f7024,#168a2f);
}

.security {
    text-align: center;
    color: #5f6368;
    font-size: 15px;
    margin-top: 18px;
}

.error {
    color: #d93025;
    text-align: center;
}

.debug {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
}

/* PONUDA */

.ponuda-body {
    background: transparent;
    padding: 0;
}

.offer-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px;
    font-family: Arial, sans-serif;
}

.offer-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 22px;
}

.offer-head h2 {
    margin: 0 0 6px;
    font-size: 30px;
    color: #111827;
    line-height: 1.2;
}

.offer-head p {
    margin: 0;
    color: #6b7280;
    font-size: 16px;
}

.offer-filter {
    min-width: 310px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

.offer-filter label {
    display: block;
    font-weight: 900;
    margin-bottom: 8px;
    font-size: 14px;
    color: #111827;
}

.offer-filter select {
    width: 100%;
    padding: 15px 15px;
    border-radius: 14px;
    border: 1px solid #dbe3ea;
    font-size: 16px;
    font-weight: 800;
    background: #f8fafc;
    color: #111827;
    outline: none;
}

.offer-empty {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    color: #6b7280;
    font-weight: 700;
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.offer-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 26px rgba(15,23,42,.07);
}

.offer-image-wrap {
    height: 210px;
    position: relative;
    background: #f3f4f6;
}

.offer-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
}

.offer-promo {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ecfdf3;
    color: #168a2f;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.offer-rating-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,.94);
    color: #f59e0b;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(15,23,42,.16);
    backdrop-filter: blur(6px);
    letter-spacing: 1px;
}

.offer-content {
    padding: 17px;
}

.offer-top h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.18;
    color: #111827;
    font-weight: 900;
}

.offer-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.offer-mini span {
    background: #f8fafc;
    color: #65728d;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
}

.offer-included-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 15px;
    color: #65728d;
}

.offer-included-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
}

.offer-svg-icon {
    width: 18px;
    height: 18px;
    color: #65728d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-svg-icon svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}

.offer-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 14px;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 1px solid #edf0f2;
}

.offer-price-box {
    min-width: 0;
}

.offer-old {
    color: #6b7280;
    font-size: 14px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.offer-total-label {
    color: #65728d;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.offer-price {
    color: #111827;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
}

.offer-btn {
    border: 0;
    background: #168a2f;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(22,138,47,.18);
    cursor: pointer;
}

.offer-btn:hover {
    background: #0f7024;
}

/* RESPONSIVE */

@media(max-width: 1000px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 700px) {
    body {
        padding: 10px;
    }

    .form-card {
        padding: 20px;
        border-radius: 18px;
    }

    h1 {
        font-size: 25px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hotel-card-big {
        grid-template-columns: 1fr;
    }

    .hotel-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .hotel-gallery .hotel-image:first-child {
        height: 220px;
    }

    .hotel-image {
        height: 110px;
    }

    .price-box {
        align-self: stretch;
        text-align: center;
        border-top: 1px solid #e5e7eb;
        padding-top: 14px;
        margin-top: 8px;
    }

    .new-price {
        font-size: 27px;
    }

    .payment-clean {
        padding: 15px;
    }

    .payment-info {
        align-items: flex-start;
        padding: 15px;
        font-size: 15px;
    }

    .payment-info-icon {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .pay-row {
        grid-template-columns: 24px 1fr;
        gap: 12px;
        padding: 15px;
    }

    .pay-icon {
        display: none;
    }

    .pay-logo-line {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .pay-logo-line div {
        display: none;
    }

    .submit-btn {
        font-size: 20px;
        padding: 18px;
    }

    .offer-wrap {
        padding: 10px;
    }

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

    .offer-head h2 {
        font-size: 25px;
    }

    .offer-filter {
        min-width: 100%;
    }

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

    .offer-image-wrap {
        height: 230px;
    }

    .offer-price-row {
        align-items: center;
    }

    .offer-price {
        font-size: 23px;
    }
}


/* ====================================
   LOADER ZA IFRAME
==================================== */

.page-loader {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(255,255,255,0.92) !important;
    display: none !important;
    z-index: 999999999 !important;
}

.page-loader.active {
    display: block !important;
}

.loader-box {
    position: fixed !important;
    top: 90px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: min(420px, calc(100vw - 36px)) !important;

    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 24px !important;
    padding: 32px 22px !important;

    text-align: center !important;
    box-shadow: 0 24px 70px rgba(15,23,42,.25) !important;

    z-index: 1000000000 !important;
}

.loader-spinner {
    width: 64px !important;
    height: 64px !important;

    border: 6px solid #e5e7eb !important;
    border-top: 6px solid #168a2f !important;

    border-radius: 50% !important;
    margin: 0 auto 22px !important;

    animation: loaderSpin .8s linear infinite !important;
}

.loader-title {
    font-size: 23px !important;
    font-weight: 900 !important;
    color: #111827 !important;
    margin-bottom: 14px !important;
}

.loader-steps {
    color: #374151 !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
    font-weight: 700 !important;
}

.loader-steps div {
    margin: 5px 0 !important;
}

@keyframes loaderSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media(max-width: 700px) {
    .loader-box {
        top: 80px !important;
        width: calc(100vw - 28px) !important;
        padding: 28px 18px !important;
        border-radius: 22px !important;
    }

    .loader-title {
        font-size: 21px !important;
    }

    .loader-steps {
        font-size: 14px !important;
    }
}



/* ====================================
   NAJPOVOLJNIJI TERMINI PO MJESECU
==================================== */

.best-dates-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    margin: 0 0 24px;
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

.best-dates-title {
    font-size: 18px;
    font-weight: 950;
    color: #111827;
    margin-bottom: 14px;
}

.best-dates-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.best-date-card {
    min-width: 205px;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 15px 16px;
    color: #111827;
    transition: .2s ease;
}

.best-date-card:hover {
    border-color: #168a2f;
    background: #f4fff6;
    transform: translateY(-2px);
}

.best-date-card.active {
    border: 2px solid #168a2f;
    background: #ecfdf3;
}

.best-date-card em {
    display: block;
    font-style: normal;
    color: #168a2f;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 8px;
}

.best-date-card strong {
    display: block;
    font-size: 19px;
    font-weight: 950;
    margin-bottom: 6px;
}

.best-date-card span {
    display: block;
    color: #65728d;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.best-date-card b {
    display: block;
    color: #168a2f;
    font-size: 15px;
    font-weight: 950;
}

@media(max-width: 700px) {
    .best-dates-box {
        padding: 15px;
        border-radius: 18px;
    }

    .best-date-card {
        min-width: 185px;
    }

    .best-dates-title {
        font-size: 17px;
    }
}
/* ISTANBUL OFFER EXTENSIONS */
.istanbul-offer {
    padding: 16px;
}

.istanbul-head {
    align-items: flex-start;
}

.istanbul-filter {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 12px;
}

.filter-grid label {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    color: #374151;
}

.filter-grid input,
.filter-grid select {
    margin-top: 7px;
    padding: 13px 12px;
    border-radius: 14px;
    font-size: 14px;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
}

.filter-actions button {
    border: 0;
    background: linear-gradient(90deg,#168a2f,#2f963c);
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.filter-actions a {
    color: #6b7280;
    font-weight: 800;
    text-decoration: none;
}

.savings-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
}

.savings-section h3 {
    margin: 0 0 6px;
    font-size: 22px;
}

.savings-section p {
    margin: 0 0 14px;
    color: #6b7280;
}

.saving-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    gap: 10px;
}

.saving-box {
    display: block;
    background: #fff9e6;
    border: 1px solid #f0d98c;
    color: #111827;
    text-decoration: none;
    border-radius: 16px;
    padding: 12px;
}

.saving-box strong,
.saving-box b,
.saving-box span,
.saving-box em {
    display: block;
}

.saving-box b {
    color: #c40000;
    font-size: 21px;
    margin: 5px 0;
}

.saving-box span {
    color: #4b5563;
    font-size: 13px;
}

.saving-box em {
    color: #168a2f;
    font-style: normal;
    font-weight: 900;
    font-size: 13px;
    margin-top: 7px;
}

.istanbul-best .best-dates-list {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.istanbul-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.istanbul-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(15,23,42,.07);
}

.istanbul-image {
    height: 100%;
    min-height: 330px;
    border-radius: 0;
}

.istanbul-image img {
    height: 100%;
}

.istanbul-card-body {
    padding: 20px;
}

.istanbul-card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid #eef2f7;
    padding-bottom: 14px;
    margin-bottom: 14px;
}

.istanbul-card-top h3 {
    margin: 8px 0 4px;
    font-size: 25px;
}

.istanbul-card-top p {
    margin: 0;
    color: #6b7280;
    font-weight: 700;
}

.airport-badge,
.time-badge {
    display: inline-block;
    background: #111827;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.istanbul-price-box {
    text-align: right;
    min-width: 170px;
}

.istanbul-price-box small {
    color: #6b7280;
    font-size: 13px;
    font-weight: 700;
}

.istanbul-price-box strong {
    display: block;
    color: #c40000;
    font-size: 31px;
    line-height: 1.05;
    font-weight: 950;
}

.flight-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 14px 0;
}

.flight-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 14px;
}

.flight-box h4 {
    margin: 9px 0 8px;
    font-size: 15px;
}

.flight-box p {
    margin: 5px 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.flight-box a {
    display: inline-block;
    margin-top: 7px;
    color: #0b66c3;
    font-weight: 900;
    text-decoration: none;
}

.istanbul-price-details {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 12px 0;
}

.istanbul-price-details span {
    background: #f3f6f8;
    color: #546178;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 11px;
    border-radius: 999px;
}

.istanbul-description {
    margin-top: 12px;
}

.istanbul-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-width: 160px;
}

.selected-flights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
}

.selected-flights div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 11px;
    line-height: 1.45;
    font-size: 14px;
    color: #374151;
}

@media (max-width: 980px) {
    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .istanbul-card {
        grid-template-columns: 1fr;
    }

    .istanbul-image {
        min-height: 240px;
    }

    .flight-pair,
    .selected-flights {
        grid-template-columns: 1fr;
    }

    .istanbul-card-top {
        display: block;
    }

    .istanbul-price-box {
        text-align: left;
        margin-top: 12px;
    }
}

@media (max-width: 620px) {
    .filter-grid,
    .saving-grid {
        grid-template-columns: 1fr;
    }

    .offer-wrap {
        padding: 8px;
    }
}

/* ISTANBUL UX UPDATE */
.filter-date-main {
    grid-column: span 2;
    background: linear-gradient(135deg,#effaf1,#ffffff);
    border: 2px solid #20a34a;
    border-radius: 18px;
    padding: 14px;
}
.filter-date-main input[type="date"] {
    font-size: 18px;
    font-weight: 900;
    border: 2px solid #20a34a;
}
.filter-grid small,
.checkbox-group small {
    display: block;
    margin-top: 7px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}
.checkbox-group {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
}
.checkbox-group > span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: #374151;
    margin-bottom: 7px;
}
.checkbox-group label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    margin: 6px 0;
}
.checkbox-group input,
.show-all-flights input {
    width: auto;
    margin-right: 6px;
}
.show-all-flights {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
}
.istanbul-price-box strong,
.date-price-card b,
.best-date-card b,
.saving-box b {
    color: #168a2f !important;
}
.result-summary-box {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #14532d;
    border-radius: 16px;
    padding: 13px 16px;
    font-weight: 800;
    margin-bottom: 16px;
}
.date-calendar-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 18px;
    margin-bottom: 20px;
    box-shadow: 0 10px 26px rgba(15,23,42,.05);
}
.date-calendar-title {
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 6px;
}
.date-calendar-box p {
    color: #6b7280;
    margin: 0 0 13px;
}
.date-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 10px;
}
.date-price-card {
    display: block;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 11px;
    text-align: center;
    color: #111827;
}
.date-price-card.active,
.date-price-card:hover {
    border-color: #168a2f;
    box-shadow: 0 0 0 3px rgba(22,138,47,.12);
}
.date-price-card span,
.date-price-card b {
    display: block;
}
.date-price-card span {
    font-weight: 900;
    margin-bottom: 4px;
}
.night-adjust-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 7px 10px;
    margin: 0 0 12px;
}
.night-adjust-box a {
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    padding: 7px 10px;
    font-weight: 900;
    font-size: 13px;
}
.night-adjust-box span {
    font-weight: 950;
}
.upgrade-box {
    background: #ecfdf3;
    border: 1px solid #bbf7d0;
    color: #14532d;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 800;
}
.flight-title-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}
.start-empty {
    border: 1px dashed #20a34a;
    background: #f0fdf4;
}
@media (max-width: 980px) {
    .filter-date-main { grid-column: span 2; }
}
@media (max-width: 620px) {
    .filter-date-main { grid-column: span 1; }
}

/* ISTANBUL UX FIX V3 */
.istanbul-filter .filter-grid {
    display: grid !important;
    grid-template-columns: 2fr 1.2fr 1fr 1.6fr 1.2fr !important;
    gap: 14px !important;
    align-items: start !important;
}
.istanbul-filter .filter-date-main {
    grid-column: span 2 !important;
    background: linear-gradient(135deg, #ecfdf3, #ffffff) !important;
    border: 2px solid #168a2f !important;
    box-shadow: 0 10px 28px rgba(22,138,47,.10) !important;
}
.istanbul-filter .filter-date-main input[type="date"] {
    font-size: 19px !important;
    font-weight: 900 !important;
    border-color: #168a2f !important;
    background: #fff !important;
}
.istanbul-filter .show-all-flights {
    grid-column: span 2 !important;
}
.date-calendar-box {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 22px !important;
    padding: 18px !important;
    margin: 22px 0 !important;
    box-shadow: 0 10px 26px rgba(15,23,42,.05) !important;
}
.date-calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)) !important;
    gap: 10px !important;
    margin-top: 14px !important;
}
.date-price-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 78px !important;
    padding: 12px 8px !important;
    border-radius: 16px !important;
    border: 1px solid #e5e7eb !important;
    background: #f8fafc !important;
    color: #111827 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
    transition: .18s ease !important;
}
.date-price-card:hover,
.date-price-card.active {
    border-color: #168a2f !important;
    background: #ecfdf3 !important;
    box-shadow: 0 0 0 3px rgba(22,138,47,.12) !important;
    transform: translateY(-1px) !important;
}
.date-price-card span {
    display: block !important;
    font-size: 15px !important;
    font-weight: 950 !important;
    color: #111827 !important;
    margin-bottom: 5px !important;
}
.date-price-card b {
    display: block !important;
    font-size: 14px !important;
    color: #168a2f !important;
    font-weight: 950 !important;
}
.istanbul-price-box strong,
.istanbul-card .istanbul-price-box strong,
.best-date-card b,
.saving-box b {
    color: #168a2f !important;
}
.istanbul-price-box .offer-old,
.offer-old {
    color: #6b7280 !important;
}
.flight-box {
    border-left: 4px solid #168a2f !important;
}
.flight-box h4 {
    margin-top: 0 !important;
    color: #111827 !important;
}
.flight-box .time-badge { display: none !important; }
.istanbul-card-top p,
.flight-box p {
    color: #374151 !important;
}
@media(max-width: 980px) {
    .istanbul-filter .filter-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .istanbul-filter .filter-date-main,
    .istanbul-filter .show-all-flights {
        grid-column: span 2 !important;
    }
}
@media(max-width: 620px) {
    .istanbul-filter .filter-grid,
    .date-calendar-grid {
        grid-template-columns: 1fr !important;
    }
    .istanbul-filter .filter-date-main,
    .istanbul-filter .show-all-flights {
        grid-column: span 1 !important;
    }
}

/* ISTANBUL UX FIX V4 */
.compact-filter {
    grid-template-columns: 2fr 1fr 1.3fr 1.2fr 1.7fr !important;
}
.baggage-filter {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
}
.baggage-filter > span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: #374151;
    margin-bottom: 7px;
}
.baggage-filter label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    margin: 7px 0;
}
.baggage-filter input {
    width: auto;
    margin-right: 6px;
}
.date-calendar-box {
    padding: 13px !important;
    border-radius: 18px !important;
}
.date-calendar-title {
    font-size: 17px !important;
}
.date-calendar-box p {
    font-size: 13px !important;
    margin-bottom: 8px !important;
}
.date-calendar-grid {
    display: flex !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 8px !important;
    scroll-snap-type: x mandatory;
}
.date-price-card {
    min-width: 92px !important;
    max-width: 92px !important;
    min-height: 64px !important;
    padding: 9px 7px !important;
    flex: 0 0 auto !important;
    scroll-snap-align: start;
}
.date-price-card span { font-size: 14px !important; }
.date-price-card b { font-size: 12px !important; }
.istanbul-price-box strong,
.istanbul-card .istanbul-price-box strong {
    color: #168a2f !important;
}
.airline-badge {
    display: inline-block;
    color: #fff;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 6px;
}
.airline-badge.pegasus { background: #f2b705; color: #fff; }
.airline-badge.turkish { background: #d71920; color: #fff; }
.airline-badge.default { background: #111827; color: #fff; }
.airport-sub {
    display: block;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 5px;
}
.upgrade-box {
    font-size: 13px !important;
    padding: 8px 10px !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
    max-width: 560px;
}
.included-details {
    margin-top: 12px !important;
    background: #f8fafc !important;
}
.included-details p {
    margin: 5px 0 !important;
    line-height: 1.45 !important;
}
.other-flights-inline {
    margin: 10px 0 4px;
    font-size: 13px;
    font-weight: 900;
}
.other-flights-inline a {
    color: #168a2f;
    text-decoration: none;
}
@media(max-width: 980px) {
    .compact-filter { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width: 620px) {
    .compact-filter { grid-template-columns: 1fr !important; }
    .date-calendar-box { margin: 14px 0 !important; }
}


/* ISTANBUL UX FIX V6 */
/* Ponuda: prtljag se bira tek u forma.php */
.istanbul-filter .baggage-filter { display: none !important; }

/* Kalendar: horizontalni scroll umjesto velikog bloka */
.date-calendar-box {
    padding: 12px 14px !important;
    border-radius: 18px !important;
    margin: 16px 0 18px !important;
    overflow: hidden !important;
}
.date-calendar-title {
    font-size: 17px !important;
    margin-bottom: 4px !important;
}
.date-calendar-box p {
    font-size: 13px !important;
    margin-bottom: 9px !important;
}
.date-calendar-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 8px !important;
    padding: 2px 2px 10px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
}
.date-price-card {
    flex: 0 0 94px !important;
    width: 94px !important;
    min-width: 94px !important;
    max-width: 94px !important;
    min-height: 62px !important;
    padding: 9px 7px !important;
    scroll-snap-align: start !important;
}
.date-price-card span { font-size: 14px !important; }
.date-price-card b { font-size: 13px !important; color: #168a2f !important; }

/* Cijena uvijek zelena */
.istanbul-price-box strong,
.new-price,
.total,
.price-box .new-price {
    color: #168a2f !important;
}

/* Upgrade tekst sitniji i diskretniji */
.upgrade-box {
    font-size: 13px !important;
    line-height: 1.35 !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
}
.upgrade-box b { font-size: 13px !important; }

/* Forma: dropdown prtljaga */
.baggage-select-field select {
    width: 100% !important;
    min-height: 54px !important;
    border-radius: 14px !important;
    border: 1px solid #d9dee8 !important;
    padding: 12px 14px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    background: #fff !important;
}
.baggage-select-field .help {
    margin-top: 6px !important;
    color: #6b7280 !important;
    font-size: 13px !important;
}

/* Forma: ikonice leta iste kao na ponudi */
.selected-flights-clean b {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    color: #1f2937 !important;
}
.mini-flight-icon {
    width: 20px !important;
    height: 20px !important;
    color: #64748b !important;
    flex: 0 0 20px !important;
}
.mini-flight-icon svg {
    width: 20px !important;
    height: 20px !important;
}
.flight-meta-line {
    font-weight: 800 !important;
    color: #374151 !important;
}
@media (max-width: 640px) {
    .date-calendar-box { margin-left: -4px !important; margin-right: -4px !important; }
    .date-price-card { flex-basis: 86px !important; min-width: 86px !important; max-width: 86px !important; }
}


/* GRČKA FINALNI CSS POPRAVAK */
.ponuda-body {
    background: #f7f7f8 !important;
    color: #111827 !important;
}

.ponuda-body .offer-wrap {
    width: 100% !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 24px 16px 48px !important;
}

.ponuda-body .offer-head h1 {
    margin: 4px 0 8px !important;
    font-size: clamp(30px, 4vw, 44px) !important;
    line-height: 1.08 !important;
    color: #111827 !important;
}

.ponuda-body .offer-head p {
    margin: 0 0 24px !important;
    color: #6b7280 !important;
    font-size: 17px !important;
}

.ponuda-body .istanbul-filter {
    padding: 20px !important;
    border-radius: 24px !important;
}

.ponuda-body .istanbul-filter .filter-grid,
.ponuda-body .compact-filter {
    display: grid !important;
    grid-template-columns: minmax(160px, .9fr) minmax(200px, 1.2fr) minmax(180px, 1.1fr) minmax(150px, .9fr) auto !important;
    gap: 14px !important;
    align-items: end !important;
}

.ponuda-body .filter-field label {
    display: block !important;
    margin: 0 0 8px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #27324a !important;
}

.ponuda-body .filter-field select {
    width: 100% !important;
    height: 54px !important;
    margin: 0 !important;
    padding: 0 15px !important;
    border: 1px solid #dfe3e8 !important;
    border-radius: 15px !important;
    background: #fff !important;
    color: #111827 !important;
    font-size: 15px !important;
}

.ponuda-body .filter-submit-wrap {
    display: flex !important;
    align-items: flex-end !important;
}

.ponuda-body .filter-submit {
    appearance: none !important;
    border: 0 !important;
    height: 54px !important;
    padding: 0 24px !important;
    border-radius: 15px !important;
    background: linear-gradient(90deg, #168a2f, #2f963c) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-shadow: 0 8px 18px rgba(22,138,47,.20) !important;
}

.ponuda-body .filter-submit:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 22px rgba(22,138,47,.26) !important;
}

.ponuda-body .istanbul-card {
    grid-template-columns: 320px minmax(0, 1fr) !important;
    border-radius: 24px !important;
}

.ponuda-body .istanbul-image {
    min-height: 390px !important;
}

.ponuda-body .istanbul-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.ponuda-body .istanbul-card-body {
    padding: 24px 26px !important;
}

.ponuda-body .istanbul-card-top h2 {
    margin: 8px 0 12px !important;
    font-size: clamp(25px, 3vw, 34px) !important;
    line-height: 1.15 !important;
    color: #111827 !important;
}

.ponuda-body .istanbul-card-top p {
    font-size: 16px !important;
    color: #374151 !important;
}

.ponuda-body .istanbul-price-box strong {
    font-size: clamp(30px, 4vw, 42px) !important;
}

/* Upgrade preporuka je uklonjena iz PHP-a; ovo sprečava prikaz iz cachea. */
.ponuda-body .upgrade-box {
    display: none !important;
}

@media (max-width: 900px) {
    .ponuda-body .istanbul-filter .filter-grid,
    .ponuda-body .compact-filter {
        grid-template-columns: 1fr 1fr !important;
    }
    .ponuda-body .filter-submit-wrap {
        grid-column: 1 / -1 !important;
    }
    .ponuda-body .filter-submit {
        width: 100% !important;
    }
    .ponuda-body .istanbul-card {
        grid-template-columns: 1fr !important;
    }
    .ponuda-body .istanbul-image {
        min-height: 300px !important;
        max-height: 430px !important;
    }
}

@media (max-width: 600px) {
    body.ponuda-body {
        padding: 0 !important;
    }
    .ponuda-body .offer-wrap {
        padding: 18px 10px 36px !important;
    }
    .ponuda-body .istanbul-filter .filter-grid,
    .ponuda-body .compact-filter {
        grid-template-columns: 1fr !important;
    }
    .ponuda-body .filter-submit-wrap {
        grid-column: auto !important;
    }
    .ponuda-body .istanbul-card-body {
        padding: 18px !important;
    }
    .ponuda-body .istanbul-card-top {
        display: block !important;
    }
    .ponuda-body .istanbul-price-box {
        text-align: left !important;
        margin-top: 14px !important;
    }
}


/* ============================================================
   GRČKA FINALNI OVERRIDE — stabilan raspored + loader + badgevi
   ============================================================ */
.ponuda-body {
    margin: 0 !important;
    padding: 20px !important;
    background: #f6f7f9 !important;
    color: #111827 !important;
    font-family: Arial, Helvetica, sans-serif !important;
}

.ponuda-body .offer-wrap {
    width: 100% !important;
    max-width: 1460px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.ponuda-body .istanbul-head {
    margin: 0 0 34px !important;
    padding: 0 !important;
}

.ponuda-body .istanbul-head h1 {
    margin: 6px 0 8px !important;
    font-size: clamp(36px, 4vw, 62px) !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
}

.ponuda-body .istanbul-filter {
    margin: 0 0 28px !important;
    padding: 28px !important;
    border: 2px solid #cfe4c8 !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, #f7fcf5 0%, #ffffff 42%) !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.07) !important;
}

.ponuda-body .filter-step-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    margin-right: 8px !important;
    border-radius: 999px !important;
    background: #4b963e !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    vertical-align: -2px !important;
}

.ponuda-body .filter-step-muted {
    background: #dbe3ec !important;
    color: #475569 !important;
}

.ponuda-body .filter-field-accent {
    position: relative !important;
}

.ponuda-body .filter-field-accent select {
    border: 2px solid #4b963e !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(75,150,62,.12) !important;
    font-weight: 800 !important;
}

.ponuda-body .filter-field-accent label {
    color: #1f5f2a !important;
}

.ponuda-body .best-dates-head {
    display: block !important;
    margin: 0 0 18px !important;
}

.ponuda-body .best-dates-head h3 {
    margin: 0 0 6px !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #111827 !important;
}

.ponuda-body .best-dates-note {
    margin: 0 !important;
    color: #5b6b7c !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.ponuda-body .best-dates-list a,
.ponuda-body .best-date-tile {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 118px !important;
    padding: 16px 16px 14px !important;
    text-decoration: none !important;
    border: 1px solid #d7e8d2 !important;
    border-radius: 18px !important;
    color: #1f5f2a !important;
    background: linear-gradient(180deg, #f7fcf5 0%, #eef8ea 100%) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

.ponuda-body .best-date-kicker {
    display: block !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    color: #6b7c6e !important;
    line-height: 1.2 !important;
}

.ponuda-body .best-date-day {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    color: #3f5a45 !important;
    line-height: 1.2 !important;
}

.ponuda-body .best-date-icons {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    opacity: .72 !important;
}

.ponuda-body .best-date-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 7px !important;
    background: transparent !important;
    border: 0 !important;
    color: #1f5f2a !important;
}

.ponuda-body .best-date-icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke-width: 1.8 !important;
}

.ponuda-body .best-date-price {
    display: block !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: #2f7f2d !important;
}

.ponuda-body .best-date-price small {
    display: inline !important;
    margin-right: 2px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #5f8a58 !important;
}

.ponuda-body .compact-filter {
    display: grid !important;
    grid-template-columns: minmax(160px,.9fr) minmax(150px,.8fr) minmax(210px,1.15fr) minmax(180px,1fr) minmax(150px,.85fr) 200px !important;
    gap: 16px !important;
    align-items: end !important;
}

.ponuda-body .filter-field,
.ponuda-body .filter-submit-wrap { min-width: 0 !important; }

.ponuda-body .filter-field label {
    margin: 0 0 12px !important;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.ponuda-body .filter-field select {
    width: 100% !important;
    height: 66px !important;
    padding: 0 18px !important;
    border-radius: 18px !important;
    border: 1px solid #dde2e8 !important;
    background: #fff !important;
    font-size: 18px !important;
}

.ponuda-body .filter-field-accent select {
    border: 2px solid #4b963e !important;
    background: #f7fcf5 !important;
    box-shadow: 0 0 0 4px rgba(75,150,62,.14) !important;
    font-weight: 800 !important;
    color: #14532d !important;
}

.ponuda-body .filter-field-accent label {
    color: #1f5f2a !important;
}

.ponuda-body .filter-submit {
    width: 100% !important;
    height: 66px !important;
    border: 0 !important;
    border-radius: 18px !important;
    background: #4b963e !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: 0 12px 28px rgba(75,150,62,.22) !important;
}

.ponuda-body .best-dates-box {
    border-radius: 26px !important;
    padding: 28px !important;
    margin-bottom: 28px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 14px 40px rgba(15,23,42,.06) !important;
}

.ponuda-body .best-dates-box h3 {
    margin: 0 0 6px !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #111827 !important;
}

.ponuda-body .best-dates-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 14px !important;
}

.ponuda-body .best-dates-list a,
.ponuda-body .best-date-tile {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 10px !important;
    min-height: 118px !important;
    padding: 16px 16px 14px !important;
    text-decoration: none !important;
    border: 1px solid #d7e8d2 !important;
    border-radius: 18px !important;
    color: #1f5f2a !important;
    background: linear-gradient(180deg, #f7fcf5 0%, #eef8ea 100%) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

.ponuda-body .best-date-kicker {
    display: block !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    color: #6b7c6e !important;
    line-height: 1.2 !important;
}

.ponuda-body .best-date-day {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: .01em !important;
    color: #3f5a45 !important;
    line-height: 1.2 !important;
}

.ponuda-body .best-date-icons {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    opacity: .72 !important;
}

.ponuda-body .best-date-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 7px !important;
    background: transparent !important;
    border: 0 !important;
    color: #1f5f2a !important;
}

.ponuda-body .best-date-icon svg {
    width: 14px !important;
    height: 14px !important;
    stroke-width: 1.8 !important;
}

.ponuda-body .best-date-price {
    display: block !important;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    color: #2f7f2d !important;
}

.ponuda-body .best-date-price small {
    display: inline !important;
    margin-right: 2px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #5f8a58 !important;
}

.ponuda-body .best-dates-list a:hover,
.ponuda-body .best-date-tile:hover {
    transform: translateY(-2px) !important;
    background: linear-gradient(180deg, #f2faee 0%, #e4f4de 100%) !important;
    border-color: #7fb36f !important;
    box-shadow: 0 10px 22px rgba(47,127,45,.12) !important;
}

.ponuda-body .best-dates-list a.active,
.ponuda-body .best-date-tile.active {
    background: linear-gradient(180deg, #e8f6e3 0%, #d8efd0 100%) !important;
    border: 2px solid #4b963e !important;
    box-shadow: 0 0 0 4px rgba(75,150,62,.12), 0 10px 24px rgba(47,127,45,.1) !important;
}

.ponuda-body .best-date-tile.active .best-date-day {
    color: #245c2a !important;
}

.ponuda-body .best-date-tile.active .best-date-price {
    color: #1f6b28 !important;
}

.ponuda-body .istanbul-card {
    display: grid !important;
    grid-template-columns: 390px minmax(0,1fr) !important;
    overflow: hidden !important;
    border: 1px solid #e4e7ec !important;
    border-radius: 28px !important;
    background: #fff !important;
    box-shadow: 0 14px 38px rgba(15,23,42,.07) !important;
}

.ponuda-body .istanbul-image { min-height: 430px !important; }
.ponuda-body .istanbul-image img { width:100% !important; height:100% !important; object-fit:cover !important; }
.ponuda-body .istanbul-card-body { padding: 30px !important; min-width:0 !important; }
.ponuda-body .istanbul-card-top { display:flex !important; justify-content:space-between !important; align-items:flex-start !important; gap:24px !important; }

.hotel-meta-badges {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 10px !important;
}

.hotel-type-badge,
.airline-badge {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 6px 12px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

.hotel-type-badge {
    background: #eef2f7 !important;
    color: #334155 !important;
    border: 1px solid #d9e0e8 !important;
}

.airline-badge {
    background: #1557b0 !important;
    color: #fff !important;
    border: 1px solid #1557b0 !important;
    letter-spacing: .1px !important;
}

.ponuda-body .istanbul-card-top h2 {
    margin: 0 !important;
    font-size: clamp(28px,2.4vw,42px) !important;
    line-height: 1.12 !important;
}

.page-loader {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    background: rgba(248,250,252,.94) !important;
    backdrop-filter: blur(5px) !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 78px 18px 18px !important;
}
.page-loader.active { display: flex !important; }
.page-loader .loader-box {
    position: static !important;
    transform: none !important;
    width: min(440px,100%) !important;
    padding: 34px 26px !important;
    border-radius: 26px !important;
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 30px 80px rgba(15,23,42,.22) !important;
    text-align: center !important;
}

@media (max-width: 1050px) {
    .ponuda-body .compact-filter { grid-template-columns: 1fr 1fr !important; }
    .ponuda-body .filter-submit-wrap { grid-column: 1 / -1 !important; }
    .ponuda-body .istanbul-card { grid-template-columns: 320px minmax(0,1fr) !important; }
    .ponuda-body .best-dates-list { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
}

@media (max-width: 700px) {
    .ponuda-body { padding: 12px !important; }
    .ponuda-body .istanbul-head h1 { font-size: 38px !important; }
    .ponuda-body .istanbul-filter { padding: 18px !important; border-radius:22px !important; }
    .ponuda-body .compact-filter { grid-template-columns: 1fr !important; gap:14px !important; }
    .ponuda-body .filter-submit-wrap { grid-column:auto !important; }
    .ponuda-body .istanbul-card { grid-template-columns: 1fr !important; border-radius:22px !important; }
    .ponuda-body .istanbul-image { min-height:260px !important; height:260px !important; }
    .ponuda-body .istanbul-card-body { padding:20px !important; }
    .ponuda-body .istanbul-card-top { flex-direction:column !important; }
    .ponuda-body .best-dates-list { grid-template-columns:1fr !important; }
}


/* Precizna iframe visina: bez umjetnog praznog prostora ispod ponude */
html, body {
    min-height: 0 !important;
    height: auto !important;
}
body.ponuda-body {
    margin-bottom: 0 !important;
    padding-bottom: 18px !important;
}
#iframe-height-marker {
    display: block !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}


/* ============================================================
   ZAVRŠNI OVERRIDE: transparentna iframe pozadina i cijele cijene
   ============================================================ */
html,
body,
body.ponuda-body {
    background: transparent !important;
    background-color: transparent !important;
}

body.ponuda-body {
    margin: 0 !important;
}

/* Sadržaj ostaje uredan, ali bez velikog sivog platna oko njega. */
.ponuda-body .offer-wrap {
    background: transparent !important;
}


/* FINAL: automatski termin i zeleni najpovoljniji termini */
.ponuda-body .best-dates-list a {
    color: #2f7f2d !important;
}
