/* ═══════════════════════════════════════════════════════════
   Kidillus AI Chat Widget — Professional v3.0
   Gradient: #00d4ff → #b38bff → #ff9bd7
   Font: Sora (Google Fonts)
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ───────────────────────────────────────────────
   TOKENS
─────────────────────────────────────────────── */
:root {
    --kd-grad:      linear-gradient(135deg, #00d4ff 0%, #b38bff 55%, #ff9bd7 100%);
    --kd-grad-90:   linear-gradient(90deg,  #00d4ff 0%, #b38bff 55%, #ff9bd7 100%);
    --kd-c1:        #00d4ff;
    --kd-c2:        #b38bff;
    --kd-c3:        #ff9bd7;
    --kd-dark:      #0f0c1a;
    --kd-panel:     #ffffff;
    --kd-surface:   #f8f7ff;
    --kd-border:    #ede8ff;
    --kd-text:      #1a1530;
    --kd-muted:     #8a82a8;
    --kd-ai-bg:     #f3f0ff;
    --kd-user-bg:   #1a1530;
    --kd-radius:    20px;
    --kd-shadow:    0 20px 60px rgba(100, 60, 180, 0.2), 0 4px 20px rgba(0,0,0,0.08);
    --kd-ff:        'Sora', sans-serif;
    --kd-trans:     0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ───────────────────────────────────────────────
   INBOX PAGE — HIDE WIDGET
─────────────────────────────────────────────── */
.inbox-page #ai-fab,
.inbox-page #ai-greeting-bubble {
    display: none !important;
}

/* ───────────────────────────────────────────────
   PROACTIVE GREETING BUBBLE
─────────────────────────────────────────────── */
#ai-greeting-bubble {
    position: fixed;
    bottom: 148px;
    right: 28px;
    background: #ffffff;
    border: 1.5px solid var(--kd-border);
    border-radius: 16px;
    padding: 12px 18px 12px 14px;
    box-shadow: 0 8px 30px rgba(100, 60, 180, 0.18);
    font-family: var(--kd-ff);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--kd-text);
    z-index: 99998;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(12px) scale(0.92);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 260px;
    cursor: pointer;
}

#ai-greeting-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

#ai-greeting-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-right: 1.5px solid var(--kd-border);
    border-bottom: 1.5px solid var(--kd-border);
    transform: rotate(45deg);
}

.bubble-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--kd-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.bubble-text { flex: 1; line-height: 1.4; }

.bubble-close {
    color: #c4bcd8;
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
    transition: color var(--kd-trans);
}
.bubble-close:hover { color: #ef4444; }

/* Pulse animation on bubble */
@keyframes kdBubblePulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(100,60,180,0.18); }
    50%       { box-shadow: 0 8px 40px rgba(179,139,255,0.40); }
}
#ai-greeting-bubble.show { animation: kdBubblePulse 2.4s ease-in-out infinite; }

/* ───────────────────────────────────────────────
   FAB BUTTON
─────────────────────────────────────────────── */
#ai-fab {
    position: fixed;
    bottom: 60px;
    right: 24px;
    width: 45px;
    height: 45px;
    background: var(--kd-grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    border: none;
    box-shadow: 0 8px 28px rgba(100,60,180,0.38);
    transition: transform var(--kd-trans), box-shadow var(--kd-trans);
}
#ai-fab:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 12px 36px rgba(100,60,180,0.5);
}
#ai-fab:active { transform: scale(0.96); }

#ai-fab svg { width: 26px; height: 26px; }

/* Ping ring on FAB */
#ai-fab::before {
    content: '';
    position: absolute;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--kd-grad);
    opacity: 0.4;
    animation: kdFabPing 2s ease-out infinite;
}
@keyframes kdFabPing {
    0%   { transform: scale(1);   opacity: 0.4; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}
#ai-fab.chat-open::before { animation: none; }

/* ───────────────────────────────────────────────
   MAIN CHAT BOX
─────────────────────────────────────────────── */
#ai-box {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 400px;
    height: 680px;
    max-height: 84vh;
    background: var(--kd-panel);
    border-radius: var(--kd-radius);
    box-shadow: var(--kd-shadow);
    display: flex;
    flex-direction: column;
    font-family: var(--kd-ff);
    z-index: 99997;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    visibility: hidden;
    border: 1px solid var(--kd-border);
    transition: all var(--kd-trans);
    overflow: hidden;
}
#ai-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Mobile */
@media (max-width: 480px) {
    #ai-box {
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
        bottom: 90px;
        height: 74vh;
        border-radius: 16px;
    }
    #ai-fab { bottom: 80px; right: 16px; width: 50px; height: 50px; }
    #ai-greeting-bubble { right: 16px; bottom: 82px; }
}

/* ───────────────────────────────────────────────
   HEADER
─────────────────────────────────────────────── */
#ai-header {
    background: var(--kd-grad);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative shimmer on header */
#ai-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
    animation: kdHeaderShimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes kdHeaderShimmer {
    0%, 100% { transform: translateX(-100%); }
    50%       { transform: translateX(100%); }
}

.ai-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
}

/* Online indicator */
.ai-avatar::after {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid white;
    animation: kdOnlinePulse 2s ease-in-out infinite;
}
@keyframes kdOnlinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50%       { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0); }
}

.ai-header-info { display: flex; flex-direction: column; }
.ai-header-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.2px;
}
.ai-header-status {
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    margin-top: 1px;
}

.ai-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ai-hdr-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background var(--kd-trans);
}
.ai-hdr-btn:hover { background: rgba(255,255,255,0.32); }

/* ───────────────────────────────────────────────
   QUICK CHIPS
─────────────────────────────────────────────── */
#ai-chips {
    padding: 10px 14px 4px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    flex-shrink: 0;
    border-bottom: 1px solid var(--kd-border);
    background: var(--kd-surface);
}

.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    border: 1.5px solid var(--kd-border);
    color: var(--kd-text);
    font-family: var(--kd-ff);
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--kd-trans);
    white-space: nowrap;
}
.ai-chip:hover {
    border-color: var(--kd-c2);
    background: #f5f0ff;
    color: var(--kd-c2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(179,139,255,0.2);
}

/* ───────────────────────────────────────────────
   MESSAGES AREA
─────────────────────────────────────────────── */
#ai-messages {
    flex: 1;
    padding: 18px 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
    background: var(--kd-panel);
}

/* Custom scrollbar */
#ai-messages::-webkit-scrollbar { width: 4px; }
#ai-messages::-webkit-scrollbar-track { background: transparent; }
#ai-messages::-webkit-scrollbar-thumb {
    background: var(--kd-border);
    border-radius: 4px;
}

/* ── Message Row ── */
.msg-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: kdMsgIn 0.3s ease both;
}
.msg-row.user { flex-direction: row-reverse; }

@keyframes kdMsgIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Avatar in messages ── */
.msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--kd-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-bottom: 18px;
}
.msg-row.user .msg-avatar {
    background: var(--kd-user-bg);
    font-size: 12px;
    color: white;
    font-weight: 700;
}

/* ── Bubble ── */
.msg-bubble {
    max-width: 78%;
    display: flex;
    flex-direction: column;
}

.msg-content {
    padding: 11px 15px;
    border-radius: 18px;
    font-size: 13.5px;
    line-height: 1.55;
    word-wrap: break-word;
    position: relative;
}

/* AI bubble */
.msg-row.ai .msg-content {
    background: var(--kd-ai-bg);
    color: var(--kd-text);
    border-bottom-left-radius: 5px;
    border: 1px solid var(--kd-border);
}

/* User bubble */
.msg-row.user .msg-content {
    background: var(--kd-user-bg);
    color: #ffffff;
    border-bottom-right-radius: 5px;
}

/* Time stamp */
.msg-time {
    font-size: 10px;
    color: var(--kd-muted);
    margin-top: 4px;
    padding: 0 4px;
}
.msg-row.user .msg-time { text-align: right; }

/* ── Markdown inside bubbles ── */
.msg-content strong { font-weight: 700; }
.msg-content em { font-style: italic; }
.msg-content ul, .msg-content ol { padding-left: 18px; margin: 6px 0; }
.msg-content li { margin: 3px 0; }
.msg-content a {
    color: var(--kd-c2);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted var(--kd-c2);
    transition: color var(--kd-trans);
}
.msg-content a:hover { color: var(--kd-c1); }
.msg-row.user .msg-content a { color: #a0e8ff; border-bottom-color: #a0e8ff; }

/* ── Chat images ── */
.ai-chat-img {
    max-width: 100%;
    border-radius: 12px;
    margin: 8px 0 4px;
    display: block;
    border: 1px solid var(--kd-border);
}

/* ── Date divider ── */
.date-divider {
    text-align: center;
    font-size: 11px;
    color: var(--kd-muted);
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.date-divider::before, .date-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--kd-border);
}

/* ───────────────────────────────────────────────
   TYPING INDICATOR
─────────────────────────────────────────────── */
#ai-typing {
    display: none;
    padding: 0 16px 8px;
    flex-shrink: 0;
}

.typing-bubble {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--kd-ai-bg);
    border: 1px solid var(--kd-border);
    padding: 10px 16px;
    border-radius: 18px;
    border-bottom-left-radius: 5px;
}

.typing-bubble span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--kd-c2);
    animation: kdTypingBounce 1.2s ease-in-out infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.18s; background: var(--kd-c1); }
.typing-bubble span:nth-child(3) { animation-delay: 0.36s; background: var(--kd-c3); }

@keyframes kdTypingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%           { transform: translateY(-6px); }
}

/* ───────────────────────────────────────────────
   INPUT AREA
─────────────────────────────────────────────── */
#ai-input-wrapper {
    padding: 12px 14px;
    border-top: 1px solid var(--kd-border);
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--kd-surface);
    flex-shrink: 0;
}

#ai-input {
    flex: 1;
    background: #ffffff;
    border: 1.5px solid var(--kd-border);
    border-radius: 24px;
    padding: 10px 16px;
    font-family: var(--kd-ff);
    font-size: 13.5px;
    color: var(--kd-text);
    outline: none;
    transition: border-color var(--kd-trans), box-shadow var(--kd-trans);
    resize: none;
    max-height: 80px;
    min-height: 40px;
    line-height: 1.4;
}
#ai-input::placeholder { color: var(--kd-muted); }
#ai-input:focus {
    border-color: var(--kd-c2);
    box-shadow: 0 0 0 3px rgba(179,139,255,0.15);
}

.ai-input-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all var(--kd-trans);
}

#ai-mic-btn {
    background: var(--kd-surface);
    border: 1.5px solid var(--kd-border);
    color: var(--kd-muted);
}
#ai-mic-btn:hover { border-color: var(--kd-c2); color: var(--kd-c2); }
#ai-mic-btn.listening {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border-color: transparent;
    animation: kdMicPulse 1s ease-in-out infinite;
}
@keyframes kdMicPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,71,87,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(255,71,87,0); }
}

#ai-send {
    background: var(--kd-grad);
    color: white;
}
#ai-send:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(179,139,255,0.4); }
#ai-send:active { transform: scale(0.96); }
#ai-send:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ───────────────────────────────────────────────
   QUOTE CARD (from api_get_quote.php)
─────────────────────────────────────────────── */
.quote-card-pro {
    font-family: var(--kd-ff) !important;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(100,60,180,0.14);
    overflow: hidden;
    border: 1px solid var(--kd-border);
    max-width: 290px;
    margin: 4px 0;
    transition: transform 0.2s;
}
.quote-card-pro:hover { transform: translateY(-2px); }

.qc-header {
    background: var(--kd-grad) !important;
    padding: 14px 18px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.qc-header h3 {
    margin: 0;
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--kd-ff) !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.qc-badge {
    background: rgba(255,255,255,0.22);
    font-size: 10px;
    padding: 3px 9px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.qc-body { padding: 18px; }
.qc-price-box { text-align: center; margin-bottom: 16px; }
.qc-price-sub { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
.qc-price-main {
    font-size: 36px;
    font-weight: 800;
    background: var(--kd-grad-90, linear-gradient(90deg,#00d4ff,#b38bff,#ff9bd7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
    display: block;
}
.qc-price-currency {
    font-size: 18px;
    vertical-align: super;
    font-weight: 700;
}

.qc-list { display: flex; flex-direction: column; gap: 8px; }
.qc-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #64748b;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--kd-border);
    font-family: var(--kd-ff) !important;
}
.qc-item:last-child { border-bottom: none; padding-bottom: 0; }
.qc-item b { color: var(--kd-text); font-weight: 600; }

.qc-discount {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    text-align: center;
    font-size: 11.5px;
    padding: 7px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 600;
}

.qc-footer { padding: 0 18px 18px; }
.qc-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    background: var(--kd-grad) !important;
    color: white;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13.5px;
    font-family: var(--kd-ff) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(100,60,180,0.3);
}
.qc-btn:hover { transform: scale(1.02); box-shadow: 0 6px 22px rgba(100,60,180,0.4); }
.qc-btn.login-btn {
    background: #eff6ff !important;
    color: #4f46e5;
    border: 1.5px solid #c7d2fe;
    box-shadow: none;
}
.qc-btn.login-btn:hover { background: #e0e7ff !important; }

.qc-secure {
    text-align: center;
    font-size: 10.5px;
    color: #9ca3af;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
}

/* ───────────────────────────────────────────────
   PORTFOLIO CARD (shown inside chat)
─────────────────────────────────────────────── */
.kd-portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 290px;
    margin: 4px 0;
}

.kd-portfolio-item {
    background: white;
    border: 1px solid var(--kd-border);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.kd-portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(100,60,180,0.14);
}

.kd-portfolio-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.kd-portfolio-meta {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kd-portfolio-meta .style-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--kd-text);
}
.kd-portfolio-meta .style-price {
    font-size: 11.5px;
    font-weight: 600;
    background: var(--kd-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.kd-portfolio-meta a {
    font-size: 11px;
    color: var(--kd-c2) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    font-weight: 600;
    background: rgba(179,139,255,0.1);
    padding: 3px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.kd-portfolio-meta a:hover { background: rgba(179,139,255,0.2); }

/* ───────────────────────────────────────────────
   PROGRESS TRACKER
─────────────────────────────────────────────── */
.kd-tracker {
    background: white;
    border: 1px solid var(--kd-border);
    border-radius: 14px;
    padding: 14px 16px;
    max-width: 270px;
}
.kd-tracker-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--kd-text);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.kd-tracker-pct {
    font-size: 13px;
    font-weight: 800;
    background: var(--kd-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.kd-tracker-bar {
    height: 10px;
    background: var(--kd-border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}
.kd-tracker-fill {
    height: 100%;
    background: var(--kd-grad);
    border-radius: 10px;
    transition: width 1s ease;
}
.kd-tracker-stages {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--kd-muted);
    font-weight: 500;
}

/* ───────────────────────────────────────────────
   MENU LIST (suggestion buttons)
─────────────────────────────────────────────── */
#ai-menu-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    max-width: 270px;
}

#ai-menu-list button {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--kd-border);
    padding: 11px 14px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all var(--kd-trans);
    width: 100%;
    font-family: var(--kd-ff);
    gap: 12px;
}
#ai-menu-list button:hover {
    border-color: var(--kd-c2);
    background: #f5f0ff;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(179,139,255,0.15);
}

.menu-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    background: var(--kd-surface);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.menu-text { flex: 1; }
.menu-text .title { font-size: 13px; font-weight: 600; color: var(--kd-text); }
.menu-text .desc  { font-size: 11px; color: var(--kd-muted); margin-top: 2px; }
.menu-arrow { color: var(--kd-muted); font-size: 16px; }

/* ───────────────────────────────────────────────
   VOICE TOOLTIP
─────────────────────────────────────────────── */
.voice-status {
    font-size: 11px;
    color: var(--kd-muted);
    text-align: center;
    padding: 3px 0 0;
    display: none;
}
.voice-status.visible { display: block; }

/* ───────────────────────────────────────────────
   UTILITY: GRADIENT TEXT
─────────────────────────────────────────────── */
.kd-grad-text {
    background: var(--kd-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}