/* ===== Najemicamper Booking – Frontend Styles v6 ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800;900&display=swap');

:root {
    --ncb-accent:            #ef4444;
    --ncb-accent-dark:       #dc2626;
    --ncb-ink:               #0f172a;
    --ncb-ink2:              #1e293b;
    --ncb-muted:             #64748b;
    --ncb-line:              #e8edf2;
    --ncb-bg:                #fdfdfd;

    --ncb-day-mid-bg:        #dbeafe;
    --ncb-day-mid-text:      #1e40af;
    --ncb-day-high-bg:       #fee2e2;
    --ncb-day-high-text:     #991b1b;
    --ncb-day-past-bg:       #f8fafc;
    --ncb-day-past-text:     #d1d5db;
    --ncb-day-today-outline: #ef4444;

    /* ★ kvadratni z rahlim robom */
    --ncb-day-radius: 5px;

    /* ★ dan velik, cena majhna */
    --ncb-day-num-size:   clamp(11px, 1.6vw, 15px);
    --ncb-day-price-size: clamp(6px,  0.85vw, 9px);

    --ncb-input-bg:           #f8fafc;
    --ncb-input-border:       #e2e8f0;
    --ncb-input-focus-border: #ef4444;
    --ncb-font: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

.ncb-frontend { font-family: var(--ncb-font); max-width: 900px; width: 100%; margin: 0 auto 48px; box-sizing: border-box; overflow-x: hidden; color: var(--ncb-ink2); }
*, *::before, *::after { box-sizing: inherit; }

/* ── camper dropdown ── */
.ncb-camper-select-wrap {
    margin-bottom: 24px;
}
.ncb-camper-select-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--ncb-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 7px;
}
.ncb-camper-select-outer {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}
.ncb-camper-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1.5px solid var(--ncb-line);
    border-radius: 10px;
    padding: 12px 44px 12px 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--ncb-font);
    color: var(--ncb-ink);
    cursor: pointer;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ncb-camper-select:focus,
.ncb-camper-select:hover {
    border-color: var(--ncb-ink);
    box-shadow: 0 0 0 3px rgba(15,23,42,.08);
}
.ncb-camper-select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--ncb-muted);
    pointer-events: none;
    line-height: 1;
}
.ncb-camper-panel { display: none; }
.ncb-camper-panel.active { display: block; }

/* ── gallery ── */
.ncb-gallery { margin-bottom: 24px; }
.ncb-gallery-main { width: 100%; border-radius: 1.5rem; overflow: hidden; background: #0f172a; aspect-ratio: 16/9; margin-bottom: 10px; box-shadow: 0 16px 40px -8px rgba(0,0,0,.14); }
.ncb-gallery-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .25s; }
.ncb-gallery-main-img.ncb-img-loading { opacity: 0.4; }
.ncb-gallery-thumbs { display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.ncb-thumb-btn { flex: 0 0 auto; width: calc(20% - 8px); min-width: 60px; max-width: 120px; aspect-ratio: 4/3; border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; cursor: pointer; background: #e2e8f0; transition: all .2s; opacity: .7; }
.ncb-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ncb-thumb-btn.active, .ncb-thumb-btn:hover { border-color: var(--ncb-accent); opacity: 1; }

/* ── desc ── */
.ncb-camper-desc-box { background: #f0fdf4; border-left: 3px solid var(--ncb-accent); border-radius: 0 8px 8px 0; padding: 12px 16px; margin-bottom: 28px; }
.ncb-camper-desc { color: #334155; margin: 0; font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════════════════════
   CALENDAR
   ═══════════════════════════════════════════════ */
.ncb-multi-cal { width: 100%; }

/* ★ NAV — nazaj skrajno levo, naprej skrajno desno */
.ncb-multi-cal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

/* ★ GUMBI — čisti, flat, brez senc, brez pill */
.ncb-cal-nav {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid var(--ncb-line);
    border-radius: 8px;          /* ★ rahlo zaobljeni, NE pill */
    padding: 9px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--ncb-font);
    color: var(--ncb-ink);
    line-height: 1;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    box-shadow: none;            /* ★ brez sence */
    letter-spacing: .01em;
}
.ncb-cal-nav:hover {
    background: var(--ncb-ink);
    color: #fff;
    border-color: var(--ncb-ink);
    /* ★ absolutno brez sence */
    box-shadow: none;
}
.ncb-cal-nav:active { opacity: .75; }

/* months grid */
.ncb-months-row { display: grid; gap: 14px; width: 100%; align-items: start; }
.ncb-months-1   { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
.ncb-months-2   { grid-template-columns: repeat(2, 1fr); }
.ncb-months-3   { grid-template-columns: repeat(3, 1fr); }

/* month card */
.ncb-month-panel {
    background: #fff;
    border: 1px solid var(--ncb-line);
    border-radius: 20px;
    padding: 20px 14px 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.ncb-month-panel .ncb-cal-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--ncb-ink);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: .05em;
    font-family: var(--ncb-font);
}

/* weekday header */
.ncb-cal-days-header { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 5px; width: 100%; }
.ncb-cal-days-header span { text-align: center; font-size: 9px; font-weight: 900; color: #c0cad6; padding: 2px 0; text-transform: uppercase; letter-spacing: .07em; }
.ncb-cal-days-header span:last-child { color: #fca5a5; }

/* days grid */
.ncb-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; width: 100%; }

/* ★ DAY CELL — kvadratni, NE okrogli */
.ncb-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2px 1px;
    border-radius: var(--ncb-day-radius);   /* 5px */
    cursor: default;
    transition: transform .12s;
    overflow: hidden;
    min-height: 0;
    position: relative;
}
.ncb-day.empty { background: transparent; }
.ncb-day.past  { background: var(--ncb-day-past-bg); color: var(--ncb-day-past-text); }

/* PROSTO — zelena */
.ncb-day.available {
    background: var(--ncb-day-available-bg, #d8f3dc);
    color: var(--ncb-day-available-text, #1b4332);
    cursor: pointer;
}
.ncb-day.available:hover { filter: brightness(0.93); transform: scale(1.05); }

/* SEZONA — enako kot prosto */
.ncb-day.season { background: var(--ncb-day-available-bg, #d8f3dc); color: var(--ncb-day-available-text, #1b4332); cursor: pointer; }
.ncb-day.season:hover { filter: brightness(0.93); transform: scale(1.05); }
.ncb-day.season.season-high { background: var(--ncb-day-available-bg, #d8f3dc); color: var(--ncb-day-available-text, #1b4332); }

/* ZASEDENO — rdeca, precrtano */
.ncb-day.booked { background: var(--ncb-day-booked-bg, #ffd6d6); color: var(--ncb-day-booked-text, #7f1d1d); cursor: not-allowed; }
.ncb-day.booked .ncb-day-num { text-decoration: line-through; }

/* danes — obroba */
.ncb-day.today { outline: 2px solid var(--ncb-accent); outline-offset: -2px; }

/* ★ ŠTEVILKA DATUMA — večja, dominantna */
.ncb-day-num {
    display: block;
    width: 100%;
    text-align: center;
    font-size: var(--ncb-day-num-size);   /* clamp(11px,1.6vw,15px) */
    font-weight: 800;
    line-height: 1.15;
    flex-shrink: 0;
}

/* ★ CENA — majhna, pod datumom */
.ncb-day-price {
    display: block;
    width: 100%;
    text-align: center;
    font-size: var(--ncb-day-price-size); /* clamp(6px,0.85vw,9px) */
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1px;
    opacity: .8;
}
.ncb-day-price-per-day { display: none; }
.ncb-day-label         { display: none; }

/* ── legenda ── */
.ncb-cal-legend {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid var(--ncb-line);
    border-radius: 10px;
    padding: 10px 18px;
}
.ncb-legend-item { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800; color: #64748b; text-transform: uppercase; letter-spacing: .08em; font-family: var(--ncb-font); }
.ncb-dot { width: 12px; height: 12px; border-radius: 3px; display: inline-block; flex-shrink: 0; }
.ncb-dot.available { background: #d8f3dc; border: 1px solid #52b788; }
.ncb-dot.season    { display: none; }
.ncb-dot.booked    { background: #ffd6d6; border: 1px solid #e57373; }
.ncb-dot.past      { display: none; }

/* footer opomba */
.ncb-cal-note {
    margin-top: 12px;
    padding: 11px 16px;
    background: #f8fafc;
    border: 1px dashed #d1d9e2;
    border-radius: 10px;
    text-align: center;
    font-size: 11px;
    font-style: italic;
    color: #94a3b8;
    font-weight: 600;
    font-family: var(--ncb-font);
}

/* ══════════════════════════════════════
   OBRAZEC
   ══════════════════════════════════════ */
.ncb-form-section { background: #fff; border: 1px solid var(--ncb-line); border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,.05); margin-top: 36px; width: 100%; }
.ncb-form-title { font-size: 21px; font-weight: 900; margin: 0 0 24px; color: var(--ncb-ink); letter-spacing: -.02em; font-family: var(--ncb-font); }
.ncb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.ncb-form-group { display: flex; flex-direction: column; gap: 5px; }
.ncb-full-width { margin-bottom: 14px; }
.ncb-form-group label { font-size: 11px; font-weight: 800; color: var(--ncb-muted); text-transform: uppercase; letter-spacing: .07em; }
.ncb-form-group input,
.ncb-form-group select,
.ncb-form-group textarea {
    border: 1.5px solid var(--ncb-input-border);
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 14px;
    font-family: var(--ncb-font);
    outline: none;
    transition: border .15s, box-shadow .15s;
    background: var(--ncb-input-bg);
    width: 100%;
    color: var(--ncb-ink);
}
.ncb-form-group input:focus,
.ncb-form-group select:focus,
.ncb-form-group textarea:focus {
    border-color: var(--ncb-input-focus-border);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}
.ncb-price-preview { background: #f0fdf4; color: #15803d; border-radius: 8px; padding: 11px 16px; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.ncb-submit-btn {
    background: var(--ncb-ink);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--ncb-font);
    cursor: pointer;
    transition: background .15s;
    width: 100%;
    letter-spacing: .03em;
    text-transform: uppercase;
    box-shadow: none;
}
.ncb-submit-btn:hover { background: #1e293b; }
.ncb-submit-btn:disabled { background: #94a3b8; cursor: not-allowed; }
.ncb-disclaimer { font-size: 11px; color: #94a3b8; margin-top: 10px; }
.ncb-msg { padding: 11px 16px; border-radius: 8px; margin-bottom: 14px; font-weight: 700; font-size: 14px; }
.ncb-msg.success { background: #f0fdf4; color: #15803d; }
.ncb-msg.error   { background: #fef2f2; color: #b91c1c; }

/* ══════════════════════════════════════
   DATEPICKER — ENOTEN DESIGN s koledarjem
   ══════════════════════════════════════ */
.ncb-hidden-date-input { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.ncb-datepicker { position: relative; width: 100%; }
.ncb-dp-display {
    display: block; width: 100%;
    border: 1.5px solid var(--ncb-input-border);
    border-radius: 8px;
    padding: 10px 13px;
    font-size: 14px;
    font-family: var(--ncb-font);
    background: var(--ncb-input-bg);
    cursor: pointer; user-select: none;
    transition: border .15s;
    color: #475569;
}
.ncb-dp-display:hover,
.ncb-dp-display:focus { border-color: var(--ncb-input-focus-border); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }

/* popup — bela kartica, enak stil kot month panel */
.ncb-dp-popup {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
    background: #fff;
    border: 1px solid var(--ncb-line);
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,.16);
    padding: 18px 16px;
    width: 92vw; max-width: 310px;
}

/* ★ nav v popupu — enako kot glavni nav */
.ncb-dp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;   /* ← levo, → desno */
    margin-bottom: 12px;
}
.ncb-dp-prev,
.ncb-dp-next {
    background: #fff;
    border: 1.5px solid var(--ncb-line);
    border-radius: 7px;
    padding: 6px 13px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--ncb-font);
    color: var(--ncb-ink);
    transition: background .15s, color .15s, border-color .15s;
    line-height: 1;
    box-shadow: none;
}
.ncb-dp-prev:hover,
.ncb-dp-next:hover { background: var(--ncb-ink); color: #fff; border-color: var(--ncb-ink); }

.ncb-dp-title { font-weight: 900; font-size: 13px; color: var(--ncb-ink); text-transform: uppercase; letter-spacing: .05em; }

.ncb-dp-days-header { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 5px; }
.ncb-dp-days-header span { text-align: center; font-size: 9px; font-weight: 900; color: #c0cad6; padding: 2px 0; text-transform: uppercase; letter-spacing: .05em; }

.ncb-dp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

/* ★ datepicker celice — enake kot dan v koledarju */
.ncb-dp-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 5px;           /* kvadratni */
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    transition: background .12s, color .12s;
    color: #16a34a;
    background: #f0fdf4;
    user-select: none;
}
.ncb-dp-day:hover:not(.past):not(.blocked):not(.empty) {
    background: var(--ncb-ink);
    color: #fff;
}
.ncb-dp-day.selected { background: var(--ncb-accent); color: #fff; font-weight: 800; }
.ncb-dp-day.empty    { background: transparent; cursor: default; }
.ncb-dp-day.past     { background: var(--ncb-day-past-bg); color: var(--ncb-day-past-text); cursor: not-allowed; text-decoration: line-through; opacity: .6; }
.ncb-dp-day.blocked  { background: #fef2f2; color: #fca5a5; cursor: not-allowed; text-decoration: line-through; opacity: .7; }

/* ── extras ── */
.ncb-extras-box { background: #fff; border: 1px solid var(--ncb-line); border-radius: 14px; padding: 18px 20px; margin-bottom: 14px; }
.ncb-extras-title { font-size: 11px; font-weight: 800; color: var(--ncb-muted); display: block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .07em; }
.ncb-extras-optional { font-weight: 500; font-size: 11px; color: #94a3b8; }
.ncb-extras-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ncb-extra-item { display: flex; align-items: center; gap: 9px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 10px 12px; cursor: pointer; transition: border-color .15s; user-select: none; }
.ncb-extra-item:hover { border-color: var(--ncb-accent); }
.ncb-extra-item input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--ncb-accent); cursor: pointer; }
.ncb-extra-item:has(input:checked) { border-color: var(--ncb-accent); background: #fff8f8; }
.ncb-extra-icon { font-size: 20px; flex-shrink: 0; }
.ncb-extra-info { flex: 1; line-height: 1.3; }
.ncb-extra-info strong { display: block; font-size: 12px; color: #0f172a; font-weight: 700; }
.ncb-extra-price { font-size: 11px; color: #94a3b8; }
.ncb-extra-total { font-size: 11px; color: var(--ncb-accent); font-weight: 700; white-space: nowrap; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 780px) {
    .ncb-months-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .ncb-frontend  { padding: 0; }
    /* ★ Na mobilni se prikaže samo 1 mesec */
    .ncb-months-2,
    .ncb-months-3  { grid-template-columns: 1fr; max-width: 100%; margin: 0; }
    /* Skrij 2. in 3. mesec na mobilni */
    .ncb-months-2 .ncb-month-panel:nth-child(n+2),
    .ncb-months-3 .ncb-month-panel:nth-child(n+2) { display: none; }
    .ncb-month-panel { padding: 16px 10px 14px; border-radius: 14px; }
    .ncb-cal-days  { gap: 2px; }
    .ncb-cal-nav   { padding: 8px 13px; font-size: 12px; border-radius: 7px; }
    .ncb-form-row  { grid-template-columns: 1fr; }
    .ncb-form-section { padding: 18px; border-radius: 14px; }
    .ncb-extras-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════
   CENIK SEZON
   ══════════════════════════════════ */
.ncb-pricing-section { margin-top: 32px; }
.ncb-pricing-title { font-size: 22px; font-weight: 900; color: var(--ncb-ink); letter-spacing: -.02em; margin: 0 0 20px; font-family: var(--ncb-font); }
.ncb-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ncb-pricing-card {
    background: #fff; border: 1px solid var(--ncb-line);
    border-radius: 20px; padding: 24px 20px 20px;
    display: flex; flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    transition: transform .2s;
}
.ncb-pricing-card:hover { transform: translateY(-4px); }
.ncb-pricing-card.ncb-pc-low  { border-bottom: 4px solid #94a3b8; }
.ncb-pricing-card.ncb-pc-mid  { border-bottom: 4px solid #3b82f6; }
.ncb-pricing-card.ncb-pc-high { border-bottom: 4px solid var(--ncb-accent); }
.ncb-pc-period { font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.ncb-pc-low .ncb-pc-period  { color: #64748b; }
.ncb-pc-mid .ncb-pc-period  { color: #3b82f6; }
.ncb-pc-high .ncb-pc-period { color: var(--ncb-accent); }
.ncb-pc-title { font-size: 18px; font-weight: 900; color: var(--ncb-ink); margin: 0 0 16px; font-family: var(--ncb-font); }
.ncb-pc-rows { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ncb-pc-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 8px; }
.ncb-pc-row:first-child { background: #f8fafc; }
.ncb-pc-row-label { font-size: 12px; font-weight: 600; color: var(--ncb-muted); font-style: italic; }
.ncb-pc-row-price { font-size: 20px; font-weight: 900; }
.ncb-pc-low .ncb-pc-row:first-child .ncb-pc-row-price  { color: var(--ncb-accent); }
.ncb-pc-mid .ncb-pc-row:first-child .ncb-pc-row-price  { color: #3b82f6; }
.ncb-pc-high .ncb-pc-row:first-child .ncb-pc-row-price { color: var(--ncb-accent); }
.ncb-pc-row-price-small { font-size: 16px; font-weight: 900; color: var(--ncb-ink); }
.ncb-pc-note { font-size: 10px; color: #94a3b8; margin-top: 12px; text-align: center; font-style: italic; }

/* ══════════════════════════════════
   VIKEND PAKET
   ══════════════════════════════════ */
.ncb-weekend-section { margin-top: 28px; }
.ncb-weekend-banner {
    background: var(--ncb-ink); border-radius: 20px;
    padding: 28px 28px 24px; color: #fff;
    border-bottom: 4px solid var(--ncb-accent);
    margin-bottom: 14px;
}
.ncb-weekend-label { display: inline-block; background: var(--ncb-accent); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; }
.ncb-weekend-title { font-size: 20px; font-weight: 900; margin: 0 0 6px; font-family: var(--ncb-font); letter-spacing: -.01em; }
.ncb-weekend-sub { font-size: 13px; color: #94a3b8; margin: 0; }
.ncb-weekend-sub strong { color: var(--ncb-accent); }
.ncb-weekend-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.ncb-weekend-card {
    background: #fff; border: 1px solid var(--ncb-line);
    border-radius: 16px; padding: 22px 20px;
    display: flex; flex-direction: column; align-items: center;
    text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.ncb-weekend-card.ncb-wc-featured { border: 2px solid #3b82f6; box-shadow: 0 8px 24px rgba(59,130,246,.1); position: relative; }
.ncb-wc-badge { position: absolute; top: -11px; background: #3b82f6; color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }
.ncb-wc-period { font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--ncb-muted); margin-bottom: 10px; }
.ncb-wc-period.ncb-wc-blue { color: #3b82f6; }
.ncb-wc-old { font-size: 12px; font-weight: 700; color: #cbd5e1; text-decoration: line-through; margin-bottom: 2px; }
.ncb-wc-price { font-size: 44px; font-weight: 900; color: var(--ncb-ink); letter-spacing: -.03em; line-height: 1; }
.ncb-wc-price.ncb-wc-blue { color: #3b82f6; }
.ncb-wc-save { background: #fef2f2; color: var(--ncb-accent); border: 1px dashed #fecaca; border-radius: 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; padding: 3px 10px; margin: 10px 0; }
.ncb-wc-note { font-size: 10px; color: #94a3b8; font-weight: 600; }

@media (max-width: 680px) {
    .ncb-pricing-grid { grid-template-columns: 1fr; }
    .ncb-weekend-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   CENIK + VIKEND SEKCIJI
══════════════════════════════════════════════════════════ */
.ncb-extras-sections { margin-top: 32px; display: flex; flex-direction: column; gap: 28px; }

/* ── shared section title ── */
.ncb-section-title { font-size: 20px; font-weight: 900; color: var(--ncb-ink); letter-spacing: -.02em; margin: 0 0 4px; font-family: var(--ncb-font); }
.ncb-section-sub   { font-size: 11px; font-weight: 700; color: var(--ncb-muted); text-transform: uppercase; letter-spacing: .07em; margin: 0 0 18px; }

/* ══════════════════════════
   CENIK PO SEZONAH
══════════════════════════ */
.ncb-pricing-section { background: #fff; border: 1px solid var(--ncb-line); border-radius: 20px; padding: 28px 24px; box-shadow: 0 4px 24px rgba(0,0,0,.05); }

.ncb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

/* price card */
.ncb-price-card {
    border: 1.5px solid var(--ncb-line);
    border-radius: 16px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform .2s;
}
.ncb-price-card:hover { transform: translateY(-4px); }

/* featured middle card */
.ncb-price-featured {
    border-color: #2563eb;
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(37,99,235,.1);
    transform: scale(1.02);
    z-index: 1;
}
.ncb-price-featured:hover { transform: scale(1.02) translateY(-4px); }

/* card borders by season */
.ncb-price-low  { border-bottom: 4px solid #e2e8f0; }
.ncb-price-mid  { border-bottom: 4px solid #2563eb; }
.ncb-price-high { border-bottom: 4px solid var(--ncb-accent); }

.ncb-price-card-head { margin-bottom: 16px; }
.ncb-season-dates { display: block; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--ncb-muted); margin-bottom: 4px; }
.ncb-price-mid .ncb-season-dates { color: #2563eb; }
.ncb-price-high .ncb-season-dates { color: var(--ncb-accent); }
.ncb-season-name { font-size: 15px; font-weight: 900; color: var(--ncb-ink); margin: 0; font-family: var(--ncb-font); letter-spacing: -.01em; }

/* rows */
.ncb-price-rows { display: flex; flex-direction: column; gap: 2px; flex: 1; margin-bottom: 14px; }
.ncb-price-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: 8px; }
.ncb-price-row-featured { background: #f8fafc; }
.ncb-price-mid  .ncb-price-row-featured { background: #eff6ff; }
.ncb-price-high .ncb-price-row-featured { background: #fff5f5; }
.ncb-price-range { font-size: 12px; font-weight: 600; color: var(--ncb-muted); font-style: italic; }
.ncb-price-mid .ncb-price-row-featured .ncb-price-range { color: #1e3a8a; }
.ncb-price-high .ncb-price-row-featured .ncb-price-range { color: #991b1b; }
.ncb-price-val { display: flex; flex-direction: column; align-items: flex-end; }
.ncb-price-old  { font-size: 10px; font-weight: 600; color: #cbd5e1; text-decoration: line-through; line-height: 1; }
.ncb-price-main { font-size: 20px; font-weight: 900; color: var(--ncb-ink); line-height: 1.1; font-family: var(--ncb-font); }
.ncb-price-accent { color: var(--ncb-accent); }
.ncb-price-blue   { color: #2563eb; }

/* badges */
.ncb-price-badge { border-radius: 12px; padding: 12px 14px; text-align: center; }
.ncb-badge-red        { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.ncb-badge-dark       { background: var(--ncb-ink); }
.ncb-badge-red-light  { background: #fef2f2; border: 1px solid #fecaca; }
.ncb-badge-tag   { display: block; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; opacity: .7; color: #fff; }
.ncb-badge-red-light .ncb-badge-tag { color: var(--ncb-accent); opacity: .8; }
.ncb-badge-title { display: block; font-size: 12px; font-weight: 900; text-transform: uppercase; color: #fff; margin-top: 3px; }
.ncb-badge-title-blue { color: #60a5fa; }
.ncb-badge-title-red  { color: var(--ncb-accent); }

/* links row */
.ncb-pricing-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding-top: 6px; }
.ncb-doc-link { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--ncb-muted); text-decoration: none; text-transform: uppercase; letter-spacing: .07em; transition: color .15s; }
.ncb-doc-link:hover { color: var(--ncb-ink); }

/* ══════════════════════════
   VIKEND PAKET
══════════════════════════ */
.ncb-weekend-section { background: #fff; border: 1px solid var(--ncb-line); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.05); }

.ncb-weekend-hero {
    background: var(--ncb-ink);
    padding: 28px 28px 24px;
    text-align: center;
    border-bottom: 4px solid var(--ncb-accent);
}
.ncb-weekend-tag   { display: inline-block; background: var(--ncb-accent); color: #fff; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; padding: 4px 12px; border-radius: 6px; margin-bottom: 10px; }
.ncb-weekend-title { font-size: 22px; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: -.01em; margin: 0 0 8px; font-family: var(--ncb-font); }
.ncb-weekend-sub   { font-size: 13px; color: #94a3b8; margin: 0; line-height: 1.6; }
.ncb-weekend-sub strong { color: #fff; }
.ncb-weekend-dates { color: var(--ncb-accent); font-weight: 700; }

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

.ncb-weekend-card {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--ncb-line);
    position: relative;
}
.ncb-weekend-card:last-child { border-right: none; }

.ncb-weekend-featured {
    border: 2px solid #2563eb;
    border-radius: 0;
    box-shadow: 0 0 0 0;
}

.ncb-weekend-popular {
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: #2563eb; color: #fff;
    font-size: 9px; font-weight: 900;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 4px 14px; border-radius: 0 0 8px 8px;
    white-space: nowrap;
}

.ncb-weekend-period { display: block; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--ncb-muted); margin-bottom: 12px; }
.ncb-weekend-featured .ncb-weekend-period { color: #2563eb; }
.ncb-weekend-was   { font-size: 13px; font-weight: 600; color: #cbd5e1; text-decoration: line-through; margin: 0 0 4px; font-style: italic; }
.ncb-weekend-price { font-size: 56px; font-weight: 900; color: var(--ncb-ink); line-height: 1; font-family: var(--ncb-font); letter-spacing: -.03em; margin-bottom: 10px; }
.ncb-weekend-price span { font-size: 24px; }
.ncb-weekend-price-blue { color: #2563eb; }
.ncb-weekend-save  { display: inline-block; background: #fef2f2; color: var(--ncb-accent); border: 1px dashed #fecaca; border-radius: 8px; padding: 5px 14px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.ncb-weekend-note  { font-size: 10px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; margin: 0; }

/* ── responsive ── */
@media (max-width: 700px) {
    .ncb-pricing-grid { grid-template-columns: 1fr; }
    .ncb-price-featured { transform: none; }
    .ncb-price-featured:hover { transform: translateY(-4px); }
    .ncb-weekend-grid { grid-template-columns: 1fr; }
    .ncb-weekend-card { border-right: none; border-bottom: 1px solid var(--ncb-line); }
    .ncb-weekend-card:last-child { border-bottom: none; }
    .ncb-weekend-popular { position: static; transform: none; display: inline-block; border-radius: 6px; margin-bottom: 14px; }
}

/* ══════════════════════════════════════════════════════
   EXTRA INFO — Cenik & Vikend paket sekciji
   ══════════════════════════════════════════════════════ */
.ncb-extra-info-wrapper {
    font-family: var(--ncb-font);
    padding: 36px 0 0;
}

/* links row */
.ncb-extra-info-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}
.ncb-info-link {
    color: #ef4444;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    text-decoration: none;
    border-bottom: 2px solid #ef4444;
    padding-bottom: 2px;
    transition: opacity .15s;
}
.ncb-info-link:hover { opacity: .7; }

/* 2-column grid */
.ncb-extra-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.ncb-ei-single {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
}

/* base card */
.ncb-ei-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,.04);
    position: relative;
    overflow: hidden;
}

/* alt card (vikend) */
.ncb-ei-card-alt {
    background: #f8fafc;
}

/* badge top-right */
.ncb-ei-badge {
    position: absolute;
    top: 0; right: 0;
    background: #ef4444;
    color: #fff;
    padding: 5px 16px;
    font-size: 10px;
    font-weight: 900;
    border-bottom-left-radius: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.ncb-ei-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 18px;
    color: #1e293b;
    letter-spacing: .02em;
    font-family: var(--ncb-font);
}

/* cenik rows */
.ncb-ei-rows { display: flex; flex-direction: column; gap: 0; }
.ncb-ei-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
}
.ncb-ei-row-last { border-bottom: none; padding-bottom: 0; }

.ncb-ei-row-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}
.ncb-ei-period {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    font-style: italic;
}
.ncb-ei-row-price {
    font-weight: 800;
    font-size: 14px;
    color: #1e293b;
    white-space: nowrap;
}
.ncb-ei-accent { color: #ef4444; }

/* vikend price block */
.ncb-ei-subtitle {
    font-size: 12px;
    font-style: italic;
    color: #64748b;
    margin: -10px 0 20px;
    font-family: var(--ncb-font);
}
.ncb-ei-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0 4px;
}
.ncb-ei-old {
    font-size: 12px;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--ncb-font);
}
.ncb-ei-big {
    font-size: 48px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -.02em;
    font-family: var(--ncb-font);
}
.ncb-ei-save {
    display: inline-block;
    background: #fee2e2;
    color: #ef4444;
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    margin-top: 12px;
    letter-spacing: .03em;
    font-family: var(--ncb-font);
}

/* ── mobile ── */
@media (max-width: 600px) {
    .ncb-extra-info-grid { grid-template-columns: 1fr; }
    .ncb-ei-card { padding: 22px 18px; border-radius: 18px; }
    .ncb-ei-big  { font-size: 40px; }
}

/* ══════════════════════════════════════════════════════
   MOBILE CALENDAR — 1 mesec na mobilni (JS kontrolira display)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ncb-months-2,
    .ncb-months-3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ══════════════════════════════════════════════════════════
   CENIK TABELA (v9.2)
══════════════════════════════════════════════════════════ */
.ncb-extras-wrapper { max-width: 900px; margin: 0 auto 32px; font-family: var(--ncb-font); }

/* ── Section heading wrapper (alignment controlled inline) ── */
.ncb-section-heading { margin-bottom: 20px; }

/* ── Cenik: naslovi ── */
.ncb-pt-title {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 900;
    color: var(--ncb-pt-title, #0f172a);
    letter-spacing: -.02em;
    margin: 0 0 5px;
    font-family: var(--ncb-font);
    line-height: 1.2;
}
.ncb-pt-sub {
    font-size: 11px;
    color: var(--ncb-pt-sub, #64748b);
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* ════════════════════════════
   DESKTOP TABLE (≥ 600px)
════════════════════════════ */
.ncb-pt-desktop { display: grid; }
.ncb-pt-mobile  { display: none; }

.ncb-pt-grid {
    grid-template-columns: 150px repeat(3, 1fr);
    border: 1px solid var(--ncb-line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--ncb-pt-bg, #ffffff);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* Header cells */
.ncb-pt-header-cell {
    padding: 14px 10px;
    border-bottom: 2px solid var(--ncb-line);
    border-right: 1px solid var(--ncb-line);
    text-align: center;
    background: var(--ncb-pt-header-bg, #f8fafc);
}
.ncb-pt-header-cell:last-child { border-right: none; }
.ncb-pt-label-cell { background: var(--ncb-pt-label-bg, #f1f5f9); }

.ncb-pt-col-low  { border-top: 4px solid var(--ncb-pt-low-accent, #94a3b8); }
.ncb-pt-col-mid  { border-top: 4px solid var(--ncb-pt-mid-accent, #3b82f6); background: var(--ncb-pt-mid-bg, #f0f7ff); }
.ncb-pt-col-high { border-top: 4px solid var(--ncb-pt-high-accent, #ef4444); }

.ncb-pt-season-name {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: var(--ncb-pt-season-name, #0f172a);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 3px;
}
.ncb-pt-col-mid  .ncb-pt-season-name { color: var(--ncb-pt-mid-accent, #2563eb); }
.ncb-pt-col-high .ncb-pt-season-name { color: var(--ncb-pt-high-accent, #ef4444); }

.ncb-pt-season-date {
    font-size: 9px;
    color: var(--ncb-pt-sub, #64748b);
    font-weight: 600;
    line-height: 1.5;
    display: block;
}
.ncb-pt-season-date small { font-size: 8px; display: block; margin-top: 2px; }

/* Row label */
.ncb-pt-row-label {
    padding: 14px 12px;
    border-bottom: 1px solid var(--ncb-line);
    border-right: 1px solid var(--ncb-line);
    font-size: 12px;
    font-weight: 700;
    color: var(--ncb-pt-row-label, #1e293b);
    background: var(--ncb-pt-header-bg, #f8fafc);
    display: flex;
    align-items: center;
}

/* Price cells */
.ncb-pt-cell {
    padding: 12px 8px;
    border-bottom: 1px solid var(--ncb-line);
    border-right: 1px solid var(--ncb-line);
    text-align: center;
    background: var(--ncb-pt-bg, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.ncb-pt-cell:last-child { border-right: none; }
.ncb-pt-col-mid.ncb-pt-cell { background: var(--ncb-pt-mid-bg, #f0f7ff); }

.ncb-pt-old  { font-size: 12px; color: var(--ncb-pt-old, #94a3b8); text-decoration: line-through; font-weight: 600; }
.ncb-pt-new  { font-size: 18px; font-weight: 900; color: var(--ncb-pt-new, #0f172a); font-family: var(--ncb-font); line-height: 1.1; }
.ncb-pt-col-mid  .ncb-pt-new { color: var(--ncb-pt-mid-accent, #2563eb); }
.ncb-pt-col-high .ncb-pt-new { color: var(--ncb-pt-high-accent, #ef4444); }
.ncb-pt-unit { font-size: 9px; font-weight: 700; color: var(--ncb-pt-sub, #64748b); vertical-align: middle; }

/* Badge row */
.ncb-pt-badge-cell {
    padding: 10px 8px;
    border-right: 1px solid var(--ncb-line);
    text-align: center;
    background: var(--ncb-pt-bg, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ncb-pt-badge-cell:last-child { border-right: none; }
.ncb-pt-col-mid.ncb-pt-badge-cell { background: var(--ncb-pt-mid-bg, #f0f7ff); }

.ncb-pt-badge {
    display: inline-block;
    background: var(--ncb-pt-badge-bg, #ef4444);
    color: var(--ncb-pt-badge-text, #ffffff);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 5px 10px;
    border-radius: 8px;
    line-height: 1.6;
    text-align: center;
}
.ncb-pt-badge small {
    font-size: 8px;
    display: block;
    font-weight: 600;
    opacity: .9;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 1px;
}

/* Links */
.ncb-pt-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 16px; }
.ncb-doc-link { font-size: 12px; color: var(--ncb-muted); font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.ncb-doc-link:hover { color: var(--ncb-accent); }

/* ════════════════════════════
   MOBILE CARDS (< 600px)
════════════════════════════ */
@media (max-width: 599px) {
    .ncb-pt-desktop { display: none !important; }
    .ncb-pt-mobile  { display: flex; flex-direction: column; gap: 12px; }

    .ncb-ptm-card {
        border: 1px solid var(--ncb-line);
        border-radius: 14px;
        overflow: hidden;
        background: var(--ncb-pt-bg, #ffffff);
        box-shadow: 0 2px 12px rgba(0,0,0,.05);
    }
    .ncb-ptm-card.ncb-pt-col-low  { border-top: 4px solid var(--ncb-pt-low-accent, #94a3b8); }
    .ncb-ptm-card.ncb-pt-col-mid  { border-top: 4px solid var(--ncb-pt-mid-accent, #3b82f6); }
    .ncb-ptm-card.ncb-pt-col-high { border-top: 4px solid var(--ncb-pt-high-accent, #ef4444); }

    .ncb-ptm-head {
        padding: 14px 16px 10px;
        background: var(--ncb-pt-header-bg, #f8fafc);
        border-bottom: 1px solid var(--ncb-line);
    }
    .ncb-ptm-card.ncb-pt-col-mid .ncb-ptm-head { background: var(--ncb-pt-mid-bg, #f0f7ff); }

    .ncb-ptm-season-name {
        display: block;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--ncb-pt-season-name, #0f172a);
        margin-bottom: 3px;
    }
    .ncb-ptm-card.ncb-pt-col-mid  .ncb-ptm-season-name { color: var(--ncb-pt-mid-accent, #2563eb); }
    .ncb-ptm-card.ncb-pt-col-high .ncb-ptm-season-name { color: var(--ncb-pt-high-accent, #ef4444); }

    .ncb-ptm-season-date {
        font-size: 10px;
        color: var(--ncb-pt-sub, #64748b);
        font-weight: 600;
        line-height: 1.5;
    }
    .ncb-ptm-season-date small { font-size: 9px; }

    .ncb-ptm-rows { padding: 0 16px; }

    .ncb-ptm-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid var(--ncb-line);
        gap: 8px;
    }
    .ncb-ptm-row:last-child { border-bottom: none; }

    .ncb-ptm-tier {
        font-size: 12px;
        font-weight: 700;
        color: var(--ncb-pt-row-label, #1e293b);
        flex: 1;
    }
    .ncb-ptm-price {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
    .ncb-ptm-price .ncb-pt-old  { font-size: 11px; }
    .ncb-ptm-price .ncb-pt-new  { font-size: 16px; }
    .ncb-ptm-card.ncb-pt-col-mid  .ncb-ptm-price .ncb-pt-new { color: var(--ncb-pt-mid-accent, #2563eb); }
    .ncb-ptm-card.ncb-pt-col-high .ncb-ptm-price .ncb-pt-new { color: var(--ncb-pt-high-accent, #ef4444); }

    .ncb-ptm-badge {
        padding: 10px 16px;
        background: var(--ncb-pt-bg, #ffffff);
        text-align: center;
        border-top: 1px solid var(--ncb-line);
    }
    .ncb-ptm-card.ncb-pt-col-mid .ncb-ptm-badge { background: var(--ncb-pt-mid-bg, #f0f7ff); }
}

/* ════════════════════════════
   VIKEND PAKET
════════════════════════════ */
.ncb-wknd-section { margin-top: 32px; }

.ncb-wknd-heading {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 900;
    color: var(--ncb-wknd-title, #0f172a);
    letter-spacing: -.02em;
    margin: 0 0 6px;
    font-family: var(--ncb-font);
    line-height: 1.2;
}
.ncb-wknd-tagline {
    font-size: 13px;
    color: var(--ncb-wknd-text, #1e293b);
    margin: 0 0 18px;
    line-height: 1.7;
}
.ncb-wknd-tagline strong { color: var(--ncb-wknd-title, #0f172a); }

.ncb-wknd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--ncb-line);
    border-radius: 16px;
    overflow: hidden;
    background: var(--ncb-wknd-bg, #ffffff);
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.ncb-wknd-card {
    padding: 0 0 20px;
    border-right: 1px solid var(--ncb-line);
    text-align: center;
}
.ncb-wknd-card:last-child { border-right: none; }

.ncb-wknd-col-head {
    padding: 16px 14px 12px;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.ncb-wknd-col-low  { background: var(--ncb-wknd-low-head-bg, #475569); }
.ncb-wknd-col-mid  { background: var(--ncb-wknd-mid-head-bg, #1d4ed8); }
.ncb-wknd-col-head strong { display: block; font-size: 13px; font-weight: 900; letter-spacing: .05em; margin-bottom: 4px; text-transform: uppercase; }
.ncb-wknd-col-head small  { font-size: 10px; opacity: .85; line-height: 1.4; }

.ncb-wknd-was  { font-size: 12px; color: var(--ncb-pt-old, #94a3b8); margin: 0 0 4px; }
.ncb-wknd-was span { text-decoration: line-through; font-weight: 700; }
.ncb-wknd-price { font-size: 14px; color: var(--ncb-wknd-text, #1e293b); font-weight: 600; margin-bottom: 8px; line-height: 1.2; }
.ncb-wknd-price strong { display: block; font-size: clamp(40px, 9vw, 52px); font-weight: 900; color: var(--ncb-wknd-price-color, #0f172a); font-family: var(--ncb-font); line-height: 1; }
.ncb-wknd-save {
    display: inline-block;
    background: var(--ncb-wknd-save-bg, #fef2f2);
    color: var(--ncb-wknd-save-color, #ef4444);
    border: 1px dashed var(--ncb-wknd-save-color, #ef4444);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.ncb-wknd-note { font-size: 10px; color: var(--ncb-pt-sub, #64748b); text-transform: uppercase; font-weight: 700; letter-spacing: .04em; margin: 0; padding: 0 12px; }

/* Vikend mobile */
@media (max-width: 480px) {
    .ncb-wknd-grid { grid-template-columns: 1fr; }
    .ncb-wknd-card { border-right: none; border-bottom: 1px solid var(--ncb-line); padding-bottom: 24px; }
    .ncb-wknd-card:last-child { border-bottom: none; }
}

