/* ستون دوم: هدر یک ستون با سه کانتینر */
.header-sefareshi {
    display: flex;
    flex-direction: column;
    align-items: stretch;  /* ⭐ عرض کانتینرها را پر می‌کند */
    width: 100%;           /* ⭐ عرض ستون دوم 100% */
    background-color: #fff;
    padding: 0;            /* حذف فاصله داخلی برای پر کردن کامل عرض */
    gap: 0px;
}

/* کانتینر اول: لوگو */
.header-container-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;           /* ⭐ عرض کانتینرها را پر می‌کند */
    color: black;
}

/* کانتینر دوم: خط جداکننده */
.header-container-2 {
    display: flex;
    justify-content: center;
    width: 100%;
    color: rgba(0, 0, 0, 0.35) !important;
}

.header-divider {
    width: 100%;
    border: 0;
    height: 2px;
    background-color: #6a6a6a69;
}

/* کانتینر سوم: منو یا دکمه‌ها */
.header-container-3 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;  /* ⭐ پر کردن عرض */
    width: 100%;
    color: black;
    flex-wrap: nowrap;
}

/* منو */
.header-container-3 .header-menu ul {
    display: flex;
    list-style: none;
    /*gap: 15px;*/
    margin: 0;
    padding: 0;
}

.header-container-3 .header-menu a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-container-3 .header-menu a:hover {
    color: #0073e6;
}


