/* --- Base Fonts --- */
@font-face {
    font-family: 'Maku-Deva';
    src: url('https://yashk.design/wp-content/uploads/fonts/Maku.ttf') format('truetype');
    font-display: swap;
}

/* --- Blockquote Container --- */
blockquote {
    background: var(--yk-bg-color, #ffffff) !important;
    border-radius: 28px !important;
    padding: 30px 20px 30px !important; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.05) !important;
    margin: 40px 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

blockquote::before {
    content: '“';
    position: absolute;
    top: -50px;
    left: 10px;
    font-size: 180px;
    color: var(--yk-accent-color, #f53803);
    opacity: 0.07;
    font-family: serif;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

blockquote p {
    font-size: clamp(22px, 5vw, 30px) !important;
    line-height: 1.5 !important;
    color: var(--yk-text-color, #1a1a1a) !important;
    font-family: 'Playfair Display', 'Maku-Deva', serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    position: relative;
    z-index: 1;
    margin: 0 !important;
    word-wrap: break-word !important;
}

/* --- UI Controls Wrapper (FIXED LAYOUT) --- */
.yk-st-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important; /* Default for Desktop */
    align-items: center !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(0,0,0,0.05) !important;
    gap: 15px !important;
    position: relative !important;
    z-index: 2 !important;
}

.yk-st-soc, .yk-st-act {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
}

/* --- Buttons --- */
.yk-st-btn, .yk-st-pill {
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    text-decoration: none !important;
}

.yk-st-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
}

.yk-st-pill {
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-family: sans-serif !important;
    white-space: nowrap !important;
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) {
    .yk-st-btn:hover, .yk-st-pill:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    }
}

.yk-st-btn:active, .yk-st-pill:active {
    transform: scale(0.95) !important;
}

/* Colors */
.b-wa { background: #25D366 !important; }
.b-pi { background: #E60023 !important; }
.b-tw { background: #000 !important; }
.b-cp { background: #37474f !important; }
.b-sq { background: var(--yk-accent-color, #f53803) !important; }
.b-st { background: linear-gradient(135deg, var(--yk-accent-color, #f53803) 0%, #333 100%) !important; }

/* Toast Notification */
#yk-toast-v {
    visibility: hidden; min-width: 200px; max-width: 90%;
    background: #333; color: #fff; text-align: center;
    border-radius: 50px; padding: 12px 24px;
    position: fixed; z-index: 10000;
    left: 50%; bottom: 30px; transform: translateX(-50%);
    font-size: 14px; font-family: sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0; transition: opacity 0.4s, bottom 0.4s;
}
#yk-toast-v.show { visibility: visible; opacity: 1; bottom: 60px; }

/* --- MOBILE SPECIFIC FIXES (Magic Part) --- */
@media (max-width: 600px) {
    /* Main Wrapper: Stack Items Vertically */
    .yk-st-wrap {
        justify-content: center !important;
        flex-direction: column !important; /* Upar-Niche */
        gap: 20px !important;
    }

    /* 1. Social Icons: Full Width & Centered */
    .yk-st-soc {
        width: 100% !important;
        justify-content: center !important;
        padding-bottom: 10px !important;
        border-bottom: 1px dashed rgba(0,0,0,0.05) !important; /* Divider line */
    }

    /* 2. Action Buttons: Full Width & Spread Out */
    .yk-st-act {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 0 5px !important;
    }

    /* 3. Button Sizing Fix */
    .yk-st-pill {
        flex: 1 !important; /* Barabar jagah le */
        font-size: 13px !important;
        padding: 12px 5px !important;
        min-width: 0 !important; /* Shrink allowed */
        text-align: center !important;
    }
}
