.navrch-container {
    max-width: 100%;
    margin: auto;
    padding: 20px 40px;
    color: #0f172a;
}

.navrch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.navrch-card {
    position: relative;
    height: 400px; 
    overflow: hidden;
    border-radius: 0;
    font-family: 'Oswald', sans-serif; 
}

.navrch-card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.navrch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.navrch-card a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Výška gradientu */
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    z-index: 1;
}

.navrch-card h3, 
.navrch-card p {
    position: absolute;
    left: 20px;
    right: 15px;
    margin: 0;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.navrch-card h3 {
    position: absolute;
    bottom: 55px;
    left: 20px;
    right: 20px;
    margin: 0;
    z-index: 2;
    color: #ffffff; 
    font-size: 2.0rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.navrch-card p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0;
    z-index: 2;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    
    /* centrovanie v riadku */
    display: flex !important; 
    align-items: center !important;
    gap: 8px;
    white-space: nowrap;
}

.navrch-card p .material-symbols-outlined {
    font-size: 20px;
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Tento riadok posunie ikonu o 1-2 pixely hore, ak sa zdá byť nízko */
    transform: translateY(0px); 
}

.navrch-card p span.separator {
    margin: 0 15px;
    opacity: 0.5;
}

.navrch-card p:nth-of-type(1) { display: none; } 

.navrch-card p {
    display: block;
    white-space: nowrap;
}

.navrch-card p:nth-of-type(1) {
    display: inline-block;
    bottom: 15px;
    width: auto;
}

.navrch-card p:nth-of-type(2) {
    display: inline-block;
    bottom: 15px;
    left: 80px;
    width: auto;
}

.navrch-card p:nth-of-type(2)::before {
    content: "|";
    margin-right: 10px;
    color: white;
}

.navrch-card .navrch-like {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(4px);
    border: 1px solid #ffffff !important;
    border-radius: 3px !important;
    color: #ffffff !important;
    padding: 6px 12px !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.0rem !important;
    text-transform: uppercase;
    cursor: pointer;
    
    /* CENTROVANIE */
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 10px;
    height: auto !important;
    line-height: 1 !important;
}

.navrch-card .navrch-like .material-symbols-outlined {
    font-size: 20px !important; 
    font-weight: 300 !important; 
    display: block;
}

.navrch-card .navrch-like:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.navrch-header-actions,
.navrch-info-box,
.navrch-layout {
    display: flex;
    gap: 12px;
}

.navrch-header-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.navrch-rating,
.navrch-rating-count,
.navrch-like,
.navrch-print {
    background: #f7f7f7 !important;
    border: none !important;
    border-radius: 2px !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    cursor: default;
    height: auto;
}

.navrch-like,
.navrch-print {
    cursor: pointer;
    transition: background 0.2s ease;
}

.navrch-like:hover,
.navrch-print:hover {
    background: #eeeeee !important; 
}

.navrch-gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
}

.navrch-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.navrch-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.navrch-gallery-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px dashed #93c5fd;
    color: #1d4ed8;
    background: #eff6ff;
    font-weight: 600;
}

.navrch-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(250px, 3fr);
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.navrch-main-content {
    flex: 1;
    min-width: 0;
}

.navrch-sidebar {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.navrch-menu-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.navrch-side-card, 
.navrch-side-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 15px;
    display: block !important; 
}

.navrch-side-button {
    display: flex !important;
    align-items: center;
    width: 100%;
    margin-bottom: 2px !important;
    padding: 12px 15px !important;
    text-align: left !important;
    text-decoration: none;
    border: none !important;
    border-radius: 4px !important;
    background: transparent !important;
    color: #1e293b !important;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.2s ease;
    gap: 12px;
}

.navrch-side-button:hover {
    background: #f1f5f9 !important;
    color: #000 !important;
}

.navrch-side-button::after {
    content: '›';
    margin-left: auto;
    font-size: 20px;
    color: #94a3b8;
    font-weight: normal;
}

.navrch-side-button span, 
.navrch-side-button i {
    font-style: normal;
	font-size: 24px;
}

.navrch-side-card {
    border: 1px solid #dbe3ef;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    background: #fff;
}

.navrch-frontend-elevation-profile {
    height: 220px;
}

.navrch-frontend-elevation-profile canvas {
    width: 100%;
    height: 100%;
}

.navrch-info-box {
    flex-wrap: wrap;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    padding: 12px;
    margin: 16px 0;
}

.navrch-planner {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.navrch-planner input {
    padding: 10px;
    flex: 1;
}

.navrch-planner button {
    padding: 10px 15px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.navrch-section {
    border-top: none;
    margin-top: 0px;
    padding-top: 20px;
}

/* Požiadavky */
.navrch-requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 40px;
    margin-top: 20px;
}

.navrch-requirement-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 5px;
}

.navrch-requirement-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.navrch-requirement-text strong {
    font-size: 22px; 
    font-weight: 500;
    color: #000;
    line-height: 1;
}

.navrch-requirement-score {
    font-size: 22px;
    color: #000;
    font-weight: 400;
}

.navrch-progress {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    height: 6px;
    width: 100%;
}

.navrch-progress span {
    background-color: #e2e8f0 !important;
    border-radius: 0 !important;
    height: 100%;
    display: block;
}

.navrch-progress span.is-active {
    background-color: #000 !important;
}

#navrch-rb-itinerary {
    margin-top: 22px !important;
}

#navrch-route-details {
    background: #f7f7f7 !important; 
    border-radius: 5px !important;
    padding: 25px !important;
    border: none !important; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px 40px;
    margin: 20px 0;
}

.navrch-route-details-grid {
    display: contents; 
}

.navrch-route-detail-item {
    background: transparent !important;
    border: none !important; 
    padding: 0 !important;
    box-shadow: none !important; 
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navrch-route-detail-item .material-symbols-outlined {
    display: none; 
}

.navrch-route-detail-label {
	font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #717171 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #c2c2c2 !important;
    padding-bottom: 8px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.navrch-route-detail-value {
    font-size: 19px !important;
    font-weight: 500 !important;
    color: #1a1a1a !important;
    padding-top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navrch-route-detail-value .material-symbols-outlined {
    display: inline-block !important;
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.navrch-waypoint-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navrch-waypoint-timeline::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #2563eb;
}

.navrch-waypoint-node {
    position: relative;
    z-index: 1;
}

.navrch-waypoint-node-main {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
}

.navrch-waypoint-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 9px;
}

.navrch-waypoint-icon-wrap .material-symbols-outlined {
    font-size: 16px;
}

.navrch-waypoint-main-content {
    min-width: 0;
}

.navrch-waypoint-title-line,
.navrch-waypoint-subtitle-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.navrch-waypoint-title-line strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
}

.navrch-waypoint-distance {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
}

.navrch-waypoint-subtitle-line span {
    font-size: 14px;
    line-height: 1.45;
    color: #475569;
}

.navrch-waypoint-chevron {
    color: #6b7280 !important;
}

.navrch-waypoint-instruction {
    margin: 8px 0 0 56px;
    padding: 8px 10px;
    border-left: 2px solid #e5e7eb;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.navrch-waypoint-instruction-arrow {
    color: #0369a1 !important;
    font-size: 20px !important;
}

.navrch-waypoint-instruction-text span {
    display: block;
    font-size: 14px;
    line-height: 1.45;
    color: #0f172a;
}

.navrch-waypoint-instruction-text strong {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.45;
    color: #475569;
}

.navrch-trail-badge {
    display: inline-block;
    width: 18px;
    height: 12px;
    border: 1px solid #94a3b8;
    border-radius: 2px;
}

.navrch-waypoint-red { background: #ef4444; }
.navrch-waypoint-yellow { background: #facc15; }
.navrch-waypoint-green { background: #22c55e; }
.navrch-waypoint-blue { background: #3b82f6; }
.navrch-waypoint-orange { background: #fb923c; }
.navrch-waypoint-none { background: #e5e7eb; }

.navrch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; 
    margin-top: 15px;
}

.navrch-tag {
    background: #f7f7f7 !important; 
    border: none !important;
    border-radius: 2px !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    color: #1a1a1a !important;
    font-weight: 500;
    display: inline-block;
    line-height: 1.2;
}

.navrch-progress {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    flex: 1;
}

.navrch-progress span {
    height: 8px;
    border-radius: 99px;
    background: #cbd5e1;
}

.navrch-progress span.is-active {
    background: #2563eb;
}

.navrch-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #475569;
}

.navrch-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
}

#map {
    height: 420px;
    border-radius: 10px;
}

@media (max-width: 980px) {
    .navrch-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .navrch-main-content, 
    .navrch-sidebar {
        width: 100% !important;
    }

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

    .navrch-timeline {
        max-height: none !important;
    }

    .navrch-waypoint-title-line strong,
    .navrch-waypoint-distance {
        font-size: 16px;
    }

    .navrch-waypoint-subtitle-line span {
        font-size: 14px;
    }

    .navrch-waypoint-instruction {
        margin-left: 28px;
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .navrch-trail-badge {
        display: none;
    }
	
	.navrch-requirements-grid {
        grid-template-columns: 1fr;
    }

    #navrch-route-details {
        grid-template-columns: 1fr !important;
        padding: 15px !important;
    }
}

#navrch-itinerary > h2:first-child {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
}

/* ── Weather Widget ───────────────────────────────────────────── */
#navrch-weather-widget:not([hidden]) {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: block !important;
    margin-top: 10px;
}

.navrch-weather-widget {
    background: transparent;
    border: 1px solid #dbe3ef;
    border-radius: 5px;
    padding: 14px 12px;
}

.navrch-weather-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.navrch-weather-day {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.navrch-weather-temp {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1;
}

.navrch-weather-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}

.navrch-weather-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}

.navrch-weather-desc {
    text-align: center;
    font-size: 13px;
    color: #475569;
    margin-bottom: 10px;
}

.navrch-weather-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.material-symbols-outlined {
  font-size: 24px;
  font-variation-settings:
    'FILL' 0,   /* 0 = outline, 1 = filled */
    'wght' 300, 
    'GRAD' 0, 
    'opsz' 24;  
}

/* Additional Info Box */
.navrch-additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.navrch-info-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.navrch-info-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navrch-info-icon {
    font-size: 32px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navrch-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: #1e293b;
    font-size: 14px;
}

.navrch-info-item p {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

/* ===== SIDEBAR ADDITIONAL INFO ===== */

.navrch-side-card h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navrch-additional-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navrch-info-item-sidebar {
    display: flex;
    align-items: center; 
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
}

.navrch-info-item-sidebar:hover {
    background: #fff;
    transform: translateX(2px);
}

.navrch-info-icon {
    font-size: 24px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navrch-info-content {
    flex: 1;
    min-width: 0;
}

.navrch-info-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
    font-weight: 600;
}

.navrch-info-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.navrch-info-icon {
    min-width: 24px; /* Zmenšené z 30px, aby nebolo príliš veľa miesta */
    display: flex;
    align-items: center;
    justify-content: center;
}

.navrch-info-icon .material-symbols-outlined {
	font-weight: inherit !important;
    font-size: 36px; 
	color: #444;
    font-variation-settings:
    'FILL' 0,   /* 0 = outline, 1 = filled */
    'wght' 300, 
    'GRAD' -25, 
    'opsz' 20;  
	-webkit-font-smoothing: antialiased;
}

.navrch-main-elevation-profile {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 20px;
    margin-top: 15px;
}

.navrch-main-elevation-profile .navrch-frontend-elevation-profile {
    height: 300px; /* V hlavnom obsahu môže byť o niečo vyšší ako v sidebare */
    width: 100%;
}

.navrch-review-grid {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.navrch-review-summary-card,
.navrch-review-comments-card,
.navrch-review-form {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}

.navrch-review-average-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.navrch-review-average-line strong {
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
}

.navrch-review-stars .material-symbols-outlined,
.navrch-review-comment-stars .material-symbols-outlined {
    color: #cbd5e1;
    font-size: 26px;
}

.navrch-review-stars .material-symbols-outlined.is-filled,
.navrch-review-comment-stars .material-symbols-outlined.is-filled {
    color: #111827;
}

.navrch-review-histogram {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 12px 0 18px;
}

.navrch-review-histogram-row {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: center;
}

.navrch-review-histogram-label,
.navrch-review-histogram-count {
    font-size: 15px;
    color: #334155;
}

.navrch-review-histogram-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.navrch-review-histogram-fill {
    display: block;
    height: 100%;
    background: #0f172a;
}

.navrch-review-button,
.navrch-review-button-secondary {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
}

.navrch-review-button {
    background: #111827;
    color: #fff;
}

.navrch-review-button-secondary {
    background: #e2e8f0;
    color: #0f172a;
}

.navrch-review-note {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.navrch-review-comments-card h4 {
    margin: 0 0 14px;
    font-size: 26px;
}

.navrch-review-comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.navrch-review-comment-item {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
}

.navrch-review-comment-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.navrch-review-comment-item header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.navrch-review-comment-item time {
    color: #64748b;
    font-size: 14px;
}

.navrch-review-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navrch-review-form[hidden] {
    display: none !important;
}

.navrch-review-form h4 {
    margin: 0;
}

.navrch-review-form-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.navrch-review-form-stars label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 6px 8px;
    cursor: pointer;
}

.navrch-review-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px;
    resize: vertical;
}

.navrch-review-form-actions {
    display: flex;
    gap: 10px;
}

.navrch-review-feedback {
    margin: 0;
    font-size: 14px;
    color: #1e293b;
}

.navrch-review-empty {
    margin: 0;
    color: #64748b;
}

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

/* Ikonka pri nadpise */
.navrch-section-header-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.navrch-section-header-inline h3 { margin-bottom: 0; }

.navrch-info-trigger {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    display: flex;
    padding: 0;
    transition: color 0.2s;
}
.navrch-info-trigger:hover { color: #2563eb; }
.navrch-info-trigger .material-symbols-outlined { font-size: 20px; }

/* Modal (Popup) */
.navrch-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    display: none; /* Skryté defaultne */
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
.navrch-modal.is-active { display: flex; }

.navrch-modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.navrch-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 25px;
}

.navrch-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.navrch-modal-close {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* Mriežka v popupe */
.navrch-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.navrch-info-grid h5 {
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.navrch-info-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.navrch-info-grid li {
    margin-bottom: 6px;
    line-height: 1.4;
    color: #475569;
}