/* ── BREADCRUMB BAR ──────────────────────────────────────── */
.rm-breadcrumb-bar { padding: 16px 40px 0; }
.ap-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-tertiary); flex-wrap: wrap; }
.ap-breadcrumb a { color: var(--accent-blue); text-decoration: none; transition: color 0.15s; }
.ap-breadcrumb a:hover { color: var(--accent-blue); text-decoration: underline; }
.ap-breadcrumb .sep { opacity: 0.5; }

@media (max-width: 767px) {
    .rm-breadcrumb-bar { padding: 12px 16px 0; }
}

/* ── PAGE LAYOUT ─────────────────────────────────────────── */
.kt-fullwidth-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px 48px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .kt-fullwidth-wrap {
        padding: 0 16px 32px;
    }
}

/* ── WIDGET WRAP + PRELOADER ─────────────────────────────── */
.kt-widget-wrap {
    position: relative;
    min-height: 120px;
}

.kt-widget-wrap .embed-loader {
    top: 60px;
}

[data-theme="dark"]    .kt-widget-wrap .embed-loader span:nth-child(1) { background: #4fc3f7; opacity: 1; }
[data-theme="dark"]    .kt-widget-wrap .embed-loader span:nth-child(2) { background: #7c4dff; opacity: 1; }
[data-theme="dark"]    .kt-widget-wrap .embed-loader span:nth-child(3) { background: #00e5ff; opacity: 1; }
[data-theme="light"]   .kt-widget-wrap .embed-loader span:nth-child(1) { background: #1565c0; opacity: 1; }
[data-theme="light"]   .kt-widget-wrap .embed-loader span:nth-child(2) { background: #5c3bbf; opacity: 1; }
[data-theme="light"]   .kt-widget-wrap .embed-loader span:nth-child(3) { background: #0097a7; opacity: 1; }
[data-theme="sunset"]  .kt-widget-wrap .embed-loader span:nth-child(1) { background: #f4845f; opacity: 1; }
[data-theme="sunset"]  .kt-widget-wrap .embed-loader span:nth-child(2) { background: #f27059; opacity: 1; }
[data-theme="sunset"]  .kt-widget-wrap .embed-loader span:nth-child(3) { background: #ffd166; opacity: 1; }

/* ── PANDA EYES + H1 BLOCK ───────────────────────────────── */
.kt-tickets-h1-block {
    padding: 22px 0 28px;
}
.kt-tickets-h1-row {
    display: flex;
    align-items: center;
    gap: 18px;
}
.kt-panda-eyes {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.kt-eye {
    width: 46px;
    height: 46px;
    background: #1c1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
[data-theme="dark"] .kt-eye {
    background: #ffffff;
}
.kt-eye::before,
.kt-eye::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #1c1c1c;
    border-radius: 50%;
    top: -5px;
}
[data-theme="dark"] .kt-eye::before,
[data-theme="dark"] .kt-eye::after {
    background: #ffffff;
}
.kt-eye::before { left:  -2px; }
.kt-eye::after  { right: -2px; }
.kt-eye-inner {
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
[data-theme="dark"] .kt-eye-inner {
    border: 3px solid #1a1a1a;
    box-sizing: border-box;
}
.kt-pupil {
    width: 14px;
    height: 14px;
    background: #1c1c1c;
    border-radius: 50%;
    position: absolute;
    transform: translate(0, -5px);
    transition: transform 0.08s ease-out;
    will-change: transform;
}
.kt-pupil::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    right: 2px;
}
.kt-tickets-h1-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.kt-tickets-h1-text h1 {
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin: 0;
    color: var(--text-primary);
}
.kt-tickets-accent {
    color: var(--accent-blue);
    position: relative;
    display: inline;
}
.kt-tickets-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
    opacity: 0.3;
}
.kt-tickets-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.45;
}
@media (max-width: 767px) {
    .kt-tickets-h1-row  { gap: 14px; }
    .kt-eye             { width: 38px; height: 38px; }
    .kt-eye::before,
    .kt-eye::after      { width: 11px; height: 11px; top: -4px; }
    .kt-eye-inner       { width: 24px; height: 24px; }
    .kt-pupil           { width: 11px; height: 11px; transform: translate(0, -4px); }
    .kt-tickets-h1-text h1  { font-size: 19px; }
    .kt-tickets-sub         { font-size: 13px; }
}

/* ── SEARCH OVERLAY (appears on submit click) ────────────── */
.kt-search-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 12px;
    z-index: 10;
    align-items: center;
    justify-content: center;
}
[data-theme="dark"] .kt-search-overlay {
    background: rgba(18, 18, 18, 0.88);
}
.kt-search-overlay.is-visible {
    display: flex;
}
.kt-search-overlay__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.kt-search-overlay__spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border-tertiary);
    border-top-color: var(--accent-blue, #2563EB);
    border-radius: 50%;
    animation: kt-spin 0.7s linear infinite;
}
@keyframes kt-spin {
    to { transform: rotate(360deg); }
}
.kt-search-overlay__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ── TIP CARDS (Block A) ─────────────────────────────────── */
.kt-tips-block,
.kt-steps-block {
    margin-top: 32px;
}

.kt-tips-heading {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 14px;
}

.kt-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.kt-tip-card {
    background: var(--bg-surface, var(--bg-primary, #fff));
    border: 0.5px solid var(--border-tertiary);
    border-radius: 12px;
    padding: 16px 14px;
}

.kt-tip-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.kt-tip-icon svg { width: 18px; height: 18px; }

.kt-tip-icon--blue  { background: #E6F1FB; color: #185FA5; }
.kt-tip-icon--teal  { background: #E1F5EE; color: #0F6E56; }
.kt-tip-icon--amber { background: #FAEEDA; color: #854F0B; }
.kt-tip-icon--coral { background: #FAECE7; color: #993C1D; }

[data-theme="dark"] .kt-tip-icon--blue  { background: #0C447C; color: #85B7EB; }
[data-theme="dark"] .kt-tip-icon--teal  { background: #085041; color: #5DCAA5; }
[data-theme="dark"] .kt-tip-icon--amber { background: #633806; color: #EF9F27; }
[data-theme="dark"] .kt-tip-icon--coral { background: #712B13; color: #F0997B; }

[data-theme="dark"] .kt-tip-card,
[data-theme="dark"] .kt-steps-grid {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .kt-step + .kt-step {
    border-color: rgba(255, 255, 255, 0.1);
}

.kt-tip-card h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 5px;
}
.kt-tip-card p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ── STEPS (Block B) ─────────────────────────────────────── */
.kt-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--bg-surface, var(--bg-primary, #fff));
    border: 0.5px solid var(--border-tertiary);
    border-radius: 12px;
    overflow: hidden;
}

.kt-step {
    padding: 20px 18px;
}

.kt-step + .kt-step {
    border-left: 0.5px solid var(--border-tertiary);
}

.kt-step-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--border-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

[data-theme="dark"] .kt-step-num {
    color: rgba(255, 255, 255, 0.2);
}

.kt-step h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 5px;
}

.kt-step p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
    .kt-tips-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .kt-steps-grid {
        grid-template-columns: 1fr;
    }
    .kt-step + .kt-step {
        border-left: none;
        border-top: 0.5px solid var(--border-tertiary);
    }
}