/* Yolfix App Shell — turuncu kurumsal / siyah / beyaz mobil PWA */
:root {
    --yf-orange: #FF6B00;
    --yf-orange-dark: #E85D00;
    --yf-orange-light: #FFF4EB;
    --yf-orange-soft: #FFF8F3;
    --yf-yellow: var(--yf-orange);
    --yf-yellow-dark: var(--yf-orange-dark);
    --yf-black: #111111;
    --yf-black-soft: #1C1C1E;
    --yf-white: #FFFFFF;
    --yf-gray-50: #FFF8F3;
    --yf-gray-100: #FDE8D8;
    --yf-gray-400: #8E8E93;
    --yf-gray-600: #636366;
    --yf-tab-h: 64px;
    --yf-fab-size: 64px;
    --yf-fab-lift: 22px;
    --yf-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --yf-shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.yf-app {
    background: var(--yf-gray-50);
    padding-bottom: calc(var(--yf-tab-h) + var(--safe-bottom) + 18px);
}
body.mobile-body.yf-app {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
/* Ana sayfadaki telefon onizlemesi (iframe): kaydirma cubugu gorunmez */
html:has(body.yf-app--embed) {
    overflow: hidden !important;
    scrollbar-width: none !important;
}
html:has(body.yf-app--embed)::-webkit-scrollbar {
    display: none !important;
}
body.yf-app--embed.mobile-body.yf-app {
    overflow: hidden !important;
    scrollbar-width: none !important;
}
body.yf-app--embed::-webkit-scrollbar {
    display: none !important;
}

.yf-app-main {
    padding: calc(var(--safe-top) + 12px) 16px 16px;
    min-height: 100vh;
}
.yf-app-main--home {
    padding: 0 0 calc(var(--yf-tab-h) + var(--safe-bottom) + 28px);
}
.yf-app-main--home:has(.yf-assist-hub) {
    padding-left: 0;
    padding-right: 0;
}

.yf-app-bar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(48px + var(--safe-top));
    padding-top: var(--safe-top);
    background: var(--yf-white);
    border-bottom: 1px solid var(--yf-gray-100);
}
.yf-app-bar-title {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-app-bar--sub {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    justify-content: unset;
    padding-left: 4px;
    padding-right: 8px;
}
.yf-app-bar-back,
.yf-app-bar-spacer {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.yf-app-bar-back {
    color: var(--yf-black);
    text-decoration: none;
}
.yf-app-bar-action {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
    white-space: nowrap;
    padding: 0 8px;
}

/* Giriş ekranı */
.yf-auth {
    max-width: 420px;
    margin: 0 auto;
}
.yf-auth-head {
    margin-bottom: 20px;
}
.yf-auth-title {
    margin: 0 0 8px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-auth-sub {
    margin: 0;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-auth-sub--tight {
    margin-bottom: 12px;
}
.yf-auth-card {
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.yf-label {
    display: block;
    margin-bottom: 8px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--yf-gray-600);
}
.yf-phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.yf-phone-prefix {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-input {
    width: 100%;
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    color: var(--yf-black);
    background: var(--yf-white);
}
.yf-input:focus {
    outline: none;
    border-color: var(--yf-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, .15);
}
.yf-input-code {
    text-align: center;
    letter-spacing: .25em;
    font-weight: 700;
    margin-bottom: 12px;
}
.yf-auth-hint {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 107, 0, .08);
    color: var(--yf-black);
    font-size: .8125rem;
}
.yf-auth-error {
    margin-bottom: 12px;
    font-size: .8125rem;
    color: #dc2626;
}
.yf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}
.yf-btn-block {
    width: 100%;
    margin-top: 8px;
}
.yf-btn-primary {
    background: var(--yf-orange);
    color: var(--yf-white);
}
/* Yol yardımı — 3 adımlı akış */
.yf-asist-flow-page {
    max-width: 420px;
    margin: 0 auto;
    padding: 4px 0 16px;
}
.yf-asist-flow-page--compact .yf-asist-flow-card {
    padding: 14px 14px 12px;
}
.yf-asist-flow {
    margin-bottom: 14px;
}
.yf-asist-flow-brand {
    text-align: center;
    margin-bottom: 12px;
}
.yf-asist-flow-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}
.yf-asist-flow-y { color: var(--yf-orange); }
.yf-asist-flow-tld { color: var(--yf-black); font-weight: 800; }
.yf-asist-flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.yf-asist-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 68px;
}
.yf-asist-flow-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 800;
    background: var(--yf-gray-100);
    color: var(--yf-gray-600);
    border: 2px solid transparent;
}
.yf-asist-flow-step.is-active .yf-asist-flow-dot {
    background: var(--yf-orange);
    color: var(--yf-white);
    border-color: var(--yf-orange);
}
.yf-asist-flow-step.is-done .yf-asist-flow-dot {
    background: rgba(255, 107, 0, .1);
    color: var(--yf-orange);
    border-color: rgba(255, 107, 0, .22);
}
.yf-asist-flow-label {
    font-size: .625rem;
    font-weight: 700;
    color: var(--yf-gray-500);
    text-align: center;
    line-height: 1.2;
}
.yf-asist-flow-step.is-active .yf-asist-flow-label { color: var(--yf-black); }
.yf-asist-flow-step.is-done .yf-asist-flow-label { color: var(--yf-orange-dark, #c2410c); }
.yf-asist-flow-line {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--yf-gray-100);
    margin-top: 16px;
    flex-shrink: 0;
}
.yf-asist-flow-line.is-done { background: var(--yf-orange); }
.yf-asist-flow-card {
    background: var(--yf-white);
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 16px;
    padding: 16px 14px;
    margin-bottom: 10px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}
.yf-asist-grid {
    display: grid;
    gap: 10px;
}
.yf-asist-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.yf-asist-block {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .05);
}
.yf-asist-block--compact {
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.yf-asist-block:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.yf-asist-block-title {
    margin: 0 0 8px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--yf-black);
}
.yf-asist-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.yf-asist-block-head .yf-asist-block-title {
    margin: 0;
}
.yf-asist-field-check {
    flex-shrink: 0;
    font-size: .875rem;
    line-height: 1;
    color: #16a34a;
}
.yf-asist-field-check[hidden] { display: none !important; }
.yf-wizard-dd-value.is-placeholder {
    color: var(--yf-gray-500);
    font-weight: 500;
}
.yf-wizard-field-hint {
    margin: 6px 0 0;
    font-size: .75rem;
    line-height: 1.4;
    color: var(--yf-gray-600);
}
.yf-asist-frame-control,
.yf-asist-flow-page--compact .yf-geo-picker-trigger {
    border: 1.5px solid rgba(255, 107, 0, 0.32) !important;
    background: #fff !important;
}
.yf-asist-frame-control:focus,
.yf-asist-flow-page--compact .yf-geo-picker.is-open .yf-geo-picker-trigger {
    border-color: var(--yf-orange) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.yf-asist-frame-control[type="date"] {
    font-weight: 600;
    color: var(--yf-black);
    min-height: 44px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.yf-asist-date-wrap {
    display: block;
    margin-bottom: 6px;
}
.yf-asist-date-hint {
    margin: 0;
    padding-top: 14px;
}
.yf-asist-frame-control[type="date"]::-webkit-calendar-picker-indicator {
    margin-left: 4px;
    padding: 4px;
    opacity: 0.55;
    cursor: pointer;
}
.yf-asist-frame-block {
    padding: 10px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 107, 0, 0.22);
    background: #fff;
}
.yf-asist-frame-slot .yf-geo-picker-trigger {
    border-radius: 10px;
}
.yf-asist-flow-page--compact .yf-dropoff-zone {
    border: 1px solid rgba(255, 107, 0, 0.42);
    background: #fff;
    box-shadow: 0 1px 0 rgba(255, 107, 0, 0.06);
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.yf-asist-flow-page--compact .yf-dropoff-zone:hover {
    border-color: rgba(255, 107, 0, 0.65);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}
.yf-asist-flow-page--compact .yf-dropoff-zone.is-selected {
    border-color: #E85D00;
    background: linear-gradient(165deg, #FF7A1A 0%, #E85D00 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.28);
}
.yf-asist-flow-page--compact .yf-dropoff-zone .yf-dropoff-zone-name {
    color: #C2410C;
}
.yf-asist-flow-page--compact .yf-dropoff-zone .yf-dropoff-zone-km {
    color: #EA580C;
    background: rgba(255, 107, 0, 0.1);
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 0, 0.18);
}
.yf-asist-flow-page--compact .yf-dropoff-zone.is-selected .yf-dropoff-zone-name,
.yf-asist-flow-page--compact .yf-dropoff-zone.is-selected .yf-dropoff-zone-km {
    color: #fff;
}
.yf-asist-flow-page--compact .yf-dropoff-zone.is-selected .yf-dropoff-zone-km {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}
.yf-asist-flow-page--compact .yf-dropoff-map {
    border: 1.5px solid rgba(255, 107, 0, 0.25);
}
.yf-asist-block-lead {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.4;
}
.yf-input--compact {
    min-height: 44px;
    padding: 10px 12px;
    font-size: .9375rem;
}
.yf-wizard-dd--compact .yf-wizard-dd-trigger {
    min-height: 44px;
    padding: 10px 12px;
    font-size: .9375rem;
}
.yf-loc-address-card--compact {
    padding: 10px 12px;
}
.yf-loc-address-card--compact .yf-loc-address {
    font-size: .875rem;
    line-height: 1.35;
}
.yf-loc-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 10px;
}
.yf-loc-strip-icon {
    flex-shrink: 0;
    font-size: .9375rem;
    color: var(--yf-orange);
    line-height: 1;
}
.yf-loc-strip-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    font-size: .8125rem;
    font-weight: 500;
    line-height: 1.35;
    color: var(--yf-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.yf-loc-strip-retry {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 107, 0, .1);
    color: var(--yf-orange);
    font-size: .9375rem;
    cursor: pointer;
}
.yf-dropoff-geo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.yf-field-label {
    display: block;
    margin: 0;
    font-size: .75rem;
    font-weight: 600;
    color: var(--yf-gray-600);
}
.yf-asist-flow-card,
.yf-asist-block,
.yf-dropoff-geo,
.yf-geo-picker {
    overflow: visible;
}
.yf-geo-picker-panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.yf-geo-picker-panel[hidden] { display: none !important; }
.yf-geo-picker-list {
    max-height: 200px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.yf-asist-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, .06);
}
.yf-btn-ghost {
    background: transparent;
    color: var(--yf-gray-600);
    border: 1px solid rgba(15, 23, 42, .12);
    min-height: 46px;
}
.yf-asist-actions .yf-btn-primary { margin-top: 0; min-height: 46px; }
.yf-asist-actions-submit {
    display: contents;
}
.yf-asist-actions-submit .yf-btn-primary {
    margin-top: 0;
    min-height: 46px;
}
.yf-asist-confirm {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.yf-asist-confirm[hidden] { display: none !important; }
.yf-asist-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .45);
}
.yf-asist-confirm-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px 16px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .18);
}
.yf-asist-confirm-title {
    margin: 0 0 8px;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-asist-confirm-text {
    margin: 0 0 16px;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-asist-confirm-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.yf-geo-picker { position: relative; }
.yf-geo-picker-trigger {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 10px;
    background: #fff;
    font-size: .875rem;
    font-weight: 600;
    color: var(--yf-black);
    cursor: pointer;
}
.yf-geo-picker-value.is-placeholder { color: var(--yf-gray-500); font-weight: 500; }
.yf-geo-picker-trigger .bi-chevron-down {
    color: var(--yf-gray-500);
    font-size: .875rem;
    transition: transform .15s;
}
.yf-geo-picker.is-open .bi-chevron-down { transform: rotate(180deg); }
.yf-geo-picker.is-disabled .yf-geo-picker-trigger {
    opacity: .55;
    cursor: not-allowed;
}
.yf-geo-picker-search {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    padding: 10px 12px;
    font-size: .9375rem;
    outline: none;
}
.yf-geo-picker-list {
    max-height: 200px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}
.yf-geo-picker-option {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .04);
    background: #fff;
    text-align: left;
    font-size: .875rem;
    font-weight: 600;
    color: var(--yf-black);
    cursor: pointer;
}
.yf-geo-picker-option.is-selected,
.yf-geo-picker-option:active {
    background: rgba(255, 107, 0, .08);
    color: var(--yf-orange);
}
.yf-geo-picker-empty {
    margin: 0;
    padding: 14px 12px;
    font-size: .8125rem;
    color: var(--yf-gray-500);
}
.yf-asist-flow-page--compact .yf-dropoff {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}
.yf-asist-flow-page--compact .yf-dropoff-zones-label {
    text-transform: none;
    letter-spacing: 0;
    font-size: .8125rem;
    font-weight: 600;
}
.yf-asist-flow-page--compact .yf-dropoff-zone-list {
    max-height: 132px;
    overflow-y: auto;
}
.yf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.yf-bekle-hero { text-align: center; padding-top: 22px; }
.yf-bekle-hero--live {
    text-align: left;
    padding: 16px;
}
.yf-bekle-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}
.yf-bekle-stat {
    padding: 10px 8px;
    border-radius: 12px;
    background: #FFF7ED;
    border: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
}
.yf-bekle-stat-k {
    display: block;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yf-gray-600);
}
.yf-bekle-stat-v {
    display: block;
    margin-top: 4px;
    font-size: .9375rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-bekle-map {
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(255, 107, 0, 0.22);
    margin: 12px 0;
}
.yf-bekle-cancel-wrap {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.yf-btn-danger-soft {
    background: #fff;
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.35);
}
.yf-bekle-status-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 163, 74, .12);
    color: #15803d;
    font-size: 1.5rem;
}
.yf-bekle-title {
    margin: 0 0 6px;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-bekle-lead {
    margin: 0;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-bekle-summary { padding: 14px 16px; }
.yf-bekle-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}
.yf-bekle-row:last-child { border-bottom: 0; padding-bottom: 0; }
.yf-bekle-row:first-child { padding-top: 0; }
.yf-bekle-row-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--yf-gray-500);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.yf-bekle-row-value { font-size: .9375rem; font-weight: 700; color: var(--yf-black); }
.yf-bekle-row-value--muted { font-weight: 500; line-height: 1.4; }
.yf-bekle-wait { text-align: center; padding: 28px 16px; }
.yf-bekle-wait.d-none { display: none; }
.yf-bekle-spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 12px;
    border: 3px solid rgba(255, 107, 0, .2);
    border-top-color: var(--yf-orange);
    border-radius: 50%;
    animation: yf-spin .8s linear infinite;
}
@keyframes yf-spin { to { transform: rotate(360deg); } }
.yf-bekle-wait-title {
    margin: 0 0 4px;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-bekle-wait-lead {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-bekle-offers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.yf-bekle-offer { margin-bottom: 0; }
.yf-bekle-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.yf-bekle-badge {
    padding: 3px 8px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 700;
}
.yf-bekle-badge--fast { background: rgba(37, 99, 235, .12); color: #1d4ed8; }
.yf-bekle-badge--cheap { background: rgba(22, 163, 74, .12); color: #15803d; }
.yf-bekle-badge--verified { background: rgba(255, 107, 0, .12); color: var(--yf-orange); }
.yf-bekle-offer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.yf-bekle-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-bekle-company {
    font-size: .8125rem;
    color: var(--yf-gray-600);
    margin-top: 2px;
}
.yf-bekle-meta {
    text-align: right;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--yf-gray-600);
    line-height: 1.4;
}

.yf-onboard { max-width: 420px; margin: 0 auto; }
.yf-onboard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.yf-onboard-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 800;
    background: var(--yf-gray-100);
    color: var(--yf-gray-600);
}
.yf-onboard-step.is-active {
    background: var(--yf-orange);
    color: var(--yf-white);
}
.yf-onboard-step.is-done {
    background: var(--yf-orange-light);
    color: var(--yf-orange-dark);
}
.yf-onboard-line {
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: var(--yf-gray-100);
}
.yf-onboard-line.is-active,
.yf-onboard-line.is-done {
    background: var(--yf-orange);
}
.yf-onboard-head { margin-bottom: 20px; }
.yf-onboard-title {
    margin: 0 0 8px;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-onboard-sub {
    margin: 0;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-vehicle-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.yf-vehicle-type-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.yf-vehicle-type-opt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
    font-size: .875rem;
    font-weight: 600;
    color: var(--yf-black);
    text-align: left;
    cursor: pointer;
}
.yf-vehicle-type-opt:last-child {
    border-bottom: none;
}
.yf-vehicle-type-opt .bi-check-lg {
    opacity: 0;
    color: var(--yf-orange);
    font-size: 1.125rem;
}
.yf-vehicle-type-opt.is-selected {
    background: #FFF7ED;
    color: var(--yf-orange);
}
.yf-vehicle-type-opt.is-selected .bi-check-lg {
    opacity: 1;
}
.yf-vehicle-type-opt:active {
    background: #FFEDD5;
}
.yf-loc-address-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 107, 0, 0.18);
    background: linear-gradient(165deg, #FFF7ED 0%, #fff 100%);
}
.yf-loc-address-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.125rem;
    color: var(--yf-orange);
}
.yf-loc-address {
    margin: 0;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--yf-black);
}
.yf-loc-manual {
    margin-top: 10px;
}
.yf-dropoff {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.yf-dropoff-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}
.yf-dropoff-sub {
    margin: 6px 0 0;
    font-size: .75rem;
    color: var(--yf-gray-600);
    line-height: 1.4;
}
.yf-dropoff-zones-label {
    margin: 0 0 8px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.yf-dropoff-zone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.yf-dropoff-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.4);
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color .15s, background .15s, box-shadow .15s;
}
.yf-dropoff-zone:hover {
    border-color: rgba(255, 107, 0, 0.62);
}
.yf-dropoff-zone.is-selected {
    border-color: #E85D00;
    background: linear-gradient(165deg, #FF7A1A 0%, #E85D00 100%);
}
.yf-dropoff-zone-name {
    font-size: .875rem;
    font-weight: 700;
    color: #C2410C;
}
.yf-dropoff-zone-km {
    font-size: .75rem;
    font-weight: 800;
    color: #EA580C;
    white-space: nowrap;
}
.yf-dropoff-zone.is-selected .yf-dropoff-zone-name,
.yf-dropoff-zone.is-selected .yf-dropoff-zone-km {
    color: #fff;
}
.yf-dropoff-empty {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-dropoff-route {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 10px 0 6px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #FFF7ED;
    border: 1.5px solid rgba(255, 107, 0, 0.28);
}
.yf-dropoff-route-label {
    width: 100%;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yf-orange);
}
.yf-dropoff-route-km {
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-dropoff-route-time {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
}
.yf-dropoff-route-sep {
    font-size: .875rem;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.25);
}
.yf-dropoff-route-price {
    font-size: .875rem;
    font-weight: 800;
    color: var(--yf-orange);
}
.yf-dropoff-map {
    height: 220px;
    margin-top: 8px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
}
.yf-dropoff-map--compact {
    height: 220px;
}
.yf-dropoff-map--summary {
    height: 260px;
    margin-top: 14px;
}
.yf-tow-summary-hint {
    margin: 0 0 12px;
}
.yf-tow-summary {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yf-tow-summary-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid rgba(255, 107, 0, 0.22);
}
.yf-tow-summary-row dt {
    margin: 0;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yf-gray-600);
}
.yf-tow-summary-row dd {
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
    line-height: 1.35;
}
.yf-tow-summary-row--price dd {
    font-size: 1.125rem;
    color: var(--yf-orange);
}
.yf-tow-incident {
    margin-top: 12px;
}
.yf-tow-incident-label {
    margin: 0 0 8px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-tow-incident-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.yf-tow-incident-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 107, 0, 0.22);
    background: #fff;
    color: var(--yf-gray-600);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease, transform .1s ease;
}
.yf-tow-incident-btn:active {
    transform: scale(.98);
}
.yf-tow-incident-btn.is-on {
    border-color: var(--yf-orange);
    background: #FFF7ED;
    color: var(--yf-orange-dark);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}
.yf-asist-block--notes {
    margin-top: 12px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.yf-asist-notes {
    resize: vertical;
    min-height: 72px;
}
.yf-ozet-card {
    padding-top: 4px;
}
.yf-ozet-head {
    margin-bottom: 14px;
}
.yf-ozet-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--yf-black);
}
.yf-ozet-lead {
    margin: 4px 0 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-ozet-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.yf-ozet-stat {
    padding: 10px 8px;
    border-radius: 12px;
    background: #FAFAFA;
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-align: center;
}
.yf-ozet-stat-k {
    display: block;
    font-size: .625rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--yf-gray-600);
}
.yf-ozet-stat-v {
    display: block;
    margin-top: 4px;
    font-size: .9375rem;
    font-weight: 800;
    color: var(--yf-black);
    line-height: 1.2;
}
.yf-ozet-stat--price .yf-ozet-stat-v {
    color: var(--yf-orange);
}
.yf-ozet-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
}
.yf-ozet-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.yf-ozet-item:last-child {
    border-bottom: 0;
}
.yf-ozet-item-k {
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: var(--yf-gray-600);
}
.yf-ozet-item-v {
    font-size: .875rem;
    font-weight: 600;
    color: var(--yf-black);
    line-height: 1.4;
}
.yf-ozet-map-wrap {
    margin-bottom: 14px;
}
.yf-ozet-map {
    height: 180px;
    margin: 0;
}
.yf-ozet-foot {
    margin: 10px 0 0;
    text-align: center;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-vehicle-type-grid .yf-vehicle-type-opt {
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    justify-content: center;
    text-align: center;
}
.yf-onboard-foot {
    margin-top: 20px;
    text-align: center;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-onboard-partner {
    margin-top: 24px;
    padding: 16px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-align: center;
}
.yf-onboard-partner-text {
    margin: 0 0 8px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.4;
}
.yf-onboard-partner-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .8125rem;
    font-weight: 700;
}
.yf-onboard-partner-links a {
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-onboard-partner-links span {
    color: var(--yf-gray-400);
}
.yf-link {
    color: var(--yf-orange);
    font-weight: 700;
    text-decoration: none;
}
.yf-home-auth-link {
    display: inline-block;
    margin-top: 4px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-home-hello strong { font-weight: 800; }
.yf-svc-badge {
    display: inline-block;
    margin: 0 0 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 107, 0, .12);
    color: var(--yf-orange);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.yf-optional {
    font-weight: 400;
    color: var(--yf-gray-500);
}
.yf-field--loc { margin-bottom: 18px; }
.yf-loc-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}
.yf-loc-head label { margin: 0; }
.yf-loc-status {
    font-size: .75rem;
    font-weight: 600;
    color: var(--yf-gray-500);
    white-space: nowrap;
}
.yf-loc-status.is-loading { color: var(--yf-orange); }
.yf-loc-status.is-ok { color: #15803d; }
.yf-loc-status.is-error { color: #b91c1c; }
.yf-loc-edit,
.yf-loc-retry {
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--yf-orange);
    font-size: .8125rem;
    font-weight: 600;
    cursor: pointer;
}
.yf-loc-retry { margin-left: 12px; }
.yf-btn-outline {
    background: transparent;
    color: var(--yf-orange);
    border: 1px solid var(--yf-orange);
}

/* Bildirim banner */
.yf-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 14px;
    background: var(--yf-black);
    color: var(--yf-white);
    border-radius: 12px;
    font-size: .8125rem;
    font-weight: 600;
}
.yf-banner-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--yf-orange);
    flex-shrink: 0;
}
.yf-banner-close {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,.7);
    font-size: 1.25rem;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
}

/* Ana sayfa üst */
.yf-home-notif-slot {
    position: fixed;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 1100;
}
.yf-app:has(#yf-install-banner.is-visible) .yf-home-notif-slot {
    top: calc(56px + max(10px, env(safe-area-inset-top, 0px)));
}
.yf-home-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 18px;
}
.yf-home-head-text {
    flex: 1;
    min-width: 0;
}
.yf-home-hello {
    margin: 0 0 4px;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-home-location {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 1.25rem;
}
.yf-home-location:empty {
    display: none;
}
.yf-home-location::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--yf-orange);
    flex-shrink: 0;
}
.yf-home-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--yf-orange);
    color: var(--yf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
}
.yf-home-avatar-icon {
    width: 22px;
    height: 22px;
    display: block;
}

/* Ana sayfa — yol yardım hub (kurumsal) */
.yf-assist-hub {
    --assist-accent: #EA580C;
    --assist-accent-dark: #C2410C;
    --assist-accent-light: #FFF7ED;
    --assist-accent-border: #FED7AA;
    --assist-accent-muted: rgba(234, 88, 12, 0.55);
    margin-bottom: 0;
    background: var(--yf-white);
}
.yf-assist-hub-hero {
    position: relative;
    padding: 0 14px 0;
    overflow: hidden;
    background: linear-gradient(0deg, #fff 0%, #FAFAFA 72%, #FFFBF7 100%);
}
.yf-assist-hub-shape {
    position: absolute;
    bottom: -40px;
    left: -15%;
    width: 130%;
    height: 52px;
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.05) 0%, rgba(234, 88, 12, 0.01) 100%);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
}
.yf-assist-hub-shape--2 {
    display: none;
}
.yf-assist-hub-floatbar {
    position: relative;
    display: grid;
    grid-template-columns: var(--yf-hub-pill-h) 1fr var(--yf-hub-pill-h);
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: calc(var(--safe-top) + 8px) 0 12px;
    z-index: 2;
    --yf-hub-pill-h: 54px;
    --yf-hub-pill-r: 14px;
}
.yf-hub-pill {
    box-sizing: border-box;
    min-height: var(--yf-hub-pill-h);
    border-radius: var(--yf-hub-pill-r);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
.yf-assist-hub-menu-btn {
    grid-column: 1;
    justify-self: start;
    display: flex;
    width: var(--yf-hub-pill-h);
    min-width: var(--yf-hub-pill-h);
    height: var(--yf-hub-pill-h);
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--yf-black);
    font-size: 1.375rem;
    cursor: pointer;
    flex-shrink: 0;
}
.yf-assist-hub-menu-btn:active {
    border-color: var(--assist-accent-border);
    color: var(--assist-accent);
    background: var(--assist-accent-light);
}
.yf-assist-hub-notif-slot {
    grid-column: 3;
    justify-self: end;
    display: flex;
    width: var(--yf-hub-pill-h);
    min-width: var(--yf-hub-pill-h);
    height: var(--yf-hub-pill-h);
    flex-shrink: 0;
}
.yf-assist-hub-notif-slot .yf-notif {
    width: 100%;
    height: 100%;
}
.yf-assist-hub-notif-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--yf-gray-600);
    font-size: 1.125rem;
    text-decoration: none;
}
.yf-assist-hub-notif-placeholder:active {
    color: var(--assist-accent);
    border-color: var(--assist-accent-border);
}
.yf-assist-hub-brandline {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0 16px;
    height: var(--yf-hub-pill-h);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    text-align: center;
    flex-shrink: 0;
}
.yf-assist-hub-brandmark {
    position: relative;
    display: inline-block;
}
.yf-assist-hub-name {
    font-size: 1.5625rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--yf-orange, #FF6B00);
    line-height: 1;
    white-space: nowrap;
}
.yf-assist-hub-name-line {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--yf-orange, #FF6B00) 0%, rgba(255, 107, 0, 0.15) 100%);
}
.yf-assist-hub-sep {
    width: 1px;
    height: 22px;
    margin: 0 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 0, 0.45) 50%, transparent 100%);
    flex-shrink: 0;
}
.yf-assist-hub-tag {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--yf-black);
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: .8125rem;
    letter-spacing: .08em;
}
.yf-assist-hub-platform-lead {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 14px 12px;
    text-align: center;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--yf-gray-600);
}
.yf-assist-hub-menu {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 10px 14px 8px;
    background: var(--yf-white);
}
.yf-home-compact {
    margin: 0;
    padding: 16px 14px 8px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #fff 0%, #FAFAFA 100%);
}
.yf-home-compact-lead {
    margin: 0 0 10px;
    text-align: center;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #94A3B8;
}
.yf-home-compact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-bottom: 12px;
}
.yf-home-compact-link {
    font-size: .75rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    text-decoration: none;
}
.yf-assist-hub .yf-home-compact-link:active {
    color: var(--assist-accent);
}
.yf-home-compact .yf-home-foot {
    margin: 0;
    padding: 0 0 4px;
    text-align: center;
    font-size: .6875rem;
    color: #94A3B8;
}
.yf-home-services-title {
    margin: 0 0 10px;
    font-size: .8125rem;
    font-weight: 800;
    color: var(--yf-gray-600);
    letter-spacing: .04em;
    text-transform: uppercase;
}
.yf-home-stat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 14px 12px;
    padding: 12px 14px;
    border-radius: 14px;
}
.yf-home-stat-card--assist {
    background: #fff;
    border: 1px solid #E7E5E4;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.yf-home-stat-card--travel {
    background: linear-gradient(165deg, #F8FAFF 0%, #EFF6FF 100%);
    border: 1px solid #BFDBFE;
}
.yf-home-stat-kicker {
    margin: 0 0 2px;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.yf-home-stat-card--assist .yf-home-stat-kicker { color: #B45309; }
.yf-home-stat-card--travel .yf-home-stat-kicker { color: #2563EB; }
.yf-home-stat-card .yf-home-context-item,
.yf-home-stat-card .yf-home-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-home-stat-card--assist .yf-home-context-item .bi {
    flex-shrink: 0;
    color: var(--assist-accent);
    font-size: 1rem;
}
.yf-home-stat-card--travel .yf-home-trust-item .bi {
    flex-shrink: 0;
    color: #2563EB;
    font-size: .9375rem;
}
.yf-home-stat-card strong {
    color: var(--yf-black);
    font-weight: 800;
}
.yf-home-context-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-home-context-item .bi {
    flex-shrink: 0;
    color: var(--yf-orange);
    font-size: 1rem;
}
.yf-home-context-item strong {
    color: var(--yf-black);
    font-weight: 800;
}
.yf-home-emergency {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 14px 12px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--yf-black);
    background: #fff;
    border: 1px solid var(--assist-accent-border);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    border-left: 3px solid var(--assist-accent);
}
.yf-home-emergency:active {
    transform: scale(.995);
    background: var(--assist-accent-light);
}
.yf-home-emergency-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--assist-accent-light);
    color: var(--assist-accent);
    font-size: 1.125rem;
}
.yf-home-emergency-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.yf-home-emergency-text strong {
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0F172A;
}
.yf-home-emergency-text span {
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-home-emergency-arrow {
    font-size: 1rem;
    color: var(--assist-accent-muted);
}
.yf-home-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-home-trust-item .bi {
    color: var(--yf-orange);
    font-size: .875rem;
    flex-shrink: 0;
}
.yf-home-trust-item strong {
    color: var(--yf-black);
    font-weight: 800;
}
.yf-home-travel {
    margin: 0 14px 16px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(165deg, #F0F7FF 0%, #EFF6FF 45%, #FFF7ED 100%);
    border: 1px solid #DBEAFE;
}
.yf-home-travel-head { margin-bottom: 12px; }
.yf-home-travel-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-home-travel-sub {
    margin: 4px 0 0;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-home-travel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.yf-home-travel-grid--duo .yf-home-travel-card {
    min-height: 96px;
}
.yf-home-travel-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 108px;
    padding: 12px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.yf-home-travel-card:active { transform: scale(.98); }
.yf-home-travel-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #EFF6FF;
    color: #2563EB;
}
.yf-home-travel-card--cargo .yf-home-travel-icon { background: #FFF7ED; color: #EA580C; }
.yf-home-travel-card--find .yf-home-travel-icon { background: #F0FDF4; color: #16A34A; }
.yf-home-travel-card--seat .yf-home-travel-icon { background: #FDF4FF; color: #9333EA; }
.yf-home-travel-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.yf-home-travel-text strong {
    font-size: .8125rem;
    font-weight: 800;
    line-height: 1.25;
}
.yf-home-travel-text span {
    font-size: .6875rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-home-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.yf-home-card-grid--assist {
    gap: 12px;
}
.yf-home-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 98px;
    padding: 16px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.38);
    background: #fff;
    color: var(--yf-black);
    text-decoration: none;
    text-align: center;
}
.yf-home-card:active {
    transform: scale(.99);
    border-color: var(--yf-orange);
    background: #fff;
    box-shadow: 0 2px 12px rgba(255, 107, 0, 0.1);
}
.yf-home-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 1.375rem;
    line-height: 1;
}
.yf-home-card-icon i {
    font-weight: 400 !important;
    -webkit-font-smoothing: antialiased;
}
.yf-home-card:active .yf-home-card-icon {
    color: var(--yf-orange);
}
.yf-home-card-label {
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.01em;
    color: var(--yf-black);
}
.yf-home-card--assist {
    min-height: 118px;
    padding: 14px 12px 12px;
    align-items: center;
    gap: 8px;
}
.yf-home-card--assist .yf-home-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.625rem;
    background: linear-gradient(165deg, #FFF7ED 0%, #FFEDD5 100%);
    color: #1C1917;
}
.yf-home-card--assist .yf-home-card-icon .yf-assist-svc-svg {
    width: 30px;
    height: 30px;
    display: block;
}
.yf-home-card--assist .yf-home-card-icon .yf-assist-svc-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}
.yf-home-card--assist:active .yf-home-card-icon {
    background: linear-gradient(165deg, #FFEDD5 0%, #FED7AA 100%);
}
.yf-home-card-hint {
    font-size: .6875rem;
    font-weight: 600;
    color: var(--yf-gray-600);
    line-height: 1.25;
}
.yf-svc-list--home {
    gap: 8px;
}
.yf-svc-list--home .yf-svc-row {
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: none;
    border-color: #ececec;
}
.yf-svc-list--home .yf-svc-row-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 1.0625rem;
}
.yf-svc-list--home .yf-svc-row-text strong {
    font-size: .9375rem;
}
.yf-svc-list--home .yf-svc-row-chevron {
    font-size: 1rem;
}
.yf-notif--home {
    width: 100%;
    height: 100%;
}
.yf-notif--home .yf-notif-btn--home {
    width: 100%;
    height: 100%;
    min-height: var(--yf-hub-pill-h, 54px);
    border-radius: var(--yf-hub-pill-r, 14px);
    border: 1px solid rgba(255, 107, 0, 0.16);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 243, 0.45) 100%);
    color: var(--yf-black);
    font-size: 1.125rem;
    box-shadow: 0 2px 14px rgba(255, 107, 0, 0.08);
}
.yf-notif--home .yf-notif-btn--home:active {
    transform: scale(.98);
    background: linear-gradient(165deg, #fff 0%, var(--yf-orange-light) 100%);
    color: var(--yf-orange);
    border-color: rgba(255, 107, 0, 0.35);
}
.yf-notif--home .yf-notif-badge {
    top: 6px;
    right: 6px;
    min-width: 18px;
    height: 18px;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(255, 107, 0, 0.35);
}
.yf-assist-hub .yf-notif-panel {
    position: fixed;
    top: calc(var(--safe-top, 0px) + 68px);
    right: 12px;
    left: auto;
    width: min(380px, calc(100vw - 24px));
    max-height: min(72vh, 520px);
    transform-origin: top right;
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    z-index: 1300;
}
/* Panel body'de portalandığında assist-hub stilleri korunsun */
.yf-notif-panel[data-yf-notif-portal] {
    position: fixed;
    top: calc(var(--safe-top, 0px) + 68px);
    right: 12px;
    left: auto;
    width: min(380px, calc(100vw - 24px));
    max-height: min(72vh, 520px);
    transform-origin: top right;
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.22s ease, transform 0.22s ease;
    pointer-events: none;
    z-index: 1300;
    display: none;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}
.yf-notif-panel[data-yf-notif-portal].is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    display: flex;
}
.yf-assist-hub .yf-notif-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.yf-assist-hub-docs {
    display: block;
    margin-top: 10px;
    padding-top: 10px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    text-align: center;
    text-decoration: none;
    border-top: 1px solid var(--yf-gray-100);
}
.yf-assist-hub-docs:active { color: var(--yf-orange); }

/* Çekici talep sihirbazı */
.yf-wizard {
    max-width: 480px;
    margin: 0 auto;
    padding: calc(var(--safe-top) + 4px) 14px 24px;
}
.yf-wizard--corp .yf-wizard-brand {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--yf-black);
    margin-bottom: 18px;
}
.yf-wizard--corp .yf-wizard-brand span { color: var(--yf-orange); }
.yf-wizard-steps {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
}
.yf-wizard-step-item {
    flex: 1;
    min-width: 48px;
    text-align: center;
}
.yf-wizard--corp .yf-wizard-step-dot {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .6875rem;
    font-weight: 700;
    background: #fff;
    color: var(--yf-gray-600);
    border: 1px solid var(--yf-gray-100);
    margin-bottom: 4px;
}
.yf-wizard--corp .yf-wizard-step-item.is-active .yf-wizard-step-dot {
    background: rgba(255, 107, 0, 0.14);
    color: var(--yf-orange);
    border-color: rgba(255, 107, 0, 0.38);
    box-shadow: none;
}
.yf-wizard--corp .yf-wizard-step-item.is-done .yf-wizard-step-dot {
    background: var(--yf-gray-100);
    color: var(--yf-gray-600);
    border-color: var(--yf-gray-100);
}
.yf-wizard-step-label {
    display: block;
    font-size: .5625rem;
    font-weight: 600;
    color: var(--yf-gray-600);
    line-height: 1.2;
    letter-spacing: .02em;
}
.yf-wizard--corp .yf-wizard-step-item.is-active .yf-wizard-step-label { color: var(--yf-black); }
.yf-wizard-panel { display: none; }
.yf-wizard-panel.is-active { display: block; }
.yf-wizard-step-hero {
    margin-bottom: 18px;
    padding: 4px 2px 0;
}
.yf-wizard-step-kicker {
    margin: 0 0 6px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--yf-orange);
}
.yf-wizard-step-title {
    margin: 0 0 8px;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-wizard-step-lead {
    margin: 0 0 14px;
    font-size: .9375rem;
    line-height: 1.5;
    color: var(--yf-gray-600);
}
.yf-wizard-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.yf-wizard-trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--yf-gray-600);
}
.yf-wizard-trust .bi {
    color: var(--yf-orange);
    font-size: .875rem;
}
.yf-wizard-card {
    background: #fff;
    border: 1px solid #ECEEF2;
    border-radius: 16px;
    padding: 18px 16px 8px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, .06);
}
.yf-wizard-field-hint {
    margin: -4px 0 10px;
    font-size: .8125rem;
    line-height: 1.45;
    color: var(--yf-gray-600);
}
.yf-wizard-section--last { margin-bottom: 8px; }
.yf-wizard-section-head h3 {
    margin: 0;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-wizard-section { margin-bottom: 16px; }
.yf-wizard-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.yf-wizard-section-head h2 {
    margin: 0;
    font-size: .875rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-wizard-field-check {
    flex-shrink: 0;
    font-size: .875rem;
    line-height: 1;
    color: #2F80ED;
}
.yf-wizard-field-check[hidden] { display: none !important; }
.yf-wizard-dd { position: relative; }
.yf-wizard-dd-trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--yf-gray-100);
    border-radius: 10px;
    background: #fff;
    color: var(--yf-black);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
}
.yf-wizard-dd-trigger:disabled {
    opacity: .55;
    cursor: not-allowed;
}
.yf-wizard-dd-trigger .bi-chevron-down {
    font-size: .75rem;
    color: var(--yf-gray-600);
    transition: transform .15s ease;
}
.yf-wizard-dd.is-open .yf-wizard-dd-trigger {
    border-color: rgba(255, 107, 0, 0.35);
}
.yf-wizard-dd.is-open .bi-chevron-down { transform: rotate(180deg); }
.yf-wizard-dd-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 20;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid var(--yf-gray-100);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.yf-wizard-dd-option {
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 0;
    border-bottom: 1px solid var(--yf-gray-100);
    background: #fff;
    color: var(--yf-black);
    font-size: .8125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}
.yf-wizard-dd-option:last-child { border-bottom: 0; }
.yf-wizard-dd-option.is-selected,
.yf-wizard-dd-option:active {
    background: rgba(255, 107, 0, 0.06);
    color: var(--yf-orange-dark);
}
.yf-wizard--corp .yf-input {
    min-height: 48px;
    border-radius: 10px;
    border-color: var(--yf-gray-100);
}
.yf-wizard--corp .yf-input-plate {
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 700;
}
.yf-wizard-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.yf-wizard-toggles--wrap .yf-wizard-toggle { flex: 1 1 calc(50% - 4px); }
.yf-wizard--corp .yf-wizard-toggle {
    flex: 1;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid var(--yf-gray-100);
    border-radius: 999px;
    background: #fff;
    color: var(--yf-gray-600);
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
}
.yf-wizard--corp .yf-wizard-toggle.is-on {
    border-color: rgba(255, 107, 0, 0.35);
    background: rgba(255, 107, 0, 0.08);
    color: var(--yf-orange-dark);
}
.yf-wizard-summary-card {
    margin-bottom: 10px;
    padding: 14px;
    border: 1px solid var(--yf-gray-100);
    border-radius: 10px;
    background: #fff;
}
.yf-wizard-summary-card h3 {
    margin: 0 0 8px;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-wizard-summary div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    border-bottom: 1px solid var(--yf-gray-100);
    font-size: .8125rem;
}
.yf-wizard-summary div:last-child { border-bottom: 0; }
.yf-wizard-summary dt { margin: 0; color: var(--yf-gray-600); font-weight: 500; }
.yf-wizard-summary dd { margin: 0; text-align: right; font-weight: 600; color: var(--yf-black); }
.yf-wizard-onay { text-align: center; padding: 16px 0 8px; }
.yf-wizard-onay h2 {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-wizard-onay-sub {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.5;
}
.yf-wizard-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}
.yf-btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid var(--yf-gray-100);
    border-radius: 10px;
    background: #fff;
    color: var(--yf-gray-600);
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.yf-btn-soft-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: 10px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--yf-orange-dark);
    font-size: .875rem;
    font-weight: 700;
    cursor: pointer;
}
.yf-wizard-nav .yf-wizard-cancel { grid-column: 1; }
.yf-wizard-nav #wizardForward { grid-column: 2; }

/* Yan menü */
.yf-home-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(17, 17, 17, 0.45);
    opacity: 0;
    transition: opacity .22s ease;
}
.yf-home-drawer-backdrop.is-visible { opacity: 1; }
.yf-home-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1210;
    width: min(288px, 86vw);
    height: 100%;
    padding: calc(var(--safe-top) + 12px) 16px 24px;
    background: var(--yf-white);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.12);
    transform: translateX(-105%);
    transition: transform .24s ease;
}
.yf-home-drawer.is-open { transform: translateX(0); }
.yf-home-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--yf-gray-100);
}
.yf-home-drawer-brand {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--yf-orange);
    letter-spacing: -.02em;
}
.yf-home-drawer-brand span { color: var(--yf-black); font-weight: 700; }
.yf-home-drawer-close {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--yf-gray-100);
    border-radius: 10px;
    background: #fff;
    color: var(--yf-black);
    cursor: pointer;
}
.yf-home-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yf-home-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--yf-black);
    text-decoration: none;
}
.yf-home-drawer-link i {
    width: 22px;
    font-size: 1.0625rem;
    color: var(--yf-orange);
    text-align: center;
}
.yf-home-drawer-link:active { background: var(--yf-orange-light); }
body.yf-home-drawer-open { overflow: hidden; }

/* Buton menü — 2 sütun */
.yf-btn-menu-grid--duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.yf-btn-menu-item {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fff;
    text-align: left;
}
.yf-btn-menu-item:active {
    transform: scale(.99);
    border-color: rgba(255, 107, 0, 0.35);
    background: var(--yf-orange-light);
}
.yf-btn-menu-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--yf-orange-light);
    border: none;
    color: var(--yf-orange);
    font-size: 1rem;
    flex-shrink: 0;
}
.yf-btn-menu-item:active .yf-btn-menu-icon {
    background: var(--yf-orange);
    color: #fff;
}
.yf-btn-menu-label {
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yf-home-active--hub {
    margin: 0 14px 4px;
}
.yf-home-below {
    padding: 8px 16px 0;
}

/* Ana sayfa — legacy liste (Asist yedek) */
.yf-btn-menu-grid {
    display: grid;
}
.yf-btn-menu-item {
    display: flex;
    color: var(--yf-black);
    text-decoration: none;
}
.yf-btn-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.yf-service-menu {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.yf-service-row {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 8px 12px 8px 10px;
    border-radius: 10px;
    border: 1px solid #e3e3e3;
    background: #fff;
    color: var(--yf-black);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.yf-service-row:active {
    transform: scale(.995);
    background: #f7f7f7;
}
.yf-service-row-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: #1a1a1a;
}
.yf-service-row-label {
    flex: 1;
    min-width: 0;
    font-size: .9375rem;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.25;
}
.yf-service-row-go {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    color: #666;
    font-size: .8125rem;
    background: #fafafa;
}

/* Ana sayfa — iki dünya (rota pazarı + yol yardımı) */
.yf-home-lead {
    margin: 0 0 16px;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    letter-spacing: -.01em;
}
.yf-home-world {
    margin-bottom: 20px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-white);
    box-shadow: var(--yf-shadow-soft);
}
.yf-home-world--market {
    background: linear-gradient(165deg, #fff 0%, #F8FAFF 100%);
    border-color: #DBEAFE;
}
.yf-home-world--assist {
    background: var(--yf-white);
    border-color: #dcdcdc;
}
.yf-home-world-head--assist { margin-bottom: 12px; }
.yf-home-world-head { margin-bottom: 14px; }
.yf-home-world-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-home-world-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--yf-orange);
}
.yf-home-world--market .yf-home-world-title::after { background: #2563EB; }
.yf-home-world-sub {
    margin: 6px 0 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.4;
}
.yf-home-world-kicker {
    margin: 0;
    font-size: .8125rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-home-world-link {
    font-size: .75rem;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
}
.yf-home-market-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.yf-home-market-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 132px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}
.yf-home-market-card:active { transform: scale(.98); }
.yf-home-market-card--send {
    background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
    border-color: #BFDBFE;
}
.yf-home-market-card--carry {
    background: linear-gradient(145deg, #FFF7ED 0%, #FFEDD5 100%);
    border-color: #FDBA74;
}
.yf-home-market-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.85);
}
.yf-home-market-card--send .yf-home-market-card-icon { color: #2563EB; }
.yf-home-market-card--carry .yf-home-market-card-icon { color: #EA580C; }
.yf-home-market-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.yf-home-market-card-text strong {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.25;
}
.yf-home-market-card-text span {
    font-size: .6875rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-home-freight-block { margin-bottom: 12px; }
.yf-home-freight-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.yf-home-freight-scroll::-webkit-scrollbar { display: none; }
.yf-home-freight-chip {
    flex: 0 0 78%;
    max-width: 260px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
    text-decoration: none;
    color: inherit;
}
.yf-home-freight-chip:active { transform: scale(.98); }
.yf-home-freight-chip-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.yf-home-freight-chip-head strong {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.25;
}
.yf-home-freight-chip-head span {
    font-size: .625rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #2563EB;
    white-space: nowrap;
}
.yf-home-freight-chip-meta {
    margin: 0;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-home-freight-chip-price {
    display: inline-block;
    margin-left: 4px;
    font-weight: 800;
    color: #2563EB;
}
.yf-home-freight-chip-cap {
    margin: 4px 0 0;
    font-size: .6875rem;
    color: var(--yf-gray-600);
}
.yf-home-freight-empty {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.7);
    border: 1px dashed #BFDBFE;
    text-align: center;
}
.yf-home-freight-empty p {
    margin: 0 0 10px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-home-freight-empty-btn {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2563EB;
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    text-decoration: none;
}
.yf-home-market-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.yf-home-market-link {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    border: 1px solid var(--yf-gray-100);
    font-size: .75rem;
    font-weight: 700;
    color: var(--yf-black);
    text-decoration: none;
}
.yf-home-assist-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--yf-black);
    color: #fff;
    text-decoration: none;
    border: 1px solid #1a1a1a;
}
.yf-home-assist-primary:active { transform: scale(.99); background: #111; }
.yf-home-assist-primary-icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--yf-orange);
    flex-shrink: 0;
    font-size: 1.125rem;
}
.yf-home-assist-primary-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.yf-home-assist-primary-text strong {
    font-size: .9375rem;
    font-weight: 800;
    letter-spacing: -.01em;
}
.yf-home-assist-primary-text span {
    font-size: .75rem;
    color: rgba(255,255,255,.72);
    line-height: 1.35;
}
.yf-home-assist-primary-arrow {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: rgba(255,255,255,.55);
    flex-shrink: 0;
}
.yf-home-world--assist .yf-assist-grid { margin-bottom: 0; }
.yf-home-assist-more {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--yf-gray-100);
    text-align: center;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    text-decoration: none;
}
.yf-home-assist-more:active { color: var(--yf-orange); }

/* Acil yardım kartı */
.yf-emergency {
    background: linear-gradient(145deg, #1A1A1A 0%, #2A1808 100%);
    color: var(--yf-white);
    border-radius: 16px;
    padding: 22px 18px;
    margin-bottom: 22px;
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.18);
    border: 1px solid rgba(255, 107, 0, 0.15);
}
.yf-emergency-title {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.02em;
}
.yf-emergency-sub {
    margin: 0 0 18px;
    font-size: .875rem;
    color: rgba(255,255,255,.78);
    line-height: 1.5;
}
.yf-emergency-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    background: var(--yf-orange);
    color: var(--yf-white);
    border-radius: 12px;
    text-decoration: none;
    font-size: .9375rem;
    font-weight: 800;
}
.yf-emergency-btn:active { background: var(--yf-orange-dark); }
.yf-emergency-btn-icon {
    display: flex;
    align-items: center;
}
.yf-emergency-btn-icon svg { stroke-width: 2; }

/* Bölüm */
.yf-section { margin-bottom: 22px; }
.yf-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.yf-section-title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.01em;
}
.yf-section-title::after {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    margin-top: 6px;
    border-radius: 999px;
    background: var(--yf-orange);
}
.yf-section-row .yf-section-title { margin-bottom: 0; }

/* Yol yardım — hızlı hizmet ızgarası */
.yf-assist-grid {
    display: grid;
    gap: 8px;
}
.yf-assist-grid--primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 8px;
}
.yf-assist-grid--secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 8px;
    border-top: 1px solid var(--yf-gray-100);
}
.yf-assist-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 76px;
    padding: 10px 6px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-decoration: none;
    color: var(--yf-black);
    text-align: center;
}
.yf-assist-action--compact {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    text-align: left;
}
.yf-assist-action:active {
    transform: scale(.98);
    background: #f0f0f0;
    border-color: #d4d4d4;
}
.yf-assist-action-icon {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #333;
    font-size: 1.0625rem;
    flex-shrink: 0;
}
.yf-assist-action--compact .yf-assist-action-icon {
    width: 32px;
    height: 32px;
    font-size: .9375rem;
}
.yf-assist-action-label {
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    word-break: keep-all;
    overflow-wrap: normal;
}
.yf-assist-action--compact .yf-assist-action-label {
    font-size: .8125rem;
}
.yf-assist-action--towing .yf-assist-action-icon { color: var(--assist-accent, #EA580C); }
.yf-assist-action--towing:active { border-color: var(--assist-accent-border, #FED7AA); background: var(--assist-accent-light, #FFF7ED); }

/* Eski sınıflar — Asist sayfası uyumluluğu */
.yf-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.yf-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 76px;
    padding: 10px 6px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    text-decoration: none;
    color: var(--yf-black);
    text-align: center;
    box-shadow: none;
}
.yf-quick-card:active { transform: scale(.98); background: #f0f0f0; }
.yf-quick-icon {
    display: flex;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #333;
    font-size: 1.0625rem;
}
.yf-quick-icon svg { stroke-width: 1.75; }
.yf-quick-label {
    font-size: .75rem;
    font-weight: 700;
    line-height: 1.2;
}
.yf-quick-card--towing .yf-quick-icon { color: var(--yf-orange); background: #fff; }
.yf-quick-card--battery .yf-quick-icon,
.yf-quick-card--tire .yf-quick-icon,
.yf-quick-card--fuel .yf-quick-icon,
.yf-quick-card--bolt .yf-quick-icon,
.yf-quick-card--key .yf-quick-icon,
.yf-quick-card--wrench .yf-quick-icon,
.yf-quick-card--machinery .yf-quick-icon,
.yf-quick-card--ev .yf-quick-icon {
    background: #fff;
    color: #333;
}
.yf-quick-card--energy {
    border-color: #e8e8e8;
    background: #fafafa;
}
.yf-quick-card--energy.yf-quick-card--fuel { border-color: #e8e8e8; background: #fafafa; }

/* Karayolu hizmetleri — ana sayfa menüsü */
.yf-section--karayolu { margin-bottom: 20px; }
.yf-karayolu-tag {
    margin: 4px 0 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-karayolu-tag--tight { margin: 0 0 12px; }
.yf-karayolu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.yf-karayolu-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 108px;
    padding: 14px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yf-shadow-soft);
    position: relative;
}
.yf-karayolu-card:active { transform: scale(.98); }
.yf-karayolu-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 11px;
}
.yf-karayolu-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.yf-karayolu-card-text strong {
    font-size: .8125rem;
    font-weight: 700;
    line-height: 1.25;
}
.yf-karayolu-card-text span {
    font-size: .6875rem;
    color: var(--yf-gray-600);
    line-height: 1.3;
}
.yf-karayolu-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: .5625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--yf-black);
    color: #fff;
}
.yf-karayolu-grid .yf-karayolu-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: auto;
    flex-direction: row;
    align-items: center;
}
.yf-karayolu-grid .yf-karayolu-card:last-child:nth-child(odd) .yf-karayolu-card-text { flex: 1; }

/* Ana sayfa — akıllı öneriler */
.yf-home-insights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 18px;
}
.yf-home-insight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-white);
    box-shadow: var(--yf-shadow-soft);
}
.yf-home-insight:active { transform: scale(.99); }
.yf-home-insight-icon {
    display: flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    flex-shrink: 0;
}
.yf-home-insight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.yf-home-insight-text strong {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-home-insight-text span {
    font-size: .75rem;
    color: var(--yf-gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yf-home-insight--orange .yf-home-insight-icon { background: var(--yf-orange-light); color: var(--yf-orange); }
.yf-home-insight--warn .yf-home-insight-icon { background: #FEF3C7; color: #D97706; }
.yf-home-insight--danger .yf-home-insight-icon { background: #FEE2E2; color: #DC2626; }
.yf-home-insight--blue .yf-home-insight-icon { background: #EFF6FF; color: #2563EB; }

/* Ana sayfa — promo kartları */
.yf-section--promos { margin-bottom: 4px; }
.yf-promo-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    margin: 0 -4px;
    padding-left: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.yf-promo-scroll::-webkit-scrollbar { display: none; }
.yf-promo-card {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    min-height: 88px;
    justify-content: center;
}
.yf-promo-card strong {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.25;
}
.yf-promo-card span {
    font-size: .75rem;
    opacity: .92;
    line-height: 1.35;
}
.yf-promo-card--orange { background: linear-gradient(135deg, #FF6B00, #FF8533); }
.yf-promo-card--blue { background: linear-gradient(135deg, #2563EB, #3B82F6); }
.yf-promo-card--dark { background: linear-gradient(135deg, #1E293B, #334155); }
.yf-promo-card:active { transform: scale(.98); }

.yf-nearby-section-sub {
    margin: -6px 0 12px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}

/* Yolfix anları — hikaye şeridi */
.yf-stories {
    margin: 0 0 16px;
}
.yf-stories-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.yf-stories-scroll::-webkit-scrollbar { display: none; }
.yf-story-chip {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 72px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.yf-story-chip:active { transform: scale(.96); }
.yf-story-ring {
    display: flex;
    width: 68px;
    height: 68px;
    padding: 3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B00, #FF8533, #FFB066);
}
.yf-story-ring--hizmet { background: linear-gradient(135deg, #2563EB, #3B82F6, #60A5FA); }
.yf-story-ring--memnuniyet { background: linear-gradient(135deg, #059669, #10B981, #34D399); }
.yf-story-ring--ipucu { background: linear-gradient(135deg, #7C3AED, #A78BFA, #C4B5FD); }
.yf-story-ring--kampanya { background: linear-gradient(135deg, #FF6B00, #FF8533, #FFB066); }
.yf-story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yf-white);
    background: var(--yf-gray-100);
}
.yf-story-label {
    font-size: .6875rem;
    font-weight: 600;
    color: var(--yf-gray-600);
    text-align: center;
    max-width: 72px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hikaye görüntüleyici */
.yf-story-viewer {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.yf-story-viewer[hidden] { display: none !important; }
.yf-story-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .88);
}
.yf-story-viewer-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: max(12px, env(safe-area-inset-top)) 0 max(16px, env(safe-area-inset-bottom));
}
.yf-story-progress {
    display: flex;
    gap: 4px;
    padding: 0 12px 10px;
}
.yf-story-bar {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    overflow: hidden;
}
.yf-story-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    background: #fff;
    border-radius: inherit;
}
.yf-story-bar-fill.is-done { width: 100%; }
.yf-story-bar-fill.is-active {
    width: 100%;
    animation: yfStoryProgress 5.5s linear forwards;
}
@keyframes yfStoryProgress {
    from { width: 0; }
    to { width: 100%; }
}
.yf-story-viewer-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 0 12px 10px;
    color: #fff;
}
.yf-story-viewer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, .5);
}
.yf-story-viewer-head strong {
    font-size: .875rem;
    font-weight: 700;
}
.yf-story-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.yf-story-stage {
    position: relative;
    flex: 1;
    min-height: 0;
    margin: 0 12px;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}
.yf-story-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    max-height: calc(100vh - 220px);
    object-fit: cover;
    display: block;
}
.yf-story-tap {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}
.yf-story-tap--prev { left: 0; }
.yf-story-tap--next { right: 0; }
.yf-story-caption {
    padding: 14px 16px 0;
    color: #fff;
}
.yf-story-caption strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    margin-bottom: 6px;
}
.yf-story-caption p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .88);
}
.yf-story-cta {
    display: inline-flex;
    margin-top: 14px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--yf-orange);
    color: #fff;
    font-size: .875rem;
    font-weight: 800;
    text-decoration: none;
}
.yf-story-cta:active { transform: scale(.98); }
body.yf-story-open { overflow: hidden; }

/* Hizmetler sayfası */
.yf-svc-lead {
    margin: 0 0 20px;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-svc-desc {
    margin: -6px 0 14px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-svc-grid {
    grid-template-columns: 1fr 1fr;
}
.yf-svc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yf-svc-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yf-shadow-soft);
}
.yf-svc-row:active { transform: scale(.99); }
.yf-svc-row-icon {
    display: flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--yf-orange-light);
    color: var(--yf-orange);
    flex-shrink: 0;
}
.yf-svc-row-icon--muted {
    background: var(--yf-gray-50);
    color: var(--yf-gray-600);
}
.yf-svc-row-icon--shield { background: #EFF6FF; color: #2563EB; }
.yf-svc-row-icon--doc { background: #F0FDF4; color: #16A34A; }
.yf-svc-row-icon--fine { background: #FEF3C7; color: #D97706; }
.yf-svc-row-icon--scan { background: #F5F3FF; color: #7C3AED; }
.yf-svc-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.yf-svc-row-text strong {
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-svc-row-text span {
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-svc-row-chevron {
    display: flex;
    color: var(--yf-orange);
    opacity: .85;
}
.yf-svc-belge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 24px;
}
.yf-svc-belge-icon {
    display: flex;
    width: 64px; height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--yf-gray-50);
    color: var(--yf-gray-600);
    margin-bottom: 16px;
}
.yf-svc-belge-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-svc-belge-desc {
    margin: 0 0 16px;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.5;
    max-width: 320px;
}
.yf-svc-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--yf-orange-light);
    color: var(--yf-orange-dark);
    font-size: .75rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.yf-svc-belge-btn {
    display: inline-flex;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-decoration: none;
}

/* Aktif talep */
.yf-home-active {
    margin-bottom: 22px;
}
.yf-active-card {
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-left: 4px solid var(--yf-orange);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-active-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}
.yf-active-top strong {
    font-size: 1rem;
    font-weight: 800;
}
.yf-active-eta {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--yf-black);
    white-space: nowrap;
}
.yf-active-offers {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--yf-orange-light);
    color: var(--yf-orange-dark);
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}
.yf-active-meta {
    margin: 0 0 14px;
    font-size: .75rem;
    color: var(--yf-gray-400);
}
.yf-active-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.yf-active-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-white);
    color: var(--yf-black);
    text-decoration: none;
    font-size: .8125rem;
    font-weight: 700;
}
.yf-active-btn--dark {
    background: var(--yf-orange);
    color: var(--yf-white);
    border-color: var(--yf-orange);
}

/* Yakındaki hizmetler */
.yf-nearby-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
    scrollbar-width: none;
}
.yf-nearby-scroll::-webkit-scrollbar { display: none; }
.yf-nearby-card {
    flex: 0 0 220px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-nearby-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}
.yf-nearby-head strong {
    font-size: .875rem;
    font-weight: 800;
    line-height: 1.3;
}
.yf-nearby-rating {
    font-size: .75rem;
    font-weight: 700;
    color: var(--yf-orange);
    white-space: nowrap;
}
.yf-nearby-service {
    margin: 0 0 10px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-nearby-distance {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--yf-gray-400);
}
.yf-nearby-head-row { align-items: flex-start; }
.yf-nearby-subtitle {
    margin: 4px 0 0;
    font-size: .8125rem;
    color: var(--yf-gray-500);
    line-height: 1.4;
}
.yf-nearby-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 12px;
    scrollbar-width: none;
}
.yf-nearby-tabs::-webkit-scrollbar { display: none; }
.yf-nearby-tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-white);
    color: var(--yf-gray-600);
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
}
.yf-nearby-tab.is-active {
    background: var(--yf-orange-light);
    border-color: var(--yf-orange);
    color: var(--yf-orange-dark);
}
.yf-nearby-card--member { border-color: rgba(255, 107, 0, 0.35); }
.yf-nearby-member {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 6px;
    border-radius: 999px;
    background: var(--yf-orange-light);
    color: var(--yf-orange-dark);
    font-size: .625rem;
    font-weight: 800;
    vertical-align: middle;
}
.yf-nearby-context {
    margin: 0;
    font-size: .75rem;
    color: var(--yf-gray-500);
}
.yf-nearby-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}
.yf-nearby-link {
    font-size: .75rem;
    font-weight: 800;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-nearby-empty { margin: 0; padding: 8px 0; }
.yf-nearby-map-link {
    font-size: .8125rem;
    font-weight: 800;
    color: var(--yf-orange);
    text-decoration: none;
    white-space: nowrap;
}
.yf-route-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--yf-orange-light);
    border: 1px solid rgba(255, 107, 0, 0.25);
}
.yf-route-label { margin: 0; font-size: .75rem; color: var(--yf-orange-dark); }
.yf-route-clear {
    border: 0;
    background: transparent;
    color: var(--yf-orange-dark);
    font-size: .75rem;
    font-weight: 800;
    cursor: pointer;
}

.yf-map-page { display: flex; flex-direction: column; height: calc(100dvh - 120px); min-height: 420px; }
.yf-map-toolbar { padding: 0 0 12px; }
.yf-map-title { margin: 0 0 4px; font-size: 1.125rem; font-weight: 800; }
.yf-map-sub { margin: 0 0 10px; font-size: .8125rem; color: var(--yf-gray-500); }
.yf-map-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.yf-map-hint { margin: 8px 0 0; font-size: .75rem; color: var(--yf-orange-dark); }
.yf-map-canvas { flex: 1; min-height: 280px; border-radius: 14px; overflow: hidden; border: 1px solid var(--yf-gray-100); }
.yf-map-legend { display: flex; gap: 16px; padding-top: 10px; font-size: .75rem; color: var(--yf-gray-600); }
.yf-legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
.yf-legend-dot--member { background: #ff6b00; }
.yf-legend-dot--poi { background: #64748b; }
.yf-map-pin span { display: block; width: 14px; height: 14px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.25); }

.yf-alert-success { background: #ecfdf5; border-color: #6ee7b7; color: #065f46; }
.yf-alert-info { background: #eff6ff; border-color: #93c5fd; color: #1e40af; }
.yf-alert-warning { background: #fffbeb; border-color: #fcd34d; color: #92400e; }
.yf-form-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.yf-form-stack label { font-size: .8125rem; font-weight: 700; color: var(--yf-gray-600); }
.yf-btn-sm { padding: 8px 12px; font-size: .75rem; }

.yf-listing-head { margin-bottom: 16px; }
.yf-listing-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.yf-listing-badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--yf-gray-100);
    font-size: .6875rem;
    font-weight: 800;
}
.yf-listing-badge--partner {
    background: var(--yf-orange-light);
    color: var(--yf-orange-dark);
}
.yf-listing-title { margin: 0 0 6px; font-size: 1.375rem; font-weight: 800; }
.yf-listing-meta, .yf-listing-rating {
    margin: 0;
    font-size: .875rem;
    color: var(--yf-gray-600);
}
.yf-listing-rating { color: var(--yf-orange-dark); font-weight: 700; margin-top: 6px; }
.yf-listing-card {
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
}
.yf-listing-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 0 12px;
    font-size: .875rem;
}
.yf-listing-row strong { color: var(--yf-gray-400); font-size: .75rem; font-weight: 700; }
.yf-listing-desc { margin: 0; font-size: .875rem; line-height: 1.5; color: var(--yf-gray-600); }
.yf-listing-actions { display: flex; flex-direction: column; gap: 10px; }
.yf-listing-claim-note {
    margin: 8px 0 0;
    font-size: .8125rem;
    color: var(--yf-gray-400);
    text-align: center;
}

.yf-home-foot {
    text-align: center;
    font-size: .75rem;
    color: var(--yf-gray-400);
    margin: 8px 0 0;
}

/* Alt navigasyon — 4 sekme + FAB (FAB boyutu sabit) */
.yf-tabbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    height: calc(var(--yf-tab-h) + var(--safe-bottom));
    padding: 0 6px var(--safe-bottom);
    background: var(--yf-white);
    border-top: 1px solid var(--yf-gray-100);
    box-shadow: 0 -4px 20px rgba(255, 107, 0, 0.08);
}
.yf-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 2px 10px;
    text-decoration: none;
    color: var(--yf-gray-400);
    min-height: 52px;
    border: 0;
    background: transparent;
}
.yf-tab-icon {
    display: flex;
    width: 24px; height: 24px;
    align-items: center;
    justify-content: center;
}
.yf-tab-icon svg { stroke-width: 1.75; }
.yf-tab-label {
    font-size: .5625rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-align: center;
    line-height: 1.15;
    max-width: 100%;
}
.yf-tab .bi {
    font-size: 1.125rem;
    line-height: 1;
}
.yf-tab.is-active { color: var(--yf-orange); }
.yf-tab.is-active .yf-tab-icon svg { stroke-width: 2.25; color: var(--yf-orange); }

.yf-tab-fab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--yf-fab-size);
    height: var(--yf-fab-size);
    margin: calc(-1 * var(--yf-fab-lift)) auto 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    z-index: 3;
    align-self: start;
}
.yf-tab-fab:active { transform: scale(.96); }
.yf-tab-fab-logo {
    width: var(--yf-fab-size);
    height: var(--yf-fab-size);
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Bottom sheet */
.yf-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity .25s ease;
}
.yf-sheet-backdrop.is-visible {
    opacity: 1;
}
.yf-sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 120;
    max-height: 85vh;
    padding: 8px 16px calc(16px + var(--safe-bottom));
    background: var(--yf-white);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(105%);
    transition: transform .28s cubic-bezier(.32, .72, 0, 1);
    overflow-y: auto;
}
.yf-sheet.is-open { transform: translateY(0); }
.yf-sheet-handle {
    width: 36px; height: 4px;
    margin: 4px auto 14px;
    border-radius: 999px;
    background: var(--yf-gray-100);
}
.yf-sheet-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
}
.yf-sheet-logo {
    width: 40px; height: 40px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--yf-gray-50);
}
.yf-sheet-title {
    margin: 0 0 4px;
    font-size: .9375rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--yf-black);
}
.yf-sheet-sub {
    margin: 0;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-sheet-close {
    border: 0;
    background: var(--yf-gray-50);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--yf-gray-600);
    cursor: pointer;
}
.yf-sheet-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.yf-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-gray-50);
    color: var(--yf-black);
    font-size: .8125rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
}
.yf-chip--accent {
    background: var(--yf-orange-light);
    border-color: rgba(255, 107, 0, 0.25);
    color: var(--yf-orange-dark);
    font-weight: 800;
}
.yf-sheet-compose {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.yf-sheet-input {
    flex: 1;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
    font-size: .9375rem;
    background: var(--yf-white);
}
.yf-sheet-input:focus {
    outline: none;
    border-color: var(--yf-orange);
}
.yf-sheet-send {
    width: 48px; height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--yf-orange);
    color: var(--yf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}
.yf-sheet-send svg { transform: rotate(-90deg); }
.yf-sheet-hint {
    margin: 0;
    font-size: .6875rem;
    color: var(--yf-gray-400);
    text-align: center;
}

.yf-sheet-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 38vh;
    min-height: 120px;
    overflow-y: auto;
    margin-bottom: 12px;
    padding: 4px 2px;
}
.yf-chat-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 92%;
}
.yf-chat-row--customer {
    align-self: flex-end;
    align-items: flex-end;
}
.yf-chat-row--assistant,
.yf-chat-row--system {
    align-self: flex-start;
    align-items: flex-start;
}
.yf-chat-bubble {
    padding: 10px 12px;
    border-radius: 14px;
    font-size: .8125rem;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}
.yf-chat-row--customer .yf-chat-bubble {
    background: var(--yf-orange);
    color: var(--yf-white);
    border-bottom-right-radius: 4px;
}
.yf-chat-row--assistant .yf-chat-bubble,
.yf-chat-row--system .yf-chat-bubble {
    background: var(--yf-gray-50);
    color: var(--yf-black);
    border: 1px solid var(--yf-gray-100);
    border-bottom-left-radius: 4px;
}
.yf-chat-action {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--yf-orange-light);
    border: 1px solid rgba(255, 107, 0, 0.25);
    color: var(--yf-orange-dark);
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
}

body.yf-sheet-open { overflow: hidden; }

/* Canlı takip haritası */
.yf-track-map {
    height: 42vh;
    min-height: 220px;
    width: 100%;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    margin: -12px -16px 0;
    width: calc(100% + 32px);
    z-index: 1;
}
.yf-app-main:has(.yf-track-map) {
    padding-top: 0;
}
.yf-track-panel {
    padding: 16px 0 24px;
}
.yf-track-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.yf-track-eta {
    text-align: right;
}
.yf-track-eta-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yf-orange);
}
.yf-track-eta-label {
    font-size: .6875rem;
    color: var(--yf-gray-400);
}
.yf-track-team {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
    margin-bottom: 14px;
}
.yf-track-team-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yf-orange);
    flex-shrink: 0;
    animation: yf-pulse 1.5s infinite;
}
@keyframes yf-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.yf-track-team strong {
    display: block;
    font-size: .875rem;
}
.yf-track-team span {
    display: block;
}
.yf-track-address {
    margin-top: 14px;
}
.yf-track-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 14px;
}
.yf-map-pin span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.yf-map-pin--pickup span {
    background: var(--yf-orange);
}
.yf-map-pin--truck span {
    background: #111;
    border-radius: 4px;
    transform: rotate(45deg);
}
.yf-active-status {
    display: block;
    font-size: .75rem;
    color: var(--yf-gray-400);
    font-weight: 600;
    margin-top: 2px;
}

/* Profil modülü — ana sayfa ile aynı yf tasarım dili */
.yf-profile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.yf-profile-title {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-profile-settings {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    color: var(--yf-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--yf-shadow-soft);
}
.yf-profile-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    box-shadow: var(--yf-shadow-soft);
    margin-bottom: 14px;
}
.yf-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--yf-orange);
    color: var(--yf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.yf-profile-avatar--md { width: 48px; height: 48px; font-size: .9375rem; }
.yf-profile-user strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-profile-user span {
    display: block;
    margin-top: 4px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}
.yf-profile-stat {
    text-align: center;
    padding: 14px 8px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-profile-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yf-black);
    line-height: 1.2;
}
.yf-profile-stat span {
    display: block;
    margin-top: 4px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--yf-gray-600);
}
.yf-profile-stat.is-live strong { color: var(--yf-orange); }

/* Hesap merkezi — Trendyol / Sahibinden tarzı hub */
.yf-hub-header {
    margin: 10px 0 18px;
    padding: 20px 16px 16px;
    border-radius: 20px;
    background: linear-gradient(145deg, #FF6B00 0%, #FF8533 55%, #FFB066 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 107, 0, .28);
}
.yf-hub-header--rich {
    position: relative;
    overflow: hidden;
}
.yf-hub-header--rich::before {
    content: '';
    position: absolute;
    top: -45%;
    right: -12%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    pointer-events: none;
}
.yf-hub-header--rich::after {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}
.yf-hub-header--rich > * { position: relative; z-index: 1; }
.yf-hub-header-top {
    display: block;
}
.yf-hub-identity {
    min-width: 0;
}
.yf-hub-name {
    margin: 0;
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1.2;
}
.yf-hub-phone {
    margin: 4px 0 0;
    font-size: .8125rem;
    opacity: .92;
}
.yf-hub-membership {
    margin: 6px 0 0;
    font-size: .6875rem;
    font-weight: 600;
    opacity: .88;
    line-height: 1.35;
}
.yf-hub-settings {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.yf-hub-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}
.yf-hub-stat {
    text-align: center;
    padding: 12px 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    text-decoration: none;
}
.yf-hub-stat strong {
    display: block;
    font-size: 1.1875rem;
    font-weight: 800;
    line-height: 1.1;
}
.yf-hub-stat span {
    display: block;
    margin-top: 3px;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    opacity: .9;
}
.yf-hub-stat.is-live strong { color: #fff; text-shadow: 0 0 12px rgba(255,255,255,.6); }
.yf-hub-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.yf-hub-shortcuts--6 {
    grid-template-columns: repeat(3, 1fr);
}
.yf-hub-insights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.yf-hub-insight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-insight-card--loyalty { cursor: default; }
.yf-hub-insight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--yf-orange-light);
    color: var(--yf-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.yf-hub-insight-text strong {
    display: block;
    font-size: .8125rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-hub-insight-text span {
    display: block;
    margin-top: 2px;
    font-size: .6875rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-hub-health-ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: conic-gradient(var(--yf-orange) calc(var(--yf-health) * 1%), var(--yf-gray-100) 0);
    position: relative;
}
.yf-hub-health-ring::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: var(--yf-white);
}
.yf-hub-health-ring strong {
    position: relative;
    z-index: 1;
    font-size: .8125rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-hub-insight-card--health.is-great .yf-hub-health-ring { background: conic-gradient(#059669 calc(var(--yf-health) * 1%), var(--yf-gray-100) 0); }
.yf-hub-insight-card--health.is-good .yf-hub-health-ring { background: conic-gradient(var(--yf-orange) calc(var(--yf-health) * 1%), var(--yf-gray-100) 0); }
.yf-hub-insight-card--health.is-fair .yf-hub-health-ring { background: conic-gradient(#D97706 calc(var(--yf-health) * 1%), var(--yf-gray-100) 0); }
.yf-hub-insight-card--health.is-low .yf-hub-health-ring { background: conic-gradient(#DC2626 calc(var(--yf-health) * 1%), var(--yf-gray-100) 0); }
.yf-hub-compliance-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-compliance-card--ok { border-color: rgba(5, 150, 105, .25); background: linear-gradient(180deg, #fff 0%, #F0FDF4 100%); }
.yf-hub-compliance-card--warn { border-color: rgba(217, 119, 6, .28); background: linear-gradient(180deg, #fff 0%, #FFFBEB 100%); }
.yf-hub-compliance-card--danger { border-color: rgba(220, 38, 38, .22); background: linear-gradient(180deg, #fff 0%, #FEF2F2 100%); }
.yf-hub-compliance-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--yf-gray-100);
    color: var(--yf-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
}
.yf-hub-compliance-card--ok .yf-hub-compliance-icon { background: #DCFCE7; color: #059669; }
.yf-hub-compliance-card--warn .yf-hub-compliance-icon { background: #FEF3C7; color: #D97706; }
.yf-hub-compliance-card--danger .yf-hub-compliance-icon { background: #FEE2E2; color: #DC2626; }
.yf-hub-compliance-text strong { display: block; font-size: .875rem; font-weight: 800; }
.yf-hub-compliance-text span { display: block; margin-top: 2px; font-size: .8125rem; color: var(--yf-gray-600); }
.yf-hub-compliance-meta { margin-top: 4px !important; font-size: .6875rem !important; color: var(--yf-gray-400) !important; }
.yf-hub-alert--review {
    margin-bottom: 14px;
    border-color: rgba(255, 193, 7, .45);
    background: linear-gradient(180deg, #fff 0%, #FFFBEB 100%);
}
.yf-hub-alert--review .yf-hub-alert-icon { color: #D97706; }
.yf-hub-alert--review .yf-hub-alert-go { color: #D97706; }
.yf-hub-quick-service {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid rgba(255, 107, 0, .22);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-quick-service-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--yf-orange-light);
    color: var(--yf-orange);
    display: flex;
    align-items: center;
    justify-content: center;
}
.yf-hub-quick-service-text strong { display: block; font-size: .875rem; font-weight: 800; }
.yf-hub-quick-service-text span { display: block; margin-top: 2px; font-size: .75rem; color: var(--yf-gray-600); }
.yf-hub-menu-two-line span { display: block; }
.yf-hub-menu-two-line small {
    display: block;
    margin-top: 2px;
    font-size: .6875rem;
    font-weight: 500;
    color: var(--yf-gray-500);
    line-height: 1.35;
}
.yf-hub-menu-row--static {
    cursor: default;
    color: var(--yf-black);
}
.yf-hub-vehicle-alert {
    display: block;
    margin-top: 4px;
    font-size: .6875rem;
    font-weight: 700;
    color: #DC2626;
}
.yf-hub-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: var(--yf-black);
}
.yf-hub-tile--accent {
    background: #FFF4EB;
    border-color: #FFD9B8;
}
.yf-hub-tile-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--yf-gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yf-orange);
}
.yf-hub-tile--accent .yf-hub-tile-icon { background: #fff; }
.yf-hub-tile-label {
    font-size: .6875rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}
.yf-hub-tile-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--yf-orange);
    color: #fff;
    font-size: .625rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yf-hub-alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    text-decoration: none;
    color: #991B1B;
}
.yf-hub-alert-text {
    font-size: .8125rem;
    line-height: 1.35;
}
.yf-hub-alert-text strong { display: block; margin-bottom: 2px; }
.yf-hub-alert-go { color: #991B1B; opacity: .7; }
.yf-hub-section { margin-bottom: 20px; }
.yf-hub-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.yf-hub-section-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-hub-section-head a {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-hub-section-action {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    cursor: pointer;
    font-family: inherit;
}
.yf-hub-section-desc {
    margin: -6px 0 12px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yf-contact-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
}
.yf-contact-card-main strong {
    display: block;
    font-size: .9375rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-contact-relation {
    display: inline-block;
    margin-left: 6px;
    font-size: .6875rem;
    font-weight: 700;
    color: var(--yf-gray-500);
}
.yf-contact-phone {
    display: block;
    margin-top: 6px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-contact-delete { margin: 0; flex-shrink: 0; }
.yf-contact-form-wrap {
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
}
.yf-contact-form-wrap[hidden] { display: none !important; }
.yf-contact-add-btn { margin-top: 10px; }
.yf-hub-menu-row--anchor { scroll-margin-top: 12px; }
.yf-hub-empty {
    padding: 18px 16px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
}
.yf-hub-empty p {
    margin: 0 0 12px;
    font-size: .875rem;
    color: var(--yf-gray-600);
}
.yf-hub-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.yf-hub-request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-request-main strong {
    display: block;
    font-size: .9375rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-hub-request-main span {
    display: block;
    margin-top: 3px;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-hub-request-addr {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.yf-hub-vehicle {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-vehicle-plate {
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--yf-black);
    color: #fff;
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .04em;
}
.yf-hub-vehicle-meta strong {
    display: block;
    font-size: .9375rem;
    font-weight: 800;
}
.yf-hub-vehicle-meta span {
    display: block;
    margin-top: 3px;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-hub-menu {
    border-radius: 16px;
    overflow: hidden;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
}
.yf-hub-menu-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--yf-black);
    font-size: .9375rem;
    font-weight: 600;
    border-bottom: 1px solid var(--yf-gray-100);
}
.yf-hub-menu-row:last-child { border-bottom: 0; }

.yf-hub-logout-section {
    margin: 8px 0 4px;
}
.yf-hub-logout-section .yf-hub-logout-btn {
    min-height: 48px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 107, 0, .28);
}

.yf-hub-section--requests { margin-bottom: 16px; }
.yf-hub-list--compact { gap: 6px; }
.yf-hub-request--live { border-color: rgba(255, 107, 0, 0.35); background: linear-gradient(180deg, #fff 0%, #fff9f5 100%); }
.yf-hub-requests-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
}
.yf-hub-requests-summary--inline { margin-top: 10px; }
.yf-hub-requests-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--yf-gray-100);
    color: var(--yf-gray-600);
}
.yf-hub-requests-summary-text strong { display: block; font-size: .9375rem; font-weight: 800; color: var(--yf-black); }
.yf-hub-requests-summary-text span { display: block; margin-top: 2px; font-size: .8125rem; color: var(--yf-gray-600); line-height: 1.35; }
.yf-hub-latest { margin-top: 4px !important; font-size: .75rem !important; color: var(--yf-gray-500) !important; }
.yf-hub-summary-go { display: flex; color: var(--yf-gray-400); }

.yf-req-toolbar { margin-bottom: 12px; }
.yf-req-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}
.yf-req-filter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--yf-gray-100);
    background: var(--yf-white);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    text-decoration: none;
}
.yf-req-filter.is-active {
    background: var(--yf-orange-light);
    border-color: var(--yf-orange);
    color: var(--yf-orange-dark);
}
.yf-req-count { margin: 0; font-size: .75rem; color: var(--yf-gray-500); }
.yf-request-row-addr {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 240px;
}
.yf-request-row-hint { display: block; font-size: .6875rem; color: var(--yf-orange); font-weight: 700; }
.yf-req-pager {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}
.yf-req-pager .yf-btn { flex: 1; text-align: center; }
.yf-flash {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .8125rem;
    font-weight: 600;
}
.yf-flash--ok { background: #D1FAE5; color: #065F46; }
.yf-flash--err { background: #FEE2E2; color: #991B1B; }
.yf-alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    margin-bottom: 14px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
}
.yf-alert-icon {
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #FEE2E2;
    color: #DC2626;
}
.yf-alert-text strong { display: block; font-size: .875rem; }
.yf-alert-text span { display: block; font-size: .75rem; color: var(--yf-gray-600); margin-top: 2px; }
.yf-alert-chevron { display: flex; color: var(--yf-orange); }
.yf-empty-card {
    text-align: center;
    padding: 28px 18px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-empty-card--tall { padding: 40px 20px; }
.yf-empty-card h2 { margin: 0 0 8px; font-size: 1.125rem; font-weight: 800; }
.yf-empty-card p {
    margin: 0 0 16px;
    font-size: .875rem;
    color: var(--yf-gray-600);
    line-height: 1.45;
}
.yf-empty-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 16px;
    background: var(--yf-orange-light);
    color: var(--yf-orange);
}
.yf-page-sub {
    margin: -6px 0 14px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-vehicle-card {
    display: block;
    margin-bottom: 12px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    box-shadow: var(--yf-shadow-soft);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.yf-vehicle-card.has-alert { border-color: #FECACA; }
.yf-vehicle-card-inner { display: block; padding: 16px; }
.yf-vehicle-card:active .yf-vehicle-card-inner { background: #fafafa; }
.yf-vehicle-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.yf-plate {
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--yf-black);
}
.yf-plate--hero { font-size: 1.375rem; margin-bottom: 8px; }
.yf-tag-row { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.yf-tag {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 700;
}
.yf-tag--primary { background: var(--yf-orange-light); color: var(--yf-orange-dark); }
.yf-tag--warn { background: #FEF3C7; color: #92400E; }
.yf-vehicle-sub { font-size: .8125rem; color: var(--yf-gray-600); margin-bottom: 10px; }
.yf-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.yf-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
}
.yf-status-dot.is-ok { background: #22C55E; }
.yf-status-dot.is-warn { background: #F59E0B; }
.yf-status-dot.is-expired { background: #EF4444; }
.yf-status-legend { font-size: .6875rem; color: var(--yf-gray-400); }
.yf-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.yf-doc-card {
    padding: 12px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
}
.yf-doc-icon { display: flex; color: var(--yf-orange); margin-bottom: 6px; }
.yf-doc-label {
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--yf-gray-600);
    margin-bottom: 4px;
}
.yf-doc-card strong { display: block; font-size: .8125rem; line-height: 1.35; }
.yf-doc-card small { display: block; font-size: .6875rem; color: var(--yf-gray-600); margin-top: 3px; }
.yf-doc-card.is-ok strong { color: #059669; }
.yf-doc-card.is-warn strong { color: #D97706; }
.yf-doc-card.is-expired strong { color: #DC2626; }
.yf-doc-card.is-empty strong { color: var(--yf-gray-400); }
.yf-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.yf-kpi {
    text-align: center;
    padding: 12px 6px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
}
.yf-kpi strong { display: block; font-size: 1.25rem; font-weight: 800; }
.yf-kpi span {
    display: block;
    margin-top: 4px;
    font-size: .625rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--yf-gray-600);
}
.yf-kpi.is-ok strong { color: #059669; }
.yf-kpi.is-warn strong { color: #D97706; }
.yf-kpi.is-expired strong { color: #DC2626; }
.yf-kpi.is-empty strong { color: var(--yf-gray-400); }
.yf-card {
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: var(--yf-shadow-soft);
    margin-bottom: 14px;
}
.yf-card-title {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
}
.yf-field { margin-bottom: 14px; }
.yf-field label {
    display: block;
    margin-bottom: 6px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--yf-gray-600);
}
.yf-field input,
.yf-field select,
.yf-field textarea {
    width: 100%;
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
    color: var(--yf-black);
    background: var(--yf-white);
}
.yf-field input:focus,
.yf-field select:focus {
    outline: none;
    border-color: var(--yf-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, .12);
}
.yf-form-section {
    margin: 18px 0 10px;
    font-size: .8125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--yf-gray-600);
}
.yf-form-section:first-child { margin-top: 0; }
.yf-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    font-weight: 600;
    margin: 8px 0 4px;
}
.yf-menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.yf-menu-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yf-shadow-soft);
}
.yf-menu-row:active { transform: scale(.99); }
.yf-menu-row--static {
    grid-template-columns: auto 1fr auto;
}
.yf-menu-icon {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    flex-shrink: 0;
}
.yf-menu-icon--car { background: #EFF6FF; color: #2563EB; }
.yf-menu-icon--doc { background: #F0FDF4; color: #059669; }
.yf-menu-icon--settings { background: #F5F3FF; color: #7C3AED; }
.yf-menu-icon--list { background: var(--yf-orange-light); color: var(--yf-orange); }
.yf-menu-label { font-size: .9375rem; font-weight: 700; }
.yf-menu-value { font-size: .8125rem; color: var(--yf-gray-600); font-weight: 600; }
.yf-menu-chevron { display: flex; color: var(--yf-orange); opacity: .85; }
.yf-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 800;
    white-space: nowrap;
}
.yf-pill--done { background: #D1FAE5; color: #065F46; }
.yf-pill--pending { background: #FEF3C7; color: #92400E; }
.yf-pill--active { background: var(--yf-orange-light); color: var(--yf-orange-dark); }
.yf-request-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yf-shadow-soft);
}
.yf-request-row--rich {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}
.yf-request-icon {
    display: flex;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}
.yf-request-icon--towing { background: #FFF4EB; color: #FF6B00; }
.yf-request-icon--battery { background: #ECFDF5; color: #059669; }
.yf-request-icon--tire { background: #EFF6FF; color: #2563EB; }
.yf-request-icon--fuel { background: #FEF3C7; color: #D97706; }
.yf-request-icon--default { background: var(--yf-orange-light); color: var(--yf-orange); }
.yf-request-row-body { min-width: 0; }
.yf-request-row + .yf-request-row { margin-top: 10px; }
.yf-request-row strong { display: block; font-size: .875rem; }
.yf-request-row span { display: block; font-size: .75rem; color: var(--yf-gray-600); margin-top: 2px; }
.yf-info-box {
    margin: 14px 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--yf-orange-light);
    color: var(--yf-gray-600);
    font-size: .8125rem;
    line-height: 1.45;
}
.yf-footnote {
    margin: 12px 0 0;
    font-size: .75rem;
    color: var(--yf-gray-400);
    line-height: 1.45;
}
.yf-sticky-action {
    position: sticky;
    bottom: calc(var(--yf-tab-h) + var(--safe-bottom) + 8px);
    padding-top: 8px;
}
.yf-action-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
.yf-vehicle-hero {
    text-align: center;
    padding: 22px 16px;
    margin-bottom: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 16px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-payment-card {
    display: block;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
}
.yf-payment-card-inner {
    padding: 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    box-shadow: var(--yf-shadow-soft);
}
.yf-payment-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.yf-payment-top strong { display: block; font-size: .9375rem; }
.yf-payment-top small { display: block; margin-top: 4px; font-size: .75rem; color: var(--yf-gray-600); }
.yf-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 800;
}
.yf-badge--done { background: #D1FAE5; color: #065F46; }
.yf-badge--pending { background: #FEF3C7; color: #92400E; }
.yf-more-link {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-btn-sm {
    min-height: 36px;
    padding: 0 12px;
    font-size: .8125rem;
}

/* Push bildirim banner */
.yf-install-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 12px 10px;
    background: linear-gradient(135deg, #FF6B00 0%, #E85D00 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 0, .35);
    transform: translateY(-110%);
    transition: transform 0.32s ease;
    touch-action: pan-y;
}
.yf-install-banner.is-visible {
    transform: translateY(0);
}
.yf-install-banner.is-hiding {
    transform: translateY(-110%);
}
.yf-install-banner[hidden] { display: none !important; }
.yf-install-banner-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #fff;
    object-fit: cover;
}
.yf-install-banner-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.yf-install-banner-title {
    font-size: .8125rem;
    font-weight: 800;
    line-height: 1.2;
}
.yf-install-banner-text {
    font-size: .6875rem;
    line-height: 1.3;
    opacity: .95;
}
.yf-install-banner-btn {
    border: 0;
    background: #fff;
    color: var(--yf-orange, #FF6B00);
    font-weight: 800;
    font-size: .75rem;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
}
.yf-install-banner-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
    opacity: .85;
    flex-shrink: 0;
}
.yf-app:has(#yf-install-banner.is-visible) .yf-app-main--home {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
}
.yf-app:has(#yf-install-banner.is-visible) .yf-app-bar {
    top: calc(56px + env(safe-area-inset-top, 0px));
}

.yf-push-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--yf-black);
    color: var(--yf-white);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.yf-push-banner[hidden] { display: none !important; }
.yf-push-banner-text {
    flex: 1;
    font-size: .8125rem;
    line-height: 1.35;
}
.yf-push-banner-btn {
    border: 0;
    background: var(--yf-orange);
    color: #fff;
    font-weight: 800;
    font-size: .8125rem;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}
.yf-push-banner-close {
    border: 0;
    background: transparent;
    color: #fff;
    opacity: .7;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.yf-native-perms {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, .55);
}
.yf-native-perms[hidden] { display: none !important; }
.yf-native-perms-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 24px 20px 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
}
.yf-native-perms-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}
.yf-native-perms-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yf-black, #111);
}
.yf-native-perms-text {
    margin: 0 0 16px;
    font-size: .9375rem;
    line-height: 1.45;
    color: #444;
}
.yf-native-perms-status {
    margin: 0 0 14px;
    font-size: .8125rem;
    color: #666;
}
.yf-native-perms-status.is-error { color: #c0392b; }
.yf-native-perms-later {
    display: block;
    width: 100%;
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: #666;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px;
}

/* Belge sayfaları */
.yf-belge-head { text-align: center; margin-bottom: 16px; }
.yf-belge-icon {
    width: 56px; height: 56px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--yf-orange-light); border-radius: 14px; color: var(--yf-orange);
}
.yf-belge-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 6px; }
.yf-belge-lead { color: var(--yf-gray-400); font-size: .875rem; margin: 0; }
.yf-belge-status { margin-bottom: 14px; }
.yf-belge-status strong { display: block; font-size: 1rem; }

/* Değerlendirme */
.yf-rating { display: flex; justify-content: center; gap: 8px; margin: 8px 0 20px; }
.yf-rating-star {
    border: 0; background: transparent; font-size: 2rem; line-height: 1;
    color: #CBD5E1; cursor: pointer; padding: 0;
}
.yf-rating-star.is-active { color: var(--yf-orange); }

/* Makbuz */
.yf-receipt-head { text-align: center; margin-bottom: 14px; }
.yf-receipt-brand { display: block; color: var(--yf-orange); font-weight: 800; font-size: .875rem; }
.yf-receipt-row {
    display: flex; justify-content: space-between; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid var(--yf-gray-100);
    font-size: .875rem;
}
.yf-receipt-row:last-child { border-bottom: 0; }
.yf-receipt-row span { color: var(--yf-gray-400); }
.yf-receipt-row strong { text-align: right; max-width: 60%; }
.yf-receipt-total strong { color: var(--yf-orange); font-size: 1.125rem; }
.yf-receipt-stars { color: var(--yf-orange); }
.yf-payment-amount { font-weight: 800; color: var(--yf-black); }
.yf-emergency-item strong { display: block; }

@media print {
    .yf-app-bar, .yf-bottom-nav, .yf-push-banner, .yf-receipt-actions { display: none !important; }
}

/* Platform modülleri */
.yf-section--platform { margin-bottom: 4px; }
.yf-section-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}
.yf-section-head-row .yf-section-title { margin: 0; }
.yf-section-link {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
    white-space: nowrap;
}
.yf-platform-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.yf-platform-scroll::-webkit-scrollbar { display: none; }
.yf-platform-chip {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 88px;
    max-width: 100px;
    padding: 12px 10px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.yf-platform-chip--muted { opacity: .72; }
.yf-platform-chip-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yf-orange-light);
    border-radius: 12px;
    color: var(--yf-orange);
}
.yf-platform-chip-label {
    font-size: .6875rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    color: var(--yf-black);
}
.yf-platform-chip-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: .5625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 4px;
    background: var(--yf-black);
    color: #fff;
}
.yf-platform-grid { display: flex; flex-direction: column; gap: 10px; }
.yf-platform-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.yf-platform-card--static { pointer-events: none; }
.yf-platform-card--muted { opacity: .7; }
.yf-platform-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yf-orange-light);
    border-radius: 12px;
    color: var(--yf-orange);
}
.yf-platform-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.yf-platform-card-text strong { font-size: .9375rem; }
.yf-platform-card-text span {
    font-size: .75rem;
    color: var(--yf-gray-600);
    line-height: 1.35;
}
.yf-platform-badge {
    font-size: .625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--yf-black);
    color: #fff;
    flex-shrink: 0;
}
.yf-platform-badge--inline { display: inline-block; margin-top: 12px; }
.yf-platform-phase {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.yf-platform-phase-badge {
    font-size: .6875rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--yf-orange);
    color: #fff;
}
.yf-platform-phase-text { font-size: .8125rem; color: var(--yf-gray-600); }
.yf-yolmix-hero {
    margin: 0 0 20px;
    padding: 20px 16px 4px;
}
.yf-yolmix-kicker {
    display: block;
    font-size: .6875rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--yf-orange);
    margin-bottom: 4px;
}
.yf-yolmix-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--yf-black);
}
.yf-yolmix-tagline {
    margin: 8px 0 0;
    font-size: .9375rem;
    line-height: 1.45;
    color: var(--yf-gray-600);
}
.yf-platform-home-tag {
    margin: 2px 0 0;
    font-size: .75rem;
    color: var(--yf-gray-600);
    font-weight: 500;
}
.yf-freight-roles {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.yf-freight-role-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--yf-gray-200);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.yf-freight-role-card strong { font-size: 1.0625rem; }
.yf-freight-role-card span { font-size: .875rem; color: var(--yf-gray-600); line-height: 1.4; }
.yf-freight-role-example {
    font-size: .8125rem;
    font-style: normal;
    color: var(--yf-orange);
    font-weight: 600;
    margin-top: 4px;
}
.yf-freight-role-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.yf-freight-role-icon--send { background: #fff3eb; color: var(--yf-orange); }
.yf-freight-role-icon--carry { background: #eef6ff; color: #2563eb; }
.yf-freight-role-card--carrier { border-color: #dbeafe; }
.yf-freight-rules { margin-top: 8px; }
.yf-freight-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: .875rem;
    color: var(--yf-gray-700);
    line-height: 1.55;
}
.yf-freight-rule-list li { margin-bottom: 6px; }
.yf-freight-rule-list a { color: var(--yf-orange); font-weight: 600; }
.yf-field-hint {
    margin: -6px 0 12px;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-freight-card--road .yf-freight-card-price { color: #1D4ED8; font-weight: 700; }
.yf-platform-actions { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.yf-coming { text-align: center; padding: 32px 16px; }
.yf-coming-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yf-orange-light);
    border-radius: 16px;
    color: var(--yf-orange);
}
.yf-coming-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 8px; }
.yf-coming-sub { color: var(--yf-gray-600); margin: 0 0 8px; line-height: 1.45; }
.yf-coming-meta { font-size: .75rem; color: var(--yf-gray-400); margin: 0 0 20px; }
.yf-coming-btn { display: inline-flex; width: auto; padding: 14px 24px; }
.yf-freight-form { margin-bottom: 20px; }
.yf-freight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.yf-freight-field { min-width: 0; }
.yf-freight-submit { width: 100%; margin-top: 16px; }
.yf-input--area { min-height: 72px; resize: vertical; }
.yf-freight-list { display: flex; flex-direction: column; gap: 10px; }
.yf-freight-card {
    padding: 14px 16px;
    background: var(--yf-white);
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
}
.yf-freight-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}
.yf-freight-card-head strong { font-size: .9375rem; }
.yf-freight-card-kind {
    font-size: .6875rem;
    font-weight: 700;
    color: var(--yf-orange);
    white-space: nowrap;
}
.yf-freight-card-meta { font-size: .75rem; color: var(--yf-gray-600); margin: 0 0 6px; }
.yf-freight-card-desc { font-size: .8125rem; margin: 0 0 8px; line-height: 1.4; }
.yf-freight-card-phone {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-flash { padding: 12px 14px; border-radius: 12px; font-size: .875rem; margin-bottom: 14px; }
.yf-flash--error { background: #FEE2E2; color: #991B1B; }
.yf-flash--ok { background: #DCFCE7; color: #166534; }
.yf-section--tight { margin-top: 8px; }
.yf-active-btn--light {
    background: var(--yf-white) !important;
    color: var(--yf-black) !important;
    border: 1px solid var(--yf-gray-100) !important;
}

/* Yol kartı sistemi */
.yf-freight-card {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    background: var(--yf-white);
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--yf-shadow-soft);
}
.yf-freight-card:active { transform: scale(.99); }
.yf-freight-card--road { border-color: #BFDBFE; }
.yf-freight-card--full { opacity: .72; }
.yf-freight-card-route strong { display: block; font-size: .9375rem; }
.yf-freight-card-publisher { font-size: .6875rem; color: var(--yf-gray-600); }
.yf-freight-card-rating { margin: 6px 0 0; font-size: .75rem; color: var(--yf-gray-600); }
.yf-freight-card-more { display: inline-block; margin-top: 8px; font-size: .75rem; font-weight: 800; color: #2563EB; }
.yf-freight-card-capacity { margin-top: 8px; }
.yf-freight-card-capacity > span { display: block; font-size: .75rem; font-weight: 700; margin-bottom: 6px; }
.yf-road-capacity-bar {
    height: 8px;
    border-radius: 999px;
    background: #E5E7EB;
    overflow: hidden;
}
.yf-road-capacity-bar--sm { height: 6px; }
.yf-road-capacity-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    border-radius: 999px;
}
.yf-road-toolbar { margin-bottom: 16px; }
.yf-road-detail {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(165deg, #fff 0%, #F8FAFF 100%);
    border: 1px solid #DBEAFE;
    margin-bottom: 16px;
}
.yf-road-detail-route { margin: 4px 0; font-size: 1.25rem; }
.yf-road-detail-meta, .yf-road-detail-publisher { margin: 0; font-size: .8125rem; color: var(--yf-gray-600); }
.yf-road-detail-status {
    display: inline-block;
    font-size: .6875rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #2563EB;
}
.yf-road-capacity { margin-top: 14px; }
.yf-road-capacity-label {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: .8125rem;
    margin-bottom: 8px;
}
.yf-road-detail-price { margin: 10px 0 0; font-size: 1.125rem; }
.yf-road-detail-price strong { color: #1D4ED8; }
.yf-road-offer-form, .yf-road-threads { margin-top: 18px; }
.yf-road-thread-tabs { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 12px; }
.yf-road-thread-tab {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--yf-gray-100);
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    background: #fff;
}
.yf-road-thread-tab.is-active { border-color: #2563EB; color: #2563EB; }
.yf-road-chat {
    border: 1px solid var(--yf-gray-100);
    border-radius: 14px;
    padding: 14px;
    background: #fff;
}
.yf-road-chat-messages { display: flex; flex-direction: column; gap: 10px; margin: 12px 0; max-height: 360px; overflow-y: auto; }
.yf-road-chat-row { display: flex; }
.yf-road-chat-row--mine { justify-content: flex-end; }
.yf-road-chat-bubble {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 12px;
    background: #F3F4F6;
}
.yf-road-chat-row--mine .yf-road-chat-bubble { background: #EFF6FF; }
.yf-road-chat-author { display: block; font-size: .6875rem; font-weight: 800; margin-bottom: 4px; }
.yf-road-chat-image { display: block; max-width: 100%; border-radius: 10px; margin-top: 8px; }
.yf-road-chat-actions, .yf-road-agree-form { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.yf-active-btn--ghost {
    background: #fff !important;
    color: var(--yf-black) !important;
    border: 1px solid var(--yf-gray-100) !important;
}
.yf-check-row { display: flex; gap: 10px; align-items: flex-start; margin: 10px 0; font-size: .8125rem; }
.yf-home-freight-chip-rating { margin: 4px 0 0; font-size: .6875rem; color: var(--yf-gray-600); }
.yf-road-search {
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(165deg, #fff 0%, #F8FAFF 100%);
    border: 1px solid #DBEAFE;
    margin-bottom: 16px;
}
.yf-road-search .yf-section-title { margin: 0 0 12px; font-size: 1rem; }
.yf-road-search-btn { width: 100%; margin-top: 4px; }
.yf-road-toolbar-split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
.yf-road-toolbar-hint { margin: 0; flex: 1 1 200px; }
.yf-home-freight-empty-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.yf-home-freight-empty-btn--light { background: #fff !important; color: var(--yf-black) !important; border: 1px solid var(--yf-gray-100) !important; }
.yf-road-remove-form { margin-top: 16px; }
.yf-road-inbox-alert {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
}
.yf-road-inbox-alert strong { display: block; font-size: .9375rem; }
.yf-road-inbox-alert span { display: block; margin-top: 4px; font-size: .8125rem; color: var(--yf-gray-600); }
.yf-road-inbox-section { margin-top: 24px; }
.yf-road-inbox-badge {
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: #2563EB;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}
.yf-road-interest-list { display: flex; flex-direction: column; gap: 12px; }
.yf-road-interest-item {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--yf-gray-100);
    background: #fff;
}
.yf-road-interest-item-head { display: flex; justify-content: space-between; gap: 8px; align-items: flex-start; }
.yf-road-interest-status { font-size: .75rem; color: var(--yf-gray-600); }
.yf-road-interest-summary { margin: 6px 0 0; font-size: .8125rem; color: var(--yf-gray-600); }
.yf-road-interest-msg { margin: 8px 0 0; font-size: .875rem; line-height: 1.45; }
.yf-road-interest-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; align-items: center; }
.yf-road-interest-actions form { margin: 0; }
.yf-road-cancel-interest { margin-top: 12px; }
.yf-road-owner-hint { margin-top: 16px; }
.yf-road-toolbar-split { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* —— Yol paylaşımı hub & sohbet v2 —— */
.yf-road-hub-nav {
    display: flex;
    gap: 6px;
    padding: 4px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--yf-gray-50, #F9FAFB);
    border: 1px solid var(--yf-gray-100);
}
.yf-road-hub-nav-item {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 9px;
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--yf-gray-600);
}
.yf-road-hub-nav-item.is-active {
    background: #fff;
    color: #2563EB;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.yf-road-hub-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.yf-road-hub-tile {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    min-height: 100px;
}
.yf-road-hub-tile strong { font-size: .9375rem; }
.yf-road-hub-tile span:last-child { font-size: .6875rem; color: var(--yf-gray-600); line-height: 1.35; }
.yf-road-hub-tile-icon { font-size: 1.5rem; line-height: 1; }
.yf-road-hub-tile--carry {
    background: linear-gradient(160deg, #EFF6FF 0%, #fff 100%);
    border-color: #BFDBFE;
}
.yf-road-hub-tile--send {
    background: linear-gradient(160deg, #EFF6FF 0%, #fff 100%);
    border-color: #BFDBFE;
}
.yf-road-search-title, .yf-road-results-title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
}
.yf-road-empty {
    margin: 16px 0;
    padding: 20px 16px;
    text-align: center;
    font-size: .875rem;
    color: var(--yf-gray-600);
    border-radius: 12px;
    background: var(--yf-gray-50, #F9FAFB);
}
.yf-road-step-hint {
    margin: 0 0 14px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-road-share-pick {
    margin: 14px 0 0;
    padding: 0;
    border: 0;
}
.yf-road-share-toggles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.yf-road-share-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #BFDBFE;
    background: #F8FAFC;
    font-size: .8125rem;
    cursor: pointer;
}
.yf-road-share-toggle input { accent-color: #2563EB; }
.yf-road-share-block {
    margin-top: 12px;
}
.yf-road-share-block[hidden] { display: none !important; }
.yf-road-need-filter {
    margin: 12px 0 0;
    padding: 0;
    border: 0;
}
.yf-road-need-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.yf-road-need-chip {
    display: inline-flex;
    cursor: pointer;
}
.yf-road-need-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.yf-road-need-chip span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--yf-gray-200, #E5E7EB);
    background: #fff;
    font-size: .75rem;
    font-weight: 600;
    color: var(--yf-gray-700);
}
.yf-road-need-chip.is-active span,
.yf-road-need-chip:has(input:checked) span {
    border-color: #2563EB;
    background: #EFF6FF;
    color: #1D4ED8;
}
.yf-road-offer-hint {
    margin: 0 0 10px;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-road-optional {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed var(--yf-gray-100);
    background: #FAFAFA;
}
.yf-road-optional summary {
    cursor: pointer;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
}
.yf-road-inbox-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.yf-road-inbox-tab {
    flex: 1;
    text-align: center;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: .8125rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--yf-gray-600);
    border: 1px solid var(--yf-gray-100);
    background: #fff;
}
.yf-road-inbox-tab.is-active {
    border-color: #2563EB;
    color: #2563EB;
    background: #EFF6FF;
}
.yf-road-inbox-list { display: flex; flex-direction: column; gap: 8px; }
.yf-road-inbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid var(--yf-gray-100);
    background: #fff;
    text-decoration: none;
    color: inherit;
}
.yf-road-inbox-row:active { background: #F9FAFB; }
.yf-road-inbox-avatar {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #F3F4F6;
    font-size: 1.125rem;
}
.yf-road-inbox-body { flex: 1; min-width: 0; }
.yf-road-inbox-row-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.yf-road-inbox-row-head strong {
    font-size: .9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yf-road-inbox-preview {
    display: block;
    margin-top: 2px;
    font-size: .75rem;
    color: var(--yf-gray-600);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yf-road-inbox-status { font-size: .6875rem; color: var(--yf-gray-600); white-space: nowrap; }
.yf-road-inbox-chevron { color: var(--yf-gray-400); font-size: 1.25rem; }
.yf-freight-card-price-badge {
    flex: 0 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
    color: #1D4ED8;
    background: #EFF6FF;
}
.yf-freight-card--road .yf-freight-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.yf-freight-card-cta {
    display: inline-block;
    margin-top: 10px;
    font-size: .8125rem;
    font-weight: 800;
    color: #2563EB;
}
.yf-road-detail-header { margin-bottom: 14px; }
.yf-road-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}
.yf-road-chip {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 700;
    background: #F3F4F6;
    color: var(--yf-gray-600);
}
.yf-road-chip--price {
    background: #EFF6FF;
    color: #1D4ED8;
}
.yf-road-inbox-alert--link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 14px;
}
.yf-road-detail-fold {
    margin-top: 16px;
    border-radius: 12px;
    border: 1px solid var(--yf-gray-100);
    background: #FAFAFA;
}
.yf-road-detail-fold summary {
    padding: 12px 14px;
    cursor: pointer;
    font-size: .8125rem;
    font-weight: 700;
}
.yf-road-detail-fold .yf-road-detail {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}
.yf-road-chat--v2 {
    border: 0;
    padding: 0;
    background: transparent;
}
.yf-road-chat--v2 .yf-road-chat-messages {
    max-height: min(52vh, 420px);
    padding: 8px 4px;
    margin: 8px 0;
    scroll-behavior: smooth;
}
.yf-road-chat-row--mine .yf-road-chat-bubble {
    background: #EFF6FF;
    border-bottom-right-radius: 4px;
}
.yf-road-chat-row:not(.yf-road-chat-row--mine) .yf-road-chat-bubble {
    background: #fff;
    border: 1px solid var(--yf-gray-100);
    border-bottom-left-radius: 4px;
}
.yf-road-compose {
    position: sticky;
    bottom: 0;
    padding: 8px 0 4px;
    background: linear-gradient(180deg, transparent 0%, var(--yf-shell-bg, #fff) 24%);
}
.yf-road-compose-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 24px;
    border: 1px solid var(--yf-gray-100);
    background: #fff;
}
.yf-road-compose-input {
    flex: 1;
    border: 0;
    resize: none;
    padding: 8px 4px;
    font: inherit;
    font-size: .9375rem;
    background: transparent;
    min-height: 36px;
    max-height: 120px;
}
.yf-road-compose-input:focus { outline: none; }
.yf-road-compose-input--standalone {
    width: 100%;
    border: 1px solid var(--yf-gray-100);
    border-radius: 12px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fff;
}
.yf-road-compose-photo,
.yf-road-compose-send {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #F3F4F6;
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;
}
.yf-road-compose-send {
    background: #2563EB;
    color: #fff;
}
.yf-road-compose-photo-field { margin-top: 8px; }
.yf-road-quick-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}
.yf-road-quick-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 0;
    font-size: .8125rem;
    font-weight: 800;
    cursor: pointer;
}
.yf-road-quick-btn--yes { background: #DCF8C6; color: #166534; }
.yf-road-quick-btn--no { background: #FEE2E2; color: #991B1B; }
.yf-road-agree-panel {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #BFDBFE;
    background: #EFF6FF;
}
.yf-road-agree-panel summary {
    cursor: pointer;
    font-weight: 800;
    font-size: .8125rem;
}
.yf-road-agree-btn { width: 100%; margin-top: 8px; }
.yf-road-text-btn {
    border: 0;
    background: none;
    padding: 8px 0;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-gray-600);
    cursor: pointer;
    text-decoration: underline;
}
.yf-road-text-btn--danger { color: #B91C1C; }
.yf-road-offer-form--quick .yf-road-offer-title {
    margin: 0 0 12px;
    font-size: 1.0625rem;
}
.yf-road-offer-btn { width: 100%; }

/* Ortak yolculuk — paylaş sayfası (kompakt, mobil) */
.yf-app-main--home:has(.yf-road-share-page) {
    padding: calc(var(--safe-top) + 6px) 0 calc(var(--yf-tab-h) + var(--safe-bottom) + 12px);
    background: var(--yf-white);
}
.yf-road-share-page {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 16px;
}
.yf-road-module-head {
    margin: 0 0 12px;
    padding: 0;
    text-align: center;
}
.yf-road-module-brandwrap {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1px;
}
.yf-road-module-brandwrap .yf-assist-hub-brandmark {
    display: inline-block;
}
.yf-road-module-brandwrap .yf-assist-hub-name {
    font-size: 1.3125rem;
}
.yf-road-module-dotcom {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: .9375rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--yf-black);
    line-height: 1;
    padding-bottom: 3px;
}
.yf-road-module-hero {
    margin: 10px 0 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--yf-black);
    line-height: 1.2;
}
.yf-road-module-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 6px 0 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: .75rem;
    line-height: 1.25;
}
.yf-road-module-slogan-soft {
    color: var(--yf-gray-600);
    font-weight: 600;
}
.yf-road-module-slogan-strong {
    color: #2563EB;
    font-weight: 800;
}
.yf-road-create-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}
.yf-road-create-form .yf-freight-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.yf-road-create-form .yf-label {
    display: block;
    margin-bottom: 3px;
    font-size: .6875rem;
    font-weight: 700;
}
.yf-road-create-form .yf-input,
.yf-road-create-form select.yf-input,
.yf-road-create-form textarea.yf-input {
    width: 100%;
    padding: 8px 10px;
    font-size: .875rem;
    border-radius: 10px;
    min-height: 0;
}
.yf-road-create-form .yf-input--area {
    min-height: 52px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.yf-road-create-form .yf-road-share-pick {
    margin: 0;
    padding: 0;
    border: 0;
}
.yf-road-create-form .yf-road-share-pick .yf-label {
    margin-bottom: 4px;
}
.yf-road-create-form .yf-road-share-toggles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 4px;
}
.yf-road-create-form .yf-road-share-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 6px;
    border-radius: 10px;
    border: 1px solid #BFDBFE;
    background: #F8FAFC;
    font-size: .75rem;
    line-height: 1.25;
    cursor: pointer;
    text-align: center;
}
.yf-road-create-form .yf-road-share-toggle input {
    width: 14px;
    height: 14px;
    margin: 0;
    flex-shrink: 0;
}
.yf-road-create-form .yf-road-share-block {
    margin-top: 2px;
}
.yf-road-create-form .yf-road-optional {
    margin-top: 0;
    padding: 8px 0 0;
    border-top: 1px solid var(--yf-gray-100);
}
.yf-road-create-form .yf-road-optional summary {
    margin-bottom: 6px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--yf-gray-500);
}
.yf-road-create-form .yf-freight-submit {
    margin-top: 4px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: .875rem;
}
.yf-road-share-page .yf-flash {
    padding: 8px 10px;
    margin-bottom: 8px;
    font-size: .8125rem;
}

/* Yolculuk arama — alarm ve kart sürücü satırı */
.yf-road-optional-label { font-weight: 400; color: var(--yf-gray-500); font-size: .75rem; }
.yf-road-alert-box {
    margin-top: 12px;
    padding: 16px;
    border-radius: 14px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
}
.yf-road-alert-hint { margin: 0 0 12px; font-size: .8125rem; color: var(--yf-gray-600); }
.yf-road-alert-form { margin: 0; }
.yf-road-alert-remove { margin: 0; flex-shrink: 0; }
.yf-road-inbox-row--static { cursor: default; }
.yf-road-inbox-row--static:active { background: #fff; }
.yf-freight-card-driver {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 0 0 6px;
    font-size: .75rem;
    color: var(--yf-gray-600);
}
.yf-freight-card-driver-name { font-weight: 700; color: var(--yf-gray-800); }
.yf-freight-card-driver-rating { white-space: nowrap; }

/* Bildirim çanı */
.yf-notif { position: relative; flex-shrink: 0; }
.yf-notif-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--yf-black);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    border: 1px solid var(--yf-gray-100);
}
.yf-notif--compact .yf-notif-btn {
    width: 40px;
    height: 40px;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}
.yf-notif-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #EF4444;
    color: #fff;
    font-size: .625rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    border: 2px solid #fff;
}
.yf-notif-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(340px, calc(100vw - 24px));
    max-height: min(70vh, 480px);
    display: none;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16), 0 4px 12px rgba(15, 23, 42, 0.06);
    z-index: 1200;
    overflow: hidden;
}
.yf-notif-panel.is-open,
.yf-notif-panel:not([hidden]) {
    display: flex;
}
.yf-notif-panel[hidden] {
    display: none !important;
}
.yf-notif--compact .yf-notif-panel { right: -4px; }
.yf-notif-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--yf-gray-100);
    background: linear-gradient(180deg, #FFFBF7 0%, #fff 100%);
}
.yf-notif-panel-head-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.yf-notif-panel-head strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--yf-black);
    letter-spacing: -.02em;
}
.yf-notif-panel-sub {
    font-size: .75rem;
    color: var(--yf-gray-600);
    font-weight: 500;
}
.yf-notif-panel-foot {
    padding: 10px 16px 14px;
    border-top: 1px solid var(--yf-gray-100);
    background: #FAFAFA;
}
.yf-notif-foot-link {
    display: block;
    text-align: center;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--yf-orange);
    text-decoration: none;
}
.yf-notif-foot-link:active { opacity: .85; }
.yf-notif-mark-all {
    border: 0;
    background: none;
    color: #2563EB;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 0;
}
.yf-notif-list {
    overflow-y: auto;
    padding: 6px;
    -webkit-overflow-scrolling: touch;
}
.yf-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}
.yf-notif-item-chevron {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: .875rem;
    color: var(--yf-gray-400);
}
.yf-notif-empty-state {
    padding: 28px 20px 24px;
    text-align: center;
}
.yf-notif-empty-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF4EB;
    color: var(--yf-orange);
    font-size: 1.375rem;
    margin-bottom: 12px;
}
.yf-notif-empty-title {
    margin: 0 0 6px;
    font-size: .9375rem;
    font-weight: 700;
    color: var(--yf-black);
}
.yf-notif-empty-text {
    margin: 0;
    font-size: .8125rem;
    line-height: 1.45;
    color: var(--yf-gray-600);
}
body.yf-notif-open {
    overflow: hidden;
    touch-action: none;
}
.yf-notif-item:hover,
.yf-notif-item:active { background: #F9FAFB; }
.yf-notif-item--unread { background: #FFFBEB; }
.yf-notif-item--unread:hover { background: #FEF3C7; }
.yf-notif-item-dot {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 6px;
    background: transparent;
}
.yf-notif-item--unread .yf-notif-item-dot { background: var(--yf-orange); }
.yf-notif-item-body { flex: 1; min-width: 0; }
.yf-notif-item-title {
    display: block;
    font-size: .8125rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.yf-notif-item-msg {
    display: block;
    font-size: .75rem;
    color: var(--yf-gray-600);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.yf-notif-item-time {
    display: block;
    margin-top: 4px;
    font-size: .6875rem;
    color: var(--yf-gray-400);
}
.yf-notif-empty,
.yf-notif-loading {
    margin: 0;
    padding: 24px 16px;
    text-align: center;
    font-size: .8125rem;
    color: var(--yf-gray-600);
}
.yf-notif-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.32);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1290;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.yf-notif-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
.yf-notif-backdrop[hidden] {
    display: block !important;
    opacity: 0;
    pointer-events: none;
}
.yf-notif-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #F3F4F6;
    color: var(--yf-gray-600);
    font-size: .875rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}
.yf-notif-panel-head-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.yf-app-bar .yf-notif { margin-right: -4px; }
