/* =========================================================
   YatKalk Chat CSS — CLEAN REBUILD V2
   External file for:
   https://api.yatkalk.com/images/hosts/cnd/chat.css

   Struktur:
   01. Root / Reset / Tokens
   02. Global Safety
   03. Launcher / Nudge
   04. Panel / Header / Settings / Status
   05. Main Layout / Log / Compose
   06. Base Messages / Pills / Typing
   07. Home / Menu Cards / Deal Card
   08. Generic Content Cards / Swipe
   09. Search Flow
   10. Guest Booking Cards
   11. Inbox
   12. Conversation
   13. Smart Trip Card
   14. Review Popup
   15. RTL
   16. Mobile / Tablet / iOS
   ========================================================= */


/* =========================================================
   01. ROOT / RESET / TOKENS
   ========================================================= */
:root{
    --yk-teal:#00a6a6;
    --yk-teal-2:#008f8f;
    --yk-orange:#ff6b35;
    --yk-ink:#0f172a;
    --yk-ink-soft:#334155;
    --yk-muted:#64748b;
    --yk-line:rgba(15,23,42,.08);

    --yk-white:#ffffff;
    --yk-glass:rgba(255,255,255,.72);
    --yk-glass-strong:rgba(255,255,255,.84);
    --yk-panel-bg:rgba(255,255,255,.42);

    --yk-shadow-lg:0 18px 60px rgba(0,0,0,.22);
    --yk-shadow-md:0 12px 30px rgba(15,23,42,.08);
    --yk-shadow-sm:0 6px 18px rgba(15,23,42,.06);

    --yk-radius-panel:18px;
    --yk-radius-card:24px;
    --yk-radius-md:18px;
    --yk-radius-sm:14px;

    --yk-font:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
    --yk-font-scale:1;

    --yk-msg-ai-bg:rgba(90,220,220,.24);
    --yk-msg-ai-border:rgba(0,166,166,.20);
    --yk-msg-ai-text:#0f172a;

    --yk-msg-user-bg:linear-gradient(135deg,#00a6a6 0%,#18bcbc 100%);
    --yk-msg-user-text:#ffffff;

    --yk-safe-bottom:env(safe-area-inset-bottom, 0px);

    --yk-chat-host-bg:#DFECEB;
    --yk-chat-host-border:rgba(0,166,166,.08);
    --yk-chat-host-text:#0f172a;

    --yk-chat-guest-bg:#AEE9D1;
    --yk-chat-guest-border:rgba(0,166,166,.10);
    --yk-chat-guest-text:#0f172a;
}

#yk-chat-root,
#yk-chat-root *{
    box-sizing:border-box !important;
    font-family:var(--yk-font) !important;
}

#yk-chat-root{
    color:var(--yk-ink);
    font-size:14px;
    line-height:1.4;
}

button,
input,
textarea,
select{
    font:inherit;
}


/* =========================================================
   02. GLOBAL SAFETY
   ========================================================= */
html,
body{
    margin:0;
    padding:0;
    width:100%;
    max-width:100%;
    overflow-x:hidden;
    -webkit-text-size-adjust:100%;
}

body{
    position:relative;
    overscroll-behavior-x:none;
}

@supports (overflow:clip){
    html,
    body{
        overflow-x:clip;
    }
}

img,
svg,
video,
canvas{
    max-width:100%;
    height:auto;
    display:block;
}

.w-page-wrapper,
.w-container,
.w-layout-blockcontainer{
    max-width:100%;
    overflow-x:clip;
}


/* =========================================================
   03. LAUNCHER / NUDGE
   ========================================================= */
.yk-host-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 20px;
    border:none;
    border-radius:16px;
    background:var(--yk-orange);
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 6px 14px rgba(255,107,53,.35);
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.yk-host-btn:hover{
    background:#ff5a1f;
    transform:translateY(-1px);
    box-shadow:0 8px 18px rgba(255,107,53,.45);
}

.yk-host-btn:active{
    transform:translateY(0);
    box-shadow:0 4px 10px rgba(255,107,53,.25);
}

.ykc-launch{
    position:fixed;
    right:14px;
    bottom:0px;
    z-index:999999;
    width:88px;
    height:88px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:transform .2s ease;
}

.ykc-launch:hover{
    transform:scale(1.08);
}

.ykc-launch img{
    width:82px;
    height:auto;
    filter:drop-shadow(0 6px 18px rgba(0,166,166,.35));
}

.ykc-nudge{
    position:fixed;
    right:86px;
    bottom:28px;
    z-index:999999;
    max-width:240px;
    padding:10px 12px;
    border-radius:16px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(0,0,0,.08);
    color:rgba(15,20,25,.85);
    font-size:14px;
    line-height:1.25;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    opacity:0;
    transform:translateY(8px);
    pointer-events:none;
    transition:opacity .25s ease,transform .25s ease;
}

.ykc-nudge.show{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
    cursor:pointer;
}

.ykc-nudge-tail{
    position:absolute;
    right:-6px;
    bottom:14px;
    width:12px;
    height:12px;
    background:rgba(255,255,255,.82);
    border-right:1px solid rgba(0,0,0,.08);
    border-bottom:1px solid rgba(0,0,0,.08);
    transform:rotate(-45deg);
}


/* =========================================================
   04. PANEL / HEADER / SETTINGS / STATUS
   ========================================================= */
.ykc-panel{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:999999;
    width:392px;
    height:640px;
    max-height:calc(100vh - 104px);
    display:none;
    flex-direction:column;
    overflow:hidden;
    border-radius:var(--yk-radius-panel);
    border:1px solid rgba(255,255,255,.35);
    background:var(--yk-panel-bg);
    box-shadow:var(--yk-shadow-lg);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    transform:translateZ(0);
}

.ykc-head{
    height:56px;
    min-height:56px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
    background:var(--yk-teal);
    color:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
    flex-shrink:0;
    cursor:grab;
    user-select:none;
}

.ykc-brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:900;
    letter-spacing:.2px;
}

.ykc-brand img{
    width:30px;
    height:30px;
    object-fit:contain;
    background:transparent !important;
    padding:0 !important;
    border-radius:0 !important;
}

.ykc-brand span{
    font-size:15px;
}

.ykc-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.ykc-iconbtn{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.18);
    cursor:pointer;
    transition:transform .18s ease,background .18s ease;
    -webkit-tap-highlight-color:transparent;
    user-select:none;
}

.ykc-iconbtn:hover{
    transform:scale(1.03);
    background:rgba(255,255,255,.24);
}

.ykc-iconbtn svg{
    width:18px;
    height:18px;
    fill:#fff;
    opacity:.95;
}

#yk-status-pill{
    position:absolute;
    top:72px;
    left:50%;
    transform:translateX(-50%) scale(.72);
    transform-origin:center center;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:36px;
    padding:0 14px;
    border-radius:999px;
    background:rgba(10,10,10,.24);
    border:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.96);
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
    backdrop-filter:blur(18px) saturate(160%);
    -webkit-backdrop-filter:blur(18px) saturate(160%);
    opacity:0;
    pointer-events:none;
    z-index:30;
    transition:transform .42s cubic-bezier(.22,1,.36,1),opacity .28s ease,background .25s ease;
}

#yk-status-pill.show{
    opacity:1;
    transform:translateX(-50%) scale(1);
}

#yk-status-pill.hide{
    opacity:0;
    transform:translateX(-50%) scale(.72);
}

#yk-status-text{
    line-height:1;
    display:block;
    text-align:center;
}

.ykc-statusbar{
    display:none;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-bottom:1px solid rgba(0,0,0,.06);
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    flex-shrink:0;
}

.ykc-statuschips{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    flex:1;
    min-width:0;
}

.ykc-chip{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(0,0,0,.10);
    font-size:12.5px;
    font-weight:800;
    color:rgba(15,20,25,.80);
    white-space:nowrap;
}

.ykc-chip b{
    font-weight:900;
    color:rgba(15,20,25,.92);
}

.ykc-chip button{
    border:0;
    background:transparent;
    cursor:pointer;
    font-weight:900;
    opacity:.65;
}

.ykc-settings{
    position:absolute;
    top:58px;
    right:12px;
    width:260px;
    display:none;
    z-index:40;
    padding:10px;
    border-radius:14px;
    background:rgba(255,255,255,.78);
    border:1px solid rgba(0,0,0,.10);
    box-shadow:0 14px 40px rgba(0,0,0,.14);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.ykc-settings.show{
    display:block;
}

.ykc-set-title{
    margin:2px 0 8px;
    font-size:13px;
    font-weight:900;
    color:rgba(15,20,25,.86);
}

.ykc-set-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:8px 0;
}

.ykc-set-label{
    font-size:12.5px;
    color:rgba(15,20,25,.72);
    font-weight:800;
}

.ykc-set-btns{
    display:flex;
    gap:8px;
}

.ykc-mini-btn{
    min-width:36px;
    height:30px;
    border-radius:10px;
    border:1px solid rgba(0,0,0,.10);
    background:rgba(255,255,255,.72);
    color:rgba(15,20,25,.86);
    cursor:pointer;
    font-weight:900;
}

.ykc-mini-btn:active{
    transform:scale(.98);
}

.ykc-theme-grid{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.ykc-theme{
    position:relative;
    width:46px;
    height:30px;
    border-radius:10px;
    border:1px solid rgba(0,0,0,.10);
    cursor:pointer;
    overflow:hidden;
}

.ykc-theme::after{
    content:"";
    position:absolute;
    inset:6px 8px;
    border-radius:10px;
    background:var(--demo);
    border:1px solid rgba(0,0,0,.10);
}

.ykc-theme.sel{
    outline:2px solid rgba(0,166,166,.55);
    outline-offset:2px;
}


/* =========================================================
   05. MAIN LAYOUT / LOG / COMPOSE
   ========================================================= */
.ykc-log{
    flex:1 1 auto;
    min-height:0;
    overflow-y:auto;
    overflow-x:hidden;
    padding:0 26px 20px;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior:contain;
}

.ykc-compose{
    position:relative;
    z-index:20;
    display:flex;
    align-items:center;
    gap:10px;

    height:70px;
    min-height:70px;
    max-height:70px;
    padding:10px 12px;

    flex-shrink:0;

    margin-top:0px;

    border-top:1px solid rgba(255,255,255,.12);

    background:linear-gradient(
        to top,
        rgba(255,255,255,.14),
        rgba(255,255,255,.04)
    );

    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);

    box-shadow:0 -8px 24px rgba(15,23,42,.04);

    opacity:1;
    pointer-events:auto;
    transform:none;
}

.ykc-bottomspacer{
    width:100%;
    height:8px;
}

.ykc-compose.ykc-compose--active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
}

.ykc-inp{
    flex:1;
    min-width:0;
    height:48px;

    border-radius:18px;

    border:1px solid rgba(0,166,166,.18); /* ← dünne türkise Linie */
    
    background:rgba(255,255,255,.14);

    padding:0 16px;
    font-size:15px;
    line-height:1.2;
    color:#0f172a;

    outline:none;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 2px 8px rgba(0,166,166,.06); /* ← ganz leichter türkiser Glow */

    transition:all .18s ease;
}

.ykc-inp::placeholder{
    color:#94a3b8;
}

.ykc-inp:focus{
    border-color:rgba(0,166,166,.30);
    background:rgba(255,255,255,.22);
    box-shadow:
        0 0 0 4px rgba(0,166,166,.08),
        0 8px 22px rgba(15,23,42,.05);
}

.ykc-send{
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--yk-send-border);
    border-radius:18px;
    cursor:pointer;
    color:var(--yk-send-text);
    font-size:18px;
    font-weight:900;

    background:var(--yk-send-bg);

    box-shadow:0 10px 22px rgba(0,166,166,.24);
    transition:transform .16s ease,box-shadow .16s ease,opacity .16s ease;
}

.ykc-send:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(0,166,166,.28);
}

.ykc-send:active{
    transform:translateY(0);
    box-shadow:0 8px 18px rgba(0,166,166,.22);
}

.ykc-send:disabled{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
    box-shadow:0 6px 14px rgba(0,166,166,.14);
}


/* =========================================================
   06. BASE MESSAGES / PILLS / TYPING
   ========================================================= */
.ykc-msg{
    max-width:78%;
    margin:10px 0;
    padding:12px 14px;
    border-radius:18px;
    font-size:calc(15px * var(--yk-font-scale));
    line-height:1.35;
    word-wrap:break-word;
}

.ykc-ai{
    background:var(--yk-msg-ai-bg) !important;
    border:1px solid var(--yk-msg-ai-border) !important;
    color:var(--yk-msg-ai-text) !important;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.ykc-user{
    margin-left:auto;
    background:var(--yk-msg-user-bg);
    border:1px solid var(--yk-msg-user-border);
    color:var(--yk-msg-user-text);
    text-align:left;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    border-bottom-right-radius:7px;
}

.ykc-row{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:10px 0 14px;
}

.ykc-pill{
    min-height:32px;
    padding:6px 12px;
    border-radius:999px;
    border:1.5px solid #bfe8e8;
    background:#ecf6f6;
    color:rgba(15,20,25,.82);
    font-size:14px;
    line-height:1;
    font-weight:600;
    white-space:nowrap;
    cursor:pointer;
    transition:all .15s ease;
}

.ykc-pill:hover{
    transform:translateY(-1px);
    background:#14a7a7;
    border-color:#14a7a7;
    color:#fff;
}

.ykc-pill.sel{
    background:#14a7a7 !important;
    border-color:#14a7a7 !important;
    color:#fff !important;
}

.ykc-pill-service{
    background:#ecf6f6 !important;
    color:rgba(15,20,25,.86) !important;
    font-weight:600 !important;
}

.ykc-typing{
    display:inline-flex;
    align-items:center;
    gap:4px;
}

.ykc-dot{
    width:6px;
    height:6px;
    border-radius:999px;
    background:rgba(15,20,25,.55);
    opacity:.35;
    animation:ykcDot 1.1s infinite ease-in-out;
}

.ykc-dot:nth-child(2){ animation-delay:.15s; }
.ykc-dot:nth-child(3){ animation-delay:.30s; }

@keyframes ykcDot{
    0%,80%,100%{
        transform:translateY(0);
        opacity:.35;
    }
    40%{
        transform:translateY(-3px);
        opacity:.85;
    }
}


/* =========================================================
   07. HOME / MENU CARDS / DEAL CARD
   ========================================================= */
.ykc-home-hero{
    margin:4px 0 14px;
    padding:2px 2px 4px;
}

.ykc-home-hero-title{
    margin-bottom:6px;
    font-size:20px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.02em;
    color:#111827;
}

.ykc-home-hero-sub{
    font-size:13px;
    line-height:1.35;
    font-weight:500;
    color:rgba(17,24,39,.62);
}

.ykc-home-grid{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    margin:12px 0 18px;
}

.ykc-home-card{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    min-height:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    padding:18px 16px 14px;
    border-radius:24px;
    border:1px solid rgba(15,23,42,.06);
    background:rgba(255,255,255,.82);
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    text-align:left;
    cursor:pointer;
    overflow:visible;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.ykc-home-card:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 36px rgba(15,23,42,.10);
}

.ykc-home-card:active{
    transform:translateY(0);
}

.ykc-home-card-ghost{
    position:absolute;
    right:0;
    bottom:0;
    z-index:1;
    font-size:82px;
    line-height:1;
    font-weight:800;
    letter-spacing:-.04em;
    color:rgba(0,166,166,.06);
    pointer-events:none;
    user-select:none;
}

.ykc-home-title{
    position:relative;
    z-index:3;
    margin:0;
    font-size:15px;
    line-height:1.14;
    font-weight:700;
    letter-spacing:-.01em;
    color:#0f172a;
}

.ykc-home-desc{
    position:relative;
    z-index:3;
    margin:9px 0 0;
    font-size:12.5px;
    line-height:1.34;
    font-weight:500;
    color:rgba(15,23,42,.52);
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ykc-home-meta{
    position:relative;
    z-index:3;
    margin-top:8px;
    font-size:12px;
    line-height:1.3;
    font-weight:700;
    color:#0ea5a4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ykc-home-card-badge{
    position:absolute;
    top:10px;
    right:10px;
    transform:translate(56%,-56%);
    min-width:30px;
    height:30px;
    padding:0 8px;
    border-radius:999px;
    background:#ff7a1a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:850;
    line-height:1;
    z-index:30;
    box-shadow:0 10px 22px rgba(255,122,26,.30);
}

.ykc-home-card.is-deal,
.ykc-home-card-deal{
    background:
        radial-gradient(circle at top right, rgba(0,166,166,.10), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.96));
    border:1px solid rgba(0,166,166,.10);
}

.ykc-home-card-deal{
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    min-height:0;
    padding:0;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    text-shadow: 0 6px 18px rgba(0,0,0,.6);
}

.ykc-home-card-deal .ykc-home-card-ghost{
    display:none;
}

.ykc-home-card-deal-media{
    position:absolute;
    inset:0;
    z-index:0;
}

.ykc-home-card-deal-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    z-index:0;
}

.ykc-home-card-deal::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.04) 0%,
        rgba(0,0,0,.12) 38%,
        rgba(0,0,0,.68) 100%
    );
    z-index:1;
}



.ykc-home-card-trust{
    z-index:3;
}

.ykc-home-card-deal-bottom{
    position:absolute;
    left:10px;
    right:10px;
    bottom:10px;
    z-index:6;

    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;

    padding:0;
    text-align:left;
}

.ykc-home-card-dealinfo{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-start;
    gap:5px;
}

.ykc-home-card-trust{
    position:absolute;
    top:0;
    left:0;
    right:0;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    text-align:center;
    font-size:11.5px;
    line-height:1.2;
    font-weight:600;
    color:#fff;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.ykc-home-card-city{
    margin:0;
    padding:0;
    font-size:17px;
    line-height:1.15;
    font-weight:750;
    color:#28aeb0;
    letter-spacing:-.02em;
    white-space:normal;
    overflow:hidden;
    text-overflow:unset;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.ykc-home-card-price{
    margin:0;
    padding:0;
    display:flex;
    align-items:flex-end;
    gap:4px;
    flex-wrap:wrap;
    font-size:19px;
    line-height:1;
    font-weight:820;
    color:#111827;
    letter-spacing:-.03em;
}

.ykc-home-card-price small{
    font-size:11px;
    line-height:1.1;
    font-weight:600;
    color:rgba(17,24,39,.55);
    letter-spacing:0;
    margin:0 0 2px 0;
}

.ykc-home-card-deal .ykc-home-card-price{
    color:#ffffff;
    text-shadow:0 4px 14px rgba(0,0,0,.55);
}

.ykc-home-card-deal.is-disabled{
    opacity:.72;
    cursor:default;
}

.ykc-home-card.is-active{
    border:1px solid rgba(255,122,26,.22);
    box-shadow:
        0 10px 24px rgba(15,23,42,.08),
        0 0 0 3px rgba(255,122,26,.08);
}


/* =========================================================
   08. GENERIC CONTENT CARDS / SWIPE
   ========================================================= */
.ykc-cards,
.ykc-swipe{
    margin:0 0 18px;
    align-self:flex-start !important;
}

.ykc-card{
    flex:1 1 0;
    min-width:0;
    min-height:380px !important;
    display:flex !important;
    flex-direction:column !important;
    cursor:pointer;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
    border-radius:20px !important;
    background:rgba(255,255,255,.74);
    box-shadow:0 10px 26px rgba(0,0,0,.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    transition:transform .18s ease,filter .18s ease;
    -webkit-tap-highlight-color:transparent;
}

.ykc-card:hover{
    transform:translateY(-1px);
    filter:brightness(1.01);
}

.ykc-card-img{
    width:100%;
    aspect-ratio:16/9;
    position:relative;
    overflow:hidden;
    background:rgba(0,0,0,.04);
    border-top-left-radius:20px !important;
    border-top-right-radius:20px !important;
}

.ykc-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ykc-card-body{
    flex:1 !important;
    display:flex !important;
    flex-direction:column !important;
    padding:10px;
}

.ykc-card-title{
    font-size:calc(15px * var(--yk-font-scale));
    line-height:1.28;
    font-weight:800;
    letter-spacing:-.22px;
    color:#1a1d21;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ykc-card-sub{
    margin-top:6px;
    font-size:calc(13px * var(--yk-font-scale));
    line-height:1.35;
    font-weight:500;
    color:rgba(15,20,25,.50);
}

.ykc-card-price{
    margin-top:auto !important;
    margin-bottom:10px !important;
    font-size:calc(15px * var(--yk-font-scale));
    line-height:1.25;
    font-weight:800;
    color:#111;
}

.ykc-card-cta{
    width:100%;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,#ff5a2a,#ff7a55) !important;
    color:#fff;
    font-size:calc(14px * var(--yk-font-scale));
    font-weight:800;
}

.ykc-swipe{
    position:relative;
}

.ykc-swipe-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    padding:10px 0 2px;
}

.ykc-swipe-dot{
    width:6px;
    height:6px;
    border-radius:999px;
    background:rgba(0,0,0,.16);
    transition:all .18s ease;
}

.ykc-swipe-dot.is-active{
    width:18px;
    background:rgba(0,0,0,.52);
}

.ykc-card.is-exit-left{
    transform:translateX(-26px);
    opacity:0;
}

.ykc-card.is-exit-right{
    transform:translateX(26px);
    opacity:0;
}

.ykc-card.is-enter-left{
    transform:translateX(-26px);
    opacity:0;
}

.ykc-card.is-enter-right{
    transform:translateX(26px);
    opacity:0;
}

.ykc-card.is-enter-left.is-enter-active,
.ykc-card.is-enter-right.is-enter-active{
    transform:translateX(0);
    opacity:1;
}

.ykc-swipe-hit{
    position:absolute;
    top:0;
    bottom:0;
    width:33.333%;
    z-index:3;
}

.ykc-swipe-hit-left{ left:0; }
.ykc-swipe-hit-right{ right:0; }

.ykc-swipe-hint{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    z-index:4;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(20,20,20,.20);
    color:#fff;
    font-size:22px;
    font-weight:700;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease;
}

.ykc-swipe-hint-left{ left:12px; }
.ykc-swipe-hint-right{ right:12px; }

.ykc-swipe-hit-left:hover + .ykc-swipe-hit-right + .ykc-swipe-hint-left,
.ykc-swipe-hit-right:hover ~ .ykc-swipe-hint-right{
    opacity:1;
}


/* =========================================================
   08.1 REFINE SEARCH BUTTON
   ========================================================= */
.ykc-all-row{
    width:100%;
    display:flex;
    justify-content:flex-start; /* ← LINKS statt center */
    margin:14px 0 10px;
}

.ykc-refine-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-height:50px;
    padding:0 18px;

    border:none;
    border-radius:18px;

    background:linear-gradient(135deg,var(--yk-teal),var(--yk-teal-2));
    color:#fff;

    font-size:15px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:-0.01em;

    cursor:pointer;
    box-shadow:0 10px 22px rgba(0,166,166,.22);
    transition:transform .16s ease,box-shadow .16s ease,opacity .16s ease;
    -webkit-tap-highlight-color:transparent;
}

.ykc-refine-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 14px 28px rgba(0,166,166,.28);
}

.ykc-refine-btn:active{
    transform:translateY(0);
    box-shadow:0 8px 18px rgba(0,166,166,.20);
}

.ykc-refine-btn:disabled{
    opacity:.55;
    cursor:not-allowed;
    transform:none;
    box-shadow:0 6px 14px rgba(0,166,166,.14);
}

.ykc-refine-btn svg{
    width:18px;
    height:18px;
    flex:0 0 18px;
    display:block;
    fill:none;
    stroke:#fff;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

@media (max-width:768px){
    .ykc-all-row{
        margin:12px 0 8px;
    }

    .ykc-refine-btn{
        min-height:48px;
        padding:0 16px;
        border-radius:16px;
        font-size:14px;
    }

    .ykc-refine-btn svg{
        width:17px;
        height:17px;
        flex-basis:17px;
    }
}


/* =========================================================
   09. SEARCH FLOW
   ========================================================= */
.ykc-searchflow{
    width:100%;
}

.ykc-sf-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:14px;
}

.ykc-sf-progress{
    flex:1;
    height:6px;
    border-radius:999px;
    overflow:hidden;
    background:rgba(0,0,0,.08);
}

.ykc-sf-progress span{
    display:block;
    height:100%;
    border-radius:999px;
    background:#14a7a7;
}

.ykc-sf-step{
    font-size:12px;
    opacity:.7;
}

.ykc-sf-card{
    width:min(100%, 680px);
    margin:10px auto 0;
    height:auto;
    max-height:none;
    display:flex;
    flex-direction:column;
    overflow:visible;
    box-sizing:border-box;
}

.ykc-sf-body{
    flex:1 1 auto;
    min-height:0;
    overflow-y:auto;
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-y;
}

.ykc-sf-no{
    position:absolute;
    top:-8px;
    right:6px;
    font-size:124px;
    line-height:1;
    font-weight:900;
    color:rgba(0,166,166,.07);
    pointer-events:none;
}

.ykc-sf-title{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.15;
    font-weight:900;
    color:#111827;
}

.ykc-sf-sub{
    margin:0 0 18px;
    font-size:14px;
    line-height:1.45;
    color:rgba(17,24,39,.62);
}

.ykc-sf-label{
    margin:0 0 10px;
    font-size:12px;
    font-weight:800;
    color:rgba(15,20,25,.68);
}

.ykc-sf-input{
    width:100%;
    height:44px;
    padding:0 14px;
    border-radius:14px;
    border:1px solid #00a6a6;
    background:#fff;
    font-size:16px;
    outline:none;
}

.ykc-sf-footer{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin:16px 0 0;
}

.ykc-sf-actions{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.ykc-sf-back{
    height:40px;
    margin-right:auto;
    padding:0 16px;
    border-radius:999px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    cursor:pointer;
}

.ykc-sf-next{
    width:44px !important;
    height:44px !important;
    min-width:44px !important;
    min-height:44px !important;
    max-width:44px !important;
    max-height:44px !important;
    flex:0 0 44px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 !important;
    margin-left:auto;
    border:none;
    border-radius:50% !important;
    background:#14a7a7;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    aspect-ratio:1/1 !important;
}

.ykc-sf-next.search{
    width:56px !important;
}

.ykc-sf-next[disabled]{
    opacity:.4;
    cursor:not-allowed;
}

.ykc-sf-next svg{
    width:18px;
    height:18px;
    fill:none;
    stroke:#fff;
    stroke-width:2.5;
}


/* =========================================================
   10. GUEST BOOKING CARDS
   ========================================================= */
.ykc-booking-card{
    margin-bottom:12px;
    padding:14px;
    border-radius:16px;
    background:#fff;
    box-shadow:0 6px 16px rgba(0,0,0,.06);
}

.ykc-booking-title{
    margin-bottom:6px;
    font-weight:800;
}

.ykc-booking-row{
    display:flex;
    justify-content:space-between;
    margin:4px 0;
    font-size:13px;
}

.ykc-booking-price{
    margin-top:8px;
    font-weight:900;
    color:#14a7a7;
}

.ykc-booking-btn{
    width:100%;
    margin-top:10px;
    padding:10px;
    border:none;
    border-radius:10px;
    background:#14a7a7;
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

.ykc-booking-btn-secondary{
    margin-top:10px;
    background:#fff;
    color:#111827;
    border:1px solid rgba(0,0,0,.10);
}

.ykc-booking-section{
    margin-top:14px;
}

.ykc-booking-section-title{
    margin:0 0 8px;
    font-size:14px;
    font-weight:800;
    opacity:.9;
}

.ykc-cancel-check-wrap{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-top:12px;
    font-size:13px;
    line-height:1.35;
    color:#4b5563;
}

.ykc-cancel-check-wrap input{
    margin-top:2px;
}

.ykc-cancel-btn{
    width:100%;
    margin-top:12px;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#4f9e9a;
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:all .2s ease;
}

.ykc-cancel-btn:not(:disabled):hover{
    background:#3f8c88;
}

.ykc-cancel-btn:disabled,
.ykc-cancel-btn.disabled{
    background:#e5e7eb;
    color:#9ca3af;
    cursor:not-allowed;
    opacity:.9;
    box-shadow:none;
    transform:none;
}

.ykc-cancel-info{
    margin-top:10px;
    font-size:13px;
    line-height:1.4;
    color:#6b7280;
}

.ykc-cancel-info.ok{
    color:#16a34a;
    font-weight:700;
}

.ykc-cancel-info.locked{
    color:#dc2626;
    font-weight:700;
}

.ykc-status{
    font-weight:800;
}


/* =========================================================
   11. INBOX
   ========================================================= */
.ykc-inbox-wrap{
    width:100%;
    height:100%;
    display:flex;
    flex-direction:column;
    margin:0;
    padding:0;
    padding-top: 20px;
    background:transparent;
}

.ykc-inbox-header{
    padding:6px 4px 14px;
    background:transparent;
}

.ykc-inbox-header .ykc-sf-title{
    margin:0;
    font-size:24px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.03em;
    color:#0f172a;
}

.ykc-inbox-header .ykc-sf-sub{
    margin-top:6px;
    font-size:13px;
    line-height:1.45;
    color:#6b7280;
}

.ykc-inbox-body{
    flex:1 1 auto;
    min-height:0;
    padding:0;
    background:transparent;
    overflow:visible;
}

.ykc-inbox-list{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:10px;
    padding:2px 2px 10px;
    background:transparent;
}

.ykc-inbox-item{
    width:100%;
    display:flex;
    align-items:center;
    gap:14px;
    margin:0;
    padding:14px;
    border-radius:22px;
    border:1px solid rgba(15,23,42,.06);
    background:rgba(255,255,255,.82);
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    text-align:left;
    cursor:pointer;
    appearance:none;
    -webkit-appearance:none;
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}

.ykc-inbox-item:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.92);
    box-shadow:0 14px 32px rgba(15,23,42,.09);
}

.ykc-inbox-item:active{
    transform:translateY(0);
    box-shadow:0 8px 20px rgba(15,23,42,.07);
}

.ykc-inbox-avatar{
    width:52px;
    height:52px;
    min-width:52px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    overflow:hidden;
    background:linear-gradient(135deg,#dff7f6 0%,#c9f0ee 100%);
    color:#17424a;
    font-size:19px;
    font-weight:800;
    box-shadow:inset 0 0 0 1px rgba(0,166,166,.10);
}

.ykc-inbox-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ykc-inbox-main{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.ykc-inbox-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    min-width:0;
}

.ykc-inbox-top-main{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
}

.ykc-inbox-name{
    min-width:0;
    flex:1;
    font-size:calc(15px * var(--yk-font-scale));
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ykc-inbox-role{
    margin-top:3px;
    font-size:calc(12px * var(--yk-font-scale));
    line-height:1.2;
    color:#8a97a3;
}

.ykc-inbox-time{
    flex:none;
    padding-top:2px;
    font-size:calc(11px * var(--yk-font-scale));
    line-height:1;
    color:#9aa4af;
    white-space:nowrap;
}

.ykc-inbox-preview{
    min-width:0;
    flex:1;
    font-size:calc(13px * var(--yk-font-scale));
    line-height:1.4;
    color:#5f6c78;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ykc-inbox-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-width:0;
}

.ykc-inbox-badge{
    min-width:22px;
    height:22px;
    padding:0 7px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00a6a6,#13b8b8);
    color:#fff;
    font-size:11px;
    font-weight:800;
    line-height:1;
    box-shadow:0 6px 14px rgba(17,182,182,.25);
    flex-shrink:0;
}

.ykc-inbox-empty{
    min-height:100%;
    padding:36px 18px 24px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#5f6c78;
}

.ykc-inbox-empty-icon{
    width:58px;
    height:58px;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:rgba(255,255,255,.82);
    box-shadow:0 8px 22px rgba(15,23,42,.06);
    font-size:24px;
}

.ykc-inbox-empty-title{
    margin-bottom:6px;
    font-size:16px;
    line-height:1.2;
    font-weight:800;
    color:#13202b;
}

.ykc-inbox-empty-text{
    font-size:14px;
    line-height:1.45;
    color:#5f6c78;
}

.ykc-inbox-empty-sub{
    margin-top:6px;
    font-size:13px;
    line-height:1.45;
    color:#8a97a3;
}

.ykc-inbox-wrap + .ykc-compose,
.ykc-compose[style*="display: none"]{
    display:none !important;
}


/* =========================================================
   12. CONVERSATION
   ========================================================= */

/* =========================================================
   12. CONVERSATION
   ========================================================= */
.ykc-conv-wrap{
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:0;
    background:transparent;
    overflow:hidden;
}

.ykc-conv-head{
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px 10px;
    background:transparent;
    flex-shrink:0;
}

.ykc-conv-back{
    width:34px;
    height:34px;
    min-width:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    color:#0f172a;
    font-size:17px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 4px 10px rgba(15,23,42,.05);
    transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}

.ykc-conv-back:hover{
    transform:translateY(-1px);
    background:#ffffff;
    box-shadow:0 8px 16px rgba(15,23,42,.07);
}

.ykc-conv-person{
    flex:1;
    min-width:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.ykc-conv-avatar{
    width:38px;
    height:38px;
    min-width:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    overflow:hidden;
    background:linear-gradient(135deg,#dff7f6 0%,#c9f0ee 100%);
    color:#17424a;
    font-size:15px;
    font-weight:900;
    box-shadow:inset 0 0 0 1px rgba(0,166,166,.10);
}

.ykc-conv-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ykc-conv-meta{
    min-width:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ykc-conv-name{
    font-size:calc(14px * var(--yk-font-scale));
    line-height:1.12;
    font-weight:850;
    color:#13202b;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ykc-conv-role{
    margin-top:2px;
    font-size:calc(11.5px * var(--yk-font-scale));
    line-height:1.2;
    color:#8a97a3;
}

.ykc-conv-body{
    flex:1 1 auto;
    min-height:0;
    overflow-y:auto;
    overflow-x:hidden;
    padding:4px 0 96px;
    background:transparent;
    scroll-behavior:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.ykc-conv-body::-webkit-scrollbar {
        display: none;
}

.ykc-chat-thread{
    width:100%;
    max-width:none;
    margin:0;
    padding:0 8px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:7px;
}

.ykc-chat-row{
    width:100%;
    display:flex;
    align-items:flex-end;
    gap:6px;
}

.ykc-chat-row--host{
    justify-content:flex-start;
}

.ykc-chat-row--guest{
    justify-content:flex-end;
}

.ykc-chat-avatar{
    width:22px;
    height:22px;
    min-width:22px;
    flex-shrink:0;
    margin-bottom:3px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    overflow:hidden;
    background:linear-gradient(135deg,#dff7f6 0%,#c9f0ee 100%);
    color:#17424a;
    font-size:10px;
    font-weight:800;
}

.ykc-chat-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ykc-chat-bubble{
    flex:0 0 auto;
    display:block;
    width:fit-content;
    max-width:62%;
    padding:7px 10px;
    border-radius:14px;
    font-size:calc(15px * var(--yk-font-scale));
    line-height:1.28;
    word-break:break-word;
    white-space:normal;
    box-shadow:none;
}

.ykc-chat-bubble--host{
    margin-right:auto;
    border:1px solid var(--yk-chat-host-border);
    border-top-left-radius:6px;
    background:var(--yk-chat-host-bg);
    color:var(--yk-chat-host-text);
}

.ykc-chat-bubble--guest{
    margin-left:auto;
    border:1px solid var(--yk-chat-guest-border);
    border-bottom-right-radius:6px;
    background:var(--yk-chat-guest-bg);
    color:var(--yk-chat-guest-text);
}

.ykc-chat-row--pending{
    opacity:.76;
}

.ykc-chat-row--pending .ykc-chat-bubble--guest{
    position:relative;
    box-shadow:none;
}

.ykc-chat-row--pending .ykc-chat-bubble--guest::after{
    content:"";
    display:inline-block;
    width:6px;
    height:6px;
    margin-left:8px;
    vertical-align:middle;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    box-shadow:
        10px 0 0 rgba(255,255,255,.68),
        20px 0 0 rgba(255,255,255,.42);
}

.ykc-chat-empty{
    min-height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:32px 18px;
    color:#5f6c78;
}

.ykc-chat-empty-icon{
    width:58px;
    height:58px;
    margin-bottom:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:#fff;
    box-shadow:0 8px 22px rgba(15,23,42,.06);
    font-size:24px;
}

.ykc-chat-empty-title{
    margin-bottom:6px;
    font-size:16px;
    line-height:1.2;
    font-weight:900;
    color:#13202b;
}

.ykc-chat-empty-text{
    font-size:14px;
    line-height:1.45;
    color:#5f6c78;
}

.ykc-chat-row + .ykc-chat-row{
    margin-top:3px;
}

.ykc-chat-row--guest + .ykc-chat-row--host,
.ykc-chat-row--host + .ykc-chat-row--guest{
    margin-top:10px; /* 🔥 größer bei Rollenwechsel */
}

/* GAST-CHAT — Reihenfolge sauber wie beim Gastgeber gespiegelt */
.ykc-chat-row--host{
        justify-content:flex-start;
}

.ykc-chat-row--guest{
        justify-content:flex-end;
}

.ykc-chat-row--host .ykc-chat-avatar{
        order:1;
}

.ykc-chat-row--host .ykc-chat-bubble{
        order:2;
}

.ykc-chat-row--guest .ykc-chat-avatar{
        order:2;
}

.ykc-chat-row--guest .ykc-chat-bubble{
        order:1;
}

.ykc-chat-host-mode .ykc-chat-row--host{
        justify-content:flex-end;
}

.ykc-chat-host-mode .ykc-chat-row--guest{
        justify-content:flex-start;
}

.ykc-chat-host-mode .ykc-chat-bubble--host{
        margin-left:auto;
        margin-right:0;
        border-top-left-radius:14px;
        border-top-right-radius:14px;
        border-bottom-left-radius:14px;
        border-bottom-right-radius:6px;
}

.ykc-chat-host-mode .ykc-chat-bubble--guest{
        margin-right:auto;
        margin-left:0;
        border-top-left-radius:6px;
        border-top-right-radius:14px;
        border-bottom-left-radius:14px;
        border-bottom-right-radius:14px;
}

.ykc-chat-host-mode .ykc-chat-row--host .ykc-chat-avatar{
        order:2;
}

.ykc-chat-host-mode .ykc-chat-row--host .ykc-chat-bubble{
        order:1;
}

.ykc-chat-host-mode .ykc-chat-row--guest .ykc-chat-avatar{
        order:1;
}

.ykc-chat-host-mode .ykc-chat-row--guest .ykc-chat-bubble{
        order:2;
}

/* =========================================================
   13. SMART TRIP CARD
   ========================================================= */
.ykc-smart-trip-card{
    border:1px solid rgba(0,166,166,.08);
    background:
        radial-gradient(circle at top right, rgba(0,166,166,.08), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.95));
}

.ykc-smart-trip-inner{
    position:relative;
    padding:14px 12px 12px;
}

.ykc-smart-trip-city{
    position:relative;
    z-index:3;
    display:block;
    margin:0 0 6px;
    font-size:15px;
    line-height:1.2;
    font-weight:700;
    color:#334155;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.ykc-smart-trip-headline{
    position:relative;
    z-index:3;
    margin:0 0 14px;
    font-size:18px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-.02em;
    color:#111827;
}

.ykc-smart-trip-dates{
    position:relative;
    z-index:3;
    margin:0 0 10px;
    font-size:13px;
    line-height:1.4;
    font-weight:600;
    color:rgba(17,24,39,.62);
}

.ykc-smart-trip-vibe{
    position:relative;
    z-index:3;
    margin:0 0 14px;
    font-size:14px;
    line-height:1.42;
    font-weight:500;
    color:#1f2937;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ykc-smart-trip-action{
    position:relative;
    z-index:3;
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:auto;
    font-size:13px;
    line-height:1.2;
    font-weight:800;
    color:#00a6a6;
}


/* =========================================================
   14. REVIEW POPUP
   ========================================================= */
.yk-review-mini{
    position:fixed;
    left:14px;
    right:14px;
    bottom:14px;
    z-index:9999;
    width:auto;
    max-width:420px;
    margin:0 auto;
    padding:14px 14px 12px;
    border-radius:18px;
    background:rgba(18,18,18,.94);
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 28px rgba(0,0,0,.28);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.yk-review-mini-title{
    margin-bottom:4px;
    font-size:15px;
    line-height:1.35;
    font-weight:800;
}

.yk-review-mini-sub{
    margin-bottom:12px;
    font-size:13px;
    line-height:1.45;
    color:rgba(255,255,255,.78);
}

.yk-review-mini-actions{
    display:flex;
    gap:8px;
}

.yk-review-mini-btn,
.yk-review-btn{
    appearance:none;
    border:0;
    cursor:pointer;
    transition:transform .15s ease,opacity .15s ease,background .15s ease,color .15s ease;
}

.yk-review-mini-btn{
    padding:10px 12px;
    border-radius:12px;
    font-size:13px;
    font-weight:800;
}

.yk-review-mini-btn:hover,
.yk-review-btn:hover{
    transform:translateY(-1px);
}

.yk-review-mini-btn.is-primary,
.yk-review-btn.is-primary{
    background:#fff;
    color:#111;
}

.yk-review-mini-btn.is-ghost,
.yk-review-btn.is-ghost{
    background:rgba(255,255,255,.08);
    color:#fff;
}

.yk-review-overlay{
    position:fixed;
    inset:0;
    z-index:10000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:rgba(0,0,0,.68);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.yk-review-modal{
    position:relative;
    width:100%;
    max-width:420px;
    overflow:hidden;
    border-radius:24px;
    background:rgba(10,10,10,.95);
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 70px rgba(0,0,0,.45);
}

.yk-review-modal-head{
    padding:18px 18px 12px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.yk-review-step{
    margin-bottom:6px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    color:rgba(255,255,255,.62);
}

.yk-review-title{
    padding-right:40px;
    margin-bottom:4px;
    font-size:18px;
    line-height:1.3;
    font-weight:900;
}

.yk-review-sub{
    font-size:13px;
    line-height:1.45;
    color:rgba(255,255,255,.72);
}

.yk-review-modal-body{
    padding:18px;
}

.yk-review-question{
    margin-bottom:16px;
    font-size:17px;
    line-height:1.35;
    font-weight:850;
}

.yk-review-stars{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:16px;
}

.yk-review-star{
    appearance:none;
    min-width:52px;
    height:48px;
    border:0;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    color:rgba(255,255,255,.42);
    font-size:22px;
    font-weight:900;
    cursor:pointer;
    transition:transform .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease;
}

.yk-review-star:hover{
    transform:translateY(-1px) scale(1.04);
    background:rgba(255,255,255,.12);
}

.yk-review-star.is-active{
    background:rgba(255,255,255,.14);
    color:#ffd86b;
    box-shadow:0 0 12px rgba(255,216,107,.18);
}

.yk-review-comment{
    width:100%;
    min-height:110px;
    resize:vertical;
    padding:12px 14px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:14px;
    outline:none;
    transition:border-color .15s ease,background .15s ease;
}

.yk-review-comment:focus{
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.06);
}

.yk-review-points{
    margin-top:14px;
    padding:12px 14px;
    border-radius:16px;
    background:rgba(27,211,193,.10);
    border:1px solid rgba(27,211,193,.18);
}

.yk-review-points-title{
    margin-bottom:4px;
    font-size:15px;
    font-weight:900;
}

.yk-review-points-sub{
    font-size:13px;
    line-height:1.45;
    color:rgba(255,255,255,.78);
}

.yk-review-modal-actions{
    display:flex;
    gap:8px;
    margin-top:18px;
}

.yk-review-btn{
    flex:1;
    padding:14px 14px;
    border-radius:16px;
    font-size:14px;
    font-weight:850;
}

.yk-review-btn[disabled]{
    opacity:.45;
    cursor:default;
    transform:none;
}

.yk-review-close{
    position:absolute;
    top:12px;
    right:12px;
    width:34px;
    height:34px;
    appearance:none;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
    font-size:18px;
    line-height:1;
    transition:background .15s ease,transform .15s ease;
}

.yk-review-close:hover{
    background:rgba(255,255,255,.14);
    transform:scale(1.04);
}

.yk-review-success-icon{
    font-size:42px;
    margin-bottom:10px;
    animation:ykPop .4s ease;
}

.yk-review-center{
    text-align:center;
}

body.yk-review-open #ai-assistant,
body.yk-review-open #yk-chat-shell,
body.yk-review-open #yk-assistant,
body.yk-review-open .yk-chat-shell,
body.yk-review-open .yk-assistant,
body.yk-review-open .yk-launcher-panel,
body.yk-review-open .chat-shell,
body.yk-review-open .assistant-shell{
    display:none !important;
}

@keyframes ykPop{
    0%{ transform:scale(.7); opacity:0; }
    70%{ transform:scale(1.1); }
    100%{ transform:scale(1); opacity:1; }
}


/* =========================================================
   15. HELPERS / LOADER / RTL
   ========================================================= */
.ykc-view-loading{
    position:absolute;
    inset:0;
    z-index:4;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
}

.ykc-view-loading-box{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    font-size:13px;
    font-weight:700;
}

.ykc-view-loading-spinner,
.ykc-corner-loader-dot{
    border-radius:50%;
    border-style:solid;
    animation:ykcSpin .8s linear infinite;
}

.ykc-view-loading-spinner{
    width:14px;
    height:14px;
    border-width:2px;
    border-color:rgba(0,166,166,.20);
    border-top-color:#00a6a6;
}

.ykc-corner-loader{
    position:absolute;
    right:8px;
    bottom:63px;
    z-index:30;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 8px 24px rgba(0,0,0,.12);
    backdrop-filter:blur(10px);
    opacity:0;
    pointer-events:none;
    transform:scale(.92);
    transition:opacity .18s ease,transform .18s ease;
}

.ykc-corner-loader.show{
    opacity:1;
    transform:scale(1);
}

.ykc-corner-loader-dot{
    width:18px;
    height:18px;
    border-width:2.5px;
    border-color:rgba(0,166,166,.18);
    border-top-color:#00a6a6;
}

@keyframes ykcSpin{
    to{ transform:rotate(360deg); }
}

.ykc-rtl .ykc-log{
    direction:rtl;
}

.ykc-rtl .ykc-msg{
    text-align:right;
}

.ykc-rtl .ykc-row{
    justify-content:flex-end;
}

.ykc-rtl .ykc-user{
    margin-left:auto;
    margin-right:0;
}

.ykc-rtl .ykc-ai{
    margin-right:auto;
    margin-left:0;
}

.ykc-rtl .ykc-cards{
    direction:ltr;
}

.ykc-rtl .ykc-card-title,
.ykc-rtl .ykc-card-sub,
.ykc-rtl .ykc-card-price{
    text-align:right;
}

html[data-yk-rtl="1"] .ykc-smart-trip-card,
html[data-yk-rtl="1"] .ykc-smart-trip-inner{
    direction:rtl;
    text-align:right;
}

.ykc-profile-wrap{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:10px 2px 8px;
}

.ykc-profile-head{
  padding:4px 6px 0;
}

.ykc-profile-greeting{
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  color:#0f172a;
  letter-spacing:-0.02em;
  margin:0 0 8px;
}

.ykc-profile-subtitle{
  font-size:15px;
  line-height:1.45;
  color:#6b7280;
}

.ykc-profile-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 10px 30px rgba(15,23,42,.06);
  border-radius:28px;
  padding:18px 18px 10px;
  backdrop-filter:blur(10px);
}

.ykc-profile-card-title{
  font-size:16px;
  font-weight:800;
  color:#0f172a;
  margin:0 0 12px;
}

.ykc-profile-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-top:1px solid rgba(15,23,42,.06);
}

.ykc-profile-row:first-of-type{
  border-top:none;
}

.ykc-profile-label{
  min-width:110px;
  font-size:14px;
  font-weight:700;
  color:#6b7280;
}

.ykc-profile-value{
  flex:1 1 auto;
  text-align:right;
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  color:#0f172a;
  word-break:break-word;
}

.ykc-profile-actions{
  padding:0 2px 6px;
}

.ykc-profile-back{
  appearance:none;
  border:none;
  border-radius:999px;
  padding:14px 24px;
  font-size:16px;
  font-weight:800;
  background:#fff;
  color:#0f172a;
  box-shadow:0 4px 16px rgba(15,23,42,.08);
  border:1px solid rgba(15,23,42,.08);
}

.ykc-rtl .ykc-profile-value{
  text-align:left;
}


/* =========================================================
   16. MOBILE / TABLET / IOS
   ========================================================= */
@media (hover:none){
    .ykc-swipe-hint{
        opacity:.92;
    }
}

@media (max-width:768px){
    .yk-host-btn{
        font-size:13px;
        padding:7px 16px;
    }

    .ykc-panel{
        position:fixed;
        inset:0;
        width:100vw;
        height:var(--yk-app-height, 100vh);
        max-height:var(--yk-app-height, 100vh);
        border:none;
        border-radius:0;
    }

    .ykc-log{
        overflow-y:auto;
        -webkit-overflow-scrolling:touch;
        padding-bottom:0;
    }

    .ykc-home-grid{
        gap:12px;
        margin:12px 0 18px;
    }

    .ykc-home-card{
        padding:16px 14px 12px;
        border-radius:22px;
    }

    .ykc-home-card-ghost{
        font-size:96px;
    }

    .ykc-home-title{
        font-size:17px;
        line-height:1.07;
    }

    .ykc-home-desc{
        margin-top:8px;
        font-size:12.5px;
        line-height:1.32;
    }

    .ykc-home-meta{
        font-size:11.5px;
    }

.ykc-compose{
    min-height:82px;
    padding:10px 10px calc(10px + var(--yk-safe-bottom));

    border-top:1px solid rgba(255,255,255,.12);

    background:linear-gradient(
        to top,
        rgba(255,255,255,.08),
        rgba(255,255,255,.02)
    );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 -8px 24px rgba(15,23,42,.04);
}

.ykc-inp{
    height:46px;
    border-radius:16px;
    font-size:16px !important;
    padding:0 14px;

    border:1px solid rgba(0,166,166,.18); /* ← dünne türkise Linie */

    background:rgba(255,255,255,.14);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 2px 8px rgba(0,166,166,.06);

    transition:all .18s ease;
}

    .ykc-send{
        width:50px;
        height:46px;
        flex:0 0 50px;
        border-radius:16px;
        font-size:18px;
    }

    .ykc-conv-head{
        padding:8px 8px 10px;
    }

    .ykc-conv-body{
        padding:4px 0 18px;
    }

    .ykc-chat-thread{
        padding:0 6px;
        gap:8px;
    }

.ykc-chat-bubble{
    max-width:78%;
    padding:10px 12px;
    font-size:calc(16px * var(--yk-font-scale));
    line-height:1.34;
    word-break:break-word;
    overflow-wrap:anywhere;
}

    .yk-review-mini{
        left:12px;
        right:12px;
        bottom:12px;
        max-width:none;
        border-radius:16px;
    }

    .yk-review-modal{
        max-width:100%;
        border-radius:20px;
    }

    .yk-review-modal-head{
        padding:16px 16px 10px;
    }

    .yk-review-modal-body{
        padding:16px;
    }

    .yk-review-stars{
        gap:6px;
    }

    .yk-review-star{
        min-width:46px;
        height:44px;
        font-size:20px;
        border-radius:14px;
    }

    .yk-review-btn{
        padding:13px 12px;
        border-radius:14px;
    }

    .ykc-smart-trip-inner{
        padding:16px 16px 15px;
    }

    .ykc-smart-trip-headline{
        font-size:18px;
    }

    .ykc-smart-trip-dates{
        font-size:12px;
    }
    


    .ykc-smart-trip-vibe{
        font-size:13px;
    }
}

@media (min-width:1180px){
    .ykc-chat-bubble{
        max-width:min(78%, 620px);
    }
}


.ykc-inbox-wrap .ykc-conv-head {
    padding-left: 8px;
}

.ykc-inbox-wrap .ykc-conv-back {
    margin-left: 0;
}


/* =============================
   SCROLL SYSTEM – FINAL
   ============================= */

.ykc-log--locked{
    overflow:hidden !important;
    overflow-y:hidden !important;
    overflow-x:hidden !important;
    touch-action:none !important;
    -webkit-overflow-scrolling:auto !important;
}

.ykc-log--normal{
    overflow:hidden !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    touch-action:pan-y !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
}

.ykc-log--inbox{
    overflow:hidden !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    touch-action:pan-y !important;
    -webkit-overflow-scrolling:touch !important;
    overscroll-behavior:contain !important;
}

.ykc-log--conversation{
    overflow:hidden !important;
    overflow-y:hidden !important;
    overflow-x:hidden !important;
    touch-action:none !important;
    -webkit-overflow-scrolling:auto !important;
    overscroll-behavior:none !important;
}

.ykc-log--conversation .ykc-conv-wrap{
    height:100% !important;
    min-height:0 !important;
    display:flex !important;
    flex-direction:column !important;
    overflow:hidden !important;
}

.ykc-log--conversation .ykc-conv-body{
    flex:1 1 auto !important;
    min-height:0 !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    touch-action:pan-y !important;
    overscroll-behavior:contain !important;
    padding:4px 0 88px !important;
    box-sizing:border-box !important;
}

.ykc-log--conversation .ykc-chat-thread{
    padding-bottom:0 !important;
}

@media (max-width:768px){
    .ykc-log--conversation .ykc-conv-body{
        padding:4px 0 calc(64px + var(--yk-safe-bottom)) !important;
    }
}

.ykc-log--inbox .ykc-inbox-body{
    overflow:visible !important;
}

.ykc-log--inbox .ykc-inbox-list{
    overflow:visible !important;
}



@media (max-width: 768px) and (max-height: 760px){
.ykc-sf-card{
    height:auto !important;
    max-height:none !important;
    overflow:visible !important;
    margin:10px auto 0 !important;
}

  .ykc-sf-body{
    padding-bottom: 8px !important;
  }

  .ykc-sf-footer{
    margin-top: 8px !important;
  }
}


.ykc-home-card[data-menu-key="search"] .ykc-home-card-ghost{
    color:rgba(255,122,26,.10);
    text-shadow:
        0 0 22px rgba(255,122,26,.18),
        0 0 44px rgba(255,122,26,.10);
}

.ykc-home-card[data-menu-key="deal"] .ykc-home-card-ghost{
    color:rgba(0,166,166,.08);
    text-shadow:
        0 0 20px rgba(0,166,166,.14),
        0 0 38px rgba(0,166,166,.08);
}


.ykc-home-card-deal{
    box-shadow:
        0 18px 40px rgba(0,166,166,.18),
        0 6px 18px rgba(0,166,166,.10);
}

.ykc-home-card[data-menu-key="booking_status"]{
    border:1px solid rgba(0,166,166,.18);

    box-shadow:
        0 12px 30px rgba(0,166,166,.14),
        0 4px 12px rgba(0,166,166,.08);
}







.ykc-home-meta{
    position:relative;
    z-index:3;
    margin-top:auto;
    padding-top:10px;
    min-height:44px;
    display:flex;
    align-items:flex-start;
    font-size:12px;
    line-height:1.3;
    font-weight:700;
    color:#0ea5a4;
    text-align:left;
    overflow:hidden;
}

.ykc-info-overlay{
    width:100%;
    min-height:100%;
    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
    padding:20px 18px 12px;
}

.ykc-info-sheet{
    width:100%;
    max-width:100%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
}

.ykc-info-head{
    width:100%;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:18px;
}

.ykc-info-head-left{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.ykc-info-head-left.no-icon{
    min-width:0;
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding-top:8px;
}

.ykc-info-title{
    margin:0;
    font-size:22px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.03em;
    color:#0f172a;
}

.ykc-info-close{
    width:36px;
    height:36px;
    min-width:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,.82);
    color:#0f172a;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 8px 18px rgba(15,23,42,.06);
}

.ykc-info-card{
    width:100%;
    padding:22px 18px;
    border-radius:22px;
    background:rgba(223,236,235,.65);
    border:1px solid rgba(0,166,166,.10);
    box-shadow:0 12px 30px rgba(15,23,42,.05);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
}

.ykc-info-paragraph{
    font-size:16px;
    line-height:1.6;
    font-weight:500;
    color:#0f172a;
}

.ykc-info-paragraph + .ykc-info-paragraph{
    margin-top:18px;
}

.ykc-info-pills{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    padding-top:2px;
    margin-top:6px;
}

.ykc-info-pill{
    min-height:42px;
    padding:0 16px;
    border-radius:999px;
    border:1px solid rgba(0,166,166,.14);
    background:rgba(255,255,255,.88);
    color:#0f172a;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 6px 16px rgba(15,23,42,.04);
    transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.ykc-info-pill:hover{
    transform:translateY(-1px);
    background:#ffffff;
    box-shadow:0 10px 20px rgba(15,23,42,.06);
}

@media (max-width:768px){
    .ykc-info-overlay{
        padding:18px 14px 10px;
    }

    .ykc-info-head{
        gap:12px;
        margin-bottom:16px;
    }

    .ykc-info-head-left.no-icon{
        padding-top:6px;
    }

    .ykc-info-title{
        font-size:18px;
    }

    .ykc-info-close{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:18px;
    }

    .ykc-info-card{
        padding:16px 14px;
        border-radius:20px;
    }

    .ykc-info-paragraph{
        font-size:14px;
        line-height:1.46;
    }

    .ykc-info-paragraph + .ykc-info-paragraph{
        margin-top:12px;
    }

    .ykc-info-pill{
        min-height:40px;
        padding:0 14px;
        font-size:13.5px;
    }
}






/* =========================================
   HOST LISTINGS VIEW
   01 → Inserate verwalten
========================================= */

.ykc-host-listings-wrap{
    width:100%;
    max-width:100%;
    padding:10px 0 18px;
    box-sizing:border-box;
}

.ykc-host-listings-head{
    padding:0 4px 14px;
}

.ykc-host-listings-title{
    font-size:30px;
    line-height:1.06;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#0f172a;
    margin:0 0 6px;
}

.ykc-host-listings-sub{
    font-size:15px;
    line-height:1.45;
    color:#6b7280;
    margin:0;
}

.ykc-host-listings-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    width:100%;
}

.ykc-host-listing-card{
    display:block;
    width:100%;
    padding:0;
    margin:0;
    border:1px solid rgba(15,23,42,.07);
    border-radius:24px;
    background:rgba(255,255,255,.86);
    box-shadow:0 14px 38px rgba(15,23,42,.10);
    overflow:hidden;
    cursor:pointer;
    text-align:left;
    -webkit-appearance:none;
    appearance:none;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.ykc-host-listing-card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 44px rgba(15,23,42,.13);
    border-color:rgba(0,166,166,.16);
}

.ykc-host-listing-card:active{
    transform:scale(.992);
}

.ykc-host-listing-card-media{
    position:relative;
    width:100%;
    aspect-ratio:16 / 9;
    background:#e5e7eb;
    overflow:hidden;
}

.ykc-host-listing-card-media img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.ykc-host-listing-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:800;
    color:#0f172a;
    background:linear-gradient(135deg, rgba(0,166,166,.16) 0%, rgba(90,220,220,.18) 100%);
}

.ykc-host-listing-card-body{
    padding:14px 16px 16px;
}

.ykc-host-listing-card-title{
    font-size:24px;
    line-height:1.14;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#0f172a;
    margin:0 0 8px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.ykc-host-listing-card-city{
    font-size:15px;
    line-height:1.4;
    color:#6b7280;
    margin:0 0 8px;
}

.ykc-host-listing-card-price{
    font-size:17px;
    line-height:1.3;
    font-weight:800;
    color:#0f172a;
    margin:0 0 8px;
}

.ykc-host-listing-card-status{
    display:inline-flex;
    align-items:center;
    gap:6px;
    min-height:32px;
    padding:0 12px;
    border-radius:999px;
    background:rgba(0,166,166,.10);
    color:#007c7c;
    font-size:13px;
    line-height:1;
    font-weight:700;
    text-transform:capitalize;
}

.ykc-host-listings-empty,
.ykc-host-listings-loading{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:160px;
    padding:20px;
    border-radius:24px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(15,23,42,.06);
    color:#6b7280;
    font-size:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(15,23,42,.07);
}

html[data-yk-rtl="1"] .ykc-host-listing-card,
html[data-yk-rtl="1"] .ykc-host-listings-head{
    direction:rtl;
    text-align:right;
}

@media (max-width: 640px){
    .ykc-host-listings-title{
        font-size:24px;
    }

    .ykc-host-listing-card-title{
        font-size:20px;
    }

    .ykc-host-listing-card-body{
        padding:12px 14px 14px;
    }
}

/* =========================================
   HOST PRICING VIEW — COMPACT (NO SCROLL)
========================================= */

.ykc-host-pricing-wrap{
    width:100%;
    padding:14px 0 16px;
    box-sizing:border-box;
}

.ykc-host-pricing-head{
    padding:0 4px 8px;
}

.ykc-host-pricing-title{
    font-size:18px;
    line-height:1.1;
    font-weight:800;
    letter-spacing:-0.02em;
    color:#0f172a;
    margin:0 0 4px;
}

.ykc-host-pricing-sub{
    font-size:13px;
    line-height:1.35;
    color:#6b7280;
    margin:0;
}

/* CARD */
.ykc-host-pricing-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(15,23,42,.05);
    margin-bottom:10px;
}

/* IMAGE */
.ykc-host-pricing-media{
    width:100%;
    height:120px; /* 🔥 reduziert → kein Scroll */
    background:#e5e7eb;
    overflow:hidden;
}

.ykc-host-pricing-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BODY */
.ykc-host-pricing-body{
    padding:12px 14px 12px;
}

.ykc-host-pricing-listing{
    font-size:16px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin:0 0 4px;
}

.ykc-host-pricing-city{
    font-size:13px;
    color:#6b7280;
    margin:0 0 12px;
}

/* LABEL */
.ykc-host-pricing-label{
    font-size:12px;
    font-weight:700;
    color:#6b7280;
    margin:0 0 4px;
}

.ykc-host-pricing-label--spaced{
    margin-top:12px;
}

/* CURRENT PRICE (kleiner & ruhiger) */
.ykc-host-pricing-current{
    font-size:22px;
    font-weight:700;
    color:#6b7280; /* 🔥 weniger dominant */
    margin:0;
}

/* INPUT */
.ykc-host-pricing-inputrow{
    position:relative;
    display:flex;
    align-items:center;
}

.ykc-host-pricing-input{
    width:100%;
    height:50px;
    border:1px solid rgba(15,23,42,.10);
    border-radius:14px;
    background:#f8fafc;
    padding:0 44px 0 14px;
    font-size:22px;
    font-weight:800;
    color:#0f172a;
    outline:none;
    box-sizing:border-box;
    appearance:textfield;
}

.ykc-host-pricing-input::-webkit-outer-spin-button,
.ykc-host-pricing-input::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.ykc-host-pricing-input:focus{
    border-color:#14b8a6;
    background:#fff;
    box-shadow:0 0 0 3px rgba(20,184,166,.12);
}

/* ₺ SYMBOL */
.ykc-host-pricing-currency{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    font-size:18px;
    font-weight:800;
    color:#0f172a;
}

/* BUTTONS */
.ykc-host-pricing-actions{
    display:flex;
    gap:10px;
    margin-top:34px; /* mehr Abstand zum Input */
}

.ykc-host-pricing-back,
.ykc-host-pricing-save{
    flex:1;
    height:44px;
    border-radius:14px;
    font-size:14px;
}

.ykc-host-pricing-back{
    background:#f3f4f6;
    color:#0f172a;
}

.ykc-host-pricing-save{
    background:linear-gradient(135deg,#22c1c3 0%,#14b8a6 100%);
    color:#fff;
    box-shadow:0 8px 18px rgba(20,184,166,.15);
}

.ykc-host-pricing-save:disabled{
    opacity:.6;
}

/* SUCCESS STATE */
.ykc-host-pricing-current.is-updated{
    color:#059669;
}

/* MOBILE EXTRA COMPACT */
@media (max-width:640px){

    .ykc-host-pricing-wrap{
        padding:12px 0 14px;
    }

    .ykc-host-pricing-media{
        height:110px;
    }

    .ykc-host-pricing-body{
        padding:10px 12px;
    }

    .ykc-host-pricing-input{
        height:48px;
        font-size:20px;
    }

    .ykc-host-pricing-actions{
        gap:8px;
    }

    .ykc-host-pricing-back,
    .ykc-host-pricing-save{
        height:44px;
        font-size:14px;
    }
}








.ykc-host-status-wrap{
    padding:22px 18px 8px;
}

.ykc-host-status-head{
    margin:0 0 18px;
}

.ykc-host-status-title{
    font-size:22px;
    line-height:1.08;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#0f172a;
    margin:0 0 8px;
}

.ykc-host-status-sub{
    font-size:14px;
    line-height:1.45;
    color:#6b7280;
    margin:0;
}

.ykc-host-status-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:28px;
    padding:18px;
    box-shadow:0 20px 60px rgba(15,23,42,.07);
}

.ykc-host-status-listing{
    font-size:18px;
    line-height:1.14;
    font-weight:800;
    letter-spacing:-0.03em;
    color:#0f172a;
    margin:0 0 6px;
}

.ykc-host-status-city{
    font-size:14px;
    line-height:1.4;
    color:#6b7280;
    margin:0 0 18px;
}

.ykc-host-status-label{
    font-size:14px;
    font-weight:700;
    color:#6b7280;
    margin:0 0 8px;
}

.ykc-host-status-current{
    font-size:18px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin:0 0 16px;
}

.ykc-host-status-current.is-updated{
    color:#059669;
    transform:scale(1.03);
    transition:all .25s ease;
}

.ykc-host-status-options{
    display:grid;
    gap:12px;
    margin:0 0 16px;
}

.ykc-host-status-option{
    position:relative;
    display:block;
    border:1px solid rgba(15,23,42,.10);
    border-radius:20px;
    padding:14px 14px 14px 44px;
    background:#fff;
    cursor:pointer;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ykc-host-status-option:hover{
    border-color:rgba(0,166,166,.26);
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.ykc-host-status-option.is-selected{
    border-color:rgba(0,166,166,.55);
    box-shadow:0 10px 30px rgba(0,166,166,.10);
}

.ykc-host-status-option input{
    position:absolute;
    left:14px;
    top:18px;
}

.ykc-host-status-option-title{
    font-size:16px;
    font-weight:800;
    color:#0f172a;
    margin:0 0 4px;
}

.ykc-host-status-option-desc{
    font-size:13px;
    line-height:1.45;
    color:#6b7280;
    margin:0;
}

.ykc-host-status-feedback{
    min-height:20px;
    font-size:13px;
    font-weight:700;
    margin:0 0 14px;
}

.ykc-host-status-feedback.is-success{
    color:#059669;
}

.ykc-host-status-feedback.is-error{
    color:#dc2626;
}

.ykc-host-status-actions{
    display:flex;
    gap:12px;
    margin-top:4px;
}

.ykc-host-status-back,
.ykc-host-status-save{
    height:48px;
    border-radius:18px;
    border:1px solid rgba(15,23,42,.08);
    padding:0 18px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.ykc-host-status-back{
    background:#fff;
    color:#0f172a;
}

.ykc-host-status-save{
    background:linear-gradient(135deg,#67d4d4 0%, #44bfc1 100%);
    border-color:transparent;
    color:#fff;
    flex:1 1 auto;
}

.ykc-host-status-empty{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:24px;
    padding:18px;
    color:#6b7280;
    font-weight:700;
}


.ykc-host-listing-card-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:38px;
    padding:0 16px;
    border-radius:999px;
    font-size:15px;
    font-weight:800;
    letter-spacing:-0.01em;
    margin-top:14px;
    border:1px solid transparent;
    transition:all .25s ease;
}

/* 🟢 VERÖFFENTLICHT */
.ykc-host-listing-card-status.is-ready{
    color:#ffffff;
    background:linear-gradient(135deg,#0ea5a4 0%, #22c55e 100%);
    border-color:rgba(14,165,164,.25);
    box-shadow:0 10px 28px rgba(34,197,94,.18);
}

/* 🔴 NICHT VERÖFFENTLICHT */
.ykc-host-listing-card-status.is-draft{
    color:#ffffff;
    background:linear-gradient(135deg,#dc2626 0%, #ef4444 100%);
    border-color:rgba(220,38,38,.35);
    box-shadow:0 10px 26px rgba(239,68,68,.25);
    animation:ykStatusPulse 1.8s ease-in-out infinite;
}

/* ✨ Pulse Effekt */
@keyframes ykStatusPulse{
    0%{
        transform:scale(1);
        box-shadow:0 10px 26px rgba(239,68,68,.22);
    }
    50%{
        transform:scale(1.05);
        box-shadow:0 14px 34px rgba(220,38,38,.35);
    }
    100%{
        transform:scale(1);
        box-shadow:0 10px 26px rgba(239,68,68,.22);
    }
}


.ykc-host-listings-head-top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 4px;
}

.ykc-back-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.9);
        backdrop-filter: blur(6px);
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;

        margin-left: 0;   /* wichtig */
}

.ykc-back-circle:hover {
        background: rgba(255,255,255,1);
        transform: scale(1.05);
}

.ykc-back-circle:active {
        transform: scale(0.95);
}


/* =========================================================
   12.X CONVERSATION FINAL CLEAN FIX
   ========================================================= */

.ykc-chat-time{
    display:block;
    margin-top:4px;
    font-size:11px;
    line-height:1;
    opacity:.6;
    text-align:right;
}

.ykc-chat-text{
    display:block;
    font-size:15px;
    line-height:1.4;
}

.ykc-chat-day{
    display:block;
    width:fit-content;
    margin:14px auto;
    padding:6px 12px;
    font-size:12px;
    line-height:1;
    border-radius:999px;
    background:rgba(15,23,42,.06);
    color:rgba(15,23,42,.68);
    text-align:center;
}

.ykc-chat-stickyday{
    position:sticky;
    top:10px;
    z-index:8;
    display:flex;
    justify-content:center;
    pointer-events:none;
    margin:0 0 8px;
}

.ykc-chat-stickyday[hidden]{
    display:none;
}

.ykc-chat-stickyday-pill{
    display:inline-block;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(15,23,42,.06);
    color:rgba(15,23,42,.68);
    font-size:12px;
    line-height:1;
    backdrop-filter:blur(4px);
}

.ykc-log--conversation{
    overflow:hidden !important;
    overflow-y:hidden !important;
    overflow-x:hidden !important;
    touch-action:none !important;
    -webkit-overflow-scrolling:auto !important;
    overscroll-behavior:none !important;
}

.ykc-log--conversation .ykc-conv-wrap{
    height:100% !important;
    min-height:0 !important;
    display:flex !important;
    flex-direction:column !important;
    overflow:hidden !important;
}

.ykc-log--conversation .ykc-conv-head{
    flex:0 0 auto !important;
}




.ykc-msg-row{
    display:flex;
    gap:10px;
    margin-bottom:14px;
}

.ykc-msg-row--guest{
    flex-direction:row-reverse;
}

.ykc-msg-avatar{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#e2f3f3;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#0f172a;
    flex-shrink:0;
}

.ykc-msg-bubble-wrap{
    max-width:75%;
}

.ykc-msg-meta{
    font-size:12px;
    color:#6b7280;
    margin-bottom:4px;
    display:flex;
    gap:6px;
}

.ykc-msg-name{
    font-weight:600;
}

.ykc-msg-bubble{
    background:#fff;
    border-radius:16px;
    padding:10px 14px;
    font-size:14px;
    line-height:1.4;
    box-shadow:0 2px 6px rgba(0,0,0,.04);
}

.ykc-msg-row--guest .ykc-msg-bubble{
    background:linear-gradient(135deg,#1bb3a9,#63c7c2);
    color:#fff;
}


@media (max-width:768px){
    .ykc-compose{
        padding-bottom:calc(env(safe-area-inset-bottom, 0px) + 10px);
    }
}

/* =============================
   GENERIC LINK / CARD FIX
============================= */

.ykc-home-card{
    text-decoration:none;
    color:inherit;
}

.ykc-home-card,
.ykc-home-card:link,
.ykc-home-card:visited,
.ykc-home-card:hover,
.ykc-home-card:active{
    text-decoration:none;
    color:inherit;
}


/* =========================================================
   HOST PHOTOS MODE — FINAL REAL 1:1
========================================================= */

.ykc-panel--photos-mode .ykc-compose{
    display:none !important;
}

.ykc-panel--photos-mode .ykc-log,
.ykc-log--photos{
    height:100% !important;
    min-height:0 !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    -webkit-overflow-scrolling:touch !important;
    touch-action:pan-y !important;
    overscroll-behavior-y:contain !important;
    padding:16px 16px 24px !important;
    box-sizing:border-box !important;
}

.ykc-log--photos .ykc-host-photos-head{
    display:flex !important;
    align-items:center !important;
    gap:12px !important;
    padding:0 0 14px !important;
    margin:0 !important;
    position:sticky !important;
    top:0 !important;
    z-index:20 !important;
    background:rgba(255,255,255,.78) !important;
    backdrop-filter:blur(14px) !important;
    -webkit-backdrop-filter:blur(14px) !important;
}

.ykc-log--photos .ykc-host-photos-back{
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    border:none !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#0f172a !important;
    font-size:20px !important;
    font-weight:800 !important;
    box-shadow:0 8px 22px rgba(15,23,42,.08) !important;
    cursor:pointer !important;
}

.ykc-log--photos .ykc-host-photos-title{
    margin:0 !important;
    font-size:22px !important;
    line-height:1.08 !important;
    font-weight:800 !important;
    letter-spacing:-0.03em !important;
    color:#0f172a !important;
}

/* GRID */
.ykc-log--photos .ykc-host-photos-grid,
.ykc-log--photos #ykc-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:8px !important;
    align-content:start !important;
    overflow:visible !important;
    margin:0 !important;
    padding:0 !important;
}

/* WICHTIG: echte Klasse aus deinem JS */
.ykc-log--photos .ykc-photo-card{
    position:relative !important;
    width:100% !important;
    aspect-ratio:1 / 1 !important;
    overflow:hidden !important;
    border-radius:10px !important;
    background:#f1f5f9 !important;
    box-shadow:0 6px 18px rgba(15,23,42,.05) !important;
}

/* Falls aspect-ratio irgendwo überschrieben wird */
@supports not (aspect-ratio: 1 / 1){
    .ykc-log--photos .ykc-photo-card{
        height:0 !important;
        padding-bottom:100% !important;
    }
}

/* WICHTIG: img direkt auf echte Klasse */
.ykc-log--photos .ykc-photo-card img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    display:block !important;
    object-fit:cover !important;
    object-position:center center !important;
    max-width:none !important;
    max-height:none !important;
}

/* STAR */
.ykc-log--photos .ykc-main{
    position:absolute !important;
    left:8px !important;
    bottom:8px !important;
    z-index:3 !important;
    width:30px !important;
    height:30px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:10px !important;
    background:rgba(255,255,255,.92) !important;
    color:#0f172a !important;
    font-size:14px !important;
    font-weight:800 !important;
    box-shadow:0 4px 12px rgba(15,23,42,.10) !important;
}

/* MENU */
.ykc-log--photos .ykc-menu{
    position:absolute !important;
    top:8px !important;
    right:8px !important;
    z-index:4 !important;
    width:38px !important;
    height:38px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:none !important;
    border-radius:12px !important;
    background:rgba(15,23,42,.34) !important;
    color:#fff !important;
    font-size:18px !important;
    line-height:1 !important;
    padding:0 !important;
    margin:0 !important;
    backdrop-filter:blur(10px) !important;
    -webkit-backdrop-filter:blur(10px) !important;
}

/* EMPTY */
.ykc-log--photos .ykc-empty{
    grid-column:1 / -1 !important;
    min-height:120px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    padding:18px !important;
    border-radius:18px !important;
    background:#fff !important;
    color:#6b7280 !important;
    font-size:14px !important;
    border:1px dashed #d1d5db !important;
}

/* TOOLBAR */
.ykc-log--photos .ykc-toolbar,
.ykc-log--photos .ykc-host-photos-toolbar{
    display:flex !important;
    gap:10px !important;
    padding:14px 0 0 !important;
    margin:0 !important;
}

.ykc-log--photos .ykc-add,
.ykc-log--photos .ykc-host-photo-add{
    flex:1 1 auto !important;
    min-height:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:1px dashed #d1d5db !important;
    background:#fff !important;
    color:#0f172a !important;
    font-size:28px !important;
    font-weight:700 !important;
    border-radius:18px !important;
    margin:0 !important;
    padding:0 !important;
    box-shadow:0 6px 18px rgba(15,23,42,.04) !important;
}

.ykc-log--photos .ykc-back-btn{
    min-height:52px !important;
    padding:0 18px !important;
    border:none !important;
    border-radius:18px !important;
    background:#fff !important;
    color:#0f172a !important;
    font-size:15px !important;
    font-weight:700 !important;
    box-shadow:0 6px 18px rgba(15,23,42,.04) !important;
}

/* Sortable states */
.ykc-photo-ghost,
.ykc-ghost{
    opacity:.45 !important;
    border-radius:16px !important;
}

.ykc-photo-drag,
.ykc-photo-chosen{
    cursor:grabbing !important;
}


.ykc-toolbar{
    display:flex;
    gap:10px;
    padding:14px 0 0;
}

.ykc-back-btn{
    flex:1;
    height:52px;
    border:none;
    border-radius:18px;
    background:#f1f5f9;
    font-weight:700;
    font-size:15px;
    color:#0f172a;
}

.ykc-add{
    flex:1;
    height:52px;
    border:none;
    border-radius:18px;
    background:#0f172a;
    color:#fff;
    font-size:24px;
    font-weight:800;
}

.ykc-delete{
    position:absolute;
    top:6px;
    right:6px;
    z-index:5;

    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:50%;

    background:rgba(0,0,0,.45);
    color:#fff;

    font-size:14px;
    font-weight:700;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    transition:transform .15s ease, background .15s ease;
}

/* 👇 Tap Feedback (wichtig für Mobile) */
.ykc-delete:active{
    transform:scale(.85);
    background:rgba(0,0,0,.6);
}

.ykc-photo-card:active{
    transform:scale(1.05);
    z-index:10;
}

.ykc-main{
    width:34px;
    height:34px;
    font-size:16px;
    font-weight:900;

    background:#fff;
    box-shadow:0 6px 14px rgba(0,0,0,.15);
}

/* =============================
   HOST PHOTOS HINT
============================= */

.ykc-photo-hint{
    position:absolute;
    left:50%;
    bottom:86px;
    transform:translateX(-50%) translateY(8px);
    z-index:40;

    max-width:calc(100% - 32px);
    padding:10px 14px;

    border-radius:999px;
    background:rgba(15,23,42,.72);
    color:#fff;

    font-size:13px;
    line-height:1.2;
    font-weight:700;
    text-align:center;
    white-space:nowrap;

    opacity:0;
    pointer-events:none;

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:0 10px 28px rgba(15,23,42,.18);
    transition:opacity .22s ease, transform .22s ease;
}

.ykc-photo-hint.show{
    opacity:1;
    transform:translateX(-50%) translateY(0);
    pointer-events:auto;
}

.ykc-photo-card{
    transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.ykc-photo-chosen{
    transform:scale(1.03) !important;
    box-shadow:0 12px 28px rgba(15,23,42,.18) !important;
    opacity:.96 !important;
    z-index:20 !important;
}

.ykc-photo-drag{
    transform:scale(1.05) !important;
    box-shadow:0 16px 34px rgba(15,23,42,.22) !important;
    opacity:.92 !important;
    z-index:30 !important;
}

.ykc-ghost{
    opacity:.35 !important;
    transform:scale(.98) !important;
}


@media (max-width:768px){
    .ykc-log--photos,
    .ykc-panel--photos-mode .ykc-log{
        padding:12px 12px 20px !important;
    }

    .ykc-log--photos .ykc-host-photos-grid,
    .ykc-log--photos #ykc-grid{
        gap:6px !important;
    }

    .ykc-log--photos .ykc-photo-card{
        border-radius:14px !important;
    }

    .ykc-log--photos .ykc-host-photos-title{
        font-size:20px !important;
    }
    
        .ykc-photo-hint{
        bottom:82px;
        max-width:calc(100% - 24px);
        padding:9px 12px;
        font-size:12.5px;
        white-space:normal;
    }
}

/* 🚫 iOS Copy / Select deaktivieren */


.ykc-photo-card,
.ykc-photo-card * {
    -webkit-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
}



/* =============================
   HOST DELETE VIEW
============================= */

.ykc-host-delete-wrap{
  padding:20px 16px 24px;
}

.ykc-host-delete-head{
  margin:0 0 16px;
}

.ykc-host-delete-title{
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:#0f172a;
  margin:0 0 6px;
}

.ykc-host-delete-sub{
  font-size:14px;
  color:#6b7280;
}

/* Card */

.ykc-host-delete-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:20px;
  overflow:hidden;
  margin-bottom:18px;
}

.ykc-host-delete-media img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.ykc-host-delete-placeholder{
  height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e5e7eb;
  font-weight:700;
  color:#6b7280;
}

.ykc-host-delete-body{
  padding:14px;
}

.ykc-host-delete-listing-title{
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.ykc-host-delete-city{
  font-size:13px;
  color:#6b7280;
  margin-bottom:6px;
}

.ykc-host-delete-desc{
  font-size:13px;
  color:#374151;
  margin-bottom:10px;
}

.ykc-host-delete-sms{
  font-size:12px;
  color:#ef4444;
  font-weight:600;
}

/* Buttons */

.ykc-host-delete-actions{
  display:flex;
  gap:10px;
}

.ykc-host-delete-cancel{
  flex:1;
  height:48px;
  border-radius:16px;
  background:#f3f4f6;
  border:none;
  font-weight:600;
}

.ykc-host-delete-confirm{
  flex:1;
  height:48px;
  border-radius:16px;
  background:#ef4444;
  color:#fff;
  border:none;
  font-weight:700;
}


/* =============================
   DELETE OTP BLOCK
============================= */

.ykc-host-delete-otp{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(15,23,42,.06);
}

.ykc-host-delete-otp-info{
  font-size:13px;
  color:#6b7280;
  margin-bottom:10px;
}

.ykc-host-delete-otp-label{
  display:block;
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
  color:#0f172a;
}

/* INPUT */

.ykc-host-delete-otp-input {
    width: 100%;
    height: 52px;
    border-radius: 14px;

    border: 1px solid rgba(15,23,42,0.12);
    background: #f8fafc;

    font-size: 18px;
    letter-spacing: 0.18em;

    text-align: center;
    outline: none;

    transition: all 0.2s ease;
}

.ykc-host-delete-otp-input:focus {
    border-color: #14b8a6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(20,184,166,0.12);
}

/* ERROR */

.ykc-host-delete-otp-error{
  min-height:18px;
  font-size:12px;
  color:#ef4444;
  margin-top:6px;
}

/* RESEND */

.ykc-host-delete-resend{
  margin-top:8px;
  font-size:12px;
  color:#14b8a6;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}

.ykc-host-delete-resend:hover{
  text-decoration:underline;
}


.ykc-host-delete-otp-boxes{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.ykc-host-delete-otp-boxes{
  display:flex;
  gap:8px;
  margin-top:10px;
  width:100%;
}

.ykc-host-delete-otp-digit{
  flex:1 1 0;
  min-width:0;
  height:56px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.12);
  background:#f8fafc;
  text-align:center;
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  outline:none;
  transition:all .2s ease;
  padding:0;
}

.ykc-host-delete-otp-digit:focus{
  border-color:#14b8a6;
  background:#fff;
  box-shadow:0 0 0 3px rgba(20,184,166,.12);
}

@media (max-width: 640px){
  .ykc-host-delete-otp-boxes{
    gap:6px;
  }

  .ykc-host-delete-otp-digit{
    height:52px;
    font-size:24px;
    border-radius:14px;
  }
}




.ykc-host-new-wrap{
    width:100%;
    max-width:680px;
    margin:0 auto;
    padding:10px 0 18px;
}

.ykc-host-new-head{
    margin:0 0 14px;
    padding:4px 2px;
}

.ykc-host-new-step{
    margin:0 0 6px;
    font-size:12px;
    line-height:1.2;
    font-weight:800;
    color:#0ea5a4;
}

.ykc-host-new-title{
    margin:0 0 6px;
    font-size:22px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-0.03em;
    color:#0f172a;
}

.ykc-host-new-sub{
    font-size:14px;
    line-height:1.45;
    color:#6b7280;
}

.ykc-host-new-card{
    padding:18px;
    border-radius:24px;
    border:1px solid rgba(15,23,42,.06);
    background:rgba(255,255,255,.82);
    box-shadow:0 12px 30px rgba(15,23,42,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.ykc-host-new-field + .ykc-host-new-field{
    margin-top:14px;
}

.ykc-host-new-label{
    margin:0 0 8px;
    font-size:13px;
    line-height:1.2;
    font-weight:800;
    color:#334155;
}

.ykc-host-new-input{
    width:100%;
    height:48px;
    padding:0 14px;
    border-radius:16px;
    border:1px solid rgba(0,166,166,.18);
    background:rgba(255,255,255,.90);
    color:#0f172a;
    font-size:15px;
    outline:none;
    transition:border-color .18s ease,box-shadow .18s ease,background .18s ease;
}

.ykc-host-new-input:focus{
    border-color:rgba(0,166,166,.34);
    box-shadow:0 0 0 4px rgba(0,166,166,.08);
    background:#fff;
}

.ykc-host-new-feedback{
    margin-top:12px;
    font-size:13px;
    line-height:1.35;
    font-weight:700;
    color:#dc2626;
}

.ykc-host-new-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:16px;
}

.ykc-host-new-back{
    min-width:120px;
    height:46px;
    padding:0 16px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:16px;
    background:rgba(255,255,255,.86);
    color:#0f172a;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
}

.ykc-host-new-next{
    min-width:120px;
    height:46px;
    padding:0 16px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,var(--yk-teal),var(--yk-teal-2));
    color:#fff;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 10px 22px rgba(0,166,166,.22);
}

.ykc-host-new-chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px 10px;
    margin-top:6px;
}

.ykc-chip{
    appearance:none;
    border:1px solid rgba(15,23,42,.10);
    background:rgba(255,255,255,.72);
    color:#3f3f46;
    border-radius:999px;
    padding:10px 18px;
    font-size:14px;
    line-height:1.1;
    font-weight:800;
    cursor:pointer;
    transition:all .18s ease;
    box-shadow:none;
}

.ykc-chip:hover{
    border-color:rgba(0,166,166,.22);
}

.ykc-chip.active{
    border-color:rgba(0,166,166,.18);
    background:rgba(0,166,166,.50);
    color:#ffffff;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    box-shadow:0 10px 24px rgba(0,166,166,.16);
}

.ykc-chip-custom.active{
    background:rgba(0,166,166,.50);
    color:#ffffff;
}

.ykc-host-new-addrow{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:14px;
}

.ykc-host-new-input--add{
    flex:1 1 auto;
    min-width:0;
}

.ykc-host-new-addbtn{
    width:54px;
    min-width:54px;
    height:48px;
    border:1px solid rgba(15,23,42,.08);
    background:rgba(15,23,42,.06);
    color:#475569;
    border-radius:16px;
    font-size:26px;
    font-weight:700;
    cursor:pointer;
    transition:all .18s ease;
}

.ykc-host-new-addbtn:hover{
    background:rgba(15,23,42,.09);
}

.ykc-host-new-feedback{
    margin-top:10px;
    min-height:18px;
    font-size:13px;
    line-height:1.35;
    font-weight:700;
    color:#dc2626;
}


.ykc-host-upload-count{
    margin-top:10px;
    font-size:13px;
    font-weight:700;
    color:#64748b;
}

.ykc-host-upload-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:12px;
}

.ykc-host-upload-thumb{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    background:rgba(255,255,255,.7);
    border:1px solid rgba(15,23,42,.08);
    aspect-ratio:1/1;
}

.ykc-host-upload-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.ykc-host-preview-line{
    font-size:15px;
    line-height:1.45;
    color:#334155;
    font-weight:700;
}