.woocommerce-MyAccount-navigation-link--downloads{
    display: none;
}


.my-account-header {
    position: relative;
    width: 100%;

    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.my-account-header:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000069;
}
.my-account-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      border-radius: 12px;

}
.my-account-header .my-account-title{
    position: absolute;
    padding-right: 30px;
    color: #fff;
    font-weight: 600;
        z-index: 1;
            font-size: 38px;

}

.page-header{
    display: none;
}



/* کانتینر منو */
.woocommerce-MyAccount-navigation {
    background: #efefef;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    font-family: "IRANSans", sans-serif;
}

/* لیست لینک ها */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* هر آیتم */
.woocommerce-MyAccount-navigation li {
    margin-bottom: 12px;
}

/* لینک ها */
.woocommerce-MyAccount-navigation a {
  display: block;
    padding: 14px 22px;
    color: #359B41;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: #ddd;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* لینک فعال */
.woocommerce-MyAccount-navigation .is-active a {
 background: linear-gradient(90deg, #f57b191c, #F57B19);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

/* هاور روی لینک */
.woocommerce-MyAccount-navigation a:hover {
    background: linear-gradient(90deg, #576574, #747D8C); /* مشابه لینک فعال */
    color: #fff;
    transform: translateX(5px) scale(1.01);
}

/* برای موبایل و ریسپانسیو */
@media (max-width: 768px) {
    .woocommerce-MyAccount-navigation {
        padding: 15px;
    }
    .woocommerce-MyAccount-navigation a {
        padding: 12px 16px;
        font-size: 14px;
    }
}






/* کانتینر محتوای حساب کاربری */
.woocommerce-MyAccount-content {
    background: #f5f5f5; /* مشابه خاکستری منو ولی کمی روشن‌تر */
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    color: #2C3E50; /* متن تیره ملایم */
    line-height: 1.7;
}

/* بخش نوتیفیکیشن‌ها */
.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

/* پاراگراف‌ها */
.woocommerce-MyAccount-content p {
    margin-bottom: 15px;
    color: #2C3E50; /* متن ملایم و هماهنگ */
}

/* لینک‌ها داخل متن */
.woocommerce-MyAccount-content a {
    color: #359B41; /* سبز همون منو */
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* هاور روی لینک */
.woocommerce-MyAccount-content a:hover {
    color: #F57B19; /* نارنجی منو */
    border-bottom: 1px solid #F57B19; /* زیرخط ملایم هنگام هاور */
}

/* متن بولد */
.woocommerce-MyAccount-content strong {
    color: #2C3E50; /* متن برجسته ملایم */
}







/* کانتینر اطلاعیه */
.woocommerce-info {
    background: #f5f5f5; /* خاکستری روشن مشابه محتوا */
    border-left: 4px solid #359B41; /* نوار رنگ سبز برای تاکید */
    border-radius: 12px;
    color: #2C3E50; /* متن تیره ملایم */
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-size: 15px;
    line-height: 1.6;
}

/* لینک داخل اطلاعیه */
.woocommerce-info a.woocommerce-Button {
    display: inline-block;
    background: #359B41; /* سبز منو */
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 10px;
}

/* هاور روی لینک */
.woocommerce-info a.woocommerce-Button:hover {
    background: #F57B19; /* نارنجی منو هنگام هاور */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}




/* ردیف های فرم */
.woocommerce-EditAccountForm .form-row {
    margin-bottom: 20px;
}

/* لیبل ها */
.woocommerce-EditAccountForm label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

/* فیلدهای ورودی */
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"] {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    background: #fff !important;
    font-size: 15px !important ;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

/* افکت فوکوس روی فیلدها */
.woocommerce-EditAccountForm input[type="text"]:focus,
.woocommerce-EditAccountForm input[type="email"]:focus,
.woocommerce-EditAccountForm input[type="password"]:focus {
    border-color: #ff7a00; /* رنگ ملایم نارنجی */
    box-shadow: 0 0 8px rgba(255, 122, 0, 0.2);
    outline: none;
}

/* توضیحات اضافی */
.woocommerce-EditAccountForm span#account_display_name_description {
    font-size: 13px;
    color: #888;
}

/* فیلدهای پسورد */
.woocommerce-EditAccountForm .password-input {
    display: flex;
    align-items: center;
    position: relative;
}

.woocommerce-EditAccountForm .password-input button.show-password-input {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    width: 25px;
    height: 25px;
}

/* فیلدها پهن */
.woocommerce-EditAccountForm .form-row-wide {
    width: 100%;
}

/* دکمه ذخیره */
.woocommerce-EditAccountForm .woocommerce-Button {
    background: linear-gradient(90deg, #ff7a00, #ffc38f);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.woocommerce-EditAccountForm .woocommerce-Button:hover {
    background: linear-gradient(90deg, #ff8c1a, #ffd2a6);
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
}

/* افکت پاکسازی */
.woocommerce-EditAccountForm .clear {
    clear: both;
}









