@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {

    --main-color: #25a18e;
    --main-color-hover: #2d3436;
    --accent-color: #2d3436;
    --accent-color: #25a18e;
    --accent-color-light: #eefffc;
    --bg-body: #ffffff;
    --bg-card: #fafafa;
    --main-text: #252525;
    --white-color: #ffffff;
    --text-paragraph: #535862;
    --border-color: #e6e6e6;
    --border-color-lg: #b7b7b7;
    --shadow: 3px 7px 10px #cccccc46;
    --margin-inline: 12rem;
}

*,
body {
    font-family: "Outfit", sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--main-text);
}

body.ln_search_open {
    overflow: hidden;
}

.ln_app_toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: min(92vw, 560px);
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: var(--main-color);
    color: var(--white-color);
    box-shadow: 0 18px 44px rgba(17, 24, 39, 0.22);
    padding: 12px 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(80px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.ln_app_toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.ln_app_toast_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: var(--accent-color);
    color: var(--main-color);
}

.ln_app_toast_icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: none;
    stroke-dasharray: none;
}

.ln_app_toast_icon_error,
.ln_app_toast_icon_warning,
.ln_app_toast_icon_info {
    display: none;
}

.ln_app_toast[data-toast-type="error"] .ln_app_toast_icon {
    background: #ffe4e6;
    color: #dc2626;
}

.ln_app_toast[data-toast-type="error"] .ln_app_toast_icon_success,
.ln_app_toast[data-toast-type="warning"] .ln_app_toast_icon_success,
.ln_app_toast[data-toast-type="info"] .ln_app_toast_icon_success {
    display: none;
}

.ln_app_toast[data-toast-type="error"] .ln_app_toast_icon_error,
.ln_app_toast[data-toast-type="warning"] .ln_app_toast_icon_warning,
.ln_app_toast[data-toast-type="info"] .ln_app_toast_icon_info {
    display: block;
}

.ln_app_toast[data-toast-type="warning"] .ln_app_toast_icon {
    background: #fef3c7;
    color: #b45309;
}

.ln_app_toast[data-toast-type="info"] .ln_app_toast_icon {
    background: #dbeafe;
    color: #2563eb;
}

.ln_app_toast_content {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.ln_app_toast_title {
    display: none;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.ln_app_toast_has_title .ln_app_toast_title {
    display: block;
}

.ln_app_toast_msg {
    display: block;
    color: inherit;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.ln_app_toast_close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: currentColor;
    padding: 0;
    opacity: 0.84;
}

.ln_app_toast_close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.16);
}

.ln_app_toast_close svg {
    width: 14px;
    height: 14px;
    animation: none;
    stroke-dasharray: none;
}

html[dir="rtl"] .ln_app_toast {
    direction: rtl;
}

.page-body {
    margin: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

svg {
    animation: strok 1.5s reverse;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    margin-right: 0;
}

::placeholder {
    color: #60606089 !important;
    font-weight: 400;
}

.card {
    border: none;
}

.card-header {
    padding-bottom: 0.5rem;
}

.btn-link {
    color: var(--text-paragraph);
}

.btn-link:hover {
    color: var(--text-paragraph);
    text-decoration: none !important;
}



a {
    color: var(--main-text);
}

a:hover {
    text-decoration: none !important;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-unstyled {
    list-style: none !important;
}

input,
select,
textarea {
    box-shadow: none !important;
    outline: none !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--main-color-hover) !important;
}

#shared_item_link .input-icon-addon {
    background: var(--bg-card);
    border: 1px solid var(--bg-body);
}

html[dir="rtl"] .input-icon-addon {
    right: auto;
    left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 0;
}

section {
    min-height: 100vh;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--main-color);
    border-color: var(--main-color);
    border-width: 0.75px;
}

.form-label {
    margin-bottom: .25rem !important;
}

.tom_select .ts-control,
.form-control:not(.form-check-input) {
    border-color: var(--border-color);
    border-radius: 0.6rem;
    padding: 0.5rem;
    min-height: 39px;
}





.section_area {
    margin-inline: var(--margin-inline);
}

#languages_app a {
    background: var(--secondary-bg);
}

#languages_app a.btn_custom {
    background: var(--main-color);
    color: white;
}

.main_btn {
    background-color: var(--main-color);
    color: var(--white-color);
}

.main_btn:hover {
    color: var(--white-color);
    background-color: var(--accent-color);
}

.text_gradient {
    background-image: linear-gradient(180deg, rgb(236 210 145) 3%, var(--main-color) 98%);
    color: #00000000;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    -webkit-background-clip: text;
    background-clip: text;
    line-height: normal;
}

.header_area {
    text-align: center;
    margin-bottom: 4rem;
    transform: translateY(15px) scale(0.9);
    transition: all 0.25s ease-in-out;
}

.header_area .title_content {
    text-align: center;
    font-size: 5rem;
}

.header_area .description_content {
    font-size: 1.25rem;
    color: var(--text-paragraph);
    width: 75%;
    margin: auto;
    display: block;
}

.header_content {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    transition: all 0.3s ease-in-out;
}

.header_content .title {
    flex: 2.5;
}

.header_content .title h2 {
    width: 75%;
    font-size: 2.5rem;
    margin-top: 0.5rem;
    color: var(--main-text);
}

.header_content .title span {
    margin-top: 0.7rem;
}

.header_content .other {
    flex: 1.5;
}

.header_content .title span,
.header_content .other span {
    font-size: 1.2rem;
    display: block;
    color: var(--text-paragraph);
}

.w-120 {
    min-width: 120px;
}

.w-140 {
    min-width: 140px;
}





html[dir="rtl"] .input-group {
    flex-direction: row-reverse;
}





.ln_header {
    background-color: var(--bg-body);
    border-bottom: 1px solid var(--border-color);
    z-index: 1040;
}

.ln_header_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.75rem var(--margin-inline);
}

body.ln_search_open .ln_header_top {
    position: relative;
    z-index: 1052;
    background-color: var(--bg-body);
}

.ln_header_left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 0;
}

.ln_logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    white-space: nowrap;
}

.ln_logo img {
    width: 2.7rem;
}

.ln_search {
    position: relative;
    width: min(34rem, 100%);
}

.ln_search .input-group {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-body);
}

.ln_search_active .input-group {
    border-color: var(--main-text);
}

.ln_search .form-control {
    border: 0;
    box-shadow: none !important;
    padding: 0.6rem 1.1rem;
    padding-inline-end: 3.2rem;
    font-size: 0.9rem;
    background-color: var(--bg-body);
}

.ln_search_input_clear {
    position: absolute;
    top: 50%;
    inset-inline-end: 4.25rem;
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: var(--text-paragraph);
    transform: translateY(-50%);
    cursor: pointer;
}

.ln_search_input_clear:hover {
    color: var(--main-text);
    background-color: #d8dade;
}

.ln_search_input_clear svg {
    width: 0.95rem;
    height: 0.95rem;
    margin: 0;
}

.ln_search .btn {
    border: 0;
    border-radius: 0;
    background-color: var(--main-color);
    color: var(--white-color);
    width: 3.8rem;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease-in-out;
}

.ln_search .btn:hover {
    background-color: var(--accent-color);
}

.ln_search .btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--white-color);
    margin: 0;
}

html[dir="rtl"] .ln_search .btn svg {
    margin: 0 !important;
}

.ln_search_backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease-in-out;
}

body.ln_search_open .ln_search_backdrop {
    opacity: 1;
    pointer-events: auto;
}

.ln_search_panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    inset-inline: 0;
    z-index: 1053;
    display: none;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 20px 48px rgba(17, 24, 39, 0.22);
    padding: 1.8rem 2rem 2rem;
}

.ln_search_active .ln_search_panel {
    display: block;
}

.ln_search_panel_section+.ln_search_panel_section {
    margin-top: 1.7rem;
}

.ln_search_panel_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ln_search_panel_title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--main-text);
}

.ln_search_panel_title svg {
    width: 17px;
    height: 17px;
    color: var(--main-text);
}

.ln_search_clear_btn {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-paragraph);
    cursor: pointer;
}

.ln_recent_searches_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    margin-inline-start: 2.25rem;
    margin-top: 0.95rem;
}

.ln_recent_search_item {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--text-paragraph);
    font-size: 0.95rem;
    text-align: start;
    cursor: pointer;
}

.ln_search_services_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin-inline-start: 2.25rem;
    margin-top: 1rem;
}

.ln_search_service_item {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--main-text);
    font-size: 1rem;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
}

.ln_search_service_item span {
    color: var(--text-paragraph);
    font-weight: 500;
}

.ln_search_empty {
    color: var(--text-paragraph);
    font-size: 0.88rem;
}

.ln_popular_searches_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-inline-start: 2.25rem;
    margin-top: 1rem;
}

.ln_search_chip {
    border: 0;
    border-radius: 999px;
    background-color: #f0f1f2;
    color: var(--text-paragraph);
    padding: 0.35rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
}

.ln_search_chip:hover,
.ln_recent_search_item:hover,
.ln_search_service_item:hover,
.ln_search_clear_btn:hover {
    color: var(--main-text);
}

.ln_header_actions {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    white-space: nowrap;
}

.ln_lang_switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--main-text) !important;
    border: 0;
    background: transparent;
    padding: 0;
}

.ln_lang_switch svg {
    --aous-aw-icon-size: 1.45rem;
    stroke-width: 1.75;
    color: var(--text-paragraph);
}

.ln_nav_switch_link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent-color) !important;
}

.ln_nav_requests_link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--main-text) !important;
}

.ln_nav_requests_link:hover {
    border-color: var(--main-text);
}

.ln_web_icon_dropdown {
    display: inline-flex;
}

.ln_web_icon_btn {
    cursor: pointer;
    position: relative;
    border-radius: 50%;
}

.ln_web_nav_badge {
    position: absolute;
    top: -5px;
    inset-inline-end: -7px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    border-radius: 999px;
    background-color: var(--accent-color);
    color: var(--white-color);
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ln_web_nav_dot {
    position: absolute;
    top: -5px;
    inset-inline-end: 0px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    background-color: var(--main-color);
}

.ln_web_panel_menu {
    width: min(430px, calc(100vw - 2rem));
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.ln_web_panel_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 4rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--main-text);
    font-size: 1.05rem;
    font-weight: 700;
}

.ln_web_panel_head form {
    margin: 0;
}

.ln_web_panel_head_action {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-paragraph);
    cursor: pointer;
}

.ln_web_panel_head_action:hover {
    color: var(--main-text);
}

.ln_web_empty_panel {
    padding: 2rem 1.25rem;
    text-align: center;
}

.ln_web_empty_title {
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.ln_web_empty_subtitle {
    color: var(--text-paragraph);
    font-size: 0.82rem;
    margin: 0;
}

.ln_web_notification_list {
    max-height: 360px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ln_web_notification_item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.85rem;
    white-space: normal;
    padding: 0.85rem;
}

.ln_web_notification_item:hover,
.ln_web_message_item:hover {
    background-color: var(--bg-card);
}

.ln_web_panel_item_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--main-text);
}

.ln_web_panel_item_icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_web_panel_item_body {
    display: grid;
    min-width: 0;
    gap: 0.2rem;
}

.ln_web_panel_item_body strong {
    color: var(--main-text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
}

.ln_web_panel_item_body small {
    color: var(--text-paragraph);
    font-size: 0.86rem;
    line-height: 1.35;
}

.ln_web_panel_item_time {
    color: var(--text-paragraph);
    font-size: 0.76rem;
    line-height: 1.25;
    text-align: end;
    white-space: nowrap;
}

.ln_web_notification_unread,
.ln_web_message_unread {
    background-color: var(--bg-card);
}

.ln_web_notification_unread .ln_web_panel_item_icon,
.ln_web_message_unread .ln_web_message_avatar {
    box-shadow: 0 0 0 2px rgba(103, 192, 144, 0.35);
}

.ln_web_message_list {
    max-height: 360px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ln_web_message_item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    white-space: normal;
    padding: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.ln_web_message_avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background-color: var(--border-color);
    background-size: cover;
    background-position: center;
    color: var(--text-paragraph);
    flex-shrink: 0;
}

.ln_web_message_avatar svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_web_panel_footer_link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    color: var(--main-text) !important;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none !important;
}

.ln_web_panel_footer_link:hover {
    background-color: var(--bg-card);
}

.ln_lang_switch.auth_name {
    font-weight: 500;
    font-size: 1rem;
}

.ln_btn_ghost,
.ln_btn_primary {
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
}

.ln_btn_ghost {
    color: var(--main-text) !important;
}

.ln_btn_primary {
    background-color: var(--main-color);
    color: var(--white-color) !important;
    border: 1px solid var(--main-color);
    transition: background-color 0.2s ease-in-out;
}

.ln_btn_primary:hover {
    background-color: var(--main-color-hover);
}

.ln_categories_nav {
    border-top: 1px solid var(--border-color);
}

.ln_categories_row {
    display: flex;
    align-items: center;
    padding-inline: calc(var(--margin-inline) - 2.25rem);
}

.ln_cat_nav_arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--bg-body);
    color: var(--main-text);
    cursor: pointer;
}

.ln_cat_nav_arrow svg {
    --aous-aw-icon-size: 1.35rem;
}

html[dir="rtl"] .ln_cat_nav_arrow svg {
    rotate: 180deg;
}

.ln_cat_nav_prev {
    margin-inline-end: 0.25rem;
}

.ln_cat_nav_next {
    margin-inline-start: 0.25rem;
}

.ln_h_scroll_arrow_hidden {
    visibility: hidden;
    pointer-events: none;
}

.ln_categories_list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.ln_categories_list::-webkit-scrollbar {
    display: none;
}

.ln_cat_item {
    position: relative;
}

.ln_cat_link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.6rem 0.3rem;
    font-size: 0.9rem;
    font-weight: 400;
    white-space: nowrap;
    color: var(--text-paragraph) !important;
}

.ln_cat_item_active .ln_cat_link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 2px 2px 0 0;
    background-color: var(--accent-color);
}

.ln_cat_icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.ln_cat_item_active .ln_cat_link,
.ln_cat_item:hover .ln_cat_link {
    color: var(--main-color) !important;
}

.ln_mega_menu {
    display: none;
    position: fixed;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    min-width: 760px;
    max-width: 1000px;
    padding: 1rem;
    z-index: 1050;
    overflow-y: scroll;
    scrollbar-width: none;
}

html[dir="rtl"] .ln_mega_menu {
    direction: rtl;
    text-align: right;
}

.ln_mega_menu::-webkit-scrollbar {
    display: none;
}

.ln_cat_item_active .ln_mega_menu {
    display: block;
}

.ln_mega_menu_inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem 2rem;
}

.ln_mega_menu_loading {
    display: block;
    min-width: 16rem;
    color: var(--text-paragraph);
    font-size: 0.9rem;
}

.ln_mega_col_title {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--main-text) !important;
    margin-bottom: 0.35rem;
}

.ln_mega_col_title:hover {
    color: var(--main-color) !important;
}

.ln_mega_col ul li a {
    display: block;
    padding: 0.25rem 0.5rem;
    margin-inline: -0.5rem;
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--text-paragraph) !important;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.ln_lang_modal .modal-header {
    border-bottom: 1px solid var(--border-color);
}

.ln_lang_tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.25rem;
}

.ln_lang_tab {
    position: relative;
    border: 0;
    background: transparent;
    padding-bottom: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-paragraph);
}

.ln_lang_tab_active {
    color: var(--main-text);
}

.ln_lang_tab_active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--accent-color);
}

.ln_lang_list {
    display: flex;
    flex-direction: column;
}

.ln_lang_item {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.1rem;
    font-size: 0.92rem;
    color: var(--main-text) !important;
    border-bottom: 1px solid var(--border-color);
}

.ln_lang_list li:last-child .ln_lang_item {
    border-bottom: 0;
}

.ln_lang_item:hover {
    color: var(--main-color) !important;
}

.ln_lang_item_active {
    font-weight: 500;
}

.ln_currency_dialog {
    max-width: 43rem;
}

.ln_currency_modal_list {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.ln_currency_modal_item {
    width: 100%;
    border: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 2.7rem 1fr;
    gap: 0.35rem;
    align-items: start;
    color: var(--main-text);
    text-align: start;
    margin-bottom: 0.75rem;
}

.ln_currency_modal_item:hover {
    background: var(--bg-card);
}

.ln_currency_modal_check {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-paragraph);
}

.ln_currency_modal_check svg {
    --aous-aw-icon-size: 1.35rem;
}

.ln_currency_modal_text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--main-text);
}

.ln_currency_modal_text small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-paragraph);
    font-size: 0.9rem;
    font-weight: 500;
}

.ln_lang_check {
    width: 16px;
    height: 16px;
    color: var(--main-color);
}





.ln_arrow_icon {
    width: 15px;
    height: 15px;
}

html[dir="rtl"] .ln_arrow_icon {
    transform: scaleX(-1);
}

.ln_categories_page {
    padding: 2.5rem var(--margin-inline) 4rem;
}

.ln_categories_page_header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.ln_categories_page_header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.ln_categories_page_header p {
    color: var(--text-paragraph);
}

.ln_categories_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ln_category_card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    background-color: var(--bg-card);
    transition: box-shadow 0.2s ease-in-out;
}

.ln_category_card:hover {
    box-shadow: var(--shadow);
}

.ln_category_card_header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--main-text) !important;
}

.ln_category_card_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--accent-color-light);
    color: var(--main-color);
    flex-shrink: 0;
}

.ln_category_card_icon svg {
    width: 22px;
    height: 22px;
}

.ln_category_card_titles {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.ln_category_card_title {
    font-size: 1.05rem;
    font-weight: 600;
}

.ln_category_card_count {
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_category_card_arrow {
    display: flex;
    flex-shrink: 0;
    color: var(--text-paragraph);
}

.ln_category_card_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ln_category_pill {
    padding: 0.4rem 0.85rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
    color: var(--main-text) !important;
    background-color: var(--bg-body);
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.ln_category_pill:hover {
    background-color: var(--accent-color);
    color: var(--white-color) !important;
}

.ln_category_pill_more {
    font-weight: 600;
    color: var(--main-color) !important;
    background-color: var(--accent-color-light);
    border-color: transparent;
}

.ln_single_category_page {
    padding-inline: var(--margin-inline);
    padding-bottom: 4rem;
}

.ln_cat_hero {
    background-color: var(--main-color);
    background: linear-gradient(180deg, var(--accent-color-light), var(--bg-body) 70%);
    color: var(--white-color);
    padding: 3.5rem 2.5rem;
    margin-top: 1rem;
    border-radius: 0.6rem;
    text-align: center;
}

.ln_cat_hero_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background-color: var(--main-color-hover);
    margin-bottom: 1rem;
}

.ln_cat_hero_icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
    stroke: var(--accent-color);
}

.ln_cat_hero h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color-hover);
    margin-bottom: 0.5rem;
}

.ln_cat_hero p {
    color: var(--main-color-hover);
    font-size: 0.9rem;
}

.ln_cat_section {
    padding: 2.5rem 0 0;
}

.ln_cat_section_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ln_cat_section_title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ln_section_nav_arrows {
    display: flex;
    gap: 0.5rem;
}

.ln_popular_pills_row {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.ln_popular_pills_row::-webkit-scrollbar {
    display: none;
}

.ln_popular_pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--main-text) !important;
    white-space: nowrap;
    transition: border-color 0.15s ease-in-out;
}

.ln_popular_pill:hover {
    border-color: var(--main-color);
}

.ln_popular_pill_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--bg-body);
    flex-shrink: 0;
}

.ln_popular_pill_icon svg {
    width: 20px;
    height: 20px;
    color: var(--main-text);
}

.ln_popular_pill .ln_arrow_icon {
    width: 15px;
    height: 15px;
    color: var(--text-paragraph);
    margin-inline-start: 0.15rem;
}

.ln_explore_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ln_explore_card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
    padding: 1rem;
    transition: border-color 0.15s ease-in-out;
}

.ln_explore_card:hover {
    border-color: var(--border-color-lg);
}

.ln_explore_card_head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.ln_explore_card_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    background-color: var(--bg-card);
    color: var(--main-text);
}

.ln_explore_card_icon svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_explore_card_title {
    display: inline-flex;
    min-width: 0;
    color: var(--main-text) !important;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.ln_explore_card_count {
    border-radius: 999px;
    background-color: var(--bg-card);
    color: var(--text-paragraph);
    padding: 0.15rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.ln_explore_card_list {
    display: grid;
    gap: 0.1rem;
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.ln_explore_card_list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-radius: 5px;
    font-size: 0.88rem;
    line-height: 1.25;
    color: var(--text-paragraph) !important;
    text-decoration: none !important;
}

.ln_explore_card_list li a svg {
    width: 0.85rem;
    height: 0.85rem;
    color: var(--border-color-lg);
    flex-shrink: 0;
    transition: transform 0.15s ease-in-out, color 0.15s ease-in-out;
}

html[dir="rtl"] .ln_explore_card_list li a svg {
    rotate: 180deg;
}

.ln_explore_card_title:hover,
.ln_explore_card_list li a:hover {
    color: var(--main-text) !important;
}

.ln_explore_card_list li a:hover {
    background-color: var(--bg-card);
    padding-inline: 0.45rem;
}

.ln_explore_card_list li a:hover svg {
    color: var(--main-text);
    transform: translateX(2px);
}

html[dir="rtl"] .ln_explore_card_list li a:hover svg {
    transform: translateX(-2px);
}

.ln_cta_section {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 1.5rem 0 0;
    padding: 2.5rem;
    border-radius: 18px;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

html[dir="rtl"] .ln_cta_section {
    background-image: radial-gradient(circle at 15% 60%, rgba(170, 255, 199, 0.55) 0%, transparent 45%);
}

.ln_cta_content {
    flex: 1.4;
}

.ln_cta_content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ln_cta_highlight {
    color: var(--main-color);
}

.ln_cta_content>p {
    color: var(--text-paragraph);
    margin-bottom: 1.25rem;
}

.ln_cta_checklist {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.ln_cta_checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.ln_cta_check {
    width: 18px;
    height: 18px;
    color: var(--main-color);
    flex-shrink: 0;
}

.ln_cta_actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ln_cta_btn {
    padding: 0.7rem 1.5rem;
}

.ln_cta_guarantee {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
}

.ln_cta_guarantee svg {
    width: 16px;
    height: 16px;
    color: var(--main-color);
}

.ln_cta_visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ln_cta_avatar_stack {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 1rem;
}

.ln_cta_avatar_card {
    width: 130px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem;
    text-align: center;
}

.ln_cta_avatar_card_1 {
    z-index: 3;
    margin-inline-end: -18px;
}

.ln_cta_avatar_card_2 {
    z-index: 2;
    transform: translateY(14px);
}

.ln_cta_avatar_card_3 {
    z-index: 1;
    margin-inline-start: -18px;
    transform: translateY(18px);
}

.ln_cta_avatar_circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
}

.ln_cta_avatar_circle svg {
    width: 26px;
    height: 26px;
}

.ln_cta_avatar_circle_1 {
    background-color: rgba(33, 91, 99, 0.14);
    color: var(--main-color);
}

.ln_cta_avatar_circle_2 {
    background-color: rgba(103, 192, 144, 0.22);
    color: #3d8b7a;
}

.ln_cta_avatar_circle_3 {
    background-color: rgba(18, 65, 112, 0.14);
    color: var(--accent-color);
}

.ln_cta_avatar_bar {
    width: 85%;
    height: 6px;
    border-radius: 3px;
    background-color: var(--border-color);
    margin: 0.4rem auto 0;
}

.ln_cta_avatar_bar_title {
    width: 65%;
    height: 8px;
    background-color: var(--main-text);
    opacity: 0.18;
    margin-top: 0;
}

.ln_cta_visual_caption {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
}



.ln_group_listing_page {
    padding-inline: var(--margin-inline);
    padding-bottom: 4rem;
}

.ln_listing_header {
    padding-top: 1rem;
}

.ln_breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-paragraph);
    margin-bottom: 1rem;
}

.ln_breadcrumb_home {
    display: flex;
    color: var(--text-paragraph) !important;
}

.ln_breadcrumb_home svg {
    width: 16px;
    height: 16px;
}

.ln_breadcrumb a {
    color: var(--text-paragraph) !important;
}

.ln_breadcrumb a:hover {
    color: var(--main-color) !important;
}

.ln_breadcrumb_current {
    color: var(--main-text);
    font-weight: 500;
}

.ln_breadcrumb_sep {
    color: var(--border-color);
}

.ln_listing_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ln_listing_subtitle {
    color: var(--text-paragraph);
    margin-bottom: 1.5rem;
}

.ln_listing_chips_row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.ln_listing_chips {
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    flex: 1;
}

.ln_listing_chips::-webkit-scrollbar {
    display: none;
}

.ln_listing_chip {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--main-text) !important;
    white-space: nowrap;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.ln_listing_chip:hover {
    border-color: var(--main-color);
}

.ln_listing_chip_active {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color) !important;
}

.ln_filter_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.ln_filter_bar_left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ln_filter_bar_left .btn:not(.btn-icon) {
    font-size: 0.8rem;
    padding-inline: 0.75rem;
    border-width: 0.75px;
}

.ln_filter_btn {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--main-text);
    background-color: var(--bg-body);
}

.ln_filter_menu {
    min-width: 240px;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.ln_filter_menu_scroll {
    max-height: 320px;
    overflow-y: auto;
}

.ln_filter_group_title {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-paragraph);
    margin-bottom: 0.5rem;
}

html[dir="rtl"] .ln_filter_group_title {
    text-align: start;
}

.ln_filter_menu .form-check {
    margin-bottom: 0.5rem;
}

html[dir="rtl"] .ln_filter_menu .form-check {
    padding-left: unset;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.ln_filter_menu hr {
    margin: 0.75rem 0;
}

.ln_filter_bar_right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_filter_switch {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--main-text);
    cursor: pointer;
}

.ln_switch_label {
    font-weight: 500;
    color: var(--text-paragraph);
}

.ln_switch_input {
    display: none;
}

.ln_switch_track {
    position: relative;
    width: 34px;
    height: 20px;
    border-radius: 10px;
    background-color: var(--border-color);
    transition: background-color 0.15s ease-in-out;
    flex-shrink: 0;
}

.ln_switch_track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--white-color);
    transition: transform 0.15s ease-in-out;
}

html[dir="rtl"] .ln_switch_track::after {
    left: unset;
    right: 2px;
}

.ln_switch_input:checked+.ln_switch_track {
    background-color: var(--main-color);
}

.ln_switch_input:checked+.ln_switch_track::after {
    transform: translateX(14px);
}

html[dir="rtl"] .ln_switch_input:checked+.ln_switch_track::after {
    transform: translateX(-14px);
}

.ln_listing_results_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1.15rem;
}

.ln_listing_results_bar .tom_select .ts-control,
.ln_listing_results_bar .form-control:not(.form-check-input) {
    padding: 0.45rem;
    min-height: 39px;
}

.ln_listing_results_count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-paragraph);
}

.ln_listing_sort {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
}

.ln_listing_sort label {
    color: var(--text-paragraph);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.ln_listing_sort select {
    width: auto;
}

.ln_listing_sort .form-control {
    min-width: 9.5rem;
    border-radius: 8px;
}

.ln_listing_empty_state {
    text-align: center;
    padding: 4rem 1rem;
    border: 1px dashed var(--border-color);
    border-radius: 14px;
    color: var(--text-paragraph);
}

.ln_listing_empty_state svg {
    width: 40px;
    height: 40px;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.ln_listing_empty_state h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-text);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.ln_listing_empty_state p {
    max-width: 420px;
    margin: 0 auto;
}

.ln_active_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ln_active_filters:not(:empty) {
    margin-bottom: 1rem;
}

.ln_active_filter_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.5rem 0.35rem 0.9rem;
    background-color: #eef0f1;
    border-radius: 0.6rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--main-text);
}

.ln_active_filter_remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 1rem;
    line-height: 1;
    color: var(--text-paragraph);
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.ln_active_filter_remove:hover {
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--main-text);
}







.ln_auth_modal .modal-content {
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.ln_auth_dialog {
    max-width: 800px;
}

.ln_auth_close {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    z-index: 5;
}

.ln_auth_grid {
    display: flex;
    height: 700px;
    max-height: 75vh;
}

.ln_auth_visual {
    flex: 0 0 50%;
    position: relative;
    background-color: var(--main-color);
    background-size: cover;
    background-position: center;
}

.ln_auth_visual_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white-color);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.1) 65%);
}

.ln_auth_visual_title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ln_auth_visual_points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ln_auth_visual_points li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.ln_auth_visual_points svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-color-light);
}

.ln_auth_panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.75rem;
    overflow-y: auto;
}

.ln_auth_views {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.ln_auth_title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ln_auth_subtitle {
    font-size: 0.82rem;
    color: var(--text-paragraph);
    margin-bottom: 1.25rem;
}

.ln_auth_switch {
    color: var(--main-color) !important;
    font-weight: 600;
    margin-inline-start: 0.25rem;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.ln_auth_btn_primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    background-color: var(--main-color);
    color: var(--white-color) !important;
    transition: background-color 0.2s ease-in-out;
}

.ln_auth_btn_primary svg {
    width: 18px;
    height: 18px;
}

.ln_auth_btn_primary:hover:not(:disabled) {
    background-color: var(--main-color-hover) !important;
}

.ln_auth_btn_primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.ln_auth_back {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin-bottom: 1rem;
    border: 0;
    background-color: transparent;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--main-text);
}

.ln_auth_back svg {
    width: 16px;
    height: 16px;
}

.ln_auth_fineprint {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-paragraph);
}

.ln_auth_fineprint a {
    color: var(--text-paragraph);
}

.ln_auth_password_field {
    position: relative;
}

.ln_auth_password_field input {
    padding-inline-end: 2.5rem;
}

.ln_auth_password_toggle {
    position: absolute;
    top: 50%;
    inset-inline-end: 0.6rem;
    transform: translateY(-50%);
    display: flex;
    border: 0;
    background-color: transparent;
    padding: 0;
    color: var(--text-paragraph);
}

.ln_auth_password_toggle svg {
    width: 19px;
    height: 19px;
}

.ln_auth_password_rules {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0 0 0.75rem;
    list-style: none;
}

.ln_auth_password_rules li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_auth_password_rules li svg {
    width: 16px;
    height: 16px;
    color: #c7c7c7;
    transition: color 0.15s ease-in-out;
}

.ln_auth_password_rules li.ln_rule_met {
    color: var(--main-text);
}

.ln_auth_password_rules li.ln_rule_met svg {
    color: var(--accent-color);
}

.ln_auth_forgot {
    margin-bottom: 1rem;
    text-align: end;
    font-size: 0.83rem;
}





.ln_reset_password_page {
    padding: 3rem var(--margin-inline) 5rem;
}

.ln_reset_password_card {
    max-width: 880px;
    margin-inline: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}





.ln_footer {
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    padding: 2rem var(--margin-inline);
}

.ln_footer_top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

.ln_footer_col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ln_footer_col h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--main-text);
    margin: 0 0 0.25rem;
}

.ln_footer_col a {
    color: var(--main-text);
    font-size: 1rem;
    text-decoration: none !important;
}

.ln_footer_col a:hover {
    color: var(--main-color);
}

.ln_footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.ln_footer_brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-paragraph) !important;
    font-size: 0.85rem;
    text-decoration: none !important;
}

.ln_footer_brand img {
    height: 22px;
    width: auto;
}

.ln_footer_socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_footer_socials a {
    color: var(--text-paragraph);
    display: inline-flex;
}

.ln_footer_socials a:hover {
    color: var(--main-color);
}

.ln_footer_socials svg {
    width: 20px;
    height: 20px;
}

.ln_footer_meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.ln_footer_meta_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    color: var(--text-paragraph);
    font-size: 0.85rem;
    padding: 0;
}

.ln_footer_meta_btn svg {
    width: 18px;
    height: 18px;
}

.ln_footer_meta_static {
    font-size: 0.85rem;
    color: var(--text-paragraph);
}



.ln_pub_profile_page {
    margin: 0 auto;
    padding: 1.5rem var(--margin-inline) 3rem;
    background:
        linear-gradient(180deg, rgba(33, 91, 99, 0.045), rgba(255, 255, 255, 0) 280px);
}

.ln_pub_profile_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 1.25rem;
    align-items: start;
}

.ln_pub_card {
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.ln_pub_header_card {
    overflow: hidden;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-color: rgba(33, 91, 99, 0.16);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.02);
    background: var(--bg-body);
    border-radius: 12px;
}

.ln_pub_card_title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

html[dir="rtl"] .ln_pub_card_title {
    font-size: 1.1rem;
}

.ln_pub_btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color-lg);
    background: transparent;
    color: var(--main-text);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.ln_pub_btn_outline svg {
    width: 16px;
    height: 16px;
}

.ln_pub_btn_outline:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.ln_pub_header_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ln_pub_identity {
    display: flex;
    gap: 1.25rem;
}

.ln_pub_avatar {
    width: 92px;
    height: 92px;
    min-width: 92px;
    border-radius: 50%;
    background-color: #eef2f3;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    border: 4px solid var(--bg-body);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.ln_pub_avatar svg {
    width: 36px;
    height: 36px;
}

.ln_pub_name {
    font-size: 1.45rem;
    font-weight: 600;
    margin: 0 0 0.15rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

html[dir="rtl"] .ln_pub_name {
    font-size: 1.2rem;
}

.ln_pub_handle {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-paragraph);
}

.ln_pub_verified_tick {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #26256f;
    flex-shrink: 0;
    vertical-align: middle;
}

.ln_inline_verified_tick svg {
    --aous-aw-icon-size: 1.25rem;
    stroke-width: 2;
    margin: unset !important;
}

.ln_pub_vetted_badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin: .2rem 0 .65rem;
    padding: .25rem .5rem;
    border-radius: 6px;
    background: #d8d3ff;
    color: #25256f;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.ln_pub_vetted_badge svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

.ln_pub_title {
    margin: 0 0 0.5rem;
    color: var(--text-paragraph);
    font-weight: 500;
    font-size: 0.9rem;
}

.ln_pub_meta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.ln_pub_meta_item {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
}

.ln_pub_meta_item svg {
    width: 16px;
    height: 16px;
}

.ln_pub_quick_stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.ln_pub_quick_stats span {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 999px;
    background-color: rgba(33, 91, 99, 0.055);
    color: var(--text-paragraph);
    font-size: 0.78rem;
}

.ln_pub_quick_stats strong {
    color: var(--main-text);
    font-weight: 650;
}

.ln_pub_about_text {
    color: var(--text-paragraph);
    white-space: pre-line;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.ln_pub_skill_pills,
.ln_pub_project_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ln_pub_pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--border-color-lg);
    font-size: 0.8rem;
    background-color: var(--bg-body);
}

.ln_pub_pill:hover {
    background-color: var(--bg-card);
}

.ln_pub_skill_link {
    color: var(--main-text) !important;
    text-decoration: none !important;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ln_pub_skill_link:hover {
    border-color: var(--main-text);
    background-color: var(--bg-card);
}

.ln_pub_portfolio_section {
    margin-bottom: 3rem;
}

.ln_pub_section_title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

html[dir="rtl"] .ln_pub_section_title {
    font-size: 1.1rem;
}

.ln_pub_empty_card {
    text-align: center;
    color: var(--text-paragraph);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-card);
}

.ln_pub_empty_card p {
    margin: 0;
}

.ln_pub_empty_icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-paragraph);
    background-color: var(--bg-card);
}

.ln_pub_empty_icon svg {
    width: 22px;
    height: 22px;
}

.ln_pub_unavailable_page {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem var(--margin-inline);
}

.ln_pub_unavailable_card {
    width: min(100%, 560px);
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    background-color: var(--bg-body);
}

.ln_pub_unavailable_icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    color: #935f00;
    background-color: rgba(245, 159, 0, 0.12);
}

.ln_pub_unavailable_icon svg {
    width: 24px;
    height: 24px;
}

.ln_pub_unavailable_card h1 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.ln_pub_unavailable_card p {
    color: var(--text-paragraph);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.ln_locked_actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ln_pub_portfolio_grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ln_pub_portfolio_viewer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 1rem;
    align-items: stretch;
}

.ln_pub_portfolio_feature {
    min-width: 0;
    min-height: 360px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.6rem;
    padding: 1rem;
    border: 1px solid var(--border-color-lg);
    border-radius: 18px;
    background: var(--bg-body);
    cursor: pointer;
}

.ln_pub_portfolio_feature:hover {
    border-color: var(--main-color);
}

.ln_pub_portfolio_feature_media {
    position: relative;
    min-height: 300px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ln_pub_portfolio_feature_media img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.ln_pub_portfolio_feature_empty {
    display: none;
    color: var(--text-paragraph);
}

.ln_pub_portfolio_feature_empty svg {
    width: 42px;
    height: 42px;
}

.ln_pub_portfolio_feature_body {
    min-width: 0;
}

.ln_pub_portfolio_feature_title {
    margin: .25rem 0 .8rem;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
}

.ln_pub_portfolio_feature_desc {
    color: var(--text-paragraph);
    font-size: .95rem;
    line-height: 1.7;
    margin: 0 0 1rem;
}

.ln_pub_portfolio_rail {
    min-width: 0;
    max-height: 360px;
    overflow-y: auto;
    display: grid;
    gap: .7rem;
    align-content: start;
    padding-inline-end: .15rem;
}

.ln_pub_portfolio_rail_card {
    position: relative;
}

.ln_pub_portfolio_rail_item {
    width: 100%;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    overflow: hidden;
    background: var(--bg-body);
    color: inherit;
    text-align: start;
    cursor: pointer;
}

.ln_pub_project_save {
    position: absolute;
    top: .45rem;
    right: .45rem;
    z-index: 2;
}

html[dir="rtl"] .ln_pub_project_save {
    right: auto;
    left: .45rem;
}

.ln_pub_portfolio_rail_item.is-active {
    border-color: var(--main-color);
    box-shadow: inset 0 0 0 1px var(--main-color);
}

.ln_pub_portfolio_rail_thumb {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-paragraph);
}

.ln_pub_portfolio_rail_thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.ln_pub_portfolio_rail_thumb svg {
    width: 28px;
    height: 28px;
}

.ln_pub_portfolio_rail_title {
    display: block;
    padding: .45rem .5rem;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ln_pub_portfolio_more_count {
    min-height: 100px;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    color: var(--text-paragraph);
}

.ln_pub_portfolio_more_count strong {
    color: var(--main-text);
    font-size: 1.25rem;
    line-height: 1.1;
}

@media only screen and (max-width: 900px) {

    .ln_pub_portfolio_viewer,
    .ln_pub_portfolio_feature {
        grid-template-columns: 1fr;
    }

    .ln_pub_portfolio_rail {
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        grid-auto-flow: column;
        grid-auto-columns: 130px;
    }
}

@media only screen and (max-width: 576px) {
    .ln_pub_portfolio_feature {
        min-height: 0;
        padding: .7rem;
        gap: 1rem;
    }

    .ln_pub_portfolio_feature_media,
    .ln_pub_portfolio_feature_media img {
        min-height: 210px;
    }

    .ln_pub_portfolio_feature_title {
        font-size: 1.12rem;
    }

    .ln_pub_portfolio_feature_desc {
        font-size: .88rem;
    }
}

.ln_pub_project_card {
    display: grid;
    grid-template-columns: minmax(260px, 36%) 1fr;
    align-items: stretch;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.ln_pub_project_card:hover {
    border-color: var(--border-color-lg);
    transform: translateY(-1px);
}

.ln_pub_project_thumb_wrap {
    position: relative;
    display: flex;
    align-self: stretch;
    min-height: 245px;
    background-color: var(--bg-card);
}

.ln_pub_project_thumb {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    position: relative;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.ln_pub_project_thumb img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    background-color: var(--bg-card);
}

.ln_pub_project_thumb_empty {
    background-color: var(--border-color);
}

.ln_pub_project_thumb_empty svg {
    width: 42px;
    height: 42px;
}

.ln_pub_project_gallery_hidden {
    display: none;
}

.ln_pub_project_thumb_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background-color: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity 0.15s ease-in-out;
}

.ln_pub_project_thumb_overlay svg {
    width: 30px;
    height: 30px;
}

.ln_pub_project_gallery_link:hover .ln_pub_project_thumb_overlay {
    opacity: 1;
}

.ln_pub_project_body_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
}

.ln_pub_project_name_btn {
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    text-align: start;
    cursor: pointer;
    min-width: 0;
}

.ln_pub_project_contact_wrap {
    flex-shrink: 0;
}

.ln_pub_project_contact_wrap form {
    margin: 0;
}

.ln_pub_project_thumb_count {
    position: absolute;
    bottom: 0.5rem;
    inset-inline-end: 0.5rem;
    background-color: rgba(0, 0, 0, 0.55);
    color: var(--white-color);
    border-radius: 999px;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ln_pub_project_thumb_count svg {
    width: 13px;
    height: 13px;
}

.ln_pub_project_body {
    padding: 1.6rem;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.ln_pub_project_date {
    display: inline-flex;
    margin-bottom: 0.2rem;
    font-size: 0.82rem;
    color: var(--text-paragraph);
}

.ln_pub_project_name {
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 0.25rem;
}

.ln_pub_project_industry {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.82rem;
}

.ln_pub_project_desc {
    color: var(--text-paragraph);
    font-size: 0.9rem;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 1rem 0;
}

.ln_pub_project_footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.ln_pub_project_pills {
    margin-bottom: 0.85rem;
}

.ln_pub_project_stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.ln_pub_project_stats>div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.7rem;
}

.ln_pub_project_stat_label {
    font-size: 0.78rem;
    color: var(--text-paragraph);
}

.ln_pub_project_stat_value {
    font-size: 0.92rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}


.ln_pub_cta_banner {
    background: linear-gradient(180deg, var(--accent-color-light), var(--bg-card));
    border-radius: 18px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.ln_pub_cta_banner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

html[dir="rtl"] .ln_pub_cta_banner h3 {
    font-size: 1.1rem;
}

.ln_pub_cta_banner p {
    color: var(--text-paragraph);
    max-width: 420px;
    margin-bottom: 1.1rem;
}

.ln_pub_cta_banner .ln_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
}

.ln_pub_cta_banner svg {
    width: 16px;
    height: 16px;
}

html[dir="rtl"] .ln_pub_cta_banner svg {
    rotate: 180deg;
}

.ln_pub_sticky_bar {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1030;
    background-color: var(--bg-body);
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem var(--margin-inline);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
}

.ln_pub_sticky_bar.ln_pub_sticky_visible {
    transform: translateY(0);
}

.ln_pub_sticky_bar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ln_pub_sticky_identity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.ln_pub_sticky_identity .ln_pub_contact_avatar {
    width: 42px;
    height: 42px;
}

.ln_pub_sticky_identity .ln_pub_contact_name,
.ln_pub_sticky_identity .ln_pub_contact_status {
    display: block;
    text-align: start;
}

.ln_pub_sticky_bar .ln_pub_contact_btn {
    width: auto;
}

.ln_pub_sticky_actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.ln_pub_sticky_actions .ln_save_to_list_btn {
    position: static;
    border: 1px solid var(--border-color-lg);
    background-color: transparent;
}

.ln_pub_sidebar_actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.ln_pub_sidebar_actions .ln_pub_contact_btn {
    flex: 1;
    width: auto;
}

.ln_pub_sidebar_actions .ln_save_to_list_btn {
    position: static;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border: 1px solid var(--border-color-lg);
    background-color: transparent;
}

.ln_pub_profile_sidebar {
    position: sticky;
    top: 4.25rem;
    border: 0;
    border-radius: 14px;
}

.ln_pub_contact_card {
    text-align: center;
    padding: 1.35rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.02);
    background-color: var(--bg-body);
    border-radius: 12px;
}

.ln_pub_contact_identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.ln_pub_contact_avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #eef2f3;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    border: 4px solid var(--bg-body);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.ln_pub_contact_name {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.ln_pub_contact_name svg {
    --aous-aw-icon-size: 1rem;
}

.ln_pub_contact_status {
    display: block;
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_pub_sidebar_facts {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 1.1rem;
    padding: 0.85rem;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 10px;
    text-align: start;
}

.ln_pub_sidebar_facts span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-paragraph);
}

.ln_pub_sidebar_facts svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.ln_pub_contact_card form {
    margin: 0;
}

.ln_pub_contact_btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.ln_pub_contact_btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.ln_pub_contact_btn svg {
    width: 16px;
    height: 16px;
}

.ln_bottom_sheet_modal {
    transition: transform 0.3s ease-out;
}

.ln_bottom_sheet_modal .modal-dialog {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.ln_bottom_sheet_modal.show .modal-dialog {
    transform: translateY(0);
}

.ln_bottom_sheet_dialog .modal-content {
    border-radius: 20px 20px 0 0;
    height: 92vh;
    width: 99vw;
    border: none;
    padding: 1.5rem 0;
    margin: auto;
    overflow: hidden;
    overflow-y: scroll;
}

.ln_bottom_sheet_close {
    position: sticky;
    top: 0;
    inset-inline-end: 0;
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: transparent;
    border: none;
    padding: 0.4rem 1.5rem;
    font-size: 0.85rem;
    z-index: 2;
}

.ln_bottom_sheet_close svg {
    width: 16px;
    height: 16px;
}

.ln_bottom_sheet_body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 0.5rem 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.ln_bottom_sheet_section {
    margin-top: 1.5rem;
}

.ln_bottom_sheet_member_since {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin: 0;
}

.ln_bottom_sheet_member_since svg {
    width: 18px;
    height: 18px;
}

.ln_bottom_sheet_languages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ln_bottom_sheet_language_row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.ln_more_portfolio_section {
    padding-top: 0.25rem;
}

.ln_more_portfolio_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.ln_more_portfolio_head span {
    color: var(--text-paragraph);
    font-size: 0.85rem;
    white-space: nowrap;
}

.ln_more_portfolio_feature {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1fr);
    gap: 1.1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem;
    background-color: var(--bg-body);
}

.ln_more_portfolio_media {
    position: relative;
    display: flex;
    min-height: 190px;
    border-radius: 10px;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: var(--text-paragraph);
    text-decoration: none !important;
}

.ln_more_portfolio_media_empty {
    align-items: center;
    justify-content: center;
}

.ln_more_portfolio_media_empty svg {
    width: 2rem;
    height: 2rem;
}

.ln_more_portfolio_count {
    position: absolute;
    inset-inline-end: 0.75rem;
    bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    background-color: rgba(34, 35, 37, 0.72);
    color: var(--white-color);
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.ln_more_portfolio_count svg {
    width: 0.95rem;
    height: 0.95rem;
}

.ln_more_portfolio_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.ln_more_portfolio_body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.ln_more_portfolio_body p {
    color: var(--text-paragraph);
    line-height: 1.5;
    margin: 0.7rem 0 0.85rem;
}

.ln_more_portfolio_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.ln_more_portfolio_strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.ln_more_portfolio_thumb {
    min-height: 88px;
    border: 1px solid var(--border-color);
    border-radius: 9px;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    text-decoration: none !important;
}

.ln_more_portfolio_thumb svg {
    width: 1.5rem;
    height: 1.5rem;
}


.ln_pub_project_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-block: 1rem;
}

#ln_project_details_modal .modal-body {
    padding: 1rem 2.5rem !important;
}

#ln_project_details_modal .modal-dialog {
    min-width: 54rem;
}

.ln_pub_project_modal_made_by {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.ln_pub_project_modal_made_by a {
    font-weight: 600;
    text-underline-offset: 5px;
    text-decoration: underline;
}

.ln_pub_project_modal_avatar {
    width: 32px;
    height: 32px;
}

.ln_pub_project_modal_actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_pub_project_modal_actions .ln_btn_primary {
    padding: 0.4rem 1rem;
}

.ln_pub_project_modal_actions form {
    margin: 0;
}

.ln_pub_project_modal_name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.25rem 0 0.75rem;
}

.ln_pub_project_modal_desc {
    color: var(--text-paragraph);
    white-space: pre-line;
    font-size: 1rem;
}

.ln_pub_project_modal_stats {
    margin: 1.25rem 0;
}

.ln_pub_project_modal_image {
    width: 100%;
    min-height: 280px;
    border-radius: 10px;
    background-color: var(--border-color);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    margin-bottom: 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
}

.ln_pub_modal_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ln_pub_modal_gallery_main {
    display: block;
    flex-basis: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.ln_pub_modal_gallery_main img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: contain;
    background-color: #f7f8f9;
}

.ln_pub_modal_gallery_thumb {
    display: block;
    width: 92px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.ln_pub_modal_gallery_thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ln_pub_modal_no_preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.ln_floating_chat {
    position: fixed;
    inset-block-end: 1.5rem;
    inset-inline-start: 1.5rem;
    z-index: 1030;
}

.ln_floating_chat_form {
    display: contents;
}

.ln_floating_chat_btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    transition: gap 0.24s ease, padding 0.24s ease, box-shadow 0.24s ease;
}

html[dir="rtl"] .ln_floating_chat_btn {
    padding: 0.4rem 0.4rem 0.4rem 1rem;
}

.ln_floating_chat_avatar {
    position: relative;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_floating_chat_badge {
    position: absolute;
    inset-block-end: -3px;
    inset-inline-end: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white-color);
}

.ln_floating_chat_badge svg {
    width: 11px;
    height: 11px;
}

.ln_floating_chat_text {
    display: flex;
    flex-direction: column;
    text-align: start;
    line-height: 1.25;
    max-width: 260px;
    overflow: hidden;
    white-space: nowrap;
    opacity: 1;
    transition: max-width 0.28s ease, opacity 0.18s ease;
}

.ln_floating_chat_text strong {
    font-size: 0.85rem;
    color: var(--main-text);
}

.ln_floating_chat_status {
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.ln_floating_chat_compact .ln_floating_chat_btn {
    gap: 0;
    padding: 0.4rem;
}

html[dir="rtl"] .ln_floating_chat_compact .ln_floating_chat_btn {
    padding: 0.4rem;
}

.ln_floating_chat_compact .ln_floating_chat_text {
    max-width: 0;
    opacity: 0;
}

.ln_floating_chat_compact .ln_floating_chat_text strong,
.ln_floating_chat_compact .ln_floating_chat_status {
    pointer-events: none;
}

.ln_order_summary_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin-block: 1rem;
}

.ln_share_modal .modal-content {
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.ln_share_modal .modal-body {
    padding: 2.5rem 2rem;
    text-align: center;
}

.ln_share_title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.ln_share_subtitle {
    font-size: 0.88rem;
    color: var(--text-paragraph);
    margin-bottom: 1.75rem;
}

.ln_share_options {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

.ln_share_option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    background: transparent;
    font-size: 0.8rem;
    color: var(--main-text);
    cursor: pointer;
}

.ln_share_option_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white-color);
}

.ln_share_option_icon svg {
    width: 24px;
    height: 24px;
}

.ln_share_option_facebook .ln_share_option_icon {
    background-color: #1877F2;
}

.ln_share_option_linkedin .ln_share_option_icon {
    background-color: #0A66C2;
}

.ln_share_option_twitter .ln_share_option_icon {
    background-color: #1DA1F2;
}

.ln_share_option_whatsapp .ln_share_option_icon {
    background-color: #25D366;
}

.ln_share_option_copy .ln_share_option_icon {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--main-text);
}

.ln_share_option_copy.ln_share_copied .ln_share_option_icon {
    border-color: var(--main-color);
    color: var(--main-color);
}

.ln_sd_page {
    padding: 1rem var(--margin-inline) 4rem;
}

.ln_sd_header {
    margin-bottom: 1.5rem;
}

.ln_sd_title {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.ln_sd_seller_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.ln_sd_seller_identity {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    text-decoration: none !important;
    color: inherit !important;
}

.ln_sd_avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
}

.ln_sd_avatar svg {
    width: 20px;
    height: 20px;
}

.ln_sd_seller_name {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.ln_sd_seller_title {
    display: block;
    font-size: 0.95rem;
    color: var(--text-paragraph);
}

.ln_sd_header_actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ln_sd_icon_btn,
.ln_sd_save .ln_save_to_list_btn {
    position: static;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color-lg);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
}

.ln_sd_icon_btn:hover,
.ln_sd_save .ln_save_to_list_btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.ln_sd_icon_btn svg {
    width: 17px;
    height: 17px;
}


.ln_sd_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26rem;
    gap: 2.25rem;
    align-items: start;
    margin-top: 1.5rem;
}

.ln_sd_main {
    min-width: 0;
    margin-right: 9.15%;
}

.ln_sd_sidebar {
    position: sticky;
    top: 1rem;
}

.ln_sd_sticky_thumb {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 8px;
    background-color: #eef2f3;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_sd_sticky_thumb svg {
    width: 18px;
    height: 18px;
}

.ln_sd_sheet_body {
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
    padding: 0.5rem 1.5rem 2rem;
}

.ln_sd_sheet_body .ln_pub_card_title {
    margin-bottom: 1rem;
}

#ln_sd_package_sheet .modal-content {
    height: 75vh;
}

.ln_sd_gallery {
    margin-bottom: 1.25rem;
}

.ln_sd_gallery_main {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

.ln_sd_gallery_image {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ln_sd_gallery_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

.ln_sd_gallery_empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_sd_gallery_empty svg {
    width: 48px;
    height: 48px;
}

.ln_sd_thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.ln_sd_thumb {
    flex-shrink: 0;
    width: 72px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    cursor: pointer;
}

.ln_sd_thumb svg {
    width: 18px;
    height: 18px;
}

.ln_sd_thumb_active {
    border-color: var(--main-color);
}


.ln_sd_description {
    color: var(--text-paragraph);
    font-size: 1rem;
    line-height: 1.75;
}

.ln_sd_description p {
    margin: 0;
}

.ln_sd_description p:last-child {
    margin-bottom: 0;
}

.ln_sd_description ul,
.ln_sd_description ol {
    margin: 0 0 1rem;
    padding-inline-start: 1.25rem;
}

.ln_sd_description a {
    color: var(--main-color);
    text-decoration: underline;
}

.ln_sd_description strong {
    color: var(--main-text);
}


.faq_section {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

#ln_sd_faq_accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border-color);
}

#ln_sd_faq_accordion .accordion-item:last-child {
    border-bottom: 0;
}

#ln_sd_faq_accordion .accordion-button {
    padding: 1rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--main-text);
    background-color: transparent;
    box-shadow: none;
}

#ln_sd_faq_accordion .accordion-button:not(.collapsed) {
    color: var(--main-color);
    background-color: transparent;
    box-shadow: none;
}

#ln_sd_faq_accordion .accordion-body {
    padding: 0 0 1.1rem;
    color: var(--text-paragraph);
}


.ln_sd_requirements_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ln_sd_requirements_list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--main-text);
}


.ln_sd_related_section {
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.ln_sd_related_section .ln_home_service_row {
    margin-bottom: 2.75rem;
}

.ln_sd_related_section .ln_home_row_head {
    align-items: center;
}

.ln_sd_related_section .ln_row_scroll_wrap {
    overflow: hidden;
}

.ln_sd_related_section .ln_service_grid {
    max-width: 100%;
    scroll-padding-inline: 3rem;
}

.ln_sd_related_section .ln_service_grid#ln_row_sd_browsing_history {
    margin-top: 0.5rem;
}

.ln_sd_package_card {
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.ln_sd_package_card>.ln_pub_muted,
.ln_sd_package_card>.ln_btn_primary {
    margin: 1.25rem;
    display: block;
}

.ln_sd_package_tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}

.ln_sd_package_tabs .nav-item {
    flex: 1;
}

.ln_sd_package_tabs .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background-color: transparent;
    color: var(--text-paragraph);
    font-weight: 600;
    font-size: 0.94rem;
}

.ln_sd_package_tabs .nav-link.active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
    background-color: transparent;
}

.ln_sd_package_content {
    padding: 1.25rem;
}

.ln_sd_package_title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.ln_sd_package_price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ln_sd_package_desc {
    color: var(--text-paragraph);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ln_sd_package_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    padding-block: 0.85rem;
    border-block: 1px solid var(--border-color);
    margin-bottom: 1.1rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
}

.ln_sd_package_meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.ln_sd_package_meta svg {
    width: 16px;
    height: 16px;
}

.ln_sd_package_features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ln_sd_package_features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--main-text);
}

.ln_sd_package_features svg {
    width: 16px;
    height: 16px;
    color: var(--main-color);
    flex-shrink: 0;
}

.ln_sd_package_actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ln_sd_continue_btn {
    width: 100%;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.95rem;
}

.ln_sd_package_actions .ln_pub_btn_outline {
    justify-content: center;
    width: 100%;
}

.ln_icon_remove_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background-color: transparent;
}

.ln_icon_remove_btn:hover {
    background-color: rgba(220, 53, 69, 0.08);
}

.ln_icon_remove_btn svg {
    width: 16px;
    height: 16px;
}

.ln_sd_review_stars {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.ln_sd_review_stars svg {
    width: 15px;
    height: 15px;
    color: var(--border-color-lg);
}

.ln_sd_seller_card {
    margin-block: 2rem;
    background: var(--bg-body);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px dashed var(--border-color);
}

.ln_sd_seller_card_rating svg,
.ln_sd_reviews_categories svg,
svg.ln_star_gold {
    color: var(--main-color);
    fill: var(--main-color);
    --aous-aw-icon-size: 0.9rem;
}


.ln_sd_seller_card_top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.ln_sd_seller_card_avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
}

.ln_sd_seller_card_name {
    font-weight: 600;
    font-size: 1.05rem;
}

.ln_sd_seller_card_rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.ln_sd_seller_card_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.85rem;
    padding: 1rem 0;
    border-block: 1px solid var(--border-color);
}

.ln_sd_seller_card_grid>div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.88rem;
}

.ln_sd_seller_card_about {
    margin: 1rem 0 0;
    color: var(--text-paragraph);
    white-space: pre-line;
}


#ln_sd_reviews {
    margin-top: 3rem;
}

.ln_sd_reviews_summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.ln_sd_reviews_summary_score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    white-space: nowrap;
}

.ln_sd_reviews_summary_value {
    font-size: 2rem;
    font-weight: 700;
}

.ln_sd_reviews_bars {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 220px;
}

.ln_sd_reviews_bar_row {
    display: grid;
    grid-template-columns: 48px 1fr 32px;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_sd_reviews_bar_track {
    height: 6px;
    border-radius: 4px;
    background-color: var(--border-color);
    overflow: hidden;
}

.ln_sd_reviews_bar_fill {
    height: 100%;
    background-color: var(--main-text);
    border-radius: 4px;
}

.ln_sd_reviews_categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ln_sd_reviews_categories>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
}


.ln_sd_reviews_filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ln_sd_reviews_filters input {
    flex: 1;
}

.ln_sd_reviews_filters select {
    max-width: 200px;
}


.ln_sd_reviews_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ln_sd_review_card {
    padding-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
}

.ln_sd_review_card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ln_sd_review_head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}

.ln_sd_review_avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: var(--accent-color-light);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-weight: 600;
}

.ln_sd_review_identity {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ln_sd_review_name_row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ln_sd_review_name {
    font-weight: 600;
    font-size: 0.92rem;
}

.ln_sd_review_repeat {
    font-size: 0.72rem;
    padding: 0.2rem 0.6rem;
}

.ln_sd_review_comment {
    margin: 0.6rem 0;
    color: var(--main-text);
}

.ln_sd_review_meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.6rem;
}

.ln_sd_review_meta_label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-paragraph);
}

.ln_sd_review_meta_value {
    font-weight: 600;
    font-size: 0.85rem;
}

.ln_sd_review_helpful {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.ln_sd_helpful_btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--border-color-lg);
    background-color: transparent;
    border-radius: 999px;
    padding: 0.25rem 0.85rem;
    font-size: 0.8rem;
    color: var(--main-text);
}

.ln_sd_helpful_btn svg {
    width: 16px;
    height: 16px;
}

.ln_sd_helpful_btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}


.ln_sd_portfolio_section {
    margin-top: 2.5rem;
}

.ln_sd_portfolio_feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    background-color: var(--bg-body);
}

.ln_sd_portfolio_feature_media {
    position: relative;
    display: flex;
    min-height: 340px;
    aspect-ratio: 1.55 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    color: var(--text-paragraph);
    text-decoration: none !important;
}

.ln_sd_portfolio_feature_empty {
    align-items: center;
    justify-content: center;
}

.ln_sd_portfolio_feature_empty svg {
    width: 2.5rem;
    height: 2.5rem;
}

.ln_sd_portfolio_count {
    position: absolute;
    inset-inline-end: 1.4rem;
    bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    background-color: rgba(34, 35, 37, 0.72);
    color: var(--white-color);
    padding: 0.5rem 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.ln_sd_portfolio_count svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_sd_portfolio_feature_body {
    min-width: 0;
}

.ln_sd_portfolio_date {
    display: block;
    color: var(--text-paragraph);
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
}

.ln_sd_portfolio_feature_body h3 {
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
}

.ln_sd_portfolio_feature_body p {
    color: var(--main-text);
    font-size: 1rem;
    line-height: 1.55;
    margin: 1.15rem 0 1.2rem;
}

.ln_sd_portfolio_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.ln_sd_portfolio_stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.7rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border-color);
}

.ln_sd_portfolio_stats span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.ln_sd_portfolio_stats strong {
    display: block;
    color: var(--main-text);
    font-size: 1.15rem;
}

.ln_sd_portfolio_thumbs {
    display: grid;
    grid-template-columns: repeat(5, 54px) minmax(62px, 0.8fr);
    gap: 0.5rem;
    margin-top: 1.1rem;
}

.ln_sd_portfolio_thumb,
.ln_sd_portfolio_more {
    width: 54px;
    height: 42px;
    min-height: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
}

.ln_sd_portfolio_thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_sd_portfolio_thumb_active {
    border: 2px solid var(--main-text);
    padding: 2px;
}

.ln_sd_portfolio_thumb svg {
    width: 1.6rem;
    height: 1.6rem;
}

.ln_sd_portfolio_more {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    background-color: var(--bg-body);
    color: var(--text-paragraph);
    width: auto;
    min-width: 62px;
}

.ln_sd_portfolio_more strong {
    color: var(--main-text);
    font-size: 0.95rem;
}

.ln_sd_portfolio_more span {
    font-size: 0.72rem;
}


.ln_sd_compare_card {
    margin-top: 1.5rem;
}

.ln_sd_compare_table_wrap {
    overflow-x: auto;
    overflow-y: hidden;
}

.ln_sd_compare_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.ln_sd_compare_table th,
.ln_sd_compare_table td {
    padding: 0.9rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.ln_sd_compare_table td:first-child {
    text-align: start;
    color: var(--text-paragraph);
    font-size: 0.88rem;
    white-space: nowrap;
}

.ln_sd_compare_table thead th {
    vertical-align: top;
    border-bottom: 2px solid var(--border-color);
}

.ln_sd_compare_table thead th:first-child {
    border-bottom: 0;
}

.ln_sd_compare_price {
    font-size: 1.15rem;
    font-weight: 700;
}

.ln_sd_compare_title {
    font-weight: 600;
    margin: 0.25rem 0;
}

.ln_sd_compare_table tbody svg {
    width: 18px;
    height: 18px;
    color: var(--main-color);
}

.ln_sd_compare_table tfoot td {
    border-bottom: 0;
}

.ln_sd_compare_table tfoot .ln_sd_continue_btn {
    width: auto;
    padding-inline: 1.5rem;
}


.ln_order_offcanvas {
    width: min(460px, 100vw) !important;
    border-inline-start: 1px solid var(--border-color);
}

.ln_order_offcanvas_form {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.ln_order_offcanvas_header {
    padding: 1rem 1.35rem;
    border-bottom: 1px solid var(--border-color);
}

.ln_order_offcanvas_header .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.ln_order_offcanvas_body {
    flex: 1;
    padding: 1.25rem 1.35rem 7rem;
    overflow-y: auto;
}

.ln_order_offcanvas .ln_btn_primary {
    width: 100%;
}

.ln_order_step {
    display: none;
}

.ln_order_step_active {
    display: block;
}

.ln_order_package_choice {
    border: 1.5px dashed var(--main-text);
    border-radius: 8px;
    padding: 1.1rem;
}

.ln_order_package_choice_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
}

.ln_order_package_choice_head span,
.ln_order_total_card strong {
    font-weight: 700;
}

.ln_order_package_choice p {
    color: var(--text-paragraph);
    line-height: 1.45;
    margin: 0.75rem 0 1rem;
}

.ln_order_package_choice_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--main-text);
    font-size: 0.9rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-color);
}

.ln_order_package_features {
    display: grid;
    gap: 0.55rem;
    color: var(--text-paragraph);
    margin: 1rem 0 0;
    padding-inline-start: 1.15rem;
}

.ln_order_total_card {
    margin-top: 1.2rem;
    border-radius: 8px;
    background-color: var(--bg-card);
    padding: 1.25rem;
}

.ln_order_total_card strong {
    display: block;
    font-size: 1.35rem;
}

.ln_order_total_card>span {
    display: block;
    color: var(--text-paragraph);
    margin-top: 0.2rem;
}

.ln_order_total_rows {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.ln_order_total_rows div {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
}

.ln_order_total_rows svg {
    width: 1rem;
    height: 1rem;
    color: var(--text-paragraph);
}

.ln_order_seller_row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.ln_order_seller_avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.ln_order_attachment_preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.ln_order_attachment_preview svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.ln_order_attachment_preview_name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ln_order_attachment_row {
    margin-bottom: 1rem;
}

.ln_order_section_title {
    font-size: 1rem;
    font-weight: 700;
    margin: 1.25rem 0 0.85rem;
}

.ln_order_offcanvas_footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 1.35rem 0.8rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-body);
    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.06);
}

.ln_order_offcanvas_footer .ln_btn_primary {
    width: 100%;
}

.ln_order_offcanvas_footer p {
    grid-column: 1 / -1;
    color: var(--text-paragraph);
    font-size: 0.82rem;
    text-align: center;
    margin: 0;
}

.ln_page_empty_state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 4rem 1.5rem;
}

.ln_page_empty_state svg {
    width: 42px;
    height: 42px;
    color: var(--text-paragraph);
}

.ln_page_empty_state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.ln_page_empty_state p {
    color: var(--text-paragraph);
    font-size: 0.9rem;
    max-width: 420px;
}


.ln_header_avatar_btn {
    background: none;
    border: none;
    padding: 0;
    display: inline-flex;
}

.ln_header_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_header_avatar svg {
    width: 18px;
    height: 18px;
}

.ln_header_avatar_menu {
    min-width: 220px;
    padding:0;
}

.ln_header_avatar_menu_icon {
    width: 14px;
    height: 14px;
    margin-inline-start: 0.35rem;
    color: var(--text-paragraph);
}

.ln_header_avatar_menu_static {
    color: var(--text-paragraph);
    cursor: default;
}

.ln_header_avatar_menu_static:hover {
    background: none;
}

.ln_header_avatar_menu a {
    font-weight: 500;
}

.ln_settings_back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--main-text) !important;
    text-decoration: none !important;
    margin-bottom: 1rem;
}

.ln_settings_back svg {
    width: 16px;
    height: 16px;
}

html[dir="rtl"] .ln_settings_back svg {
    rotate: 180deg;
}

.ln_inbox_icon_btn {
    background: none;
    border: none;
    color: var(--text-paragraph);
    display: inline-flex;
    padding: 0.3rem;
    border-radius: 8px;
}

.ln_inbox_icon_btn:hover {
    background-color: var(--bg-card);
}

.ln_wizard_field_error {
    font-size: 0.8rem;
    color: #d64545;
    margin-top: 0.4rem;
}

.ln_input_error {
    border-color: #d64545 !important;
}

.ln_project_field {
    margin-block: 1rem;
}

.ln_project_field_label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.ln_project_field_hint {
    display: block;
    font-size: 0.8rem;
    color: var(--text-paragraph);
    margin-bottom: 0.9rem;
}

.ln_optional_tag {
    font-weight: 400;
    color: var(--text-paragraph);
    font-size: 0.85rem;
}

.ln_add_panel_row {
    display: flex;
    gap: 0.75rem;
}

.ln_add_panel_row>* {
    flex: 1;
    min-width: 0;
}

.ln_settings_row_value {
    font-size: 0.85rem;
    color: var(--text-paragraph);
}

.ln_wizard_btn_ghost {
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--main-text) !important;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.ln_wizard_btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--main-text) !important;
    background-color: transparent;
    border: 1px solid var(--border-color-lg) !important;
    text-decoration: none;
    cursor: pointer;
}

.ln_wizard_btn_outline:hover {
    border-color: var(--main-color);
    color: var(--main-color) !important;
}

.ln_wizard_btn_outline svg {
    --aous-aw-icon-size: 1rem;
}


.ln_dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    border: 1.5px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1rem;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.ln_dropzone_active {
    border-color: var(--main-color);
    background-color: rgba(33, 91, 99, 0.05);
}

.ln_dropzone_icon svg {
    width: 32px;
    height: 32px;
    color: var(--text-paragraph);
}

.ln_dropzone_text {
    font-size: 0.9rem;
    color: var(--text-paragraph);
    margin: 0;
}

.ln_dropzone_hint {
    font-size: 0.78rem;
    color: var(--text-paragraph);
    margin: 0;
}

.ln_dropzone_file_list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
    margin-bottom: 1rem;
}

.ln_dropzone_file_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.82rem;
}

.ln_dropzone_file_remove {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: var(--text-paragraph);
    cursor: pointer;
}

.ln_dropzone_file_remove svg {
    --aous-aw-icon-size: 0.9rem;
}

.ln_budget_range_row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ln_budget_range_row>div {
    flex: 1;
    min-width: 0;
}

.ln_budget_range_sep {
    flex-shrink: 0;
    color: var(--text-paragraph);
}


.ln_lists_page,
.ln_requests_page {
    max-width: 1000px;
    margin-inline: auto;
    padding: 2rem 0 4rem;
}

.ln_lists_page_head,
.ln_requests_page_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.ln_lists_page_head h1,
.ln_requests_page_head h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.ln_pub_muted {
    color: var(--text-paragraph);
}

.ln_lists_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.ln_list_card_wrap {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.15s ease-in-out;
}

.ln_list_card_wrap:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.ln_list_card {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.ln_list_card_thumb_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 140px;
}

.ln_list_card_thumb_grid> :first-child {
    grid-row: span 2;
}

.ln_list_card_thumb_cell {
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    border: 1px solid var(--bg-body);
}

.ln_list_card_name {
    display: block;
    font-weight: 600;
    margin: 0.75rem 1.1rem 0.15rem;
}

.ln_list_card_count {
    display: block;
    font-size: 0.82rem;
    color: var(--text-paragraph);
    margin: 0 1.1rem;
}

.ln_list_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.1rem;
}

.ln_list_card_footer>svg,
.ln_list_visibility_badge svg {
    width: 16px;
    height: 16px;
    color: var(--text-paragraph);
}

.ln_list_visibility_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-paragraph);
}

.ln_list_create_tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 210px;
    border: 1px dashed var(--border-color-lg);
    border-radius: 14px;
    background: none;
    color: var(--main-color);
    font-weight: 500;
}

.ln_list_create_tile:hover {
    border-color: var(--main-color);
}

.ln_list_create_tile svg {
    width: 22px;
    height: 22px;
}

.ln_list_breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
    margin-bottom: 1.6rem;
}

.ln_list_breadcrumb a {
    color: var(--text-paragraph) !important;
    text-decoration: none;
}

.ln_list_breadcrumb a:hover {
    text-decoration: underline;
}

.ln_list_breadcrumb span {
    display: inline-flex;
    align-items: center;
    color: var(--text-paragraph);
}

.ln_list_breadcrumb span svg {
    width: 0.85rem;
    height: 0.85rem;
}

.ln_list_private_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
    color: var(--text-paragraph);
}

.ln_list_private_badge svg {
    --aous-aw-icon-size: 1.1rem;
}

.ln_list_visibility_options {
    display: grid;
    gap: 0.65rem;
}

.ln_list_visibility_option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
}

.ln_list_visibility_option:has(input:checked) {
    border-color: var(--main-color);
    background-color: rgba(33, 91, 99, 0.06);
}

.ln_list_visibility_option>span {
    display: grid;
    gap: 0.15rem;
}

.ln_list_visibility_option svg {
    width: 18px;
    height: 18px;
    color: var(--main-color);
}

.ln_list_visibility_option strong {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
}

.ln_list_visibility_option small,
.ln_list_private_share_notice {
    color: var(--text-paragraph);
}

.ln_list_private_share_notice {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.ln_private_list_state {
    min-height: 55vh;
}

.ln_list_created_by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-paragraph);
    margin-top: 0.5rem;
}

.ln_list_created_by_avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ln_list_project_count_label {
    color: var(--text-paragraph);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.ln_remove_from_list_btn {
    background: none;
    border: none;
    color: #e0245e;
    flex-shrink: 0;
}

.ln_remove_from_list_btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ln_list_detail_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ln_list_detail_name_wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ln_list_detail_name {
    font-size: 2rem;
    font-weight: 700;
    border: none;
    background: none;
    padding: 0.15rem 0;
    margin: 0;
    line-height: 1.15;
}

.ln_list_detail_actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 0.55rem;
}

.ln_list_show_page {
    padding-top: 2.6rem;
}

.ln_list_detail_hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.ln_list_detail_main {
    min-width: 0;
}

.ln_list_tabs {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.ln_list_tab {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0 0 0.75rem;
    color: var(--text-paragraph);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.ln_list_tab_active {
    color: var(--accent-color);
}

.ln_list_tab_active::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -1px;
    height: 2px;
    background-color: var(--accent-color);
}

.ln_list_tab_panel[hidden] {
    display: none !important;
}

.ln_list_items_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: start;
}

.ln_list_panel_empty {
    min-height: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.ln_list_panel_empty svg {
    width: 2rem;
    height: 2rem;
}

.ln_list_panel_empty h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.ln_list_saved_card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--bg-body);
    border: 1px solid var(--border-color);
}

.ln_list_saved_thumb {
    aspect-ratio: 1.68 / 1;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    text-decoration: none !important;
}

.ln_list_saved_thumb svg {
    width: 2rem;
    height: 2rem;
}

.ln_list_saved_body {
    padding: 0.85rem 1rem 0.55rem;
    min-height: 9.6rem;
}

.ln_list_saved_seller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    margin-bottom: 0.75rem;
}

.ln_list_saved_seller strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.9rem;
}

.ln_list_saved_avatar {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.ln_list_saved_avatar svg {
    width: 0.9rem;
    height: 0.9rem;
}

.ln_list_saved_title {
    display: block;
    color: var(--main-text) !important;
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7rem;
    text-decoration: none !important;
}

.ln_list_saved_title:hover {
    text-decoration: underline !important;
}

.ln_list_saved_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 1.6rem;
    margin-top: 0.75rem;
}

.ln_list_saved_rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--main-text);
    font-size: 0.9rem;
}

.ln_list_saved_rating svg {
    width: 0.9rem;
    height: 0.9rem;
    fill: currentColor;
}

.ln_list_saved_rating span {
    color: var(--text-paragraph);
}

.ln_list_saved_pro {
    border-radius: 4px;
    background-color: #dedbff;
    color: #3f2a8c;
    padding: 0.12rem 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.ln_list_saved_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    margin-top: auto;
}

.ln_list_saved_price {
    text-align: end;
}

.ln_list_saved_price span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ln_list_saved_price strong {
    display: block;
    color: var(--main-text);
    font-size: 1.1rem;
    line-height: 1.2;
}


.ln_list_project_card {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    margin-bottom: 1rem;
}

.ln_list_project_thumb {
    width: 160px;
    min-width: 160px;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_list_project_body {
    padding: 1rem 1.25rem;
    flex: 1;
    min-width: 0;
}

.ln_list_project_owner {
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_list_project_name {
    font-weight: 600;
    margin: 0.15rem 0;
}

.ln_save_to_list_dropdown {
    position: absolute;
    top: 0.6rem;
    inset-inline-start: 0.6rem;
    z-index: 2;
}

.ln_save_to_list_btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
}

.ln_save_to_list_btn svg {
    width: 18px;
    height: 18px;
}

.ln_save_to_list_btn.ln_saved {
    color: #e0245e;
}

.ln_save_to_list_btn.ln_saved svg {
    fill: currentColor;
}

.ln_save_to_list_panel {
    min-width: 230px;
    padding: 0.75rem;
    border-radius: 12px;
}

.ln_save_to_list_panel_title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ln_save_to_list_row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
}

.ln_save_to_list_new {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border-color);
}

.ln_save_to_list_new input {
    flex: 1;
}


.ln_welcome_back_banner {
    background: linear-gradient(180deg, var(--accent-color-light), var(--bg-body) 70%);
}

.ln_welcome_back_banner_inner {
    margin: 0 auto;
    padding: 2rem var(--margin-inline);
}

.ln_welcome_back_banner_inner h1 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.ln_welcome_back_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
}

.ln_welcome_back_mini_card {
    background-color: var(--bg-body);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 .14px 2.29266px rgba(0, 0, 0, .03), 0 .37px 4.42626px rgba(0, 0, 0, .027), 0 3px 7px rgba(0, 0, 0, .04);
}

.ln_welcome_back_mini_label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-paragraph);
    margin-bottom: 0.75rem;
}

.ln_welcome_back_mini_body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_welcome_back_mini_icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background-color: var(--accent-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ln_welcome_back_mini_icon svg {
    width: 20px;
    height: 20px;
}

.ln_welcome_back_mini_text {
    flex: 1;
    min-width: 0;
}

.ln_welcome_back_mini_text strong {
    display: block;
    font-size: 0.95rem;
}

.ln_welcome_back_mini_text p {
    margin: 0.1rem 0 0;
    font-size: 0.8rem;
    color: var(--text-paragraph);
}

.ln_welcome_back_mini_card .ln_pub_btn_outline {
    white-space: nowrap;
}

.ln_service_grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.75rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.ln_service_grid::-webkit-scrollbar {
    display: none;
}


.ln_service_results_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.ln_search_result_section {
    margin-bottom: 2rem;
}

.ln_search_result_section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--main-text);
}

.ln_freelancer_results_grid {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ln_freelancer_card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.15rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-body);
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.04);
}

.ln_freelancer_card_media {
    min-width: 0;
}

.ln_freelancer_card_avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #f2f4f5 center/cover no-repeat;
    display: grid;
    place-items: center;
    color: var(--text-paragraph);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.ln_freelancer_card_avatar svg {
    width: 34px;
    height: 34px;
}

.ln_freelancer_card_body {
    min-width: 0;
}

.ln_freelancer_card_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ln_freelancer_card_identity {
    min-width: 0;
}

.ln_freelancer_card_name {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--main-text);
    font-weight: 700;
    text-decoration: none;
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.25;
}

.ln_freelancer_card_title,
.ln_freelancer_card_about {
    margin: .25rem 0 0;
    color: var(--text-paragraph);
    line-height: 1.45;
}

.ln_freelancer_card_title {
    font-weight: 700;
}

.ln_freelancer_card_about {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 56rem;
}

.ln_freelancer_card_skills {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .75rem;
}

.ln_freelancer_card_services {
    flex: 0 0 auto;
    padding: .35rem .65rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-paragraph);
    font-size: .86rem;
    font-weight: 700;
    white-space: nowrap;
}

.ln_freelancer_card_footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .75rem;
    margin-top: .85rem;
    color: var(--text-paragraph);
    font-size: .92rem;
}

.ln_freelancer_card_footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 .9rem;
    border-radius: 8px;
    background: var(--main-text);
    color: var(--bg-body);
    font-weight: 650;
    text-decoration: none;
}

.ln_info_page {
    padding: 3rem 1rem 4rem;
    background: var(--bg-body);
}

.ln_info_page_inner {
    max-width: 1000px;
    margin: 0 auto;
}

.ln_info_page h1 {
    font-size: clamp(1rem, 4vw, 1.7rem);
    line-height: 1.08;
    font-weight: 650;
    margin: 0 0 .75rem;
    color: var(--main-text);
}

.ln_info_updated {
    margin: 0 0 2rem;
    font-size: 1rem;
    color: var(--text-paragraph);
}

.ln_info_content {
    color: var(--main-text);
    line-height: 1.8;
}

.ln_info_content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 .7rem;
}

.ln_info_content p,
.ln_info_content ul {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text-paragraph);
}

.ln_info_content ul {
    padding-inline-start: 1.25rem;
}

.ln_info_content strong {
    color: var(--main-text);
}

.ln_help_center_page {
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(103, 192, 144, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
        var(--bg-body);
}

.ln_help_hero {
    max-width: 1180px;
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    min-height: unset;
}

.ln_help_eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 .85rem;
    border-radius: 999px;
    background: var(--accent-color-light);
    color: #1f7a4b;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .78rem;
}

.ln_help_hero h1 {
    margin: 1.1rem 0 .75rem;
    max-width: 720px;
    color: var(--main-text);
    font-size: clamp(1.25rem, 4vw, 2.8rem);
    line-height: 1.05;
    font-weight: 650;
}

.ln_help_hero p,
.ln_help_guides_intro p,
.ln_help_final p {
    margin: 0;
    max-width: 780px;
    color: var(--text-paragraph);
    font-size: 1.05rem;
    line-height: 1.75;
}

.ln_help_actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ln_help_btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.ln_help_btn_primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--main-color);
}

.ln_help_btn_secondary {
    background: var(--bg-body);
    color: var(--main-text);
}

.ln_help_contact_grid,
.ln_help_topic_grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
    min-height: unset;
}

.ln_help_contact_grid {
    margin-top: 2rem;
}

.ln_help_contact_card,
.ln_help_topic_card,
.ln_help_guides,
.ln_help_final {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 46px rgba(17, 24, 39, .04);
}

.ln_help_contact_card {
    min-height: 128px;
    padding: 1.2rem;
    color: var(--main-text);
    text-decoration: none;
}

.ln_help_contact_card_featured {
    border-color: rgba(103, 192, 144, .38);
    box-shadow: 0 18px 44px rgba(103, 192, 144, .12);
}

.ln_help_contact_card span {
    display: block;
    margin-bottom: .8rem;
    color: #1f7a4b;
    font-weight: 600;
    letter-spacing: .08em;
    font-size: .78rem;
    text-transform: uppercase;
}

.ln_help_contact_card strong {
    display: block;
    color: var(--main-text);
    font-size: 1.1rem;
    line-height: 1.55;
}

.ln_help_topic_grid {
    margin-top: 1rem;
}

.ln_help_topic_card {
    padding: 1.25rem;
}

.ln_help_topic_icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--accent-color-light);
    color: #1f7a4b;
    margin-bottom: 1.1rem;
}

.ln_help_topic_icon svg {
    width: 21px;
    height: 21px;
}

.ln_help_topic_card h2,
.ln_help_guides_intro h2,
.ln_help_final h2 {
    margin: 0 0 .55rem;
    color: var(--main-text);
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 650;
}

.ln_help_topic_card p {
    margin: 0;
    color: var(--text-paragraph);
    line-height: 1.7;
}

.ln_help_guides,
.ln_help_final {
    max-width: 1180px;
    margin: 1rem auto 0;
    padding: 1.5rem;
}

.ln_help_guides {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    gap: 1.5rem;
    min-height: unset;
}

.ln_help_guide_list {
    display: grid;
    gap: .75rem;
}

.ln_help_guide_item {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.ln_help_guide_item strong,
.ln_help_guide_item span {
    display: block;
}

.ln_help_guide_item strong {
    color: var(--main-text);
    font-weight: 650;
    margin-bottom: .35rem;
}

.ln_help_guide_item span {
    color: var(--text-paragraph);
    line-height: 1.65;
}

.ln_help_final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: unset;
}

.ln_row_scroll_wrap {
    position: relative;
}

.ln_row_overlay_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--bg-body);
    color: var(--main-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ln_row_overlay_arrow svg {
    width: 20px;
    height: 20px;
}

.ln_row_overlay_prev {
    inset-inline-start: 6px;
}

.ln_row_overlay_next {
    inset-inline-end: 6px;
}

.ln_service_card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 0 240px;
    min-width: 0;
}

.ln_service_card_featured {
    padding: 0.42rem;
    margin: -0.42rem;
    border: 1px solid rgba(33, 91, 99, 0.18);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(33, 91, 99, 0.045), transparent 58%);
}

.ln_service_card_thumb_link {
    display: block;
}

.ln_service_card_thumb {
    aspect-ratio: 5 / 3;
    border-radius: 8px;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_service_card_thumb svg {
    width: 28px;
    height: 28px;
}

.ln_service_card_save {
    position: absolute;
    top: 0.6rem;
    inset-inline-end: 0.6rem;
    z-index: 2;
}

.ln_service_card_featured .ln_service_card_save {
    top: 1.02rem;
    inset-inline-end: 1.02rem;
}

.ln_featured_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    width: fit-content;
    min-height: 1.7rem;
    padding: 0.25rem 0.58rem;
    border: 1px solid rgba(33, 91, 99, 0.18);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--main-color);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.ln_featured_badge svg {
    width: 0.86rem;
    height: 0.86rem;
}

.ln_service_featured_badge {
    position: absolute;
    top: 0.95rem;
    inset-inline-start: 0.95rem;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.ln_service_card_body {
    padding-top: 0.75rem;
}

.ln_service_card_seller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
    margin-bottom: 0.4rem;
}

.ln_service_card_avatar {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_service_card_avatar svg {
    width: 13px;
    height: 13px;
}

.ln_service_card_seller_name {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ln_service_card_seller:hover .ln_service_card_seller_name {
    text-decoration: underline;
}

.ln_service_card_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.98rem;
    line-height: 1.35;
    min-height: 2.7rem;
    text-decoration: none !important;
    margin-bottom: 0.5rem;
    color: var(--text-paragraph);
}

.ln_service_card_title:hover {
    text-decoration: underline !important;
}

.ln_service_card_rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.ln_service_card_rating svg {
    width: 14px;
    height: 14px;
    color: var(--main-text);
    fill: var(--main-text);
}

.ln_service_card_new_badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.4rem;
    padding: 0.12rem 0.55rem;
    border-radius: 6px;
    color: #35326f;
    background-color: #d9d4ff;
    font-size: 0.78rem;
    font-weight: 600;
}

.ln_service_card_price {
    font-size: 0.92rem;
    margin-top: 0.7rem;
}

.ln_service_card_price_label {
    margin-inline-end: 0.3rem;
    font-weight: 500;
    opacity: .7;
    font-size: 0.8rem;
}

.ln_service_card_price_value {
    font-weight: 700;
}

.ln_home_sections {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 0 4rem;
}

.ln_home_service_row {
    margin-bottom: 4.5rem;

}

.ln_home_row_head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.ln_home_see_all {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--main-color) !important;
    text-decoration: none !important;
    white-space: nowrap;
}

.ln_row_head_actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_home_smart_row {
    margin-bottom: 4.25rem;
}

.ln_home_smart_row .ln_home_row_head {
    align-items: center;
}

.ln_home_smart_arrows {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ln_home_smart_arrow {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background-color: var(--bg-body);
    color: var(--main-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.ln_home_smart_arrow svg {
    width: 17px;
    height: 17px;
}

.ln_home_smart_arrow.ln_h_scroll_arrow_hidden {
    visibility: visible;
    opacity: 0.35;
    pointer-events: none;
}

.ln_home_smart_layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.ln_home_smart_panels .ln_row_scroll_wrap {
    overflow: hidden;
}

.ln_home_smart_panels .ln_row_scroll_wrap::before,
.ln_home_smart_panels .ln_row_scroll_wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.25rem;
    z-index: 2;
    width: 25px;
    pointer-events: none;
    opacity: 0;
}

.ln_home_smart_panels .ln_row_scroll_wrap::before {
    inset-inline-start: 0;
    background: linear-gradient(to right, var(--bg-body), transparent);
}

.ln_home_smart_panels .ln_row_scroll_wrap::after {
    inset-inline-end: 0;
    background: linear-gradient(to left, var(--bg-body), transparent);
}

html[dir="rtl"] .ln_home_smart_panels .ln_row_scroll_wrap::before {
    background: linear-gradient(to left, var(--bg-body), transparent);
}

html[dir="rtl"] .ln_home_smart_panels .ln_row_scroll_wrap::after {
    background: linear-gradient(to right, var(--bg-body), transparent);
}

.ln_home_smart_panels .ln_row_scroll_wrap.ln_h_scroll_has_next::after {
    opacity: 1;
}

.ln_home_smart_topics {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ln_home_smart_topic {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 54px;
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: 8px;
    border: 1px solid transparent;
    background-color: transparent;
    color: var(--main-text) !important;
    text-decoration: none !important;
    font-size: 0.98rem;
    font-weight: 600;
    text-align: start;
    cursor: pointer;
}

.ln_home_smart_topic_active {
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.ln_home_smart_topic_loading {
    opacity: 0.65;
    cursor: wait;
}

.ln_home_smart_topic svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--main-text);
}

.ln_home_smart_scroller {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
}

.ln_home_smart_scroller::-webkit-scrollbar {
    display: none;
}

.ln_home_smart_scroller .ln_service_card {
    scroll-snap-align: start;
}

.ln_home_smart_scroller_hidden {
    display: none;
}


.ln_gd_page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem var(--margin-inline) 4rem;
}

.ln_gd_header {
    margin: 1rem 0 1.5rem;
}

.ln_gd_title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.ln_gd_seller_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.ln_gd_seller_identity {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none !important;
    color: inherit;
}

.ln_gd_avatar {
    width: 40px;
    height: 40px;
}

.ln_gd_seller_name {
    display: block;
    font-weight: 600;
}

.ln_gd_seller_title {
    display: block;
    font-size: 0.82rem;
    color: var(--text-paragraph);
}

.ln_gd_header_actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ln_gd_save {
    position: static;
}

.ln_gd_icon_btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-text);
}

.ln_gd_icon_btn svg {
    width: 16px;
    height: 16px;
}

.ln_gd_layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

.ln_gd_gallery {
    margin-bottom: 1.5rem;
}

.ln_gd_gallery_main {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background-color: var(--bg-card);
}

.ln_gd_gallery_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ln_gd_gallery_video {
    width: 100%;
    height: 100%;
    background-color: #000;
}

.ln_gd_gallery_empty {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
}

.ln_gd_gallery_empty svg {
    width: 32px;
    height: 32px;
}

.ln_gd_thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
}

.ln_gd_thumb {
    width: 76px;
    height: 56px;
    min-width: 76px;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: var(--bg-card);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-paragraph);
    padding: 0;
}

.ln_gd_thumb svg {
    width: 18px;
    height: 18px;
}

.ln_gd_thumb_active {
    border-color: var(--main-color);
}

.ln_gd_description {
    white-space: pre-line;
    color: var(--main-text);
}

.ln_gd_requirements_list {
    margin: 0;
    padding-inline-start: 1.25rem;
}

.ln_gd_requirements_list li {
    margin-bottom: 0.5rem;
}

.ln_gd_requirements_list .ln_pub_pill {
    margin-inline-start: 0.5rem;
}

.ln_gd_related_section {
    margin-top: 2rem;
}

.ln_gd_sidebar {
    position: sticky;
    top: 1.5rem;
}

.ln_gd_package_tabs {
    border-bottom: 1px solid var(--border-color);
    margin: -1.5rem -1.5rem 1.25rem;
    padding: 0 1.5rem;
}

.ln_gd_package_tabs .nav-link {
    color: var(--text-paragraph);
    font-weight: 500;
}

.ln_gd_package_tabs .nav-link.active {
    color: var(--main-text);
    font-weight: 700;
}

.ln_gd_package_price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ln_gd_package_desc {
    color: var(--text-paragraph);
    font-size: 0.9rem;
}

.ln_gd_package_meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    font-size: 0.85rem;
}

.ln_gd_package_meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ln_gd_package_meta svg {
    width: 16px;
    height: 16px;
    color: var(--text-paragraph);
}

.ln_gd_package_actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ln_gd_continue_btn {
    width: 100%;
    justify-content: center;
}



.ln_requests_browse_page .ln_listing_header {
    padding-top: 1.35rem;
}

.ln_requests_browse_page .ln_listing_title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.ln_requests_browse_page .ln_listing_subtitle {
    max-width: 42rem;
    margin-bottom: 1.7rem;
    color: var(--text-paragraph);
}

.ln_requests_browse_page .ln_filter_bar {
    padding: 1.05rem 0;
    margin-bottom: 1.5rem;
}

.ln_requests_browse_page .ln_service_results_grid {
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 0.85rem;
}

.ln_request_card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
    padding: 1.05rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.ln_request_card_featured {
    border-color: rgba(33, 91, 99, 0.26);
    background:
        linear-gradient(180deg, rgba(33, 91, 99, 0.045), transparent 42%),
        var(--bg-body);
}

.ln_request_card:hover {
    border-color: var(--border-color-lg);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.ln_request_card_main_link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.ln_request_card_top,
.ln_request_meta_chips,
.ln_request_skills,
.ln_request_card_footer,
.ln_request_card_title {
    position: relative;
    z-index: 2;
}

.ln_request_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.ln_request_client {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 0.65rem;
}

.ln_request_avatar {
    display: inline-flex;
    width: 2.1rem;
    height: 2.1rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-card);
    background-position: center;
    background-size: cover;
    color: var(--text-paragraph);
}

.ln_request_avatar svg {
    width: 1rem;
    height: 1rem;
}

.ln_request_client_text {
    display: grid;
    min-width: 0;
}

.ln_request_client_name {
    overflow: hidden;
    color: var(--main-text);
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ln_request_client_profile_link {
    position: relative;
    z-index: 3;
    text-decoration: none !important;
}

.ln_request_client_profile_link:hover {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

.ln_request_posted {
    color: var(--text-paragraph);
    font-size: 0.78rem;
}

.ln_request_status {
    flex-shrink: 0;
    border-radius: 999px;
    background-color: rgba(103, 192, 144, 0.16);
    color: var(--main-color);
    padding: 0.18rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 600;
}

.ln_request_card_badges {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ln_request_card_badges .ln_featured_badge {
    background-color: rgba(33, 91, 99, 0.08);
}

.ln_request_card_title {
    margin: 0 0 0.75rem;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
}

.ln_request_card_title a {
    color: var(--main-text) !important;
    text-decoration: none !important;
}

.ln_request_meta_chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.9rem;
}

.ln_request_meta_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-paragraph);
    padding: 0.27rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.ln_request_meta_chip svg {
    width: 0.9rem;
    height: 0.9rem;
}

.ln_request_card_description {
    display: -webkit-box;
    min-height: 3.8rem;
    margin: 0 0 1rem;
    overflow: hidden;
    color: var(--main-text);
    font-size: 0.92rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.ln_request_skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: auto 0 1rem;
}

.ln_request_skills span {
    border-radius: 999px;
    background-color: var(--bg-card);
    color: var(--text-paragraph);
    padding: 0.22rem 0.55rem;
    font-size: 0.76rem;
    font-weight: 600;
}

.ln_request_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.ln_request_offer_count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-paragraph);
    font-size: 0.84rem;
    font-weight: 600;
}

.ln_request_offer_count svg {
    width: 0.95rem;
    height: 0.95rem;
}

.ln_request_card_cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--main-text) !important;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none !important;
}

.ln_request_card_cta svg {
    width: 0.9rem;
    height: 0.9rem;
}

.ln_web_pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.05rem;
}

.ln_web_pagination_summary {
    display: none !important;
}

.ln_web_pagination_links {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    gap: 0.45rem;
}

.ln_web_page_btn {
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-paragraph) !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
}

.ln_web_page_btn:hover {
    border-color: var(--border-color);
    color: var(--main-text) !important;
    background-color: var(--bg-card);
}

.ln_web_page_active,
.ln_web_page_active:hover {
    color: var(--white-color) !important;
    background-color: var(--main-text);
}

.ln_web_page_disabled {
    opacity: 0.35;
    pointer-events: none;
}

.ln_web_page_btn svg {
    width: 1rem;
    height: 1rem;
}

.ln_web_page_ellipsis {
    color: var(--text-paragraph);
    padding: 0 0.1rem;
}

.ln_request_detail_page {
    padding-top: 1.35rem;
}

.ln_request_detail_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 2rem;
    align-items: start;
}

.ln_request_detail_main,
.ln_request_detail_side {
    min-width: 0;
}

.ln_request_detail_side {
    position: sticky;
    top: 1rem;
}

.ln_request_detail_card,
.ln_request_action_card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
}

.ln_request_detail_card {
    padding: 1.35rem;
}

.ln_request_detail_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ln_request_detail_title {
    margin: 0;
    color: var(--main-text);
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.ln_request_detail_client {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.ln_request_detail_avatar {
    width: 2.8rem;
    height: 2.8rem;
}

.ln_request_detail_meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.25rem;
}

.ln_request_detail_meta_item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem;
}

.ln_request_detail_meta_item span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ln_request_detail_meta_item strong {
    color: var(--main-text);
    font-size: 0.94rem;
}

.ln_request_section {
    padding-top: 1.1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.1rem;
}

.ln_request_section h3 {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 600;
}

.ln_request_description {
    color: var(--main-text);
    line-height: 1.65;
    white-space: pre-line;
}

.ln_request_requirements {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ln_request_requirements li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    border-radius: 8px;
    background-color: var(--bg-card);
    padding: 0.75rem;
}

.ln_request_requirements svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--main-color);
}

.ln_request_attachment_list {
    display: grid;
    gap: 0.5rem;
}

.ln_request_action_card {
    padding: 1rem;
}

.ln_request_action_price {
    border-radius: 8px;
    background-color: var(--bg-card);
    padding: 0.9rem;
    margin-bottom: 1rem;
}

.ln_request_action_price span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 600;
}

.ln_request_action_price strong {
    display: block;
    margin-top: 0.2rem;
    color: var(--main-text);
    font-size: 1.15rem;
}

.ln_request_action_card .ln_btn_primary,
.ln_request_action_card .ln_pub_btn_outline {
    width: 100%;
    justify-content: center;
}

.ln_request_action_card .ln_pub_btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.85rem;
    border: 1px solid var(--border-color-lg);
    border-radius: 8px;
    background-color: var(--bg-body);
    color: var(--main-text) !important;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.ln_request_action_card .ln_pub_btn_outline:hover {
    border-color: var(--main-text);
    background-color: var(--bg-card);
}

.ln_request_action_card .ln_pub_btn_outline svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_request_action_hint {
    margin: 0.75rem 0 0;
    color: var(--text-paragraph);
    font-size: 0.82rem;
    text-align: center;
}

.ln_account_requests_page {
    max-width: 78rem;
}

.ln_account_requests_page .ln_requests_page_head {
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.ln_account_requests_page .ln_requests_page_head h1 {
    margin-bottom: 0.25rem;
}

.ln_account_requests_page .ln_requests_page_head p {
    margin: 0;
    color: var(--text-paragraph);
}

.ln_account_requests_list,
.ln_account_offer_list {
    display: grid;
    gap: 1rem;
}

.ln_account_request_card,
.ln_account_offer_card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
    padding: 1.15rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ln_account_request_card:hover,
.ln_account_offer_card:hover {
    border-color: var(--border-color-lg);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.ln_account_request_main {
    min-width: 0;
}

.ln_account_request_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.ln_account_request_head h2 {
    margin: 0 0 0.55rem;
    color: var(--main-text);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
}

.ln_account_request_description {
    color: var(--main-text);
    line-height: 1.55;
    margin: 0.85rem 0 0.95rem;
}

.ln_account_request_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.ln_account_request_footer .ln_pub_btn_outline {
    min-height: 2.55rem;
    padding-inline: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
}

.ln_account_request_close {
    color: var(--red-color) !important;
    font-weight: 600;
    text-decoration: none !important;
}

.ln_account_request_close:hover {
    text-decoration: underline !important;
}

.ln_account_request_actions {
    display: flex;
    gap: 0.45rem;
}

.ln_account_request_actions .ln_inbox_icon_btn {
    border-color: var(--border-color);
    border-radius: 8px;
}

.ln_account_offers_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ln_account_request_empty {
    min-height: 20rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
}

.ln_account_offer_card {
    grid-template-columns: 1fr;
}

.ln_account_offer_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.ln_account_offer_seller {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 0.65rem;
    color: inherit !important;
    text-decoration: none !important;
}

.ln_account_offer_meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.ln_account_offer_meta div {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem;
}

.ln_account_offer_meta span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ln_account_offer_meta strong {
    color: var(--main-text);
}

.ln_account_offer_message {
    color: var(--main-text);
    line-height: 1.6;
    margin: 0;
}

.ln_account_offer_actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.95rem;
    border-top: 1px solid var(--border-color);
}

.ln_account_offer_actions form {
    margin: 0;
}

.ln_account_offer_actions .ln_btn_primary,
.ln_account_offer_actions .ln_pub_btn_outline {
    min-height: 2.55rem;
    border-radius: 8px;
    justify-content: center;
    font-weight: 600;
}

.ln_seller_offers_page {
    max-width: 1000px;
}

.ln_seller_offers_hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ln_seller_offers_eyebrow {
    display: block;
    color: var(--main-color);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.ln_seller_offers_hero h1 {
    color: var(--main-text);
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
}

.ln_seller_offers_hero p {
    color: var(--text-paragraph);
    max-width: 34rem;
    margin: 0.55rem 0 0;
}

.ln_seller_offers_hero .ln_pub_btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 2.7rem;
    border-radius: 8px;
    padding-inline: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.ln_seller_offers_hero .ln_pub_btn_outline svg {
    width: 1.05rem;
    height: 1.05rem;
}

.ln_seller_offers_stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.ln_seller_offers_stats>div {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
    padding: 0.5rem 1rem;
}

.ln_seller_offer_stat_card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ln_seller_offer_stat_icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    color: var(--main-color) !important;
    background-color: rgba(33, 91, 99, 0.1);
}

.ln_seller_offer_stat_icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.ln_seller_offer_stat_pending .ln_seller_offer_stat_icon {
    color: #b7791f !important;
    background-color: rgba(183, 121, 31, 0.12);
}

.ln_seller_offer_stat_accepted .ln_seller_offer_stat_icon {
    color: #20835b !important;
    background-color: rgba(32, 131, 91, 0.12);
}

.ln_seller_offer_stat_withdrawn .ln_seller_offer_stat_icon {
    color: var(--red-color) !important;
    background-color: rgba(220, 53, 69, 0.1);
}

.ln_seller_offers_stats span,
.ln_seller_offer_sent,
.ln_seller_offer_meta span {
    display: block;
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 600;
}

.ln_seller_offers_stats strong {
    display: block;
    color: var(--main-text);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 0.35rem;
}

.ln_seller_offer_list {
    display: grid;
    gap: 0.9rem;
}

.ln_seller_offer_card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18.5rem;
    gap: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-body);
    padding: 1.15rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.ln_seller_offer_main {
    min-width: 0;
}

.ln_seller_offer_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.ln_seller_offer_title {
    display: block;
    color: var(--main-text) !important;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    text-decoration: none !important;
    margin-top: 0.25rem;
}

.ln_seller_offer_title:hover {
    color: var(--main-color) !important;
}

.ln_seller_offer_meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

.ln_seller_offer_meta div {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-card);
    padding: 0.75rem;
}

.ln_seller_offer_meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.ln_seller_offer_meta span svg {
    width: 1rem;
    height: 1rem;
    color: var(--main-color);
}

.ln_seller_offer_meta strong {
    display: block;
    color: var(--main-text);
    font-size: 0.93rem;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 0.25rem;
}

.ln_seller_offer_message {
    color: var(--main-text);
    line-height: 1.55;
    margin: 0;
}

.ln_seller_offer_answers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.ln_seller_offer_answers span {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    border-radius: 999px;
    background-color: var(--bg-card);
    color: var(--text-paragraph);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
}

.ln_seller_offer_actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding-inline-start: 1rem;
    border-inline-start: 1px solid var(--border-color);
}

.ln_seller_offer_actions .ln_btn_primary,
.ln_seller_offer_actions .ln_pub_btn_outline {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    min-height: 2.55rem;
    border-radius: 8px;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.ln_seller_offer_withdraw {
    color: var(--aous-aw-danger) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    text-decoration: none !important;
    padding: 0.4rem;
}

.ln_seller_offer_withdraw svg,
.ln_seller_offer_actions .ln_btn_primary svg,
.ln_seller_offer_actions .ln_pub_btn_outline svg {
    width: 1rem;
    height: 1rem;
}

.ln_seller_offer_withdraw:hover {
    text-decoration: underline !important;
}

.ln_offer_offcanvas.offcanvas-end {
    width: min(520px, 100vw) !important;
    border-inline-start: 1px solid var(--border-color);
}

.ln_offer_offcanvas_form {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.ln_offer_offcanvas_header {
    padding: 1rem 1.35rem;
    border-bottom: 1px solid var(--border-color);
}

.ln_offer_offcanvas_header .offcanvas-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.ln_offer_offcanvas_body {
    flex: 1;
    padding: 1.25rem 1.35rem 7rem;
    overflow-y: auto;
}

.ln_offer_step {
    display: none;
}

.ln_offer_step_active {
    display: block;
}

.ln_offer_request_summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-card);
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
}

.ln_offer_request_summary span {
    color: var(--text-paragraph);
    font-size: 0.85rem;
    font-weight: 600;
}

.ln_offer_request_summary strong {
    color: var(--main-text);
    font-weight: 600;
    text-align: end;
}

.ln_offer_section_title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
}

.ln_offer_terms_check {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
}

.ln_offer_terms_check .form-check-input {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.ln_offer_offcanvas_footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    gap: 0.75rem;
    align-items: center;
    padding: 1rem 1.35rem 0.8rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-body);
    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.06);
}

.ln_offer_offcanvas_footer .ln_btn_primary,
.ln_offer_offcanvas_footer .ln_pub_btn_outline {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
}
