/**
 * پوشا AI - استایل فرانت‌اند (طراحی مدرن)
 * @version 5.0.0
 */

/* ================================================================
   فونت‌ها - ارث‌بری از تم وردپرس + فونت پیش‌فرض فارسی
   ================================================================ */

/* ارث‌بری فونت از تم فعال وردپرس */
.poosha-modal,
.poosha-modal *,
.poosha-btn-wrap,
.poosha-virtual-btn,
.poosha-tryon-btn {
    font-family: inherit !important;
}

/* فونت پیش‌فرض برای امنیت بیشتر */
:root {
    --poosha-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Iran Sans", "IRANSans", "Tahoma", sans-serif;
}

.poosha-modal,
.poosha-modal-overlay,
.poosha-modal-container,
.modal-header,
.modal-body,
.modal-footer,
.upload-card,
.upload-title,
.upload-hint,
.notice-bar,
.result-title,
.result-meta,
.social-btn,
.result-btn,
#pooshaSubmitBtn,
.poosha-virtual-btn {
    font-family: var(--poosha-font-family) !important;
}

/* فونت مخصوص اعداد و متن‌های انگلیسی */
.poosha-modal code,
.poosha-modal pre,
.poosha-modal .english-text {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace !important;
}
/* ================================================================
   متغیرها
   ================================================================ */

:root {
    --purple: #8b5cf6;
    --purple-dark: #7c3aed;
    --purple-light: #a78bfa;
    --blue: #3b82f6;
    --blue-dark: #2563eb;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --bg: #080818;
    --bg-card: rgba(15, 15, 40, 0.85);
    --bg-overlay: rgba(5, 5, 20, 0.75);
    --glass: rgba(139, 92, 246, 0.06);
    --glass-border: rgba(139, 92, 246, 0.25);
    --glass-border-strong: rgba(139, 92, 246, 0.5);
    --text: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.2);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15), 0 0 120px rgba(59, 130, 246, 0.08);
}

/* ================================================================
   مودال اصلی
   ================================================================ */

.poosha-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(5, 5, 20, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.poosha-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.poosha-modal {
    width: 100%;
    max-width: 660px;
    background: rgba(10, 8, 28, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-glow), 0 32px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.9) translateY(20px);
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.poosha-modal-overlay.open .poosha-modal {
    transform: scale(1) translateY(0);
}

.poosha-modal::-webkit-scrollbar {
    width: 4px;
}

.poosha-modal::-webkit-scrollbar-track {
    background: transparent;
}

.poosha-modal::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 99px;
}

/* هدر مودال */
.modal-header {
    padding: 22px 24px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.06));
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple-dark), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

.modal-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* بدنه مودال */
.modal-body {
    padding: 24px;
}

/* بخش آپلود */
.upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.upload-card {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: var(--glass);
    min-height: 180px;
}

.upload-card:hover {
    border-color: var(--glass-border-strong);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.upload-card.uploaded {
    border-style: solid;
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.1);
}

.upload-card.auto {
    cursor: default;
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.04);
}

.upload-icon {
    font-size: 42px;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.upload-card:hover .upload-icon {
    transform: scale(1.1);
}

.upload-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

.upload-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--purple);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 99px;
    opacity: 0;
    transition: opacity 0.3s;
}

.upload-card.uploaded .upload-status {
    opacity: 1;
}

.auto-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 99px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.product-preview-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-top: 8px;
}

/* نوار اطلاع‌رسانی */
.notice-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.06);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #67e8f9;
}

/* دکمه اصلی */
#pooshaSubmitBtn {
    width: 100%;
    padding: 16px 28px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--purple-dark), var(--blue-dark));
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 24px rgba(139, 92, 246, 0.35);
    position: relative;
    overflow: hidden;
}

#pooshaSubmitBtn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.07), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

#pooshaSubmitBtn:hover::after {
    transform: translateX(100%);
}

#pooshaSubmitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.5);
}

#pooshaSubmitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* بخش لودینگ */
#pooshaLoadingSection {
    text-align: center;
    padding: 16px 0 24px;
}

.loading-spinner-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 1.4s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--purple);
    animation-duration: 1.4s;
}

.spinner-ring:nth-child(2) {
    border-right-color: var(--blue);
    animation-duration: 1.8s;
    inset: 8px;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: var(--cyan);
    animation-duration: 2.2s;
    inset: 16px;
}

.spinner-center {
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.loading-steps {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.loading-step-item {
    display: none;
}

.loading-step-item.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.progress-wrap {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 99px;
    height: 8px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto 10px;
}

.progress-bar {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
    background-size: 200% 100%;
    animation: progressShimmer 1.5s linear infinite;
    transition: width 0.5s ease;
}

@keyframes progressShimmer {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 200%;
    }
}

.loading-time-hint {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

/* بخش خطا */
#pooshaErrorSection {
    padding: 20px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
}

.error-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.error-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--error);
    margin-bottom: 4px;
}

.error-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

.error-retry {
    margin-top: 14px;
}

/* بخش نتیجه */
#pooshaResultSection {
    display: none;
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.result-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.meta-dot.green {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

.meta-dot.yellow {
    background: var(--warning);
    box-shadow: 0 0 6px var(--warning);
}

.result-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-purple);
    cursor: zoom-in;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.06));
}

.result-image-wrap:hover .zoom-hint {
    opacity: 1;
}

.result-placeholder {
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
}

.result-placeholder-icon {
    font-size: 80px;
    animation: resultFloat 3s ease-in-out infinite;
}

@keyframes resultFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.result-placeholder-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
}

.result-placeholder-sub {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 99px;
    opacity: 0;
    transition: opacity 0.2s;
}

/* دکمه‌های نتیجه */
.result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.result-btn {
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    cursor: pointer;
}

.result-btn.download {
    background: linear-gradient(135deg, var(--purple-dark), var(--blue-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.result-btn.download:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(139, 92, 246, 0.4);
}

.result-btn.copy {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border);
    color: var(--text-secondary);
}

.result-btn.copy:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
    background: rgba(139, 92, 246, 0.08);
}

/* بخش اشتراک‌گذاری اجتماعی */
.social-share-section {
    margin-bottom: 16px;
}

.social-share-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-share-label::before,
.social-share-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

.social-share-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    transition: all 0.25s;
    cursor: pointer;
    min-width: 60px;
}

.social-btn .s-icon {
    font-size: 20px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.08);
    color: #25d366;
}

.social-btn.telegram:hover {
    border-color: #2aabee;
    background: rgba(42, 171, 238, 0.08);
    color: #2aabee;
}

.social-btn.bale:hover {
    border-color: #6ea6e0;
    background: rgba(110, 166, 224, 0.08);
    color: #6ea6e0;
}

.social-btn.rubika:hover {
    border-color: #f05a28;
    background: rgba(240, 90, 40, 0.08);
    color: #f05a28;
}

.social-btn.instagram:hover {
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.08);
    color: #e1306c;
}

.social-btn.x:hover {
    border-color: #e7e9ea;
    background: rgba(231, 233, 234, 0.08);
    color: #e7e9ea;
}

/* فوتر مودال */
.modal-footer {
    padding: 14px 24px 20px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--purple-light);
    text-decoration: none;
}

.modal-footer a:hover {
    text-decoration: underline;
}

.modal-powered {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* لایت‌باکس */
.poosha-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.poosha-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glow);
    display: block;
}

.lightbox-placeholder {
    width: min(500px, 90vw);
    height: min(500px, 80vh);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.08));
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lightbox-placeholder span:first-child {
    font-size: 100px;
}

.lightbox-placeholder span:last-child {
    font-size: 15px;
    color: var(--text-secondary);
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.2);
}

.lightbox-info {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* کانتینر توست */
#poosha-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.poosha-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: toastIn 0.3s ease, toastOut 0.4s 2.6s forwards;
    backdrop-filter: blur(8px);
    min-width: 240px;
}

.poosha-toast.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.95));
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.poosha-toast.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.95));
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.poosha-toast.info {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(124, 58, 237, 0.95));
    border: 1px solid rgba(167, 139, 250, 0.3);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

/* ================================================================
   دکمه اصلی پرو مجازی در صفحه محصول
   ================================================================ */

.poosha-btn-wrap {
    position: relative;
}

.poosha-btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--purple), var(--blue), var(--cyan), var(--pink), var(--purple));
    background-size: 300% 300%;
    animation: pooshaGradientShift 3s linear infinite;
    opacity: 0.5;
    filter: blur(6px);
    z-index: 0;
    transition: opacity 0.3s;
}

.poosha-btn-wrap:hover .poosha-btn-glow {
    opacity: 1;
    filter: blur(10px);
}

@keyframes pooshaGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.poosha-virtual-btn {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.poosha-virtual-btn .btn-icon {
    animation: pooshaSparkle 2s ease-in-out infinite;
}

@keyframes pooshaSparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.15) rotate(10deg);
    }
}

.poosha-virtual-btn .btn-badge {
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    padding: 3px 8px;
    border-radius: 99px;
    color: #fff;
}

/* ================================================================
   ریسپانسیو
   ================================================================ */

@media (max-width: 640px) {
    .upload-section {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .poosha-modal {
        border-radius: 16px 16px 0 0;
        align-self: flex-end;
        max-height: 95vh;
    }
    
    .poosha-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    
    .result-actions {
        grid-template-columns: 1fr;
    }
    
    .social-share-btns {
        gap: 6px;
    }
    
    .social-btn {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .modal-header {
        padding: 16px 18px;
    }
    
    .modal-body {
        padding: 18px;
    }
    
    .modal-title {
        font-size: 16px;
    }
    
    .modal-icon-wrap {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .social-btn {
        flex-direction: row;
        gap: 6px;
        padding: 8px 12px;
    }
    
    .social-btn .s-icon {
        font-size: 16px;
    }
}