
.language-list-mobile {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}

.language-list-mobile .language-item {
    display: inline-flex;
    align-items: center;
    margin-inline-end:5px;border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    color: inherit;
    font-weight: 400;
    transition: all .2s ease
}

.language-list-mobile .language-item .language-flag {
    display: inline-flex;
    align-items: center;
    margin-inline-end:6px}

.language-list-mobile .language-item .language-flag img,.language-list-mobile .language-item .language-flag svg {
    width: 20px;
    height: auto
}

.language-list-mobile .language-item .language-name {
    line-height: 20px
}

.language-list-mobile .language-item:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: #82b440 
}

.language-list-mobile .language-item.active {
    color: #82b440 ;
    font-weight: 600
}

[dir=rtl] .language-list-mobile .language-item .language-flag {
    margin-inline-start:6px;margin-inline-end:0}

[data-bs-theme=dark] .language-list-mobile .language-item {
    color: #e2e8f0
}

[data-bs-theme=dark] .language-list-mobile .language-item.active,[data-bs-theme=dark] .language-list-mobile .language-item:hover {
    color: #82b440 
}

.mobile-signin-wrapper {
    padding: 15px 20px
}

.mobile-signin-wrapper .mobile-signin-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#82b440  0,#7aa93c 100%);
    border-radius: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(216, 244, 219,.3);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.mobile-signin-wrapper .mobile-signin-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,hsla(0,0%,100%,.2),transparent);
    transition: left .5s ease
}

.mobile-signin-wrapper .mobile-signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 244, 219,.4);
    text-decoration: none;
    color: #fff
}

.mobile-signin-wrapper .mobile-signin-btn:hover:before {
    left: 100%
}

.mobile-signin-wrapper .mobile-signin-btn:hover .signin-icon-wrapper {
    transform: scale(1.1)
}

.mobile-signin-wrapper .mobile-signin-btn:hover .signin-arrow {
    transform: translateX(3px)
}

.mobile-signin-wrapper .mobile-signin-btn .signin-icon-wrapper {
    width: 45px;
    height: 45px;
    background: hsla(0,0%,100%,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end:15px;transition: transform .3s ease
}

.mobile-signin-wrapper .mobile-signin-btn .signin-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.mobile-signin-wrapper .mobile-signin-btn .signin-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column
}

.mobile-signin-wrapper .mobile-signin-btn .signin-text-wrapper .signin-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
    color: #fff
}

.mobile-signin-wrapper .mobile-signin-btn .signin-text-wrapper .signin-subtitle {
    font-size: 13px;
    opacity: .9;
    color: #fff
}

.mobile-signin-wrapper .mobile-signin-btn .signin-arrow {
    width: 20px;
    height: 20px;
    color: #fff;
    opacity: .8;
    transition: transform .3s ease
}

[dir=rtl] .mobile-signin-wrapper .mobile-signin-btn:before {
    left: auto;
    right: -100%
}

[dir=rtl] .mobile-signin-wrapper .mobile-signin-btn:hover:before {
    right: 100%;
    left: auto
}

[dir=rtl] .mobile-signin-wrapper .mobile-signin-btn:hover .signin-arrow {
    transform: rotate(180deg) translateX(3px)
}

[dir=rtl] .mobile-signin-wrapper .mobile-signin-btn .signin-arrow {
    transform: rotate(180deg)
}

[data-bs-theme=dark] .mobile-signin-wrapper .mobile-signin-btn {
    background: linear-gradient(135deg,#82b440  0,#7aa93c 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,.5)
}

[data-bs-theme=dark] .mobile-signin-wrapper .mobile-signin-btn:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,.6)
}

.mobile-customer-menu-wrap {
    border-bottom: 2px solid var(--bs-border-color);
    padding-bottom: 15px;
    margin-bottom: 15px
}

.mobile-customer-menu-wrap.mobile-menu-wrap {
    border-top: none
}

[data-bs-theme=dark] .mobile-customer-menu-wrap {
    border-bottom-color: hsla(0,0%,100%,.1)
}

.mobile-logout-item {
    margin-top: 10px;
    padding: 0 20px
}

.mobile-logout-item .mobile-logout-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: rgba(220,53,69,.08);
    border: 1px solid rgba(220,53,69,.15);
    border-radius: 8px;
    color: #dc3545;
    text-decoration: none;
    transition: all .2s ease;
    font-size: 14px
}

.mobile-logout-item .mobile-logout-btn svg {
    width: 18px;
    height: 18px;
    transition: transform .2s ease
}

.mobile-logout-item .mobile-logout-btn:hover {
    background-color: rgba(220,53,69,.12);
    border-color: rgba(220,53,69,.25);
    color: #dc3545;
    text-decoration: none
}

.mobile-logout-item .mobile-logout-btn:hover svg {
    transform: translateX(-2px)
}

.mobile-logout-item .mobile-logout-btn:active {
    transform: scale(.98)
}

[dir=rtl] .mobile-logout-item .mobile-logout-btn:hover svg {
    transform: translateX(2px)
}

[data-bs-theme=dark] .mobile-logout-item .mobile-logout-btn {
    background-color: rgba(220,53,69,.1);
    border-color: rgba(220,53,69,.2);
    color: #e74c5c
}

[data-bs-theme=dark] .mobile-logout-item .mobile-logout-btn:hover {
    background-color: rgba(220,53,69,.15);
    border-color: rgba(220,53,69,.3);
    color: #e74c5c
}

.mobile-add-listing-wrapper {
    padding: 15px 20px
}

.mobile-add-listing-wrapper .mobile-add-listing-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,#28a745,#20c997);
    border-radius: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40,167,69,.3);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent
}

.mobile-add-listing-wrapper .mobile-add-listing-btn:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,#28a745,#20c997,#28a745);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity .3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite
}

@keyframes gradient-shift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

.mobile-add-listing-wrapper .mobile-add-listing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40,167,69,.4);
    text-decoration: none;
    color: #fff
}

.mobile-add-listing-wrapper .mobile-add-listing-btn:hover:before {
    opacity: 1
}

.mobile-add-listing-wrapper .mobile-add-listing-btn:hover .add-listing-icon-wrapper {
    transform: rotate(90deg) scale(1.1);
    background: hsla(0,0%,100%,.3)
}

.mobile-add-listing-wrapper .mobile-add-listing-btn:hover .add-listing-arrow {
    transform: translateX(3px)
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-icon-wrapper {
    width: 45px;
    height: 45px;
    background: hsla(0,0%,100%,.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end:15px;transition: all .3s ease
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #fff
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-text-wrapper .add-listing-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
    color: #fff
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-text-wrapper .add-listing-subtitle {
    font-size: 13px;
    opacity: .95;
    color: #fff
}

.mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-arrow {
    width: 20px;
    height: 20px;
    color: #fff;
    transition: transform .3s ease
}

[dir=rtl] .mobile-add-listing-wrapper .mobile-add-listing-btn:hover .add-listing-arrow {
    transform: rotate(180deg) translateX(3px)
}

[dir=rtl] .mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-arrow {
    transform: rotate(180deg)
}

[data-bs-theme=dark] .mobile-add-listing-wrapper .mobile-add-listing-btn {
    background: linear-gradient(135deg,#28a745,#20c997);
    box-shadow: 0 4px 15px rgba(0,0,0,.5)
}

[data-bs-theme=dark] .mobile-add-listing-wrapper .mobile-add-listing-btn:hover {
    box-shadow: 0 6px 20px rgba(40,167,69,.3)
}

[data-bs-theme=dark] .mobile-add-listing-wrapper .mobile-add-listing-btn .add-listing-icon-wrapper {
    background: hsla(0,0%,100%,.15)
}

.contact-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #25d366!important;
    border-color: #25d366!important;
    color: #fff!important;
    border-radius: 4px!important;
    text-decoration: none;
    transition: all .3s ease
}

.contact-whatsapp-btn:hover {
    background-color: #128c7e!important;
    border-color: #128c7e!important;
    color: #fff!important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,.3)
}

.contact-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    margin: 0
}

.whatsapp-contact-section {
    border-top: 1px solid #e4e4e4
}

.whatsapp-contact-section p {
    margin-bottom: .5rem;
    color: #666;
    font-size: 14px
}

.agent-whatsapp-section {
    width: 100%;
    margin-top: 1rem
}
