/* vcard.css */

:root {
    --vc-bg: #050505;
    --vc-card-bg: #111111;
    --vc-card-border: rgba(255,255,255,0.08);
    --vc-item-bg: #1a1a1a;
    --vc-item-hover: #222222;
    --vc-item-border: rgba(255,255,255,0.08);
    --vc-text-primary: #f5f5f5;
    --vc-text-secondary: #a3a3a3;
    --vc-text-muted: #737373;
    --vc-accent: #27272a;
    --vc-accent-light: #ffffff;
    --vc-wa: #25d366;
    --vc-ig: #e1306c;
    --vc-github: #e0e0e0;
    --vc-email: #ffffff;
    --font-main: 'Space Grotesk', sans-serif;
    --font-arabic: 'Noto Kufi Arabic', sans-serif;
    --radius-card: 24px;
    --radius-item: 16px;
    --radius-pill: 999px;
    --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
    --ease-deck: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-x: clip;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
    outline: none;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

/* Global Image Protection */
img, .protected-img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
}

body {
    background-color: var(--vc-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
    color: var(--vc-text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-y: auto;
    overflow-x: hidden;
    overflow-x: clip;
    max-width: 100vw;
    position: relative;
}

body.vc-modal-open {
    overflow: hidden;
}

body::before {
    content: ''; 
    position: fixed; 
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none; 
    z-index: 0;
}

.vc-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.5rem;
    z-index: 100;
    background: linear-gradient(to bottom, #0c0c0f 0%, transparent 100%);
}

.vc-topbar-inner {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Tablet & Laptop: Topbar controls grouped on the right */
@media (min-width: 641px) {
    .vc-topbar {
        padding: 1.25rem 2rem;
    }

    .vc-topbar-inner {
        max-width: 100%;
        justify-content: flex-end;
        gap: 0.75rem;
    }
}

.vc-qr-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid var(--vc-item-border);
    color: var(--vc-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.vc-qr-btn:hover {
    background: #26262b;
    border-color: rgba(255, 255, 255, 0.3);
    color: #facc15;
    transform: translateY(-1px);
}

.vc-lang {
    display: inline-flex;
    background: #1a1a1a;
    border: 1px solid var(--vc-item-border);
    border-radius: var(--radius-pill);
    padding: 3px;
    align-items: center;
    position: relative;
}

.vc-lang-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0 0.85rem;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    color: var(--vc-text-muted);
    cursor: pointer;
    transition: transform 0.2s var(--ease-deck), background 0.22s var(--ease-deck), color 0.22s ease, box-shadow 0.22s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.vc-lang-btn:hover {
    color: var(--vc-text-primary);
}

.vc-lang-btn:active {
    transform: scale(0.92);
}

.vc-lang-btn.active {
    background: #facc15;
    color: #000;
    box-shadow: 0 2px 10px rgba(250, 204, 21, 0.28);
}

.vc-lang-btn.btn-pop {
    animation: vcLangBtnPop 0.28s var(--ease-deck);
}
@keyframes vcLangBtnPop {
    0% { transform: scale(0.88); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.vc-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 1rem 3rem;
    position: relative;
    z-index: 1;
    overflow-x: clip;
}

.vc-card {
    background: var(--vc-card-bg);
    border: 1px solid var(--vc-card-border);
    border-radius: var(--radius-card);
    padding: 2rem 1.75rem 1.75rem;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    will-change: transform, opacity;
}

body:not(.vc-loaded) .vc-card {
    animation: vcCardIn 0.42s var(--ease-deck) forwards;
}

body.vc-loaded .vc-card {
    animation: none;
}

@keyframes vcCardIn {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   Coordinated Direction-Aware i18n Transition for VCard
   ============================================================ */

/* Common Baseline: ID <-> EN */
body.i18n-fade-out .vc-card {
    opacity: 0 !important;
    filter: blur(2px) !important;
    transform: translateY(4px) !important;
    transition: opacity 0.13s ease, filter 0.13s ease, transform 0.13s ease !important;
}
body.i18n-fade-in .vc-card {
    animation: vcFadeBloom 0.28s var(--ease-deck) forwards;
}
@keyframes vcFadeBloom {
    0% {
        opacity: 0;
        filter: blur(2px);
        transform: translateY(-4px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Cross-Direction: To Arabic (LTR -> RTL) */
body.i18n-flip-out-rtl .vc-card {
    opacity: 0 !important;
    filter: blur(3px) !important;
    transform: translateX(-16px) !important;
    transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s var(--ease-deck) !important;
}
body.i18n-flip-in-rtl .vc-card {
    animation: vcGlideInRtl 0.32s var(--ease-deck) forwards;
}
@keyframes vcGlideInRtl {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

/* Cross-Direction: From Arabic to Latin (RTL -> LTR) */
body.i18n-flip-out-ltr .vc-card {
    opacity: 0 !important;
    filter: blur(3px) !important;
    transform: translateX(16px) !important;
    transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s var(--ease-deck) !important;
}
body.i18n-flip-in-ltr .vc-card {
    animation: vcGlideInLtr 0.32s var(--ease-deck) forwards;
}
@keyframes vcGlideInLtr {
    0% {
        opacity: 0;
        filter: blur(3px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

/* Backwards compatibility */
.i18n-dissolving {
    opacity: 0 !important;
    filter: blur(2px) !important;
    transform: translateY(3px) !important;
    transition: opacity 0.13s ease, filter 0.13s ease, transform 0.13s ease !important;
}
.i18n-emerging {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: translateY(0) !important;
    transition: opacity 0.24s var(--ease-deck), filter 0.24s var(--ease-deck), transform 0.24s var(--ease-deck) !important;
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .vc-card {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Avatar */
.vc-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.vc-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: transparent;
    z-index: 2;
    pointer-events: auto;
}

.vc-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.25), 0 0 0 6px rgba(255,255,255,0.08);
    display: block;
}

/* Identity */
.vc-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vc-text-primary);
    margin-bottom: 0.35rem;
    text-align: center;
}

.vc-role {
    font-size: 0.875rem;
    color: #93c5fd; /* Calm blue */
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.vc-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--vc-text-muted);
    margin-bottom: 0;
}

.vc-location i {
    font-size: 0.7rem;
}

/* Divider */
.vc-divider {
    width: 100%;
    height: 1px;
    background: var(--vc-card-border);
    margin: 1.5rem 0;
}

/* Social icons */
.vc-socials {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.vc-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--vc-item-border);
    background: var(--vc-item-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vc-text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
}

.vc-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.vc-social-wa:hover {
    color: var(--vc-wa);
    border-color: rgba(37,211,102,0.4);
    background: rgba(37,211,102,0.08);
}

.vc-social-email:hover {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.4);
    background: rgba(248, 113, 113, 0.08);
}

.vc-social-github:hover {
    color: var(--vc-github);
    border-color: rgba(224,224,224,0.3);
    background: rgba(224,224,224,0.06);
}

.vc-social-ig:hover {
    color: var(--vc-ig);
    border-color: rgba(225,48,108,0.4);
    background: rgba(225,48,108,0.08);
}

/* Link cards */
.vc-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.vc-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--vc-item-bg);
    border: 1px solid var(--vc-item-border);
    border-radius: var(--radius-item);
    padding: 0.875rem 1rem;
    text-decoration: none;
    color: var(--vc-text-primary);
    transition: all var(--transition);
    cursor: pointer;
}

.vc-link-card:hover {
    background: var(--vc-item-hover);
    border-color: rgba(255,255,255,0.25);
    transform: translateX(2px);
}

.vc-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--vc-accent-light);
    flex-shrink: 0;
}

.vc-link-info {
    flex: 1;
    min-width: 0;
}

.vc-link-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vc-text-primary);
    margin-bottom: 0.15rem;
}

.vc-link-desc {
    font-size: 0.75rem;
    color: var(--vc-text-secondary);
}

.vc-link-arrow {
    color: var(--vc-text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: color var(--transition);
}

.vc-link-card:hover .vc-link-arrow {
    color: var(--vc-accent-light);
}

.vc-contact-card {
    width: 100%;
    background: var(--vc-item-bg);
    border: 1px solid var(--vc-item-border);
    border-radius: var(--radius-item);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.vc-contact-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-contact-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vc-text-primary);
    margin: 0;
}

.vc-contact-desc {
    font-size: 0.8rem;
    color: var(--vc-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.vc-btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--vc-text-primary);
    color: #0c0c0f;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--transition);
}

.vc-btn-email:hover {
    background: rgba(240,240,245,0.9);
    transform: translateY(-1px);
}

.vc-contact-email {
    font-size: 0.75rem;
    color: var(--vc-text-muted);
    background: rgba(0,0,0,0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    word-break: break-word;
}

/* Footer */
.vc-footer-credit {
    font-size: 0.7rem;
    color: var(--vc-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* RTL support */
[dir='rtl'],
[dir='rtl'] body {
    font-family: var(--font-arabic);
}

[dir='rtl'] .vc-card {
    text-align: right;
}

[dir='rtl'] .vc-link-info {
    text-align: right;
}

[dir='rtl'] .vc-link-arrow i {
    transform: scaleX(-1);
    display: inline-block;
}

[dir='rtl'] .vc-link-card:hover {
    transform: translateX(-2px);
}

[dir='rtl'] .vc-contact-card {
    align-items: flex-start;
    text-align: right;
}

[dir='rtl'] .vc-modal-close {
    right: auto;
    left: 1.5rem;
}

[dir='rtl'] .vc-share-url-label {
    text-align: right;
}

[dir='rtl'] .vc-share-url-input {
    direction: ltr;
    text-align: left;
}

[dir='rtl'] .vc-share-fallback-label {
    text-align: right;
}

[dir='rtl'] .vc-share-chevron {
    right: auto;
    left: 1.25rem;
}

/* Modal Overlay & Bottom Sheet */
.vc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    will-change: opacity;
    overscroll-behavior: contain;
    overflow: hidden;
}

/* Background Freeze when modal is active */
html.vc-modal-open,
body.vc-modal-open {
    overflow: hidden !important;
    height: 100% !important;
    overscroll-behavior: none !important;
}

body.vc-modal-open .vc-topbar,
body.vc-modal-open .vc-wrapper {
    pointer-events: none !important;
    user-select: none !important;
}

.vc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes vcModalShake {
    0%, 100% { transform: translate3d(0, 0, 0); }
    20%, 60% { transform: translate3d(-6px, 0, 0); }
    40%, 80% { transform: translate3d(6px, 0, 0); }
}

.vc-modal-sheet.vc-shake {
    animation: vcModalShake 0.3s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.vc-modal-sheet {
    background: #17171a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: 26px 26px 0 0;
    width: 100%;
    max-width: 440px;
    max-height: calc(100% - 1.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1.2rem 1.5rem 2.25rem;
    position: relative;
    transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.6);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overscroll-behavior: contain;
}

.vc-modal-sheet::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.vc-modal-sheet::-webkit-scrollbar-track {
    background: transparent;
}

.vc-modal-sheet::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.vc-modal-overlay.active .vc-modal-sheet {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.vc-modal-drag-handle {
    width: 44px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    margin: 0 auto 1.25rem;
}

.vc-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--vc-text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.vc-modal-close:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--vc-text-primary);
}

.vc-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vc-text-primary);
    text-align: center;
    margin-bottom: 1.35rem;
}

.vc-modal-qr-box {
    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.vc-qr-img-wrapper {
    position: relative;
    background: #ffffff;
    padding: 14px;
    border-radius: 20px;
    width: 190px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vc-qr-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: transparent;
    z-index: 2;
    pointer-events: auto;
}

.vc-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.vc-share-url-section {
    margin-bottom: 1.15rem;
}

.vc-share-url-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--vc-text-muted);
    letter-spacing: 0.8px;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.vc-share-url-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.vc-share-url-input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--vc-text-secondary);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    outline: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vc-share-copy-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #ffffff;
    color: #0c0c0f;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.vc-share-copy-btn:hover {
    background: #f0f0f5;
    transform: scale(1.04);
}

.vc-share-copy-btn:active {
    transform: scale(0.96);
}

.vc-share-native-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.85rem 1.25rem;
    color: var(--vc-text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    cursor: pointer;
    position: relative;
    transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
}

.vc-share-native-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
}

.vc-share-native-btn:active {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

.vc-share-native-btn.expanded {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.vc-share-chevron {
    position: absolute;
    right: 1.25rem;
    font-size: 0.8rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.75;
}

.vc-share-native-btn.expanded .vc-share-chevron {
    transform: rotate(180deg);
}

/* Fallback Social Share Grid */
.vc-share-fallback {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.25s ease,
                margin-top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-share-fallback.expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 0.85rem;
}

.vc-share-fallback-inner {
    min-height: 0;
    overflow: hidden;
}

.vc-share-fallback-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--vc-text-muted);
    letter-spacing: 0.8px;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    text-align: left;
}

.vc-share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.vc-share-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--vc-text-secondary);
    font-size: 0.78rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    user-select: none;
}

.vc-share-item i {
    font-size: 1.3rem;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.vc-share-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vc-text-primary);
    transform: translateY(-2px);
}

.vc-share-item:hover i {
    transform: scale(1.15);
}

.vc-share-item:active {
    transform: scale(0.96);
}

/* Brand specific accents */
.vc-share-item.vc-share-wa:hover {
    border-color: rgba(37, 211, 102, 0.5);
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}
.vc-share-item.vc-share-wa:hover i {
    color: #25D366;
}

.vc-share-item.vc-share-tg:hover {
    border-color: rgba(36, 161, 222, 0.5);
    background: rgba(36, 161, 222, 0.12);
    color: #24A1DE;
}
.vc-share-item.vc-share-tg:hover i {
    color: #24A1DE;
}

.vc-share-item.vc-share-li:hover {
    border-color: rgba(10, 102, 194, 0.5);
    background: rgba(10, 102, 194, 0.12);
    color: #0A66C2;
}
.vc-share-item.vc-share-li:hover i {
    color: #0A66C2;
}

.vc-share-item.vc-share-x:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
.vc-share-item.vc-share-x:hover i {
    color: #ffffff;
}

.vc-share-item.vc-share-fb:hover {
    border-color: rgba(24, 119, 242, 0.5);
    background: rgba(24, 119, 242, 0.12);
    color: #1877F2;
}
.vc-share-item.vc-share-fb:hover i {
    color: #1877F2;
}

.vc-share-item.vc-share-email:hover {
    border-color: rgba(234, 67, 53, 0.5);
    background: rgba(234, 67, 53, 0.12);
    color: #EA4335;
}
.vc-share-item.vc-share-email:hover i {
    color: #EA4335;
}

/* Responsive */
@media (max-width: 540px) {
    .vc-card {
        padding: 1.75rem 1.25rem;
    }
    .vc-wrapper {
        padding: 4.5rem 0.75rem 2rem;
    }
    .vc-modal-sheet {
        max-height: calc(100% - 1.5rem);
        padding: 1.1rem 1.25rem 1.75rem;
    }
    .vc-modal-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    .vc-modal-qr-box {
        padding: 0.85rem;
        border-radius: 22px;
        margin-bottom: 1rem;
    }
    .vc-qr-img-wrapper {
        width: 150px;
        height: 150px;
        border-radius: 16px;
        padding: 10px;
    }
    .vc-share-url-section {
        margin-bottom: 0.95rem;
    }
}
