/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 14 2026 | 02:05:52 */
/* ════════════════════════════════════════
   أفاتار الحساب
   ════════════════════════════════════════ */
.torath-avatar-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}
.torath-avatar-circle {
    position: relative;
    width: clamp(140px, 18vw, 300px);
    aspect-ratio: 1 / 1;
    max-width: 100%;
}
.torath-avatar-circle img,
.torath-avatar-circle .avatar,
.torath-avatar-img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: #EFE6D8;
    border: 3px solid #EFE6D8;
    display: block;
}

/* زر التعديل (قلم) */
.torath-avatar-edit {
    position: absolute;
    bottom: 6%;
    left: 6%;
    width: clamp(34px, 4vw, 48px);
    height: clamp(34px, 4vw, 48px);
    background: #7A1E2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    transition: background 0.2s;
}
.torath-avatar-edit:hover {
    background: #561420;
}
.torath-avatar-edit svg {
    width: 42%;
    height: 42%;
    color: #FFFFFF;
}
.torath-avatar-form {
    margin: 0;
}

/* ════════════════════════════════════════
   اسم وإيميل العميل
   ════════════════════════════════════════ */
.torath-identity {
    width: 100%;
    text-align: center;
    margin-bottom: 22px;
}
.torath-identity-name {
    font-family: 'Reem Kufi', sans-serif !important;
    font-size: clamp(20px, 2.2vw, 32px) !important;
    font-weight: 600 !important;
    color: #2E2218 !important;
    margin: 0 0 6px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}
.torath-identity-email {
    font-family: 'Cairo', sans-serif !important;
    font-size: clamp(13px, 1.1vw, 18px) !important;
    color: #9A8C7A !important;
    margin: 0 !important;
    direction: ltr;
    text-align: center !important;
    word-break: break-word;
}


/* ════════════════════════════════════════
   قائمة الحساب الكاستم
   ════════════════════════════════════════ */
.torath-acc-menu ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.torath-acc-item {
    margin: 0 !important;
}
.torath-acc-item a {
    display: flex;
    align-items: center;
    flex-direction: row; /* أيقونة قبل النص في RTL */
    justify-content: flex-start;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 600;
    color: #2E2218;
    background: transparent;
    padding: clamp(16px, 1.8vw, 20px) 22px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.torath-acc-label {
    text-align: right;
}
.torath-acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.torath-acc-icon svg {
    width: clamp(18px, 1.6vw, 21px);
    height: clamp(18px, 1.6vw, 21px);
    color: #B98A3E;
    transition: color 0.2s;
}

/* هوفر */
.torath-acc-item a:hover {
    background: #FAF6EE;
    color: #7A1E2C;
}
.torath-acc-item a:hover .torath-acc-icon svg {
    color: #7A1E2C;
}

/* أكتف */
.torath-acc-item.torath-active a {
    background: #7A1E2C;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(122, 30, 44, 0.25);
}
.torath-acc-item.torath-active a .torath-acc-icon svg {
    color: #FFFFFF;
}

/* الفاصل قبل تسجيل الخروج */
.torath-acc-logout {
    margin-top: 10px !important;
    padding-top: 12px;
    border-top: 1.5px solid #EFE6D8;
}
.torath-acc-logout a {
    color: #9A8C7A;
}
.torath-acc-logout a:hover {
    background: #FBF0F0;
    color: #7A1E2C;
}
.torath-acc-logout a .torath-acc-icon svg {
    color: #9A8C7A;
}
.torath-acc-logout a:hover .torath-acc-icon svg {
    color: #7A1E2C;
}


/* ════════════════════════════════════════
   نظام لوحات الداشبورد (Tabs)
   ════════════════════════════════════════ */
.torath-panel {
    display: none !important;
}
.torath-panel.torath-panel-active {
    display: flex !important;
}

/* الداشبورد ظاهرة افتراضيًا قبل ما الـ JS يشتغل */
#panel-dashboard {
    display: flex !important;
}
.torath-panel.torath-panel-active {
    display: flex !important;
}
.torath-panel:not(.torath-panel-active) {
    display: none !important;
}

/* ════════════════════════════════════════
   محتوى كروت الإحصائيات الداخلي
   ════════════════════════════════════════ */
.torath-stat-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.torath-stat-icon {
    flex-shrink: 0;
    width: clamp(48px, 5vw, 58px);
    height: clamp(48px, 5vw, 58px);
    border-radius: 50%;
    background: #EFE6D8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.torath-stat-icon svg {
    width: clamp(22px, 2.4vw, 26px);
    height: clamp(22px, 2.4vw, 26px);
    color: #7A1E2C;
}
.torath-stat-info {
    display: flex;
    flex-direction: column;
}
.torath-stat-count {
    font-family: 'Reem Kufi', sans-serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #2E2218;
    line-height: 1.1;
}
.torath-stat-label {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(12px, 1vw, 14px);
    color: #9A8C7A;
    margin-top: 2px;
}





