/* =============================================
   فهرست مطالب
   =============================================
   1.  تنظیمات سراسری و ریست
   2.  هدر و منوی پایین
   3.  کامپوننت‌های پایه
   4.  صفحه اصلی (HOME)
   5.  کامپوننت ورودی (Input)
   6.  کامپوننت OTP
   7.  هدر ویژه (glass-panel)
   8.  هدر داشبورد (dashboard-header-luxury)
   9.  صفحه پروفایل (profile)
   10. هدر صفحات (page-header)
   11. صفحه هدیه (gift page)
   12. خدمات (services)
   13. پشتیبانی (support)
   14. صفحه‌بندی (pagination)
   15. جزئیات تراکنش (transaction)
   16. کیف پول (wallet actions)
   17. درباره ما / لینک‌های پشتیبانی (about)
   18. مخفی کردن موجودی - Glass Blur
   19. اعلان‌ها (notifications)
   20. مودال اعلان (notification modal)
   21. کارت تیکت (ticket card)
   22. صفحه واریز با شناسه (Deposit with ID)
   23. Jalali Datepicker — Gold724 Theme v2
   ============================================= */


/* ===============================================================
   1. تنظیمات سراسری و ریست
   =============================================================== */
body {
    background-color: #f5f5f5;
}

.page-container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* ===============================================================
   2. هدر و منوی پایین
   =============================================================== */
.sub-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 10px;
}

.root {
    flex: 1;
    width: 100%;
    padding: 1rem;
    margin-bottom: 70px;
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 640px;
    height: 70px;
    background-color: white;
    border-top: 1px solid #ccc;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0 0.5rem;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    flex: 1;
    max-width: 80px;
    min-width: 60px;
}

.menu-icon {
    font-size: 24px;
}

.menu-text {
    font-size: 12px;
}

@media (max-width: 640px) {
    .bottom-menu {
        max-width: 100%;
    }

    .menu-text {
        font-size: 10px;
    }

    .menu-icon {
        font-size: 20px;
    }
}


/* ===============================================================
   3. کامپوننت‌های پایه
   =============================================================== */
.content-box {
    background-color: #f1f3f5;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 1rem;
    text-align: center;
    color: #7f8c8d;
    min-height: 300px;
}

.bottom-button-container {
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
    padding: 16px;
    background-color: white;
    z-index: 100;
}

.bottom-button-container-login {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    padding: 16px;
    background-color: white;
    z-index: 100;
}

.btn-confirm {
    background-color: #12565d;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-confirm:hover {
    background-color: #12565d;
    opacity: 0.9;
}


/* ===============================================================
   4. صفحه اصلی (HOME)
   =============================================================== */
.info-wallets {
    background: linear-gradient(145deg, #12565d, #0a4248);
    border-radius: 25px;
    padding: 1.8rem;
    box-shadow: 0 25px 40px -12px rgba(18, 86, 93, 0.17);
    position: relative;
    overflow: hidden;
}

.info-wallets::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(236, 189, 37, 0.27), transparent);
    pointer-events: none;
}

.info-wallets .color-secondary {
    color: #ecbf25 !important;
    font-size: 1rem !important;
}

.info-wallets .color-white {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem !important;
}

.toggle-balance,
.copy-balance {
    cursor: pointer;
    transition: 0.2s;
    font-size: 1rem !important;
}

.toggle-balance:hover,
.copy-balance:hover {
    color: #ecbf25 !important;
    transform: scale(1.1);
}

.gold-balance-number,
.rial-balance-number {
    font-size: 1.9rem !important;
    letter-spacing: 1px;
}

.rial-balance-number {
    color: white !important;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin: 2rem 0;
}

.grid-item {
    background: white;
    border-radius: 15px;
    padding: .7rem 0.3rem;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(236, 189, 37, 0.32);
    transition: all 0.2s ease-in-out;
}

.grid-item:active {
    transform: scale(0.96);
}

.grid-item img {
    width: 50px !important;
    height: 50px;
    object-fit: contain;
}

.grid-title {
    font-size: 0.9rem !important;
    font-weight: 700;
    color: #12565d;
    margin-top: 0.2rem;
}

@media (max-width: 480px) {
    .grid-container {
        gap: 0.7rem;
    }

    .grid-item img {
        width: 40px !important;
    }

    .grid-title {
        font-size: 0.7rem !important;
    }

    .info-wallets {
        padding: 1.2rem !important;
    }

    .gold-balance-number,
    .rial-balance-number {
        font-size: 1.4rem !important;
    }
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
}

.swiper-slide {
    background: #e0e0e0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    transition: transform 0.4s;
}

.swiper-pagination-bullet-active {
    background: #ecbf25 !important;
}

.chart-area {
    position: relative;
    height: auto;
}

#priceChart {
    width: 100%;
    border-radius: 8px;
}

.chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.chart-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.4rem 1.2rem;
}

.live-badge {
    width: 10px;
    height: 10px;
    background: #ecbf25;
    border-radius: 50%;
    display: inline-block;
    animation: live-pulse 1.4s infinite;
}

@keyframes live-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 0 6px rgba(236, 191, 37, 0);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #12565d;
    margin: 0;
}

.gold-highlight {
    background: linear-gradient(120deg, #ecbf25, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.price-glance {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-value {
    font-size: 1rem;
    font-weight: 600;
    color: #12565d;
    direction: ltr;
}

.price-unit {
    font-size: 0.7rem;
    color: #6c7a8a;
    font-weight: 500;
}

.trend-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.trend-badge.positive {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

.trend-badge.negative {
    background: rgba(125, 46, 46, 0.12);
    color: #7d312e;
}

.price-chart-canvas {
    width: 100%;
    max-height: 240px;
}

.chart-period-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.period-pill {
    background: #eff3f8;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #12565d;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 90px;
    text-align: center;
}

.period-pill.active {
    background: #12565d;
    color: white;
    box-shadow: 0 8px 18px rgba(18, 86, 93, 0.25);
    transform: scale(1.02);
}

.period-pill:active {
    transform: scale(0.96);
}

@media (max-width: 560px) {
    .time-btn {
        padding: 0.5rem 0;
        font-size: 0.7rem;
    }

    #currentGoldPrice {
        font-size: 0.9rem !important;
    }
}


/* ===============================================================
   5. کامپوننت ورودی (Input)
   =============================================================== */
.input-container {
    position: relative;
    margin: 1.8rem auto;
}

.input-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffffff;
    padding: 0 12px;
    color: #12565d;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    border-radius: 40px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid #12565d;
    border-radius: 56px;
    background: white;
    overflow: hidden;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    border-color: #ecbf25;
    box-shadow: 0 0 0 4px rgba(236, 191, 37, 0.12);
}

.input-field {
    flex: 1;
    border: none;
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    background: transparent;
    outline: none;
    text-align: center;
    color: #1e2a32;
    font-weight: 500;
}

.input-field::placeholder {
    color: #a0aec0;
    font-size: 0.8rem;
}

.dotted-divider {
    width: 1px;
    height: 20px;
    border-right: 2px dotted #12565d;
    margin: 0 10px;
}

.input-suffix {
    padding: 0 15px;
    color: #12565d;
    font-size: 0.8rem;
    white-space: nowrap;
    font-weight: 600;
}

@media (max-width: 560px) {
    .input-label {
        font-size: 0.6rem;
        top: -10px;
        right: 16px;
        padding: 0 8px;
    }

    .input-field {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}


/* ===============================================================
   6. کامپوننت OTP
   =============================================================== */
.login-hero {
    text-align: center;
    margin: 1.5rem 0 2rem;
    position: relative;
}

.login-hero__icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.login-hero__icon img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
    position: relative;
    z-index: 2;
}

.login-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(236, 189, 37, 0.1), transparent);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.login-hero__title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #12565d;
    margin: 0.5rem 0 0.3rem;
}

.gold-text {
    background: linear-gradient(120deg, #ecbf25, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.login-hero__desc {
    font-size: 0.8rem;
    color: #8a99aa;
    margin: 0;
}

@media (max-width: 560px) {
    .login-hero__glow {
        width: 120px;
        height: 120px;
    }

    .login-hero__title {
        font-size: 1.2rem;
    }
}

#box-verifyOtp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.otp-field {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.form__input__otp {
    width: 40px;
    height: 40px;
    margin: 10px;
    text-align: center;
    font-size: 13px;
    border: none;
    outline: none;
    background-color: #ecf0f3;
    transition: 0.25s ease;
    border-radius: 8px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}

.form__input__otp:focus {
    box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
    border: solid 0.3px #d1d9e6;
}

.form__button {
    width: 150px;
    height: 40px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    background-color: #4b70e2;
    color: #f9f9f9;
    border: none;
    outline: none;
}

.box-input-register {
    position: relative;
}

.title-input-register {
    position: absolute;
    display: inline-block;
    bottom: 17px;
    right: 10px;
}


/* ===============================================================
   7. هدر ویژه (glass-panel)
   =============================================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 0.7rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 0 0 0.5px rgba(238, 192, 43, 0.82);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.57);
}

.glass-panel__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00565c;
}

.unit {
    font-size: 0.6rem;
    color: #6c7a8a;
}

.glass-panel__right {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price {
    font-size: 1.05rem;
    font-weight: 800;
    color: #00565c;
}

@media (max-width: 560px) {

    .glass-panel__left,
    .glass-panel__right {
        justify-content: center;
    }

    .price {
        font-size: 1rem;
    }
}


/* ===============================================================
   8. هدر داشبورد (dashboard-header-luxury)
   =============================================================== */
.dashboard-header-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.platinum-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.gold-shine {
    background: linear-gradient(150deg, #ecbf25, #c9a320, #ecbf25);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
}

.dashboard-header-luxury__actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.support-btn-glass {
    text-decoration: none;
}

.support-btn-glass__inner {
    background: rgba(18, 86, 93, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    padding: 0.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(236, 191, 37, 0.2);
    transition: all 0.2s;
}

.support-btn-glass__inner:hover {
    background: rgba(18, 86, 93, 0.15);
    transform: translateY(-2px);
    border-color: rgba(236, 191, 37, 0.5);
}

.support-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #12565d;
}

.support-icon {
    font-size: 1.3rem;
    color: #12565d;
}

#show-old-notifs {
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.08), rgba(238, 192, 43, 0.08));
    color: #12565d;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
}

#show-old-notifs:hover {
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.11), rgba(238, 192, 43, 0.116));
    color: #12565d;
    font-size: 0.8rem;
    font-weight: 700;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.2s;
}

.notif-btn-glass {
    background: rgba(236, 191, 37, 0.15);
    backdrop-filter: blur(8px);
    width: 44px;
    height: 44px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(236, 191, 37, 0.3);
    transition: all 0.2s;
}

.notif-btn-glass:hover {
    background: rgba(236, 191, 37, 0.25);
    transform: translateY(-2px);
}

.notif-icon {
    font-size: 1.3rem;
    color: #ecbf25;
}

@media (max-width: 480px) {
    .support-text {
        font-size: 0.7rem;
    }

    .support-btn-glass__inner {
        padding: 0.3rem 1rem;
    }

    .notif-btn-glass {
        width: 38px;
        height: 38px;
    }
}


/* ===============================================================
   9. صفحه پروفایل (profile)
   =============================================================== */
.invite-card {
    background: linear-gradient(120deg, #fef9e6, #fff3cf);
    border-radius: 28px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(236, 191, 37, 0.4);
}

.invite-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(236, 191, 37, 0.2);
}

.invite-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.invite-icon img {
    width: 44px;
}

.invite-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #12565d;
    margin: 0 0 4px;
}

.invite-desc {
    font-size: 0.7rem;
    color: #5b6e7c;
    margin: 0;
}

.invite-arrow {
    font-size: 1.4rem;
    color: #ecbf25;
}

.verification-card {
    background: white;
    border-radius: 28px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(18, 86, 93, 0.08);
    cursor: pointer;
    transition: 0.2s;
}

.verification-card:hover {
    border-color: #ecbf25;
    transform: translateY(-2px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ecbf25;
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #12565d;
    margin: 0 0 4px;
}

.user-phone {
    font-size: 0.7rem;
    color: #8a99aa;
}

.verification-badge {
    background: rgba(18, 86, 93, 0.08);
    border-radius: 60px;
    padding: 0.3rem 1rem;
}

.verification-badge span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #12565d;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.shortcut-item {
    background: white;
    border-radius: 28px;
    padding: 1rem 0.2rem;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(18, 86, 93, 0.06);
}

.shortcut-item:hover {
    transform: translateY(-4px);
    border-color: #ecbf25;
}

.shortcut-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.shortcut-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.shortcut-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #12565d;
    display: block;
}

.logout-btn {
    background: rgba(220, 53, 69, 0.08);
    border-radius: 60px;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    border: 1px solid rgba(220, 53, 69, 0.2);
    margin-top: 0.5rem;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 0.15);
    transform: translateY(-2px);
}

.logout-btn i {
    font-size: 1.3rem;
    color: #dc3545;
}

.logout-btn span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #dc3545;
}

@media (max-width: 560px) {
    .invite-title {
        font-size: 0.85rem;
    }

    .invite-icon img {
        width: 36px;
    }

    .user-avatar {
        width: 46px;
        height: 46px;
    }

    .shortcut-icon img {
        width: 38px;
    }

    .shortcut-label {
        font-size: 0.65rem;
    }
}


/* ===============================================================
   10. هدر صفحات (page-header)
   =============================================================== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.page-header__icon,
.page-header__action {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
    color: #12565d;
    font-size: 1.3rem;
}

.page-header__icon:hover,
.page-header__action:hover {
    background: rgba(18, 86, 93, 0.08);
    transform: scale(1.05);
}

.page-header__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #12565d;
    margin: 0;
}

@media (max-width: 560px) {
    .page-header__title {
        font-size: 1.1rem;
    }

    .page-header__icon,
    .page-header__action {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}


/* ===============================================================
   11. صفحه هدیه (gift page)
   =============================================================== */
.referral-section {
    direction: rtl;
    margin: 1.5rem 0;
}

.referral-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(145deg, #ffffff, #fefcf5);
    border-radius: 48px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(236, 191, 37, 0.2);
    margin-bottom: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
}

.referral-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 35px -12px rgba(236, 191, 37, 0.15);
}

.referral-gift-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 0.5rem;
}

.referral-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #12565d;
    margin: 0.5rem 0 0.3rem;
}

.gold-highlight {
    background: linear-gradient(120deg, #ecbf25, #c9a320);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.referral-subtitle {
    font-size: 0.75rem;
    color: #5b6e7c;
    margin-bottom: 1rem;
}

.referral-progress {
    margin-top: 1rem;
    padding: 0 1rem;
}

.progress-bar-bg {
    background: rgba(18, 86, 93, 0.1);
    border-radius: 60px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #ecbf25, #c9a320);
    width: 0%;
    height: 100%;
    border-radius: 60px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.7rem;
    color: #12565d;
    margin-top: 0.5rem;
    font-weight: 600;
}

.invite-count {
    font-weight: 800;
    color: #ecbf25;
}

.referral-code-card {
    background: linear-gradient(105deg, #12565d, #0f4a52);
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
}

.referral-code-card:hover {
    transform: translateY(-2px);
}

.referral-code-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.code-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.referral-code-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ecbf25;
    direction: ltr;
}

.copy-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.copy-btn i {
    font-size: 1.3rem;
    color: #ecbf25;
}

.copy-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #12565d;
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.copy-btn:hover .copy-tooltip {
    opacity: 1;
}

.referral-guide {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.2rem;
}

.guide-item {
    flex: 1;
    background: rgba(18, 86, 93, 0.04);
    border-radius: 28px;
    padding: 0.8rem 0.2rem;
    text-align: center;
    transition: 0.2s;
}

.guide-item:hover {
    background: rgba(236, 191, 37, 0.1);
    transform: translateY(-3px);
}

.guide-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}

.guide-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #12565d;
}

@media (max-width: 560px) {
    .referral-title {
        font-size: 1rem;
    }

    .referral-code-value {
        font-size: 0.9rem;
    }

    .copy-btn {
        width: 38px;
        height: 38px;
    }
}


/* ===============================================================
   12. خدمات (services)
   =============================================================== */
.service-card-modern {
    background: #ffffff;
    border-radius: 24px;
    padding: 0.8rem 0.3rem;
    margin: 0.5rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid #eef2f8;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-4px);
    border-color: #ecbf25;
    box-shadow: 0 12px 20px -8px rgba(236, 191, 37, 0.2);
}

.service-card-modern__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.service-card-modern__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.service-card-modern__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #12565d;
}

@media (max-width: 560px) {
    .service-card-modern__icon img {
        width: 36px;
        height: 36px;
    }

    .service-card-modern__label {
        font-size: 0.6rem;
    }
}


/* ===============================================================
   13. پشتیبانی (support)
   =============================================================== */
.ticket-container {
    direction: rtl;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.ticket-messages-list {
    flex: 1;
    height: 400px;
    overflow-y: auto;
    padding: 0.5rem 0.5rem 0.5rem 0;
    margin-bottom: 0.5rem;
}

.message-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.message-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 1.3rem;
    color: #ecbf25;
}

.message-body {
    flex: 1;
}

.message-bubble {
    background: #f8fafc;
    border-radius: 20px;
    padding: 10px 14px;
    margin-bottom: 4px;
    border: 1px solid rgba(236, 191, 37, 0.15);
}

.message-bubble p {
    margin: 0;
    font-size: 0.85rem;
    color: #2c3e4e;
}

.message-time {
    font-size: 0.65rem;
    color: #8a99aa;
    display: block;
}

.ticket-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ticket-select,
.ticket-input,
.ticket-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    font-size: 0.85rem;
    background: #ffffff;
}

.ticket-select:focus,
.ticket-input:focus,
.ticket-textarea:focus {
    outline: none;
    border-color: #ecbf25;
    box-shadow: 0 0 0 3px rgba(236, 191, 37, 0.1);
}

.ticket-textarea {
    resize: vertical;
}

.ticket-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.departments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    direction: rtl;
}

.department-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-radius: 28px;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
}

.department-card:hover {
    transform: translateX(-5px);
    border-color: #ecbf25;
}

.department-card__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(145deg, #12565d, #0f4a52);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.department-card__icon i {
    font-size: 1.6rem;
    color: #ecbf25;
}

.department-card__content {
    flex: 1;
    padding: 0 16px;
}

.department-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #12565d;
    margin: 0 0 4px;
}

.department-card__desc {
    font-size: 0.7rem;
    color: #8a99aa;
    margin: 0;
}

.department-card__arrow {
    font-size: 1.3rem;
    color: #12565d;
    opacity: 0.5;
    transition: 0.2s;
}

.department-card:hover .department-card__arrow {
    opacity: 1;
    color: #ecbf25;
    transform: translateX(-4px);
}


/* استایل مدرن و لوکس برای پیام‌های چت - حفظ کلاس‌های اصلی */
.admin-message .admin-bubble {
    background: #f0f4f9;
    border-top-right-radius: 4px;
    border: 1px solid rgba(236, 191, 37, 0.1);
    position: relative;
}

.admin-message .admin-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border: 8px solid transparent;
    border-left-color: #f0f4f9;
    border-right-color: transparent;
}

.admin-avatar {
    background: linear-gradient(135deg, #12565d, #0f4a52) !important;
    border: 2px solid rgba(236, 191, 37, 0.2) !important;
}

.user-message .user-bubble {
    background: linear-gradient(135deg, #12565d, #0f4a52);
    color: white;
    border-top-left-radius: 4px;
    position: relative;
}

.user-message .user-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    border: 8px solid transparent;
    border-right-color: #12565d;
    border-left-color: transparent;
}

.user-message .user-bubble p {
    color: white;
}

.user-avatar {
    background: linear-gradient(135deg, #ecbf25, #c9a320) !important;
    border: 2px solid rgba(236, 191, 37, 0.3) !important;
}

.admin-message .text-muted,
.user-message .text-muted {
    font-size: 0.6rem !important;
    color: #8a99aa !important;
}

.admin-message .flex-grow-1,
.user-message .flex-grow-1 {
    max-width: 85%;
}

@media (max-width: 560px) {

    .admin-message .p-3,
    .user-message .p-3 {
        padding: 0.6rem !important;
    }

    .admin-message .fs-5,
    .user-message .fs-5 {
        font-size: 1rem !important;
    }

    .admin-message .flex-grow-1,
    .user-message .flex-grow-1 {
        max-width: 80%;
    }

    .admin-message .bg-secondary-light p,
    .user-message .bg-primary-light p {
        font-size: 0.8rem;
    }
}

/* ساختار مدرن و لوکس برای پیام‌های چت */
.admin-message {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.user-message {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 1.2rem;
}

/* حباب پیام */
.admin-message__bubble {
    background: #f0f4f9;
    padding: 12px 16px;
    border-radius: 20px 20px 20px 4px;
    max-width: 78%;
    border: 1px solid rgba(236, 191, 37, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    position: relative;
}

.user-message__bubble {
    background: linear-gradient(135deg, #12565d, #0f4a52);
    padding: 12px 16px;
    border-radius: 20px 20px 4px 20px;
    max-width: 78%;
    box-shadow: 0 4px 12px rgba(18, 86, 93, 0.12);
    position: relative;
}

/* متن پیام */
.admin-message__bubble p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #1a2a32;
}

.user-message__bubble p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: white;
}

/* زمان پیام */
.admin-message__time {
    display: block;
    font-size: 0.55rem;
    color: #8a99aa;
    margin-top: 6px;
    text-align: left;
}

.user-message__time {
    display: block;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    text-align: right;
}

/* آواتار */
.admin-message__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(236, 191, 37, 0.15);
    flex-shrink: 0;
}

.user-message__avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ecbf25, #c9a320);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(236, 191, 37, 0.25);
    flex-shrink: 0;
}

.admin-message__avatar i,
.user-message__avatar i {
    font-size: 1.1rem;
    color: white;
}

@media (max-width: 560px) {

    .admin-message__bubble,
    .user-message__bubble {
        max-width: 85%;
        padding: 10px 14px;
    }

    .admin-message__bubble p,
    .user-message__bubble p {
        font-size: 0.8rem;
    }

    .admin-message__avatar,
    .user-message__avatar {
        width: 34px;
        height: 34px;
    }

    .admin-message__avatar i,
    .user-message__avatar i {
        font-size: 0.9rem;
    }

    .admin-message__bubble::after,
    .user-message__bubble::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .message-avatar {
        width: 38px;
        height: 38px;
    }

    .ticket-select,
    .ticket-input,
    .ticket-textarea {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .department-card__icon {
        width: 44px;
        height: 44px;
    }

    .department-card__icon i {
        font-size: 1.3rem;
    }

    .department-card__title {
        font-size: 0.8rem;
    }
}


/* ===============================================================
   14. صفحه‌بندی (pagination)
   =============================================================== */
.pagination-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pagination-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #12565d;
    cursor: pointer;
    transition: all 0.2s;
}

.pagination-nav:hover {
    background: #12565d;
    border-color: #12565d;
    color: white;
}

.pagination-indicator {
    background: rgba(18, 86, 93, 0.08);
    border-radius: 60px;
    padding: 0.4rem 1.2rem;
    min-width: 70px;
    text-align: center;
}

.page-number-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #12565d;
}

@media (max-width: 560px) {
    .pagination-nav {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }

    .pagination-nav span {
        display: none;
    }
}


/* ===============================================================
   15. جزئیات تراکنش (transaction)
   =============================================================== */
.transaction-details {
    background: #ffffff;
    border-radius: 28px;
    padding: 0.5rem 0;
    margin: 1rem 0;
    direction: rtl;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #12565d;
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #2c3e4e;
}

.detail-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(236, 191, 37, 0.2), transparent);
    margin: 0.2rem 0;
}

@media (max-width: 560px) {

    .detail-label,
    .detail-value {
        font-size: 0.75rem;
    }
}


/* ===============================================================
   16. کیف پول (wallet actions)
   =============================================================== */
.wallet-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1rem;
    margin: 1rem 0;
    direction: rtl;
}

.wallet-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 28px;
}

.wallet-action-item:hover {
    transform: translateY(-4px);
}

.wallet-action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 60px;
    padding: 0.8rem;
    width: 70px;
    height: 70px;
}

.wallet-action-item:hover .wallet-action-icon {
    background: rgba(236, 191, 37, 0.15);
}

.wallet-action-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.wallet-action-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #12565d;
    margin: 0.5rem 0 0;
    text-align: center;
}

@media (max-width: 560px) {
    .wallet-action-icon {
        width: 55px;
        height: 55px;
    }

    .wallet-action-icon img {
        width: 30px;
    }
}


/* ===============================================================
   17. درباره ما / لینک‌های پشتیبانی (about)
   =============================================================== */
.support-links {
    margin: 1.5rem 0;
    direction: rtl;
}

.support-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 1rem 1.2rem;
    margin-bottom: 0.8rem;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #eef2f6;
}

.support-item:hover {
    border-color: #ecbf25;
    transform: translateX(-5px);
    box-shadow: 0 8px 20px rgba(236, 191, 37, 0.12);
}

.support-item__content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.support-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(18, 86, 93, 0.08);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-item__icon i {
    font-size: 1.4rem;
    color: #12565d;
}

.support-item__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #12565d;
    margin: 0 0 4px;
}

.support-item__desc {
    font-size: 0.7rem;
    color: #8a99aa;
    margin: 0;
}

.support-item__arrow i {
    font-size: 1.3rem;
    color: #cbd5e1;
    transition: 0.2s;
}

.support-item:hover .support-item__arrow i {
    color: #ecbf25;
    transform: translateX(-4px);
}

.support-item__call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.support-item__phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: #12565d;
    direction: ltr;
}

.support-item__call i {
    font-size: 1.3rem;
    color: #12565d;
    transition: 0.2s;
}

.support-item:hover .support-item__call i {
    color: #ecbf25;
}

@media (max-width: 560px) {
    .support-item {
        padding: 0.8rem 1rem;
    }

    .support-item__icon {
        width: 40px;
        height: 40px;
    }

    .support-item__icon i {
        font-size: 1.1rem;
    }

    .support-item__title {
        font-size: 0.8rem;
    }

    .support-item__phone {
        font-size: 0.7rem;
    }
}


/* ===============================================================
   18. مخفی کردن موجودی - Glass Blur
   =============================================================== */
.gold-balance-number,
.rial-balance-number {
    position: relative;
    transition: all 0.3s ease;
}

/* حالت مخفی - اعداد مشخص هستن اما blur شدن */
.gold-balance-number.balance-blurred,
.rial-balance-number.balance-blurred {
    /* Blur قوی روی خود متن */
    filter: blur(6px);

    /* اعداد هنوز قابل حدس زدن هستن */
    opacity: 0.7;

    /* یه مقدار کوچیکتر نشون میده */
    letter-spacing: 1px;

    /* cursor pointer برای نشون دادن قابلیت کلیک */
    cursor: pointer;

    /* user select رو غیرفعال کن */
    user-select: none;

    /* transition نرم */
    transition: all 0.3s ease;
}

/* حالت hover - یه ذره واضح‌تر میشه */
.gold-balance-number.balance-blurred:hover,
.rial-balance-number.balance-blurred:hover {
    filter: blur(3px);
    opacity: 0.85;
    transform: scale(1.02);
    transition: all 0.2s ease;
}

/* active - موقع کلیک کامل واضح میشه */
.gold-balance-number.balance-blurred:active,
.rial-balance-number.balance-blurred:active {
    filter: blur(0);
    opacity: 1;
    transition: all 0.1s ease;
}

/* اضافه کردن overlay شیشه‌ای روی blur */
.gold-balance-number.balance-blurred::before,
.rial-balance-number.balance-blurred::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -8px;
    right: -8px;
    bottom: -2px;
    border-radius: 6px;
    z-index: 1;

    /* Frosted glass overlay */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    /* Border شیشه‌ای */
    border: 1px solid rgba(255, 255, 255, 0.15);

    pointer-events: none;
    transition: all 0.3s ease;
}

/* Hover overlay */
.gold-balance-number.balance-blurred:hover::before,
.rial-balance-number.balance-blurred:hover::before {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(1px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* آیکون چشم کوچک در گوشه */
.gold-balance-number.balance-blurred::after,
.rial-balance-number.balance-blurred::after {
    content: '👁️‍🗨️';
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    font-size: 0.8em;
    filter: blur(0) !important;
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.gold-balance-number.balance-blurred:hover::after,
.rial-balance-number.balance-blurred:hover::after {
    opacity: 0.9;
}

/* انیمیشن تغییر حالت */
@keyframes blurIn {
    from {
        filter: blur(0);
        opacity: 1;
    }

    to {
        filter: blur(6px);
        opacity: 0.7;
    }
}

@keyframes blurOut {
    from {
        filter: blur(6px);
        opacity: 0.7;
    }

    to {
        filter: blur(0);
        opacity: 1;
    }
}

.gold-balance-number.balance-blurred,
.rial-balance-number.balance-blurred {
    animation: blurIn 0.3s ease forwards;
}

.gold-balance-number:not(.balance-blurred),
.rial-balance-number:not(.balance-blurred) {
    animation: blurOut 0.3s ease forwards;
}

.transaction-icon {
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.11), rgba(238, 192, 43, 0.116));
}

.transaction-status {
    background: linear-gradient(135deg, rgba(0, 86, 92, 0.08), rgba(238, 192, 43, 0.08));
}


/* ===============================================================
   19. اعلان‌ها (notifications)
   =============================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.notification-modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.show .notification-modal {
    transform: translateY(0);
}

.bg-primary-light {
    background-color: rgba(13, 110, 253, 0.1);
}

.bg-warning-light {
    background-color: rgba(255, 193, 7, 0.1);
}

.notification-item {
    transition: all 0.3s ease;
}

.notification-item:hover {
    transform: translateX(-5px);
}

.icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: white;
    padding: 14px 16px;
    border-radius: 20px;
    border: 1px solid #f0f2f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
    cursor: pointer;
}

.notification-card:hover {
    border-color: #ecbf25;
    box-shadow: 0 8px 20px rgba(236, 191, 37, 0.08);
}

.notification-card__icon {
    width: 44px;
    height: 44px;
    background: #12565d;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-card__icon i {
    font-size: 1.2rem;
    color: white;
}

.notification-card__body {
    flex: 1;
}

.notification-card__body h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a2a32;
    margin: 0 0 4px;
}

.notification-card__body p {
    font-size: 0.75rem;
    color: #6c7a8a;
    margin: 0;
}

.notification-card__badge {
    flex-shrink: 0;
    margin-top: 2px;
}

.notification-card__badge span {
    font-size: 0.55rem;
    font-weight: 600;
    color: #ecbf25;
    background: rgba(236, 191, 37, 0.12);
    padding: 2px 8px;
    border-radius: 20px;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(18, 86, 93, 0.15);
    min-height: 40px;
}

.btn-premium i {
    font-size: 0.7rem;
}

.btn-premium:hover {
    background: #ecbf25;
    color: #12565d;
    box-shadow: 0 6px 14px rgba(236, 191, 37, 0.25);
}

@media (max-width: 560px) {
    .btn-premium {
        padding: 0.4rem 1rem;
        font-size: 0.5rem;
        min-height: 34px;
    }

    .btn-premium i {
        font-size: 0.6rem;
    }
}


/* ===============================================================
   20. مودال اعلان (notification modal)
   =============================================================== */
.notification-modal {
    background: white;
    border-radius: 32px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f0f4f9);
    border-bottom: 1px solid rgba(236, 191, 37, 0.15);
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #12565d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    color: #ecbf25;
    font-size: 1.3rem;
}

.modal-close-btn {
    width: 38px;
    height: 38px;
    background: rgba(18, 86, 93, 0.06);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close-btn i {
    font-size: 1.2rem;
    color: #12565d;
}

.modal-close-btn:hover {
    background: rgba(236, 191, 37, 0.15);
    transform: rotate(90deg);
}

.modal-body {
    padding: 1.5rem;
}

.status-badge {
    margin-bottom: 1.5rem;
}

.status-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.3rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge .success {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.status-badge .warning {
    background: rgba(236, 191, 37, 0.15);
    color: #b88c1a;
}

.status-badge .danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.status-badge .info {
    background: rgba(18, 86, 93, 0.1);
    color: #12565d;
}

.info-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #12565d;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #ecbf25;
}

.info-grid {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.8rem;
    color: #6c7a8a;
}

.info-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a2a32;
}

.info-value.text-success {
    color: #2e7d32;
}

.font-mono {
    font-family: monospace;
    direction: ltr;
}

.bank-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 1rem;
}

.bank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.bank-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #12565d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-badge {
    font-size: 0.6rem;
    font-weight: 600;
    color: #12565d;
    background: rgba(18, 86, 93, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
}

.bank-details .bank-row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
}

.bank-label {
    font-size: 0.75rem;
    color: #6c7a8a;
}

.bank-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2a32;
}

.admin-note {
    background: rgba(236, 191, 37, 0.08);
    border-radius: 20px;
    padding: 1rem;
    border-right: 3px solid #ecbf25;
}

.admin-note p {
    font-size: 0.8rem;
    color: #2c3e4e;
    margin: 0;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.btn-secondary {
    background: rgba(18, 86, 93, 0.06);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #12565d;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary:hover {
    background: rgba(18, 86, 93, 0.12);
}

.btn-primary {
    background: linear-gradient(135deg, #12565d, #0f4a52);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(18, 86, 93, 0.15);
}

.btn-primary:hover {
    background: #ecbf25;
    color: #12565d;
    transform: translateY(-2px);
}

@media (max-width: 560px) {
    .notification-modal {
        border-radius: 24px;
        margin: 1rem;
    }

    .modal-header {
        padding: 0.8rem 1rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .info-grid,
    .bank-card,
    .admin-note {
        padding: 0.8rem;
    }

    .modal-footer {
        padding: 0.8rem 1rem;
        flex-direction: column-reverse;
    }

    .modal-footer button {
        width: 100%;
        justify-content: center;
    }
}


/* ===============================================================
   21. کارت تیکت (ticket card)
   =============================================================== */
.ticket-card {
    background: white;
    border-radius: 24px;
    padding: 1rem 1.2rem;
    margin: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef2f6;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ticket-card:hover {
    border-color: #ecbf25;
    box-shadow: 0 8px 20px rgba(236, 191, 37, 0.08);
    transform: translateY(-3px);
}

.ticket-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ticket-card__info {
    flex: 1;
}

.ticket-card__title-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.ticket-card__icon {
    width: 38px;
    height: 38px;
    background: rgba(18, 86, 93, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(236, 191, 37, 0.15);
}

.ticket-card__icon i {
    font-size: 1.1rem;
    color: #12565d;
}

.ticket-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a32;
    margin: 0;
}

.ticket-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.ticket-card__department {
    font-size: 0.7rem;
    color: #6c7a8a;
}

.ticket-card__department strong {
    color: #12565d;
}

.ticket-card__status {
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    display: inline-block;
}

.ticket-card__arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(18, 86, 93, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12565d;
    text-decoration: none;
    transition: 0.2s;
}

.ticket-card:hover .ticket-card__arrow {
    background: #12565d;
    color: white;
}

.ticket-card__arrow i {
    font-size: 1.1rem;
}

.ticket-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eef2f6;
}

.ticket-card__footer span {
    font-size: 0.65rem;
    color: #8a99aa;
}

.ticket-card__footer strong {
    color: #12565d;
    font-weight: 600;
}

@media (max-width: 560px) {
    .ticket-card {
        padding: 0.8rem 1rem;
    }

    .ticket-card__title {
        font-size: 0.8rem;
    }

    .ticket-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* ===============================================================
   22. صفحه واریز با شناسه (Deposit with ID)
   =============================================================== */

/* ---- کارت‌های بخش ---- */
.section-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 1.3rem 1.2rem;
    margin-bottom: 1.2rem;
    border: 1px solid #eef2f6;
    box-shadow: 0 8px 20px -10px rgba(18, 86, 93, 0.06);
    direction: rtl;
}

.section-card__title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #12565d;
    margin: 0 0 1rem;
    padding-right: 14px;
    position: relative;
}

.section-card__title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 16px;
    background: linear-gradient(180deg, #ecbf25, #c9a320);
    border-radius: 6px;
}

.section-card__desc {
    font-size: 0.78rem;
    color: #6c7a8a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-card__note {
    font-size: 0.7rem;
    color: #8a99aa;
    line-height: 1.8;
    margin: 0.8rem 0 0;
    padding: 0.7rem 0.9rem;
    background: rgba(236, 191, 37, 0.06);
    border-radius: 14px;
    border-right: 3px solid #ecbf25;
}

/* ---- کارت هشدار (نکات مهم) ---- */
.section-card--warning {
    border-right: 4px solid #ecbf25;
    background: #fefcf5;
}

/* ---- شماره شباهای مبدأ ---- */
.sheba-list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.sheba-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8fafc;
    border-radius: 18px;
    padding: 0.7rem 1rem;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.sheba-item:hover {
    border-color: rgba(236, 191, 37, 0.35);
    background: #fbfcfe;
}

.sheba-item__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6c7a8a;
    flex-shrink: 0;
}

.sheba-item__value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #12565d;
    direction: ltr;
    letter-spacing: 0.5px;
    text-align: left;
    word-break: break-all;
}

.sheba-item__copy {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(18, 86, 93, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.sheba-item__copy i {
    font-size: 0.95rem;
    color: #12565d;
}

.sheba-item__copy:hover {
    background: #ecbf25;
}

.sheba-item__copy:hover i {
    color: #12565d;
}

/* ---- بانک مقصد ---- */
.bank-card-premium {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    transition: all 0.2s ease;
}

.bank-card-premium:last-child {
    margin-bottom: 0;
}

.bank-card-premium:hover {
    border-color: rgba(236, 191, 37, 0.4);
    box-shadow: 0 10px 20px -10px rgba(236, 191, 37, 0.2);
}

.bank-card-premium__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.7rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px dashed #e2e8f0;
}

.bank-card-premium__header i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    color: #ecbf25;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bank-card-premium__name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #12565d;
    line-height: 1.5;
}

.bank-card-premium__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0.4rem 0;
}

.bank-card-premium__label {
    font-size: 0.7rem;
    color: #8a99aa;
    flex-shrink: 0;
}

.bank-card-premium__value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2a32;
    text-align: left;
}

.bank-card-premium__value--ltr {
    direction: ltr;
    color: #12565d;
    font-weight: 700;
    word-break: break-all;
}

.bank-card-premium__copy {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(236, 191, 37, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.bank-card-premium__copy i {
    font-size: 0.9rem;
    color: #12565d;
}

.bank-card-premium__copy:hover {
    background: #ecbf25;
}

/* ---- مراحل واریز ---- */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.step-item__number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #12565d, #0f4a52);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #12565d;
    margin-bottom: 0.3rem;
}

.step-item p {
    font-size: 0.72rem;
    color: #6c7a8a;
    line-height: 1.8;
    margin: 0;
}

/* ---- چرخه پایا ---- */
.cycle-grid {
    background: #f8fafc;
    border-radius: 18px;
    padding: 0.3rem 1rem;
    overflow: hidden;
}

.cycle-grid__header,
.cycle-grid__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.cycle-grid__header {
    font-size: 0.72rem;
    font-weight: 700;
    color: #12565d;
    border-bottom: 1px solid rgba(18, 86, 93, 0.1);
}

.cycle-grid__row {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1a2a32;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cycle-grid__row:last-child {
    border-bottom: none;
}

.cycle-grid__row span:last-child {
    color: #12565d;
    direction: ltr;
}

/* ---- نکات مهم (لیست) ---- */
.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f2f5;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list li i {
    font-size: 1.1rem;
    color: #ecbf25;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.tips-list li span {
    font-size: 0.78rem;
    line-height: 1.7;
    color: #2c3e4e;
}

.tips-list li strong {
    color: #12565d;
}

/* ---- آپلود رسید ---- */
.upload-area {
    position: relative;
    border: 2px dashed #d0d5dd;
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #fafbfc;
}

.upload-area:hover {
    border-color: #ecbf25;
    background: #fcfaf5;
}

.upload-area--dragover {
    border-color: #12565d;
    background: rgba(18, 86, 93, 0.04);
}

.upload-area__icon {
    font-size: 2.4rem;
    color: #cbd5e1;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.upload-area:hover .upload-area__icon {
    color: #ecbf25;
}

.upload-area__text span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2a32;
}

.upload-area__text small {
    font-size: 0.7rem;
    color: #8a99aa;
}

.upload-area__input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f4f9;
    border-radius: 16px;
    padding: 0.7rem 1rem;
    margin-top: 1rem;
}

.upload-preview__info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.upload-preview__info i {
    font-size: 1.2rem;
    color: #12565d;
}

.upload-preview__info span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a2a32;
}

.upload-preview__remove {
    width: 30px;
    height: 30px;
    border: none;
    background: rgba(220, 53, 69, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.upload-preview__remove i {
    font-size: 0.9rem;
    color: #dc3545;
}

.upload-preview__remove:hover {
    background: rgba(220, 53, 69, 0.2);
}

.upload-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.upload-btn {
    background: linear-gradient(135deg, #12565d, #0f4a52);
    color: white;
    border: none;
    padding: 0.6rem 1.6rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.upload-btn:hover {
    background: #ecbf25;
    color: #12565d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(236, 191, 37, 0.25);
}

.upload-hint {
    font-size: 0.65rem;
    color: #8a99aa;
}

/* ---- سوالات متداول (آکاردئون) ---- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    border-bottom: 1px solid #eef2f6;
    transition: all 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0.1rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: right;
    transition: 0.2s;
    gap: 10px;
}

.faq-item__question:hover span {
    color: #12565d;
}

.faq-item__question span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a2a32;
    line-height: 1.6;
    flex: 1;
}

.faq-item__question i {
    font-size: 1rem;
    color: #cbd5e1;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-item__question i {
    color: #ecbf25;
    transform: rotate(180deg);
}

.faq-item.open .faq-item__question span {
    color: #12565d;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 400px;
    opacity: 1;
}

.faq-item__answer p {
    font-size: 0.72rem;
    color: #6c7a8a;
    line-height: 1.9;
    margin: 0;
    padding: 0 0.1rem 0.9rem;
}

/* ---- هدر صفحات ---- */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.page-header__icon,
.page-header__action {
    width: 40px;
    height: 40px;
    background: rgba(18, 86, 93, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #12565d;
    font-size: 1.3rem;
}

.page-header__icon:hover,
.page-header__action:hover {
    background: rgba(236, 191, 37, 0.12);
    transform: scale(1.05);
}

.page-header__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #12565d;
    margin: 0;
}

/* ---- واکنش‌گرایی (ریسپانسیو) ---- */
@media (max-width: 560px) {
    .section-card {
        padding: 1rem 0.9rem;
        border-radius: 22px;
    }

    .section-card__title {
        font-size: 0.85rem;
    }

    .page-header__title {
        font-size: 1.1rem;
    }

    .page-header__icon,
    .page-header__action {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .sheba-item {
        padding: 0.6rem 0.8rem;
        flex-wrap: wrap;
    }

    .sheba-item__value {
        font-size: 0.68rem;
    }

    .bank-card-premium {
        padding: 0.8rem;
    }

    .bank-card-premium__name {
        font-size: 0.75rem;
    }

    .step-item__number {
        width: 26px;
        height: 26px;
        font-size: 0.72rem;
    }

    .faq-item__question span {
        font-size: 0.75rem;
    }

    .faq-item__answer p {
        font-size: 0.68rem;
    }

    .upload-area {
        padding: 1.2rem 0.8rem;
    }

    .upload-area__icon {
        font-size: 1.8rem;
    }
}


/* ===============================================================
           Jalali Datepicker — Gold724 Theme v2 (کاستوم)
           =============================================================== */

/* ---------- توکن‌های برند (بازنویسی متغیرهای خود کتابخانه) ---------- */
jdp-container {
    --jdp-day-size: 44px;
    --jdp-color-0: #ffffff;
    --jdp-color-1: #f4f6f5;
    --jdp-color-2: rgba(18, 86, 93, 0.1);
    --jdp-color-3: rgba(18, 86, 93, 0.18);
    --jdp-color-4: #7c8a91;
    --jdp-color-5: #16323a;
    --jdp-primary: #12565d;
    --jdp-red: #e0475a;
    --jdp-gold: #d4af37;
    --jdp-gold-soft: rgba(212, 175, 55, 0.16);
}

/* ---------- حذف المان‌های اضافی ---------- */
jdp-container .jdp-icon-plus,
jdp-container .jdp-icon-minus {
    display: none !important;
}

jdp-container .jdp-footer {
    display: none !important;
}

/* ---------- قاب شیشه‌ای اصلی ---------- */
jdp-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--jdp-color-3);
    border-radius: 22px;
    box-shadow: 0 20px 45px -14px rgba(15, 40, 45, 0.28);
    padding: 18px 14px 14px;
    overflow: hidden;
}

jdp-container .jdp-years,
jdp-container .jdp-months {
    margin: 0 1.5% 4px;
}

jdp-container .jdp-year select,
jdp-container .jdp-month select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 9px 30px 9px 14px;
    border: 1.5px solid var(--jdp-color-3);
    border-radius: 999px;
    background-color: var(--jdp-color-1);
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--jdp-color-5);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

jdp-container .jdp-year select:hover,
jdp-container .jdp-month select:hover {
    border-color: var(--jdp-gold);
    background-color: #fff;
}

jdp-container .jdp-year select:focus,
jdp-container .jdp-month select:focus {
    outline: none;
    border-color: var(--jdp-primary);
    box-shadow: 0 0 0 3px var(--jdp-color-2);
}


jdp-container .jdp-days-header {
    background: transparent !important;
    border-bottom: 1px solid var(--jdp-color-3);
    padding-bottom: 8px;
    margin-bottom: 4px;
}

jdp-container .jdp-day-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--jdp-color-4);
}

jdp-container .jdp-day {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 50%;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.08s ease;
}

jdp-container .jdp-day:not(.disabled-day):hover {
    background: var(--jdp-gold-soft);
    color: var(--jdp-primary);
    transform: scale(1.08);
}

jdp-container .jdp-day:not(.disabled-day):active {
    transform: scale(0.94);
}

jdp-container .jdp-day.not-in-month {
    opacity: 0.35;
}

jdp-container .jdp-day.disabled-day {
    opacity: 0.22;
}

/* امروز: حلقه‌ی طلایی دور عدد */
jdp-container .jdp-day.today {
    font-weight: 800;
    color: var(--jdp-primary);
    box-shadow: inset 0 0 0 1.5px var(--jdp-gold);
}

jdp-container .jdp-day.selected {
    background: linear-gradient(135deg, var(--jdp-primary), #0c3f45) !important;
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(18, 86, 93, 0.35), 0 0 0 3px var(--jdp-gold-soft);
}

jdp-container .jdp-day.today.selected {
    box-shadow: 0 4px 12px rgba(18, 86, 93, 0.35), 0 0 0 2px var(--jdp-gold);
}

/* بازه‌ی انتخابی (در صورت استفاده از رنج‌پیکر) */
jdp-container .jdp-day.in-range {
    background: var(--jdp-gold-soft);
    border-radius: 0;
}

jdp-container .jdp-day.range-start {
    border-radius: 50% 0 0 50%;
}

jdp-container .jdp-day.range-end {
    border-radius: 0 50% 50% 0;
}

jdp-overlay {
    background-color: rgba(11, 40, 42, 0.45) !important;
}

@media only screen and (max-width: 481px) {
    jdp-container {
        border-radius: 20px 20px 0 0;
        padding: 16px 12px 10px;
    }

    jdp-container::before {
        margin: -16px -12px 14px;
    }

    jdp-container .jdp-day {
        font-size: 0.9rem;
    }

    jdp-container .jdp-year select,
    jdp-container .jdp-month select {
        font-size: 0.9rem;
        padding: 10px 30px 10px 12px;
    }
}

.persian-date-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c7a8a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 2;
    padding: 0;
}

.persian-date-icon:hover {
    background: rgba(236, 191, 37, 0.12);
    color: #12565d;
}

.input-wrapper:focus-within .persian-date-icon {
    color: #12565d;
}

jdp-container .jdp-year,
jdp-container .jdp-year input,
jdp-container .jdp-year select,
jdp-container .jdp-month,
jdp-container .jdp-month input,
jdp-container .jdp-month select,
jdp-container .jdp-time,
jdp-container .jdp-time input,
jdp-container .jdp-time select {
    background: none !important;
}


.sheba-card-modern {
    border-radius: 16px;
    border: 1px solid rgba(18, 86, 93, 0.13);
    transition: all 0.3s ease;
}

.sheba-card-modern:hover {
    box-shadow: 0 12px 25px -8px rgba(236, 191, 37, 0.2);
}

.sheba-card-modern__inner {
    background:linear-gradient(135deg, rgba(238, 192, 43, 0.14), rgba(18,86,93,0.2));
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 0.8rem 1rem;
    position: relative;
    overflow: hidden;
}

.sheba-card-modern__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.4rem;
}

.sheba-card-modern__icon {
    font-size: 1.2rem;
    color: #ecbf25;
}

.sheba-card-modern__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #12565d;
    letter-spacing: 0.5px;
}

.sheba-card-modern__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sheba-card-modern__number {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a2a32;
    direction: ltr;
    letter-spacing: 2px;
    word-break: break-all;
    background: rgba(18, 86, 93, 0.04);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
}

.sheba-card-modern__copy {
    background: rgba(18, 86, 93, 0.06);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    flex-shrink: 0;
}

.sheba-card-modern__copy i {
    font-size: 1.1rem;
    color: #12565d;
    transition: 0.2s;
}

.sheba-card-modern__copy:hover {
    background: #ecbf25;
}

.sheba-card-modern__copy:hover i {
    color: white;
}

.sheba-card-modern__copy:active {
    transform: scale(0.92);
}

.sheba-card-modern__copy .copy-tooltip {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #12565d;
    color: white;
    font-size: 0.55rem;
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.sheba-card-modern__copy.copied .copy-tooltip {
    opacity: 1;
}

.sheba-card-modern__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(238, 192, 43, 0.06), transparent);
    pointer-events: none;
}