/* PinoCloud client theme — nencer.com visual language, existing class names */

:root {
    --accent: var(--primary-color, #0a68ac);
    --accent-rgb: var(--primary-rgb, 10, 104, 172);
    --accent-hover: var(--primary-hover, #f0ad4e);
    --secondary: var(--secondary-color, #ed3439);
    --bg: #ffffff;
    --fg: #242526;
    --ink: #111827;
    --muted: #64748b;
    --muted-2: #6c757d;
    --card: #ffffff;
    --card-soft: #f6f8fb;
    --border: rgba(15, 23, 42, 0.08);
    --border-strong: #dce4ef;
    --input: #ffffff;
    --surface: #f8fafc;
    --page: #f6f8fb;
    --header-h: 60px;
    --topbar-h: 40px;
    --radius: 4px;
    --radius-sm: 5px;
    --radius-xs: 4px;
    --shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.1);
    --font: "Roboto", Arial, Helvetica, sans-serif;
    --font-theme: "Roboto", Arial, Helvetica, sans-serif;
    --size-theme: 13px;
    --transition-default: 0.3s all ease-in-out;
    --white: #fff;
    --gray-900: #111111;
    --gray-800: #232323;
    --gray-700: #343434;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--surface);
}

html,
body {
    min-height: 100%;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.modal-content::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
.dropdown-menu::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.domain-tabs-wrapper::-webkit-scrollbar,
.hosting-order-tabs::-webkit-scrollbar,
.source-view__thumbs::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
.dropdown-menu::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track,
.domain-tabs-wrapper::-webkit-scrollbar-track,
.hosting-order-tabs::-webkit-scrollbar-track,
.source-view__thumbs::-webkit-scrollbar-track {
    background: var(--surface);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
.dropdown-menu::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb,
.domain-tabs-wrapper::-webkit-scrollbar-thumb,
.hosting-order-tabs::-webkit-scrollbar-thumb,
.source-view__thumbs::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 8px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
.dropdown-menu::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover,
.domain-tabs-wrapper::-webkit-scrollbar-thumb:hover,
.hosting-order-tabs::-webkit-scrollbar-thumb:hover,
.source-view__thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.modal-content,
.modal-body,
.dropdown-menu,
.table-responsive,
.domain-tabs-wrapper,
.hosting-order-tabs,
.source-view__thumbs {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--surface);
}

body {
    margin: 0;
    position: relative;
    width: 100%;
    color: var(--fg);
    font-family: var(--font);
    font-size: var(--size-theme);
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--surface);
}

body.is-header-open {
    overflow: hidden;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-default);
}

a {
    color: var(--accent);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(var(--accent-rgb), 0.15);
    color: var(--accent);
}

button,
button:hover,
button:focus {
    box-shadow: none !important;
    outline: none !important;
    cursor: pointer;
    transition: var(--transition-default);
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (min-width: 1500px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1630px;
    }
}

#main.main {
    min-height: 48vh;
    background: var(--page);
}

.section-gap {
    padding: 20px 0;
}

.section-breadcrumb {
    padding: 18px 0 0;
}

.breadcrumb {
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--muted-2);
}

.breadcrumb-item a {
    color: var(--muted);
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: var(--ink);
}

.description .title,
.title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.row15 {
    --bs-gutter-x: 15px;
}

.row10 {
    --bs-gutter-x: 10px;
}

.row5 {
    --bs-gutter-x: 5px;
}

.rowmb3 > [class*="col"] {
    margin-bottom: 12px;
}

.text-primary-color {
    color: var(--accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-small,
.btn-sm,
.btn-sm_table {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-lg {
    min-height: 48px;
    padding: 0 18px;
}

.btn-primary,
.btn-default.btn-primary,
.btn-theme_primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-primary:hover,
.btn-default.btn-primary:hover,
.btn-theme_primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.btn-white,
.btn-outline-theme_primary,
.btn-outline-primary {
    background: #fff;
    border-color: rgba(var(--accent-rgb), 0.28);
    color: var(--accent);
}

.btn-white:hover,
.btn-outline-theme_primary:hover,
.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-secondary,
.btn-outline-secondary {
    background: #fff;
    border-color: var(--border-strong);
    color: var(--ink);
}

.btn-link {
    background: transparent;
    border-color: transparent;
    color: var(--accent);
    min-height: auto;
    padding: 0;
}

.btn-success {
    background: #059669;
    border-color: #059669;
    color: #fff;
}

.btn-danger {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.btn-warning {
    background: #d97706;
    border-color: #d97706;
    color: #fff;
}

.btn-outline-danger {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.28);
    color: #dc2626;
}

.btn-outline-success {
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.28);
    color: #059669;
}

.home-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    font-weight: 800;
}

.home-section-link:hover {
    color: #fff;
}

/* Forms */
.form-control,
.form-select,
select.form-control,
textarea.form-control {
    min-height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--input);
    color: var(--fg);
    font-size: 14px;
}

.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #66afe9 !important;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-group {
    margin-bottom: 14px;
}

.col-form-label,
.form-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-m1 {
    width: 100%;
}

.form-m1 .input-group {
    margin-bottom: 0;
}

.form-m1 .form-control {
    border-radius: 3px;
    color: var(--gray-900);
}

.form-m1 .form-control:not(textarea) {
    height: 33px;
    min-height: 33px;
    line-height: 33px;
    padding-top: 0;
    padding-bottom: 0;
}

.form-m1 .input-group-text {
    height: 33px;
    padding-top: 0;
    padding-bottom: 0;
    color: var(--gray-900);
}

.form-m1 .form-control::placeholder {
    color: var(--gray-400);
}

.form-m1 .col-form-label {
    padding-top: 6px;
    margin-bottom: 0;
}

.form-m1 .row-item + .row-item {
    margin-top: 3px;
}

@media screen and (max-width: 767px) {
    .form-m1 .row-mb_nospacing {
        margin: 0 0 15px;
    }

    .form-m1 .row-mb_nospacing > [class*="col"] {
        padding: 0;
    }

    .form-m1 .row-item + .row-item {
        margin-top: 15px;
    }
}

.font-weight-bold {
    font-weight: 700 !important;
}

.rounded-sm {
    border-radius: 3px !important;
}

.lh-18 {
    line-height: 1.8;
}

.text-small {
    font-size: 12px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.btn-block {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {
    .pl-md-8 {
        padding-left: 30px !important;
    }

    .text-md-left {
        text-align: left !important;
    }
}

@media (min-width: 991px) {
    .pl-md-8 {
        padding-left: 80px !important;
    }
}

.form-check-input {
    border-radius: var(--radius-xs);
    border-color: var(--border-strong);
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
}

.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.custom-control-label::before {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 1rem;
    height: 1rem;
    content: "";
    border: 1px solid var(--border-strong);
    background: var(--card);
    border-radius: var(--radius-xs);
}

.custom-switch .custom-control-label::before {
    border-radius: 100px;
    width: 1.75rem;
}

.custom-control-input:checked ~ .custom-control-label::before {
    background: var(--accent);
    border-color: var(--accent);
}

/* Cards / tables / badges */
.card,
.info-card,
.action-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: none;
}

.card-body {
    padding: 18px;
}

.card-header,
.card-footer {
    background: var(--surface);
    border-color: var(--border);
    color: var(--fg);
}

.card-header {
    border-radius: var(--radius) var(--radius) 0 0;
}

.card-footer {
    border-radius: 0 0 var(--radius) var(--radius);
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--fg);
    color: var(--fg);
}

.table-module,
.table-bordered {
    border-color: var(--border);
}

.table-module thead th,
.table > :not(caption) > * > th {
    background: #eef3f8;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px;
}

.table-module td,
.table > :not(caption) > * > td {
    padding: 10px;
    vertical-align: middle;
}

.badge-module,
.badge {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-xs);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
}

.badge-success,
.badge-module.badge-success {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.badge-danger,
.badge-module.badge-danger {
    background: rgba(220, 38, 38, 0.12);
    color: #dc2626;
}

.badge-warning,
.badge-module.badge-warning {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
}

.badge-secondary,
.badge-module.badge-secondary {
    background: var(--surface);
    color: var(--muted);
}

.badge-primary,
.badge-module.badge-primary {
    background: rgba(10, 104, 172, 0.12);
    color: #0a68ac;
}

.badge-info,
.badge-module.badge-info {
    background: rgba(14, 116, 144, 0.12);
    color: #0e7490;
}

.badge-dark,
.badge-module.badge-dark {
    background: rgba(17, 24, 39, 0.12);
    color: #1f2937;
}

.alert {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.alert-custom {
    margin: 0 0 10px;
    border-left-width: 3px;
    border-left-style: solid;
    font-size: 13.5px;
}

.alert-custom.alert-primary {
    border-left-color: #2d5683;
}

.alert-custom.alert-secondary {
    border-left-color: #88939b;
}

.alert-custom.alert-success {
    border-left-color: #1c8a35;
}

.alert-custom.alert-danger {
    border-left-color: #96212c;
}

.alert-custom.alert-warning {
    border-left-color: #9a851c;
}

.alert-custom.alert-info {
    border-left-color: #158598;
}

.alert-custom.alert-light {
    border-left-color: #5b5b5b;
}

.alert-custom.alert-dark {
    border-left-color: #3d3f42;
}

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

.alert-custom.alert-dismissible {
    position: relative;
    padding-right: 3rem;
}

.alert-custom .btn-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.25rem;
}

.table-condensed > :not(caption) > * > * {
    padding: 0.5rem;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.22);
    color: #b91c1c;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.22);
    color: #047857;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.22);
    color: #b45309;
}

.alert-info {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.2);
    color: var(--accent);
}

.alert-light {
    background: var(--surface);
    border-color: var(--border);
    color: var(--muted);
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.info-label {
    color: var(--muted);
    font-weight: 600;
}

.info-value {
    color: var(--ink);
    font-weight: 700;
}

.modal-content {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}

.modal-header,
.modal-footer {
    display: flex;
    align-items: center;
    border-color: var(--border);
}

.modal-header {
    justify-content: space-between;
    gap: 12px;
}

.modal-title {
    flex: 1 1 auto;
    margin-bottom: 0;
    font-weight: 800;
    color: var(--ink);
}

.modal-header .close,
.modal-header .btn-close {
    margin-left: auto;
    flex-shrink: 0;
}

.close {
    background: transparent;
    border: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--muted);
}

.section-pagination {
    margin-top: 18px;
}

.section-pagination .pagination {
    gap: 0;
    margin-bottom: 0;
}

.section-pagination .pagination .page-item {
    margin: 0 4px;
}

.section-pagination .pagination .page-item .page-link {
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    border-radius: 0;
    margin-left: 0;
    padding: 0.3rem 0.65rem;
    font-size: 13.5px;
    min-width: auto;
    background: var(--white);
    text-align: center;
}

.section-pagination .pagination .page-item .page-link:hover {
    color: var(--primary-color);
    background: var(--white);
    border-color: var(--gray-200);
}

.section-pagination .pagination .page-item .page-link:focus {
    box-shadow: none;
}

.section-pagination .pagination .page-item.active .page-link {
    color: var(--white);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.section-pagination .pagination .page-item.disabled .page-link {
    color: var(--gray-400);
    background: var(--white);
    border-color: var(--gray-200);
}

.button-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 33px;
    height: 33px;
    padding: 0 14px 0 36px;
    border: 1px solid var(--border-strong);
    border-radius: 3px;
    background: #f3f8fe;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.button-social:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.button-social img,
.button-social i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: var(--primary-color, var(--accent));
}

.button-social i {
    top: calc(50% + 1px);
}

.select2-container--default .select2-selection--single {
    min-height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--card);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    color: var(--fg);
}

.select2-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-weight: 700;
}

.nav-tabs .nav-link.active {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: rgba(var(--accent-rgb), 0.24);
    color: var(--accent);
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 6px;
}

.dropdown-item {
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(var(--accent-rgb), 0.05);
    color: var(--accent);
}

.input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    border-radius: var(--radius-sm);
}

.input-group > .form-control {
    flex: 1 1 auto;
    min-width: 0;
}

.progress {
    height: 10px;
    border-radius: var(--radius-xs);
    background: #e2e8f0;
    overflow: hidden;
}

.progress-bar {
    background: var(--accent);
}

.list-group-item {
    background: var(--card);
    border-color: var(--border);
    color: var(--fg);
}

code {
    border-radius: var(--radius-xs);
    background: var(--surface);
    padding: 0.1rem 0.35rem;
    font-size: 12.5px;
}

.table-responsive {
    border-radius: var(--radius);
    overflow: hidden;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    font-size: 13px;
    color: var(--muted);
}

.dataTables_wrapper .form-control,
.dataTables_wrapper .form-select,
.dataTables_filter input,
.dataTables_length select {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--card);
    color: var(--fg);
    min-height: 38px;
}

.swal2-popup {
    font-family: var(--font) !important;
    border-radius: var(--radius) !important;
}

/* Nencer layout (saved local CSS) */
/* Search button — Nencer */
.header-search_btn {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1em;
    cursor: pointer;

}
.header-search_btn:hover span {
	text-decoration: underline !important;
}
/* ===== SEARCH OVERLAY ===== */
.header-search-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
    display: none;
}

.header-search-overlay .header-search-box {
    background: #ffffff;
    padding: 20px;
    max-width: 1100px;
    margin: 60px auto 0;
}

/* ===== INPUT ===== */
.search-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid  rgba(215, 216, 222, 0.41);
    padding: 6px 10px;
}

.search-input-wrap input {
    flex: 1;
    border: 0;
    outline: none;
    font-size:  1em;
}

.search-input-wrap button {
    background: none;
    border: 0;
    cursor: pointer;
    font-size:  1em;
    padding: 0 8px;
}

.search-input-wrap .search-cancel {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===== SUGGEST ===== */
.search-suggest {
    margin-top: 12px;
    padding: 0;
    list-style: none;
}

.search-suggest li a {
    display: block;
    padding: 10px 6px;
    color: var(--bs-gray-900);
    text-decoration: none;
}

.search-suggest li a:hover {
    background: #f5f5f5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .header-search-overlay .header-search-box {
        margin: 0;
        height: 100%;
        border-radius: 0;
    }
}


/* Header 1 — Nencer */
/*
===================
Style Header 1
*/

.header-1 {
	z-index: 1001;
	background: var(--bs-white, #ffffff);
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	border-bottom: 1px solid rgba(215, 216, 222, 0.41);
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
}

.header-1 .header-top {
	background: -o-linear-gradient(50deg, rgba(var(--primary-rgb), 1), rgba(var(--primary-rgb), 1) 100%);
	background: linear-gradient(40deg, rgba(var(--primary-rgb), 1), rgba(var(--primary-rgb), 1) 100%);
	height: 40px;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	display: flex;
	align-items: center;
}

.header-1 .header-top .header-top_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.header-1 .header-top .header-top_wrap .header-top_toolbar {
	font-weight: 600;
	color: var(--bs-white);
	position: relative;
	padding-right: 54px;
	white-space: nowrap;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header-1 .header-top .header-top_contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 30px;
	padding-left: 13.5px;
	width: 100%;
}

.header-1 .header-top .header-top_contact .header-top_contact__item {
	color: var(--bs-white, #ffffff);
	font-weight: 600;
}

.header-1 .header-top .header-top_contact .header-top_contact__item > a {
	color: var(--bs-white, #ffffff);
}

.header-1 .header-main {
	background: var(--bs-white, #ffffff);
}

.header-1 .header-main > .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	min-height: 64px;
}

.header-1 .header-sort,
.header-1 .header-sort.header-bottom {
	background: #f3f4f6;
	width: 100%;
	padding: 0;
}

.header-1 .header-main .header-logo {
	height: 40px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: 0;
}

.header-1 .header-main .header-logo img {
	height: 100%;
	width: auto;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
}

.header-1 .header-sort .header-navigation {
}

.header-1 .header-sort .header-navigation ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.header-1 .header-sort .header-navigation ul > li {
	position: relative;
}

.header-1 .header-sort .header-navigation > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	gap: 0;
}

.header-1 .header-sort .header-navigation > ul > li > a,
.header-1 .header-sort .header-navigation > ul > li > button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	text-align: left;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #232323;
	position: relative;
	white-space: nowrap;
	gap: 6px;
	padding: 13px 12px;
	outline: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	height: auto;
}

.header-1 .header-sort .header-navigation > ul > li > a i,
.header-1 .header-sort .header-navigation > ul > li > button i {
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
}

.header-1 .header-sort .header-navigation > ul > li > a > i:not(.fa-caret-down):not(.fa-angle-down):not(.fa-chevron-down),
.header-1 .header-sort .header-navigation > ul > li > button > i:not(.fa-caret-down):not(.fa-angle-down):not(.fa-chevron-down) {
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}

.header-1 .header-sort .header-navigation > ul > li > a:before,
.header-1 .header-sort .header-navigation > ul > li > button:before {
	position: absolute;
	height: 0;
	width: 100%;
	background-color: var(--primary-color);
	content: "";
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.header-1 .header-sort .header-navigation > ul > li > ul {
	position: absolute;
	top: 100%;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0;
	padding: 10px 15px;
	background-color: var(--bs-white, #ffffff);
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	min-width: 200px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	z-index: 5;
}

.header-1 .header-sort .header-navigation > ul > li > ul > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 18px 8px 0;
	color: #010203;
	font-weight: 400;
	gap: 8px;
	border-radius: 0;
}

.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_icon {
	width: 40px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: none;
}

.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	line-height: 1.4;
}

.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content .navigation-item_title {
	font-size: 1.075em;
	font-weight: 600;
}

.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content .navigation-item_sub {
	color: var(--bs-gray-600, #6C757D);
}

.header-1 .header-sort .header-navigation > ul > li:hover > a,
.header-1 .header-sort .header-navigation > ul > li > ul > li:hover > a {
	color: var(--primary-color);
}

.header-1 .header-sort .header-navigation > ul > li > ul > li:hover > a {
	padding-left: 8px;
	padding-right: 8px;
	background-color: rgba(var(--primary-rgb), 0.05);
}

.header-1 .header-sort .header-navigation > ul > li:hover > a:before {
	opacity: 1;
	visibility: visible;
	height: 3px;
}

@media screen and (min-width: 1024px) {
	.header-1 .header-sort .header-navigation > ul > li:hover > a > i.fa-caret-down,
	.header-1 .header-sort .header-navigation > ul > li:hover > a > i.fa-angle-down,
	.header-1 .header-sort .header-navigation > ul > li:hover > a > i.fa-chevron-down {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}

.header-1 .header-sort .header-navigation > ul > li:hover > ul {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.header-1 .header-main .header-toolbar {
	padding-left: 25px;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	position: relative;
}

.header-1 .header-main .header-toolbar:before {
	position: absolute;
	content: none;
	left: 0;
	width: 1px;
	height: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #c9c9c9;
}

.header-1 .header-currency {
	position: relative;
}

.header-1 .header-currency .header-currency_button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	font-size: 1em;
	font-weight: 400;
	color: #010203;
	position: relative;
	white-space: nowrap;
	gap: 6px;
	padding: 0;
	outline: none;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
	text-transform: uppercase;
	height: 60px;
	cursor: pointer;
}

.header-1 .header-currency .header-currency_button > i {
	transition: var(--transition-default);
}

.header-1 .header-currency ul {
	position: absolute;
	top: 100%;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0;
	padding: 10px 15px;
	background-color: var(--bs-white, #ffffff);
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	min-width: 100px;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	z-index: 5;
	margin-bottom: 0;
	list-style: none;
}

.header-1 .header-currency:hover .header-currency_button > i {
	transform: rotate(180deg);
}

.header-1 .header-currency:hover ul {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.header-1 .header-currency > ul > li > form {
	margin: 0;
}

.header-1 .header-currency > ul > li > a,
.header-1 .header-currency > ul > li > form > button {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 18px 8px 0;
	color: #010203;
	font-weight: 400;
	gap: 8px;
	border-radius: 0;
	background: transparent;
	border: 0;
	width: 100%;
	text-align: left;
}

.header-1 .header-currency > ul > li:hover > a,
.header-1 .header-currency > ul > li:hover > form > button {
	padding-left: 8px;
	padding-right: 8px;
	background-color: rgba(var(--primary-rgb), 0.05);
}

.header-1 .header-cart {
	display: none;
}

.header-1 .header-cart .header-cart_button {
	border: 0;
	background-color: transparent;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #010203;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	padding: 0;
	position: relative;
	height: 60px;
	font-size: 1em;
}

.header-1 .header-user {
	position: relative;
}
.header-1 .header-user a{
	color: var(--bs-black);
}
.header-1 .header-sort .header-navigation .header-navigation_mobile-head,
.header-1 .header-sort .header-navigation .header-navigation_mobile-actions,
.header-1 .header-sort .header-navigation > ul > li > .sub-icon,
.header-1 .header-sort .header-navigation > ul > li.header-navigation_mobile-only,
.header-1 .header-usermb {
	display: none;
}
.header-1 .header-user .header-user_mobile {
	display: none;
}

.header-1 .header-user .header-user_btn {
	border: 0;
	background-color: transparent;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #010203;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	padding: 0;
	position: relative;
	height: 60px;
	font-size: 1em;
}

.header-1 .header-user .header-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	transform: translateY(20px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	padding: 0;
	background-color: #fff;
	border: 0;
	border-top: 2px solid var(--primary-color);
	-webkit-box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
	box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
	min-width: 180px;
	width: max-content;
	max-width: min(280px, calc(100vw - 24px));
	z-index: 30;
	list-style: none;
	margin: 0;
	border-radius: 0;
	overflow: visible;
	text-align: left;
}

.header-1 .header-user .header-dropdown:before {
	content: " ";
	border-bottom: 4px dashed var(--primary-color);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	position: absolute;
	right: 20px;
	top: -6px;
}

.header-1 .header-user .header-login > ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 5px;
}

.header-1 .header-user .header-login > ul > li {
	position: relative;
	padding: 5px 0;
}

.header-1 .header-user .header-login > ul > li:last-child:hover:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 16px;
}

.header-1 .header-user.is-open .header-dropdown,
.header-1 .header-user .header-login > ul > li:hover > ul {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.header-1 .header-user .header-user_name {
	display: inline-block;
	white-space: nowrap;
	font-weight: 700;
	line-height: 1;
}

.header-1 .header-user .header-user_login {
	display: inline-flex;
	color: inherit;
}

.header-1 .header-dropdown_profile {
	list-style: none;
	padding: 8px 12px 10px;
	margin: 0;
	line-height: 1.45;
	font-size: 0.95em;
	color: #010203;
	border-bottom: 1px solid var(--border);
}

.header-1 .header-dropdown_heading {
	list-style: none;
	padding: 8px 12px 2px;
	margin: 0;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--primary-color);
	line-height: 1.2;
}

.header-1 .header-user .header-dropdown > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 0;
	padding: 5px 15px;
	color: #6c757d;
	font-weight: 400;
	gap: 6px;
	line-height: 1.45;
	text-align: left;
}

.header-1 .header-navigation_mobile-user > li > a {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 32px;
	padding: 2px 12px;
	color: #010203;
	font-weight: 400;
	gap: 8px;
	line-height: 1.3;
}

.header-1 .header-user .header-dropdown > li > a > i,
.header-1 .header-navigation_mobile-user > li > a > i {
	width: 14px;
	flex-shrink: 0;
	text-align: center;
	color: inherit;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}

.header-1 .header-user .header-dropdown > li > a > span,
.header-1 .header-navigation_mobile-user > li > a > span:not(.header-dropdown_meta) {
	flex: 1 1 auto;
}

.header-1 .header-dropdown_meta {
	margin-left: auto;
	color: var(--muted);
	font-weight: 500;
	font-size: 0.92em;
	flex: 0 0 auto;
}

.header-1 .header-dropdown_divider {
	height: 0;
	margin: 4px 0;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.header-1 .header-user .header-dropdown > li > a.active,
.header-1 .header-user .header-dropdown > li > a:hover,
.header-1 .header-user .header-dropdown > li > a.header-dropdown_logout:hover {
	background: var(--primary-color);
	color: #f1f1f1;
}

.header-1 .header-navigation_mobile-user > li > a:hover,
.header-1 .header-navigation_mobile-user > li > a.header-dropdown_logout:hover {
	color: var(--primary-color);
	background-color: rgba(var(--primary-rgb), 0.06);
}

.header-1 .header-main .header-toolbar .header-language {
	display: none;
}

.header-1 .header-language {
	position: relative;
}

.header-1 .header-language .header-language_btn {
	border: 0;
	background-color: transparent;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: var(--bs-white);
	font-weight: 500;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 6px;
	white-space: nowrap;
	padding: 0;
	height: 40px;
	position: relative;
	font-size: 1em;
}

.header-1 .header-bottom .header-language > ul {
	position: absolute;
	top: 100%;
	-webkit-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0;
	padding: 10px 15px;
	background-color: var(--bs-white, #ffffff);
	-webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	min-width: 150px;
	z-index: 5;
	list-style: none;
	margin-bottom: 0;
	border-radius: 0 0 0 0;
	flex-direction: column;
}

.header-1 .header-language:hover > ul {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.header-1 .header-language > ul > li > form {
	margin: 0;
}

.header-1 .header-language > ul > li > a,
.header-1 .header-language > ul > li > form > button {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	color: #010203;
	font-weight: 400;
	gap: 5px;
	background: transparent;
	border: 0;
	width: 100%;
	text-align: left;
}

.header-1 .header-language > ul > li > a.active,
.header-1 .header-language > ul > li > form > button.active,
.header-1 .header-language > ul > li:hover > a,
.header-1 .header-language > ul > li:hover > form > button {
	color: var(--primary-color);
}

.header-1 .header-top_wrap .header-language > ul {
	list-style: none;
	margin-bottom: 0;
	display: flex;
	padding-left: 0;
	gap: 8px;
}

.header-1 .header-top_wrap .header-language > ul > li > form {
	margin: 0;
}

.header-1 .header-top_wrap .header-language > ul > li > a,
.header-1 .header-top_wrap .header-language > ul > li > form > button {
	transition: var(--transition-default);
	height: 22px;
	width: 30px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
}

.header-1 .header-top_wrap .header-language > ul > li > a img,
.header-1 .header-top_wrap .header-language > ul > li > form > button img {
	width: 28px;
	height: 20px;
}

.header-1 .header-top_wrap .header-language > ul > li > a.active,
.header-1 .header-top_wrap .header-language > ul > li > form > button.active {
	border: 2px solid var(--bs-white);
	border-radius: 0 !important;
}

.header-1 .header-sort .header-navigation .header-navigation_footer,
.header-1 .header-hamburger {
	display: none;
}

.header-1 .header-hamburger .hamburger-button {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.header-1 .header-hamburger .hamburger-button > i {
	background-color: #010203;
	width: 20px;
	height: 2px;
	position: absolute;
	display: block;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	left: 50%;
	margin-left: -10px;
}

.header-1 .header-hamburger .hamburger-button > i:nth-child(1) {
	top: 14px;
}

.header-1 .header-hamburger .hamburger-button > i:nth-child(2) {
	top: 21px;
}

.header-1 .header-hamburger .hamburger-button > i:nth-child(3) {
	top: 28px;
	width: 15px;
	margin-left: -5px;
}

.is-navigation .header-1 .header-hamburger .hamburger-button > i:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 21px;
	width: 20px;
	margin-left: -10px;
}

.is-navigation .header-1 .header-hamburger .hamburger-button > i:nth-child(2) {
	left: 50%;
	width: 0;
	margin-left: 0;
}

.is-navigation .header-1 .header-hamburger .hamburger-button > i:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 21px;
	width: 20px;
	margin-left: -10px;
}

.header-1 .header-overlay {
	background: rgba(0, 0, 0, 0.65);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 19;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	height: 100vh;
	display: none;
}

.is-navigation .header-1 .header-overlay,
.is-usermb .header-1 .header-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.is-scroll.header-1 {
	position: fixed;
}

.is-scroll.header-1 .header-top,
.is-scroll.header-1 .header-top .header-language .header-language_btn {
	height: 32px;
}

.is-scroll.header-1 .header-main .header-logo {
	height: 40px;
}

.is-scroll.header-1 .header-sort .header-navigation > ul > li > a,
.is-scroll.header-1 .header-sort .header-navigation > ul > li > button {
	height: auto;
}

.is-scroll.header-1 .header-user .header-user_btn {
	height: auto;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
	.header-1 .header-main > .container {
		gap: 15px;
	}

	.header-1 .header-main .header-logo {
		height: 40px;
	}

	.header-1 .header-sort .header-navigation > ul {
		gap: 0;
	}

	.header-1 .header-sort .header-navigation > ul > li > a,
	.header-1 .header-sort .header-navigation > ul > li > button {
		font-size: 1em;
	}

	.header-1 .header-main .header-toolbar {
		margin-left: 15px;
		padding-left: 15px;
	}
}

@media screen and (max-width: 1023px) {
	.header-1 .header-top {
		position: relative;
		z-index: 21;
	}

	.header-1 .header-sort,
	.header-1 .header-sort.header-bottom {
		background: transparent;
		height: 0;
		min-height: 0;
		padding: 0;
		position: relative;
		z-index: 20;
		overflow: visible;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	.header-1 .header-sort.header-bottom > .container {
		height: 0;
		min-height: 0;
		padding: 0;
		overflow: visible;
	}

	.header-1 .header-main > .container {
		min-height: 56px;
	}

	.header-1 .header-main .header-logo {
		height: 40px;
	}

	.header-1 .header-main .header-toolbar {
		margin-left: auto;
		padding-left: 0;
		gap: 0px;
	}

	.header-1 .header-main .header-toolbar:before {
		display: none;
	}

	.header-1 .header-user .header-user_desktop {
		display: none
	}

	.header-1 .header-user .header-user_mobile {
		display: block;
	}

	.header-1 .header-user .header-user_mobile .header-user_btn {
		width: auto;
		height: auto;
		min-height: 0;
		padding: 4px 6px;
		border: 2px solid var(--primary-color);
		color: var(--primary-color);
		font-size: 12px;
		font-weight: 500;
		line-height: 1.3;
		border-radius: 3px;
		gap: 4px;
	}

	.header-1 .header-user .header-user_mobile .header-user_btn > i {
		font-size: 12px;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.header-1 .header-user .header-user_mobile .header-user_name {
		max-width: 42vw;
		overflow: hidden;
		text-overflow: ellipsis;
		font-weight: 500;
		text-transform: none;
	}

	.header-1 .header-bottom .header-language > ul {
		right: 0;
		left: unset;
	}

	.header-1 .header-hamburger {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.header-1 .header-overlay {
		display: block;
	}

	.header-1 {
		--nav-drawer-top: var(--header-h);
	}

	.header-1 .header-sort .header-navigation .header-navigation_mobile-head,
	.header-1 .header-sort .header-navigation .header-navigation_mobile-actions {
		display: none !important;
		height: 0;
		min-height: 0;
		padding: 0;
		margin: 0;
		overflow: hidden;
		border: 0;
	}

	.header-1 .header-main {
		position: relative;
		z-index: 22;
	}

	.header-1 .header-overlay {
		top: var(--nav-drawer-top);
		height: calc(100dvh - var(--nav-drawer-top));
		background: rgba(0, 0, 0, 0.3);
	}

	.header-1 .header-sort .header-navigation,
	.header-1 .header-main .header-usermb {
		position: fixed;
		top: var(--nav-drawer-top);
		left: -220px;
		right: auto;
		width: 220px;
		max-width: 220px;
		background-color: #fff;
		height: calc(100dvh - var(--nav-drawer-top));
		max-height: none;
		z-index: 13;
		-webkit-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		align-content: flex-start;
		display: flex;
		flex-direction: column;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		overflow: hidden;
		padding: 0;
		margin: 0;
		border-top: 0;
		-webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
		box-shadow: 0 2px 3px rgb(0 0 0 / 20%);
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.is-navigation .header-1 .header-sort .header-navigation,
	.is-usermb .header-1 .header-main .header-usermb {
		left: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.header-1 .header-sort .header-navigation .header-navigation_footer {
		display: none !important;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user {
		list-style: none;
		margin: 0;
		padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
		width: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		flex: 1 1 auto;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li {
		width: 100%;
		position: relative;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li.header-usermb_list__title {
		padding: 8px 4px;
		font-size: 15px;
		color: var(--primary-color);
		background-color: #f3f4f6;
		border-bottom: 1px solid #eaeaea;
		line-height: 1.4;
		text-transform: none;
		letter-spacing: 0;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li.header-usermb_list__title > i {
		margin-right: 4px;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li > a {
		padding: 8px 4px;
		min-height: 0;
		font-size: 14px;
		font-weight: 500;
		text-transform: uppercase;
		color: #212529;
		white-space: normal;
		border-bottom: 1px solid #eaeaea;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li > a > i {
		margin-left: 0;
		margin-right: 4px;
		color: inherit;
		font-size: 14px;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li > a:hover,
	.header-1 .header-main .header-usermb .header-navigation_mobile-user > li > a.header-dropdown_logout:hover {
		background: transparent;
		color: #212529;
	}

	.header-1 .header-sort .header-navigation > ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: stretch;
		width: 100%;
		gap: 0;
		padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
		margin-top: 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		flex: 1 1 auto;
	}

	.header-1 .header-sort .header-navigation > ul > li {
		position: relative;
		width: 100%;
	}

	.header-1 .header-sort .header-navigation > ul > li.header-navigation_mobile-only {
		display: block;
	}

	.header-1 .header-sort .header-navigation > ul > li + li {
		border-top: 0;
	}

	.header-1 .header-sort .header-navigation > ul > li > a,
	.header-1 .header-sort .header-navigation > ul > li > button {
		width: 100%;
		min-height: 0;
		padding: 8px 4px;
		font-size: 14px;
		font-weight: 500;
		text-transform: uppercase;
		color: #212529;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: auto !important;
		text-align: left;
		border-bottom: 1px solid #eaeaea;
	}

	.header-1 .header-sort .header-navigation > ul > li.hasSub > a,
	.header-1 .header-sort .header-navigation > ul > li.hasSub > button {
		padding-right: 44px;
	}

	.header-1 .header-sort .header-navigation > ul > li > a > i,
	.header-1 .header-sort .header-navigation > ul > li > button > i {
		display: none;
	}

	.header-1 .header-sort .header-navigation > ul > li > .sub-icon {
		display: block;
		color: #212529;
		text-transform: uppercase;
		font-weight: 500;
		padding: 8px 4px;
		font-size: 14px;
		line-height: 21px;
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 37px;
		background: transparent;
		border-left: 1px solid #eaeaea;
		text-align: center;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		user-select: none;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
	}

	.header-1 .header-sort .header-navigation > ul > li > a:before,
	.header-1 .header-sort .header-navigation > ul > li > button:before {
		display: none;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul {
		display: none;
		padding: 0;
		position: static;
		top: unset;
		width: 100%;
		min-width: 100%;
		-webkit-box-shadow: none;
		box-shadow: none;
		-webkit-transform: translateY(0) !important;
		-ms-transform: translateY(0) !important;
		transform: translateY(0) !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		border-top: 0;
		background: #fff;
	}

	.header-1 .header-sort .header-navigation > ul > li.hasSub.is-show > ul {
		display: block;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul > li > a {
		padding: 8px 4px 8px 20px;
		min-height: 0;
		border-bottom: 1px solid #eaeaea;
		text-transform: uppercase;
		font-size: 14px;
		font-weight: 500;
		color: #212529;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_icon {
		display: none;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content .navigation-item_title {
		font-size: 14px;
		font-weight: 500;
		text-transform: uppercase;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content .navigation-item_sub {
		display: none;
	}

	.header-1 .header-sort .header-navigation > ul > li > ul > li + li {
		border-top: 0;
	}

	.is-scroll.header-1 .header-main .header-logo {
		height: 35px;
	}

	.header-1 .header-cart {
		display: none;
	}

	.header-1 .header-currency .header-currency_button {
		height: 50px;
	}

	.is-scroll.header-1 .header-cart .header-cart_button,
	.is-scroll.header-1 .header-language .header-language_btn,
	.is-scroll.header-1 .header-currency .header-currency_button {
		height: 44px;
	}

	.is-scroll.header-1 .header-user .header-user_mobile .header-user_btn {
		height: auto;
	}

	.is-overflow {
		overflow: hidden;
		height: 100vh;
	}
}

@media screen and (max-width: 768px) {
	.header-1 .header-top {
		display: none;
	}

	.header-1 .header-main .header-toolbar .header-language {
		display: block;
	}

	.header-1 .header-language .header-language_btn {
		height: 44px;
	}
}


/* Footer 1 — Nencer */
===================
Style Footer 1
*/

.footer-1 {
	background-color: #dee2e6;
	position: relative;
	font-size: 0.9em;
}

.footer-1:before { display: none; }

.footer-1 .footer-gap {
	padding: 15px 0;
}

.footer-1 .footer-logo {
	height: 50px;
	margin-bottom: 8px;
}

.footer-1 .footer-logo img {
	height: 100%;
	width: auto;
	max-width: 100%;
}

.footer-1 .footer-item .footer-title {
	font-size: 1em;
	font-weight: 600;
	color: #616161;
	margin-bottom: 8px;
}

.footer-1 .footer-item .footer-contact,
.footer-1 .footer-item .footer-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.footer-1 .footer-item .footer-link {
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
}

.footer-1 .footer-item .footer-contact .footer-contact_item,
.footer-1 .footer-item .footer-link .footer-link_item__link {
		color: #616161;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 6px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 300;
}

.footer-1 .footer-item .footer-contact .footer-contact_item i {
	width: 32px;
	height: 32px;
	background-color: rgba(255, 255, 255, .1);
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	text-decoration: none !important;
}

.footer-1 .footer-item .footer-contact .footer-contact_item:hover span,
.footer-1 .footer-item .footer-link .footer-link_item__link:hover {
	text-decoration: underline;
}

.footer-1 .footer-item .footer-social {
	margin-top: 12px;
	padding-left: 0;
	list-style: none;
	margin-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}

.footer-1 .footer-item .footer-social .footer-social_item .footer-social_item__link {
	width: 32px;
	height: 32px;
	background-color: rgba(255, 255, 255, .1);
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	text-decoration: none !important;
		color: #616161;
}

.footer-1 .footer-item .footer-social .footer-social_item .footer-social_item__link:hover {
	background-color: rgba(255, 255, 255, 1);
	color: var(--primary-color);
}

.footer-1 .footer-bottom {
	border-top: 1px solid #f5f5f520;
	padding: 12px 0;
}

.footer-1 .footer-bottom .footer-copyright {
	color: #616161;
	font-weight: 300;
}

.footer-1 .footer-bottom .footer-logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 10px;
	filter: brightness(0.3);
}

.footer-1 .footer-bottom .footer-logos img {
	max-height: 10px;
	max-width: 100%;
	width: auto;
}
.footer-1 .footer-bottom .header-language , .footer-1 .footer-bottom .header-language ul{
	display: flex;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 8px;
}
.footer-1 .footer-bottom .header-language{
	margin-right: 10px;
}
.footer-1 .footer-bottom .header-language form{
	margin: 0;
}

.footer-1 .footer-bottom .header-language a,
.footer-1 .footer-bottom .header-language button{
	color: #616161;
	background: transparent;
	border: 0;
	padding: 0;
}
.footer-1 .footer-bottom .header-language ul img{
	width: 28px;
	height: 20px;
	object-fit: cover;
}
@media screen and (max-width: 1023px) {
	.footer-1 .footer-logo {
		height: 50px;
	}

	.footer-1 .footer-item .footer-title {
		font-size: 1.075em;
	}
}

@media screen and (max-width: 768px) {
	.footer-1 .footer-bottom .footer-copyright {
		text-align: center;
	}

	.footer-1 .footer-bottom .footer-logos {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}


/* Code 1 — Nencer */
/*
===================
Style Code 1
*/

.code-1 .code-item {
	padding: 10px;
		border: 1px solid rgba(215, 216, 222, 0.41);
	border-radius: 0;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
	width: 100%;
	position: relative;
	text-align: center;
	height: 100%;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #f5f5f5;
}

.code-1 .code-item .code-item_icon {
	margin-bottom: 8px;
}

.code-1 .code-item .code-item_icon img {
	height: 50px;
	-o-object-fit: contain;
	object-fit: contain;
}

.code-1 .code-item .code-item_title {
	margin-top: auto;
	line-height: 1.2;
	font-size: 1.15em;
	font-weight: 500;
	color: #101010;
	-webkit-transition: var(--transition-default, 0.3s all ease-in-out);
	-o-transition: var(--transition-default, 0.3s all ease-in-out);
	transition: var(--transition-default, 0.3s all ease-in-out);
}

.code-1 .code-item:hover {
	-webkit-transform: translate3d(0, -5px, 0);
	transform: translate3d(0, -5px, 0);
	-webkit-box-shadow: 0 6px 34px rgba(215, 216, 222, 0.61);
	box-shadow: 0 6px 34px rgba(215, 216, 222, 0.61);
}

.code-1 .code-item:hover .code-item_title {
	color: var(--primary-color);
}

@media screen and (max-width: 1023px) {
	.code-1 .code-item .code-item_title {
		font-size: 1.075em;
	}
}


/* Custom Banner — from test/default */
.section-banner .swiper-slide {
    --color-slider: var(--primary-color), var(--primary-color);
    background: var(--primary-color);
    padding: 100px 0;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: -webkit-linear-gradient(to right, var(--color-slider));
    background: linear-gradient(to right, var(--color-slider));
}

.section-banner .swiper-slide .section-banner_title {
    font-size: 2.3em;
    font-weight: 700;
    color: var(--white);
    padding: 20px 0 15px;
    opacity: 1;
    line-height: 1.1;
    text-shadow: 0 2px 3px rgb(0 0 0 / 25%);
}

.section-banner .swiper-slide .section-banner_desc {
    font-size: 1em;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 2px 3px rgb(0 0 0 / 25%);
    line-height: 1.7;
}

.section-banner .swiper-slide .section-banner_button {
    margin-top: 30px;
}

.section-banner .swiper-slide .section-banner_image img {
    max-width: 100%;
    height: auto;
}

.section-banner .slide-button-prev,
.section-banner02 .slide-button-prev {
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    font-size: 2.6em;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    outline: none !important;
    border-radius: 50%;
    cursor: pointer;
}

.section-banner .slide-button-next,
.section-banner02 .slide-button-next {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--primary-color);
    background-color: var(--white);
    border: 1px solid #fff;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    font-size: 2.6em;
    -webkit-transition: var(--transition-default);
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    outline: none !important;
    border-radius: 50%;
    cursor: pointer;
}

.section-banner .slide-button-next.swiper-button-disabled,
.section-banner .slide-button-prev.swiper-button-disabled,
.section-banner02 .slide-button-next.swiper-button-disabled,
.section-banner02 .slide-button-prev.swiper-button-disabled {
    opacity: 0
}

.section-banner .slide-button-next:hover,
.section-banner .slide-button-prev:hover,
.section-banner02 .slide-button-next:hover,
.section-banner02 .slide-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
}

.section-banner .slide-button-prev.swiper-button-block,
.section-banner02 .slide-button-prev.swiper-button-block {
    display: none;
}

@media screen and (max-width: 991px) {
    .section-banner .swiper-slide {
        padding: 30px 0;
    }

    .section-banner .swiper-slide .section-banner_title {
        font-size: 1.6em;
        text-align: center;
    }

    .section-banner .swiper-slide .section-banner_desc,
    .section-banner .swiper-slide .section-banner_button {
        text-align: center;
    }

    .section-banner .slide-button-prev,
    .section-banner .slide-button-next,
    .section-banner02 .slide-button-prev,
    .section-banner02 .slide-button-next {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 575px) {
    .section-banner .swiper-slide .section-banner_title,
    .section-banner .swiper-slide .section-banner_desc {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-banner .slide-button-prev,
    .section-banner02 .slide-button-prev {
        left: 5px;
    }

    .section-banner .slide-button-next,
    .section-banner02 .slide-button-next {
        right: 5px;
    }
}

/* Homepage modern — Nencer */
/* ===== Homepage modern redesign ===== */
.home-modern {
    overflow-x: hidden;
    background: #f6f8fb;
    color: #111827;
}

.home-modern a {
    text-decoration: none;
}

.home-modern img {
    max-width: 100%;
}

.home-modern *,
.home-modern *::before,
.home-modern *::after {
    min-width: 0;
}

.home-modern h1,
.home-modern h2,
.home-modern h3,
.home-modern p,
.home-modern li,
.home-modern span,
.home-modern strong {
    white-space: normal;
    overflow-wrap: anywhere;
}

.home-modern-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #0f172a;
}

.home-modern-hero .swiper,
.home-modern-hero .swiper-wrapper,
.home-modern-hero .swiper-slide,
.home-modern-hero__slide {
    min-height: 640px;
}

.home-modern-hero .swiper {
    width: 100%;
}

.home-modern-hero .swiper-slide {
    height: auto;
}

.home-modern-hero__slide {
    position: relative;
    display: flex;
    overflow: hidden;
}

.home-modern-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
}

.home-modern-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 24, 0.9) 0%, rgba(5, 12, 24, 0.62) 42%, rgba(5, 12, 24, 0.2) 100%);
}

.home-modern-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 640px;
    flex-direction: column;
    justify-content: center;
    padding-top: 88px;
    padding-bottom: 32px;
}

.home-modern-hero__content {
    max-width: 780px;
    color: #ffffff;
}

.home-modern-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(var(--primary-rgb), 0.18);
    border-radius: 4px;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-modern-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    background: currentColor;
}

.home-modern-hero .home-modern-eyebrow {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #d9edff;
}

.home-modern-hero__title {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
}

.home-modern-hero__desc {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

.home-modern-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.home-modern-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home-modern-button:hover {
    transform: translateY(-2px);
}

.home-modern-button--primary {
    background: var(--primary-color);
    color: #ffffff;
}

.home-modern-button--primary:hover {
    color: #ffffff;
    background: var(--primary-hover);
}

.home-modern-button--light {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.home-modern-button--light:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.home-modern-hero__footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(280px, 1.15fr);
    gap: 1px;
    margin-top: auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
}

.home-modern-stat {
    min-height: 96px;
    padding: 20px;
    background: rgba(5, 12, 24, 0.36);
    color: #ffffff;
}

.home-modern-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.home-modern-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.4;
}

.home-modern-hero-product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 28px;
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
}

.home-modern-hero-product:hover {
    color: #111827;
}

.home-modern-hero-product img {
    width: 72px;
    height: 68px;
    border-radius: 4px;
    object-fit: cover;
}

.home-modern-hero-product small,
.home-modern-hero-product strong {
    display: block;
}

.home-modern-hero-product small {
    margin-bottom: 4px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-modern-hero-product strong {
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
}

.home-modern-hero-product i {
    color: var(--primary-color);
}

.home-modern-hero__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-modern-hero__arrow:hover {
    background: #ffffff;
    color: var(--primary-color);
}

.home-modern-hero__pagination {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-modern-hero__pagination.home-modern-button {
    min-height: 48px;
    padding: 8px;
}

.home-modern-hero__pagination .swiper-pagination-bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    opacity: 1;
    cursor: pointer;
}

.home-modern-hero__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    color: var(--primary-color);
}

.home-modern-proof {
    background: #f6f8fb;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.home-modern-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-modern-about__proof {
    margin-top: 30px;
}

.home-modern-proof__item {
    min-height: 100%;
    padding: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 6px;
    background: #ffffff;
}

.home-modern-proof__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 6px;
    background: rgba(var(--primary-rgb), 0.1);
}

.home-modern-proof__icon img,
.home-modern-proof__icon i {
    width: 32px;
    height: 32px;
}

.home-modern-proof__icon img {
    object-fit: contain;
}

.home-modern-proof__icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.home-modern-proof__body h3 {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.home-modern-proof__body p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.home-modern-section {
    padding: 82px 0;
}

.home-modern-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.home-modern-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
    gap: 28px;
    align-items: end;
    max-width: none;
}

.home-modern-heading h2 {
    margin: 0;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
}

.home-modern-websites.home-modern-section {
    padding: 40px 0;
}

.home-modern-websites .home-modern-heading {
    margin-bottom: 34px;
}

.home-modern-websites .home-modern-heading h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.home-modern-products.home-modern-section {
    padding: 40px 0;
}

.home-modern-products .home-modern-heading {
    margin-bottom: 20px;
}

.home-modern-products .home-modern-heading h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.home-modern-news.home-modern-section {
    padding: 40px 0;
}

.home-modern-news .home-modern-heading {
    margin-bottom: 34px;
}

.home-modern-news .home-modern-heading h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.home-modern-products .home-hosting-tabs {
    margin-bottom: 20px;
}

.home-modern-heading p {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.75;
}

.home-modern-heading--split p {
    margin: 0;
}

.home-modern-services {
    background: #f6f8fb;
}

.home-modern-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-modern-service {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 7px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-modern-service:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--primary-rgb), 0.24);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.home-modern-service__media {
    height: 180px;
    background: #eaf1f8;
}

.home-modern-service__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-modern-service__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.home-modern-service__body > span {
    width: fit-content;
    margin-bottom: 16px;
    padding: 5px 8px;
    border-radius: 4px;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
}

.home-modern-service h3,
.home-modern-product h3,
.home-modern-website h3,
.home-modern-news-card h3 {
    margin: 0;
    color: #111827;
    font-weight: 900;
    line-height: 1.32;
}

.home-modern-service h3 {
    font-size: 20px;
}

.home-modern-service p {
    margin: 12px 0 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.home-modern-service ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.home-modern-service li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.home-modern-service li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.home-modern-products {
    background: #f6f8fb;
}

.home-modern-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 18px;
    align-items: stretch;
}

.home-modern-product {
    position: relative;
    display: flex;
    min-width: 0;
    border: 1px solid #dce4ef;
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.home-modern-product:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--primary-rgb), 0.34);
    color: inherit;
}

.home-modern-product--lead {
    min-height: 430px;
    flex-direction: column;
    border-color: #cfd8e6;
}

.home-modern-product--lead:only-child {
    grid-column: 1 / -1;
}

.home-modern-product-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-modern-product--compact {
    min-height: 205px;
    flex-direction: column;
}

.home-modern-product__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #eef3f8;
    color: var(--primary-color);
}

.home-modern-product--lead .home-modern-product__visual {
    height: 245px;
    border-bottom: 1px solid #e2e8f0;
}

.home-modern-product--compact .home-modern-product__visual {
    height: 112px;
    margin: 12px 12px 0;
    border-radius: 6px;
}

.home-modern-product__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-modern-product__visual > i {
    font-size: 40px;
}

.home-modern-product__flag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 28px);
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.home-modern-product__body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: 18px;
}

.home-modern-product--lead .home-modern-product__body {
    padding: 24px;
}

.home-modern-product__tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    background: #eef7f6;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.home-modern-product h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #0f172a;
    font-size: 18px;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-modern-product--lead h3 {
    font-size: 28px;
    line-height: 1.18;
}

.home-modern-product p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.62;
    overflow: hidden;
}

.home-modern-product--compact p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.home-modern-product__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.home-modern-product__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #dbe5ef;
    border-radius: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.home-modern-product__benefits i {
    color: #e2552c;
}

.home-modern-product__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 900;
}

.home-modern-product__cta i {
    transition: transform 0.2s ease;
}

.home-modern-product--lead:hover .home-modern-product__cta i {
    transform: translateX(3px);
}

.home-modern-product > i {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: var(--primary-color);
    font-size: 15px;
}

.home-modern-product--lead > i {
    display: none;
}

.home-modern-websites {
    background: #eef4fb;
}

.home-modern-website-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-modern-website {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 7px;
    background: #ffffff;
    color: inherit;
}

.home-modern-website:hover {
    color: inherit;
}

.home-modern-website--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.home-modern-website__image {
    height: 168px;
    background: #e2e8f0;
}

.home-modern-website--featured .home-modern-website__image {
    height: 360px;
}

.home-modern-website__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.home-modern-website__body {
    padding: 16px;
}

.home-modern-website h3 {
    font-size: 18px;
}

.home-modern-website--featured h3 {
    font-size: 24px;
}

.home-modern-website p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.home-modern-about {
    background: #ffffff;
}

.home-modern-about__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.home-modern-about__media {
    overflow: hidden;
    border-radius: 7px;
    background: #e2e8f0;
    aspect-ratio: 4 / 3;
}

.home-modern-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-modern-about__content h2 {
    margin: 0;
    color: #111827;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
}

.home-modern-about__desc {
    margin-top: 18px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.home-modern-about__desc p {
    margin-bottom: 14px;
}

.home-modern-about__desc ul {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.home-modern-about__desc li {
    position: relative;
    padding-left: 24px;
    color: #334155;
    font-weight: 700;
}

.home-modern-about__desc li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.home-modern-about__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.home-modern-about__facts div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 6px;
    background: #f8fafc;
}

.home-modern-about__facts img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.home-modern-about__facts strong {
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
}

.home-modern-news {
    background: #f6f8fb;
}

.home-modern-news__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-modern-news-card {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 7px;
    background: #ffffff;
    color: inherit;
}

.home-modern-news-card:hover {
    color: inherit;
}

.home-modern-news-card__image {
    height: 178px;
    background: #e2e8f0;
}

.home-modern-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-modern-news-card__body {
    padding: 18px;
}

.home-modern-news-card__body > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
}

.home-modern-news-card h3 {
    font-size: 18px;
}

.home-modern-news-card p {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.home-modern-partners {
    padding: 28px 0;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.home-modern-partners__rail {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.home-modern-partners__rail a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 6px;
    background: #ffffff;
}

.home-modern-partners__rail img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .home-modern-hero__title {
        font-size: 46px;
    }

    .home-modern-hero__footer,
    .home-modern-services__grid,
    .home-modern-product-grid,
    .home-modern-website-grid,
    .home-modern-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-modern-hero-product {
        grid-column: span 2;
    }

    .home-modern-about__layout,
    .home-modern-heading--split {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .home-modern-hero,
    .home-modern-hero .swiper,
    .home-modern-hero .swiper-wrapper,
    .home-modern-hero .swiper-slide,
    .home-modern-hero__slide,
    .home-modern-hero .container {
        min-height: auto;
    }

    .home-modern-hero .container {
        padding-top: 64px;
        padding-bottom: 22px;
        justify-content: center;
    }

    .home-modern-hero__shade {
        background: linear-gradient(180deg, rgba(5, 12, 24, 0.78) 0%, rgba(5, 12, 24, 0.86) 100%);
    }

    .home-modern-hero__title {
        font-size: 32px;
        line-height: 1.14;
    }

    .home-modern-hero__desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .home-modern-hero__actions,
    .home-modern-button {
        width: 100%;
    }

    .home-modern-hero__footer {
        display: none;
    }

    .home-modern-hero__pagination .swiper-pagination-bullet {
        width: 28px;
        height: 28px;
    }

    .home-modern-hero__footer,
    .home-modern-proof__grid,
    .home-modern-services__grid,
    .home-modern-product-grid,
    .home-modern-website-grid,
    .home-modern-news__grid,
    .home-modern-about__facts,
    .home-modern-partners__rail {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-modern-hero-product {
        grid-column: auto;
    }

    .home-modern-section {
        padding: 58px 0;
    }

    .home-modern-heading h2,
    .home-modern-about__content h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .home-modern-heading p {
        font-size: 15px;
    }

    .home-modern-product-grid {
        gap: 14px;
    }

    .home-modern-product-stack {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-modern-product--lead {
        min-height: auto;
    }

    .home-modern-product--lead .home-modern-product__visual {
        height: 220px;
    }

    .home-modern-product--compact .home-modern-product__visual {
        height: 170px;
    }

    .home-modern-product--lead .home-modern-product__body {
        padding: 18px;
    }

    .home-modern-product--lead h3 {
        font-size: 24px;
    }

    .home-modern-product__benefits {
        gap: 6px;
    }

    .home-modern-website--featured {
        grid-column: auto;
        grid-row: auto;
    }

    .home-modern-website__image,
    .home-modern-website--featured .home-modern-website__image,
    .home-modern-news-card__image {
        height: 220px;
    }

    .home-modern-about__layout {
        gap: 24px;
    }
}

/* PinoCloud header extras on Nencer header-1 */
.header-1 .header-search_btn {
    display: none;
}

@media screen and (min-width: 1024px) {
    .header-1 .header-user_desktop {
        display: flex;
        align-items: center;
        gap: 5px;
        position: relative;
    }

    .header-1.header-m1 {
        box-shadow: 0 1px 4px 0 rgb(0 0 0 / 5%);
    }

    .header-1 .header-main .header-logo {
        height: 40px;
        margin-right: 0;
    }

    .header-1 .header-main .header-toolbar {
        margin-left: auto;
        padding-left: 25px;
        gap: 5px;
        z-index: 4;
    }

    .header-1 .header-main .header-toolbar:before {
        display: none;
    }

    .header-1 .header-sort .header-navigation {
        display: block;
        width: 100%;
        position: relative;
        z-index: 2;
        background: transparent;
    }

    .header-1 .header-sort .header-navigation > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 0;
        width: auto;
    }

    .header-1 .header-sort .header-navigation > ul > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .header-1 .header-sort .header-navigation > ul > li + li {
        border-left: 0;
    }

    .header-1 .header-sort .header-navigation > ul > li > a,
    .header-1 .header-sort .header-navigation > ul > li > button {
        height: auto;
        padding: 13px 12px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0;
        color: #232323;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .header-1 .header-sort .header-navigation > ul > li > a > i:not(.fa-caret-down):not(.fa-angle-down):not(.fa-chevron-down),
    .header-1 .header-sort .header-navigation > ul > li > button > i:not(.fa-caret-down):not(.fa-angle-down):not(.fa-chevron-down) {
        display: none;
    }

    .header-1 .header-sort .header-navigation > ul > li > a > i.fa-caret-down,
    .header-1 .header-sort .header-navigation > ul > li > a > i.fa-angle-down,
    .header-1 .header-sort .header-navigation > ul > li > a > i.fa-chevron-down,
    .header-1 .header-sort .header-navigation > ul > li > button > i.fa-caret-down,
    .header-1 .header-sort .header-navigation > ul > li > button > i.fa-angle-down,
    .header-1 .header-sort .header-navigation > ul > li > button > i.fa-chevron-down {
        font-size: 10px;
        position: relative;
        top: -1px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .header-1 .header-sort .header-navigation > ul > li > a:before,
    .header-1 .header-sort .header-navigation > ul > li > button:before {
        height: 2px;
        width: 0;
        margin: auto;
        opacity: 1;
        visibility: visible;
        background: var(--primary-color);
    }

    .header-1 .header-sort .header-navigation > ul > li:hover > a:before,
    .header-1 .header-sort .header-navigation > ul > li:hover > button:before {
        width: 100%;
        height: 2px;
        opacity: 1;
        visibility: visible;
    }

    .header-1 .header-sort .header-navigation > ul > li > ul {
        margin-top: -2px;
        min-width: 180px;
        padding: 0;
        border-radius: 0;
        border-top: 2px solid var(--primary-color);
        box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
    }

    .header-1 .header-sort .header-navigation > ul > li > ul:before {
        content: " ";
        border-bottom: 4px dashed var(--primary-color);
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        position: absolute;
        left: 20px;
        top: -6px;
    }

    .header-1 .header-sort .header-navigation > ul > li > ul > li > a {
        padding: 5px 15px;
        color: #6c757d;
        font-weight: 400;
        text-transform: none;
    }

    .header-1 .header-sort .header-navigation > ul > li > ul > li > a .navigation-item_content .navigation-item_title {
        font-size: 14px;
        font-weight: 400;
    }

    .header-1 .header-sort .header-navigation > ul > li > ul > li:hover > a {
        background: var(--primary-color);
        color: #f1f1f1;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-1 .header-sort .header-navigation > ul > li > ul > li:hover > a .navigation-item_title {
        color: #f1f1f1;
    }

    .header-1 .header-user .header-balance_btn,
    .header-1 .header-user .header-user_desktop .header-user_btn,
    .header-1 .header-user .btn-register,
    .header-1 .header-user .btn-login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        height: 31px;
        min-height: 31px;
        padding: 4px 11px 3px;
        border: 1px solid transparent;
        border-radius: 3px;
        font-size: 12px;
        font-weight: 500;
        line-height: 25px;
        white-space: nowrap;
        box-shadow: none;
        letter-spacing: 0;
        text-decoration: none;
    }

    .header-1 .header-user .header-user_desktop .header-user_btn,
    .header-1 .header-user .btn-register,
    .header-1 .header-user .btn-login {
        text-transform: uppercase;
        color: #fff;
    }

    .header-1 .header-user .header-login .header-balance_btn {
        background-color: #fff;
        border-color: var(--primary-color);
        color: var(--primary-color);
        text-transform: none;
        letter-spacing: 0;
    }

    .header-1 .header-user .header-user_desktop .header-user_btn,
    .header-1 .header-user .btn-login {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .header-1 .header-user .header-balance_btn:hover,
    .header-1 .header-user .header-user_desktop .header-user_btn:hover,
    .header-1 .header-user .btn-login:hover,
    .header-1 .header-user .btn-register:hover {
        transform: none;
    }

    .header-1 .header-user .header-balance_btn:hover {
        background-color: rgba(var(--primary-rgb), 0.06);
        color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .header-1 .header-user .header-user_desktop .header-user_btn:hover,
    .header-1 .header-user .btn-login:hover {
        background-color: var(--primary-hover);
        border-color: var(--primary-hover);
        color: #fff;
    }

    .header-1 .header-user .btn-register {
        background-color: #6c757d;
        border-color: #6c757d;
        color: #fff;
    }

    .header-1 .header-user .btn-register:hover {
        background-color: #54585d;
        border-color: #54585d;
        color: #fff;
    }

    .header-1 .header-user .header-balance_btn > i,
    .header-1 .header-user .btn-register > i,
    .header-1 .header-user .btn-login > i,
    .header-1 .header-user .header-user_desktop .header-user_btn > i.fa-user {
        font-size: 12px;
        position: relative;
        top: -1px;
    }

    .header-1 .header-user .header-user_desktop .header-user_name {
        color: #fff;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .header-1 .header-user .header-dropdown {
        top: 100%;
        right: 0;
    }

    .is-scroll.header-1 .header-main .header-logo {
        height: 36px;
    }

    .is-scroll.header-1 .header-sort .header-navigation > ul > li > a,
    .is-scroll.header-1 .header-sort .header-navigation > ul > li > button,
    .is-scroll.header-1 .header-user .header-user_desktop .header-user_btn {
        height: auto;
    }
}

.header-1 .header-user_avatar,
.header-1 .header-user_btn__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), 0.08);
    color: var(--primary-color);
    flex-shrink: 0;
}

.header-1 .header-user_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.is-header-open {
    overflow: hidden;
    height: 100vh;
}

.header-1 .header-overlay {
    display: none;
}

.is-navigation .header-1 .header-overlay,
.is-usermb .header-1 .header-overlay {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.footer-1 .footer-logos i {
    font-size: 22px;
    color: #616161;
}

.footer-1 .footer-logo strong {
    font-size: 1.15em;
    font-weight: 700;
    color: #616161;
}

.home-modern-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1199.98px) {
    .home-modern-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-modern-news__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.home-modern-website__body > span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-modern-service li i {
    color: var(--primary-color);
}

.home-modern-proof__item {
    display: block;
    color: inherit;
    text-decoration: none;
}

.home-modern-proof__item:hover {
    color: inherit;
}

.section-banner.home-modern-hero {
    padding: 0;
    min-height: 640px;
    background: #0f172a;
}

.section-banner .section-banner_group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.section-banner .section-banner_group .banner-button_prev,
.section-banner .section-banner_group .banner-button_next,
.section-banner .section-banner_group .home-modern-hero__arrow {
    display: inline-flex;
    min-width: 34px;
    min-height: 34px;
}

.home-modern-hero .section-banner_group {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    width: auto;
}

.home-modern-hero .banner-pagination {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 48px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.12);
    width: auto;
}

.home-modern-hero .banner-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 30px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border-radius: 4px;
    justify-content: center;
}

.home-modern-hero .banner-pagination .swiper-pagination-bullet-active {
    background: #fff;
    color: var(--primary-color);
}

@media screen and (max-width: 767px) {
    .home-modern-hero .section-banner_group {
        position: static;
        margin: 12px 16px 20px;
    }
}

.button-theme_1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 24px;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
    color: inherit;
}

.button-theme_1.button-theme_primary {
    background: var(--primary-color);
    color: #fff;
}

.button-theme_1.button-theme_primary:hover {
    background: var(--primary-hover);
    color: #fff;
}

.button-theme_1.button-theme_primary__outline {
    background: rgba(var(--primary-rgb), 0.05);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.button-theme_1.button-theme_primary__outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}


/* PinoCloud shared cards / notice / search */
.search-page_select-toggle {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.search-page_select-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    z-index: 4;
    padding: 6px;
}

.search-page_select.is-open .search-page_select-menu {
    display: block;
}

.search-page_select-option {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    border-radius: var(--radius-xs);
    font-weight: 700;
}

.search-page_select-option.is-active,
.search-page_select-option:hover {
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
}
.home-notice-strip {
    background: rgba(var(--accent-rgb), 0.08);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.12);
}

.home-notice-strip_inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
}

.home-notice-strip_icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    flex: 0 0 auto;
}

.home-notice-strip_marquee {
    overflow: hidden;
    flex: 1 1 auto;
}

.home-notice-strip_text {
    font-weight: 700;
    color: var(--ink);
}
.home-service-grid,
.home-source-grid,
.home-hosting-grid,
.home-news-grid {
    display: grid;
    gap: 16px;
}

.home-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-service-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    padding: 0 0 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.24);
    color: inherit;
    box-shadow: var(--shadow-lg);
}

.home-service-card_icon {
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf1f8;
    color: var(--accent);
    font-size: 36px;
    margin-bottom: 8px;
}

.home-service-card_chip {
    width: fit-content;
    margin: 16px 20px 0;
    padding: 5px 8px;
    border-radius: var(--radius-xs);
    background: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.home-service-card_title {
    margin: 12px 20px 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 900;
}

.home-service-card:hover .home-service-card_title {
    color: var(--accent);
}

.home-service-card_desc {
    margin: 12px 20px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.home-service-card_link {
    margin: auto 20px 0;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
}

.home-source-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-source-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-source-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.34);
}

.home-preview-shell {
    position: relative;
    height: 168px;
    background: #e2e8f0;
    overflow: hidden;
}

.home-source-card_media,
.home-source-card_media img,
.theme-img-fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.theme-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 12, 24, 0.46);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.home-source-card:hover .theme-overlay {
    opacity: 1;
}

.home-preview-actions {
    display: flex;
    gap: 8px;
}

.home-preview-action {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
    background: #fff;
    color: var(--ink);
}

.home-preview-action--primary {
    background: var(--accent);
    color: #fff;
}

.home-preview-action--icon {
    width: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-preview-price {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.home-preview-price--free {
    background: rgba(5, 150, 105, 0.86);
}

.home-source-ribbon {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 2;
    padding: 5px 8px;
    border-radius: var(--radius-xs);
    background: #eef7f6;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-source-ribbon--best { background: #fff7ed; color: #c2410c; }
.home-source-ribbon--hot { background: #fef2f2; color: #b91c1c; }
.home-source-ribbon--new { background: rgba(var(--accent-rgb), 0.1); color: var(--accent); }

.home-source-card_body {
    padding: 16px;
}

.home-source-card_title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
}

.home-source-card_title a {
    color: var(--ink);
}

.home-source-card_title a:hover {
    color: var(--accent);
}

.home-source-card_stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
}

.home-source-grid--home {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-source-card--home {
    min-height: 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.home-source-card--home:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    color: inherit;
}

.home-source-card--home .home-preview-shell {
    height: auto;
}

.home-source-card--home .home-source-card_media {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.home-source-card--home .home-source-card_media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-source-card--home .home-source-card_body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
}

.home-source-card--home .home-source-card_title {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
}

.home-source-card--home .home-source-card_stats {
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
}

.home-source-card--home .home-source-card_stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.home-source-card--home .home-source-card_stats i {
    color: var(--accent);
    font-size: 12px;
}

.home-source-card--home .home-preview-price {
    left: 10px;
    bottom: 10px;
    padding: 6px 10px;
    border: 0;
    border-radius: 3px;
    background: var(--accent);
    font-size: 12px;
}

.home-source-card--home .home-preview-price--free {
    background: #059669;
}

.home-source-card--home .home-source-ribbon {
    left: 10px;
    top: 10px;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 11px;
}

@media (max-width: 1199.98px) {
    .home-source-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-source-card--home .home-preview-shell {
        height: 210px;
    }

    .home-source-card--home .home-source-card_media {
        height: 100%;
        aspect-ratio: auto;
    }
}

@media (max-width: 767.98px) {
    .home-source-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-source-card--home .home-preview-shell {
        height: 188px;
    }

    .home-source-card--home .home-source-card_media {
        height: 100%;
        aspect-ratio: auto;
    }
}

.nav-hosting {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-hosting .nav-link,
.nav-pills .nav-link {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-hosting .nav-link img {
    width: 18px;
    height: 18px;
}

.nav-hosting .nav-link.active,
.nav-pills .nav-link.active {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.24);
    color: var(--accent);
}

.home-hosting-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-hosting-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 18px;
    border: 1px solid #dce4ef;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-hosting-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.34);
}

.home-hosting-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
    padding: 7px 10px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: #eef7f6;
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-hosting-card_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.home-hosting-card_server,
.home-hosting-card_cycle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #dbe5ef;
    border-radius: 6px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.home-hosting-ribbon i,
.home-hosting-card_server i,
.home-hosting-card_cycle i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.home-hosting-card_title {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
}

.home-hosting-card_price {
    margin-bottom: 14px;
}

.home-hosting-card_price strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
}

.home-hosting-card_price span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.home-hosting-card_features {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    flex: 1 1 auto;
}

.home-hosting-card_features li {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-hosting-card_features i {
    color: #e2552c;
}

.home-hosting-card_more {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
}

.home-hosting-card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 42px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.home-hosting-card_btn:hover {
    background: var(--accent-hover);
    color: #fff;
}

.home-hosting-grid--home {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-hosting-grid.home-hosting-grid--list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.home-modern-products .home-hosting-card {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.home-modern-products .home-hosting-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.home-modern-products .home-hosting-ribbon {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.home-modern-products .home-hosting-card_server,
.home-modern-products .home-hosting-card_cycle {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
}

.home-modern-products .home-hosting-card_title {
    font-size: 15px;
    font-weight: 800;
}

.home-modern-products .home-hosting-card_price {
    margin-bottom: 12px;
}

.home-modern-products .home-hosting-card_price strong {
    font-size: 20px;
    color: var(--accent);
}

.home-modern-products .home-hosting-card_price span {
    font-size: 12px;
}

.home-modern-products .home-hosting-card_features li {
    font-size: 12px;
    margin-bottom: 6px;
}

.home-modern-products .home-hosting-card_features i {
    color: var(--accent);
}

.home-modern-products .home-hosting-card_more {
    font-size: 12px;
    margin-bottom: 12px;
}

.home-modern-products .home-hosting-card_btn {
    min-height: 38px;
    border-radius: 3px;
    font-size: 13px;
}

.home-hosting-card--list {
    min-height: auto;
    height: auto;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.home-hosting-card--list:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.home-hosting-card--list .home-hosting-card_title {
    padding-right: 0;
    font-size: 15px;
    font-weight: 800;
}

.home-hosting-card--list .home-hosting-card_price {
    margin-bottom: 12px;
}

.home-hosting-card--list .home-hosting-card_price strong {
    font-size: 20px;
    color: var(--accent);
}

.home-hosting-card--list .home-hosting-card_price span {
    font-size: 12px;
}

.home-hosting-card--list .home-hosting-card_features {
    flex: 0 0 auto;
    margin-bottom: 0;
    min-height: 0;
    padding-bottom: 0;
}

.home-hosting-card--list .home-hosting-card_features li {
    font-size: 12px;
    margin-bottom: 6px;
}

.home-hosting-card--list .home-hosting-card_features i {
    color: var(--accent);
}

.home-hosting-card--list .home-hosting-card_more {
    font-size: 12px;
    margin-bottom: 12px;
}

.home-hosting-card--list .home-hosting-card_more--toggle {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    padding-top: 12px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.home-hosting-card--list .home-hosting-card_btn {
    min-height: 38px;
    border-radius: 3px;
    font-size: 13px;
}

.home-hosting-card--list .home-hosting-card_collapse {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.home-hosting-card--list .home-hosting-card_collapse.collapse:not(.show) {
    display: none;
    height: 0 !important;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-hosting-card--list .home-hosting-card_collapse.collapsing {
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-hosting-card--list .home-hosting-card_collapse.collapse.show {
    height: auto !important;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
}

.home-hosting-card--list .home-hosting-card_features--extra {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    min-height: 0;
}

.home-hosting-card--list .home-hosting-card_toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.home-hosting-card--list .home-hosting-card_toggle i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.home-hosting-card--list .home-hosting-card_toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.home-hosting-card--list .home-hosting-card_toggle[aria-expanded="true"] .home-hosting-card_toggle-more,
.home-hosting-card--list .home-hosting-card_toggle[aria-expanded="false"] .home-hosting-card_toggle-less {
    display: none;
}

@media (max-width: 1199.98px) {
    .home-hosting-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-hosting-grid.home-hosting-grid--list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-hosting-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hosting-grid.home-hosting-grid--list {
        grid-template-columns: 1fr;
    }
}

.home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-news-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
}

.home-news-card:hover {
    color: inherit;
}

.home-news-card_media {
    position: relative;
    display: block;
    height: 178px;
    overflow: hidden;
    background: #e2e8f0;
}

.home-news-card_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news-card_date {
    display: block;
    position: absolute;
    left: 16px;
    bottom: 14px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.home-news-card_body {
    padding: 18px;
}

.home-news-card_title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.32;
}

.home-news-card_title a {
    color: var(--ink);
}

.home-news-card_title a:hover {
    color: var(--accent);
}

.home-news-card_excerpt {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.home-news-card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-news-card_views {
    font-size: 12px;
    color: var(--accent);
    font-weight: 900;
}

.home-news-card_link {
    font-size: 14px;
    font-weight: 900;
}

.home-news-grid--home {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.home-news-card--home {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-news-card--home:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
    color: inherit;
}

.home-news-card--home .home-news-card_media {
    height: 140px;
}

.home-news-card--home .home-news-card_body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
}

.home-news-card--home .home-news-card_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.home-news-card--home .home-news-card_meta i {
    margin-right: 4px;
    color: var(--accent);
}

.home-news-card--home .home-news-card_title {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ink);
}

.home-news-card--home .home-news-card_excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.home-news-card--home .home-news-card_more {
    margin-top: auto;
    padding-top: 4px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
}

.home-news-card--home .home-news-card_more i {
    margin-left: 4px;
    font-size: 10px;
}

.home-news-card--home:hover .home-news-card_more {
    color: var(--accent-hover);
}

@media (max-width: 1199.98px) {
    .home-news-grid--home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-news-grid--home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-news-card--home .home-news-card_media {
        height: 120px;
    }

    .home-news-card--home .home-news-card_excerpt {
        -webkit-line-clamp: 1;
    }
}

.home-news-grid.home-news-grid--list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-news-grid--list .home-news-card--home .home-news-card_media {
    height: 168px;
}

@media (max-width: 1199.98px) {
    .home-news-grid.home-news-grid--list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .home-news-grid.home-news-grid--list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-news-grid--list .home-news-card--home .home-news-card_media {
        height: 120px;
    }
}


/* Inner pages */
.source-library_head,
.invoice-detail-hero,
.hosting-buy-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.invoice-detail-hero_content {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.invoice-detail-hero_content .invoice-detail-title {
    margin: 0;
}

.source-library_title,
.hosting-buy-hero_title,
.invoice-detail-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
}

.source-library_summary {
    color: var(--muted);
    margin: 4px 0 0;
}

.source-library_actions,
.source-library_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.source-library_action,
.source-library_filter-chip,
.source-library_filter-clear,
.search-page_quick-links a {
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
}

.source-library_action.is-active,
.source-library_action:hover,
.source-library_action--search {
    border-color: rgba(var(--accent-rgb), 0.24);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.08);
}

.source-library_empty {
    padding: 32px 16px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    background: #fff;
}

.source-detail-layout,
.hosting-buy-layout,
.invoice-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
}

.source-detail-preview,
.source-detail-panel,
.source-detail-content,
.hosting-buy-card,
.hosting-buy-sidebar,
.invoice-detail-card,
.invoice-detail-hero,
.hosting-order-detail-card,
.hosting-upgrade-compare-card,
.news-article-card,
.news-sidebar,
.section-sidebar,
.information-view,
.merchant-panel {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
}

.source-detail-preview_frame {
    min-height: 280px;
    background: #eef3f8;
}

.source-detail-preview_media img,
.news-article-cover img {
    width: 100%;
    display: block;
}

.news-article-card,
.news-sidebar {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.news-article-cover {
    overflow: hidden;
    background: var(--surface);
}

.news-article-cover img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
    object-position: center;
}

.news-related {
    display: grid;
    gap: 14px;
}

.news-related_item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.news-related_item:hover {
    color: inherit;
}

.news-related_thumb {
    width: 72px;
    height: 54px;
    flex: 0 0 72px;
    overflow: hidden;
    border-radius: var(--radius-xs);
    background: var(--surface);
}

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

.news-related_content {
    min-width: 0;
}

.news-related_title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 4px;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
}

.news-related_item:hover .news-related_title {
    color: var(--accent);
}

.news-related_meta {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.source-detail-panel,
.source-detail-content,
.news-article-body,
.news-sidebar,
.information-view,
.merchant-panel,
.hosting-buy-card,
.hosting-buy-sidebar,
.invoice-detail-card {
    padding: 20px;
}

.source-detail-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--ink);
}

.source-detail-pricebox {
    margin: 16px 0;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    background: rgba(var(--accent-rgb), 0.08);
}

.source-detail-pricebox_label {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.source-detail-pricebox_value,
.hosting-buy-hero_price,
.invoice-detail-hero_total {
    font-size: 28px;
    font-weight: 900;
    color: var(--accent);
}

.source-detail-highlights_title,
.merchant-result-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.source-detail-highlight,
.hosting-antiddos-feature-item {
    display: flex;
    gap: 8px;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 6px;
}

.source-detail-submit,
.invoice-detail-submit,
.source-detail-submit--modal,
.hosting-buy-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #fff;
    font-weight: 800;
}

.source-detail-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    color: var(--ink);
    font-weight: 700;
}

.source-detail-action_row {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.source-detail-action_row--split {
    grid-template-columns: 1fr 1fr;
}

.source-detail-layout_content {
    grid-column: 1 / -1;
}

.source-detail-tag {
    display: inline-flex;
    margin: 0 6px 6px 0;
    padding: 5px 8px;
    border-radius: var(--radius-xs);
    background: #eef7f6;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
}

.source-detail-tag--more {
    align-items: center;
    border: 0;
    background: var(--surface);
    color: var(--muted);
    font-family: inherit;
    line-height: 1.2;
    cursor: pointer;
}

.source-detail-tag--more:hover,
.source-detail-tag--more[data-expanded="1"] {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.source-detail-payment_option,
.hosting-buy-option {
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}

.source-detail-payment_option:has(input:checked),
.hosting-buy-option:has(input:checked) {
    border-color: rgba(var(--accent-rgb), 0.34);
    background: rgba(var(--accent-rgb), 0.06);
}

.hosting-buy-hero_badge,
.invoice-detail-pill,
.hosting-buy-hero_badge--soft {
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-xs);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.invoice-detail-pill--success { background: rgba(16, 185, 129, 0.12); color: #059669; }
.invoice-detail-pill--warning { background: rgba(245, 158, 11, 0.14); color: #b45309; }
.invoice-detail-pill--danger { background: rgba(239, 68, 68, 0.12); color: #b91c1c; }
.invoice-detail-pill--muted,
.invoice-detail-pill--soft { background: var(--surface); color: var(--muted); }

.hosting-buy-feature_item,
.hosting-order-detail-item,
.invoice-detail-stat,
.invoice-detail-list_row,
.invoice-detail-transfer_row,
.hosting-buy-summary_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hosting-buy-feature_item span:first-child,
.invoice-detail-list_row span:first-child,
.hosting-buy-summary_row span:first-child {
    color: var(--muted);
    font-weight: 700;
}

.hosting-buy-feature_item span:last-child,
.invoice-detail-list_row strong,
.hosting-buy-summary_row strong {
    color: var(--ink);
    font-weight: 800;
    text-align: right;
}

.search-page_form-main {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-page_select {
    position: relative;
}

.search-page_input {
    position: relative;
    flex: 1 1 220px;
}

.search-page_input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.search-page_input .form-control {
    padding-left: 36px;
}

.search-page_quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.search-result-grid {
    display: grid;
    gap: 12px;
}

.search-result-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
}

.search-result-card:hover {
    border-color: rgba(var(--accent-rgb), 0.34);
    color: inherit;
    box-shadow: var(--shadow-lg);
}

.search-result-card_icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    flex: 0 0 auto;
}

.search-result-card_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-card_body {
    flex: 1 1 auto;
    min-width: 0;
}

.search-result-card_title {
    display: block;
    font-weight: 800;
    color: var(--ink);
}

.search-result-card_excerpt,
.search-result-card_note,
.search-result-card_extra {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.search-result-card_badge {
    display: inline-flex;
    border-radius: var(--radius-xs);
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    margin-right: 6px;
}

.search-result-card_arrow {
    color: var(--muted-2);
}

.order-list-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.news-article-content,
.detail-content {
    color: #2a2a2a;
    font-size: 1.075em;
    line-height: 1.6;
}

.detail-content p,
.detail-content ul,
.detail-content ol,
.news-article-content p {
    margin-bottom: 16px;
}

.hosting-antiddos-section-title {
    font-weight: 800;
}

.hosting-antiddos-nameserver-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    border-radius: var(--radius-xs);
    padding: 6px 10px;
    font-weight: 700;
    font-size: 13px;
}

.hosting-antiddos-feature-box {
    display: grid;
    gap: 8px;
}

.hosting-antiddos-path-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.source-detail-preview_share {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
}

.source-detail-preview_share-toggle {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
}

.source-detail-content_head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.source-detail-section_icon,
.hosting-order-metric-icon,
.hosting-order-service-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--accent-rgb), 0.12);
    color: var(--accent);
    flex: 0 0 auto;
}

.information-list .row {
    color: var(--muted);
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
}

.information-list .row:last-child {
    border-bottom: 0;
}

.information-list b {
    color: var(--ink);
}

.media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.media-body {
    min-width: 0;
}

.action-card .btn {
    width: 100%;
    margin-bottom: 8px;
}

.merchant-panel_head,
.merchant-panel_head h2 {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 14px;
}

.merchant-field {
    margin-bottom: 16px;
}

.merchant-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.merchant-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.merchant-keybox_row,
.input-dropdown-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.merchant-keybox_input,
.input-dropdown-input {
    flex: 1 1 auto;
}

.merchant-square-btn,
.input-dropdown-toggle {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--fg);
    font-weight: 700;
    white-space: nowrap;
}

.merchant-console {
    width: 100%;
    min-height: 140px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--fg);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 12.5px;
    padding: 12px;
    resize: vertical;
}

.merchant-console--compact {
    min-height: 64px;
}

.merchant-result-block {
    margin-bottom: 14px;
}

.merchant-empty h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.merchant-note-content {
    font-size: 14px;
    color: var(--muted);
}

.domain-card {
    overflow: hidden;
}

.domain-tabs-wrapper {
    padding: 0 18px 14px;
    overflow-x: auto;
}

.nav-tabs.domain-tabs .nav-link {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
    padding: 7px 12px;
    background: var(--surface);
}

.nav-tabs.domain-tabs .nav-link.active {
    background: rgba(var(--accent-rgb), 0.1);
    border-color: rgba(var(--accent-rgb), 0.24);
    color: var(--accent);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    min-height: 88px;
}

.progress-circle {
    --percent: 0;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) calc(var(--percent) * 1%), #e2e8f0 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-circle span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.stat-info h6 {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
}

.stat-info small {
    color: var(--muted);
}

.stat-refresh {
    margin-left: auto;
    color: var(--muted-2);
}

.hover-box {
    border-radius: var(--radius);
    border-color: var(--border) !important;
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hover-box:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--accent-rgb), 0.34) !important;
    box-shadow: var(--shadow);
}

.hosting-order-service-stats_chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
}

.hosting-order-metric-card,
.hosting-order-service-stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.hosting-order-service-stat_bar {
    height: 6px;
    border-radius: var(--radius-xs);
    background: #e2e8f0;
    overflow: hidden;
    margin-top: 6px;
}

.hosting-order-service-stat_bar span {
    display: block;
    height: 100%;
    background: var(--accent);
}

.hosting-antiddos-nameserver-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hosting-antiddos-proxy-note {
    display: flex;
    gap: 8px;
    border: 1px solid rgba(245, 158, 11, 0.22);
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 14px;
}

.article-inner_title h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 5px;
}

.page-article_detail .article-inner_desc,
.article-inner_desc {
    color: var(--fg);
}

.page-article_detail img,
.article-inner_desc img {
    max-width: 100%;
    height: auto;
}

.article-inner_meta,
.meta-post {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.news-page_filter .form-control {
    min-width: 200px;
}

.section-sidebar_title {
    font-weight: 800;
    padding: 16px 18px 6px;
}

.section-sidebar_list {
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
}

.section-sidebar_list__item {
    display: flex;
    gap: 10px;
    padding: 10px 18px;
}

.item-thumb {
    width: 64px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex: 0 0 64px;
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content_title a {
    font-weight: 700;
    color: var(--ink);
    font-size: 13.5px;
}

.item-content_meta {
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 1199.98px) {
    .home-service-grid,
    .home-source-grid,
    .home-hosting-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hosting-header_title,
    .home-service-showcase_title {
        font-size: 36px;
    }
}

@media (max-width: 991.98px) {
    .source-detail-layout,
    .hosting-buy-layout,
    .invoice-detail-grid,
    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .source-detail-layout_content {
        grid-column: auto;
    }

    .source-detail-action_row--split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1023px) {
    .section-gap {
        padding: 20px 0;
    }
}

@media (max-width: 767.98px) {
    .home-service-grid,
    .home-source-grid,
    .home-hosting-grid {
        grid-template-columns: 1fr;
    }

    .home-hosting-header,
    .source-library_head,
    .invoice-detail-hero,
    .hosting-buy-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-page_form-main,
    .section-banner_button {
        flex-direction: column;
    }

    .search-page_submit,
    .section-banner .btn-light {
        width: 100%;
    }

    .header-nologin {
        display: none;
    }

    .merchant-field-grid {
        grid-template-columns: 1fr;
    }

    .home-hosting-header_title,
    .home-service-showcase_title {
        font-size: 30px;
    }
}

.page-heading-bar {
    gap: 12px;
    min-width: 0;
    flex-wrap: nowrap;
}

.page-heading-bar > .title {
    flex: 1 1 auto;
    min-width: 0;
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-heading-bar > .section-breadcrumb {
    flex-shrink: 0;
    padding: 0;
    border-top: none;
    white-space: nowrap;
}

.page-heading-bar .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
}

.page-heading-bar .breadcrumb-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.page-heading-bar .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: var(--muted-2);
    content: var(--bs-breadcrumb-divider, "/");
}

.page-heading-bar .breadcrumb-item > a {
    padding: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
}

.page-heading-bar .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 991px) {
    .page-heading-bar > .title {
        font-size: 20px;
        line-height: 1.2;
    }
}

@media (max-width: 767.98px) {
    .page-heading-bar > .title {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-heading-bar .section-breadcrumb {
        display: none;
    }
}

.source-view__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 22px;
}

.source-view__gallery,
.source-view__panel,
.source-view__article {
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.source-view__gallery {
    padding: 12px;
}

.source-view__photo {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface);
    min-height: 280px;
}

.source-view__photo .swiper,
.source-view__photo .swiper-wrapper,
.source-view__photo .swiper-slide {
    width: 100%;
    height: auto;
}

.source-view__photo .source-detail-preview_media {
    display: block;
    width: 100%;
}

.source-view__photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 280px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.source-view .source-detail-preview_share {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.source-view .share-tail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.2s ease, opacity 0.2s ease;
}

.source-view .source-detail-preview_share.is-open .share-tail {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
}

.source-view .share-tail a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
}

.source-view .source-detail-preview_share-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.source-view .source-detail-preview_share-icon--close {
    display: none;
}

.source-view .source-detail-preview_share.is-open .source-detail-preview_share-icon--share {
    display: none;
}

.source-view .source-detail-preview_share.is-open .source-detail-preview_share-icon--close {
    display: inline-block;
}

.source-view__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.source-view__thumb {
    width: 68px;
    height: 52px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--surface);
}

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

.source-view__thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.18);
}

.source-view-breadcrumb > .title {
    display: none;
}

.source-view-breadcrumb {
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .source-view-breadcrumb {
        justify-content: flex-start;
    }

    .source-view-breadcrumb > .title {
        display: block;
    }
}

.source-view__panel {
    padding: 24px 26px;
}

.source-view__title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--ink);
}

.source-view__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.source-view__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    background: var(--surface);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.source-view__meta i {
    color: var(--accent);
}

.source-view__pricebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
}

.source-view__pricebox .source-detail-pricebox_value {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    text-align: right;
}

.source-view__features {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.source-view__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13.5px;
}

.source-view__features i {
    margin-top: 3px;
    color: var(--accent);
    flex: 0 0 auto;
}

.source-view__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.source-view__actions .btn {
    flex: 1 1 160px;
    min-height: 46px;
    font-weight: 800;
}

.source-view__tags {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.source-view__tags-label {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.source-view__article {
    padding: 24px 26px;
}

.source-view__article-head {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
}

.source-view__empty {
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .source-view__hero {
        grid-template-columns: 1fr;
    }

    .source-view__photo img {
        min-height: 220px;
    }

    .source-view__title {
        font-size: 18px;
    }

    .source-view__pricebox .source-detail-pricebox_value {
        font-size: 22px;
    }

    .source-view__thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .source-view__thumb {
        flex: 0 0 68px;
    }

    .source-view__photo {
        min-height: 220px;
    }
}

.source-detail-modal_layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 16px;
    align-items: start;
}

.source-detail-modal_subtitle {
    color: var(--muted);
    font-size: 13px;
}

.source-detail-addon-collapse {
    margin-top: 12px;
}

.source-detail-addon-collapse_toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--card);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-default);
}

.source-detail-addon-collapse_toggle:hover,
.source-detail-addon-collapse_toggle[aria-expanded="true"],
.source-detail-addon-collapse_toggle.is-selected {
    border-color: rgba(var(--accent-rgb), 0.34);
    background: rgba(var(--accent-rgb), 0.06);
    color: var(--accent);
}

.source-detail-addon-collapse_text,
.source-detail-addon-collapse_meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.source-detail-addon-collapse_count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
}

.source-detail-addon-collapse_chevron {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.source-detail-addon-collapse_toggle[aria-expanded="true"] .source-detail-addon-collapse_chevron {
    transform: rotate(180deg);
}

.source-detail-addon-list {
    display: grid;
    gap: 8px;
}

.source-detail-addon-list--collapse {
    margin-top: 10px;
}

.source-detail-addon-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
}

.source-detail-addon-item:has(input:checked) {
    border-color: rgba(var(--accent-rgb), 0.34);
    background: rgba(var(--accent-rgb), 0.06);
}

.source-detail-addon-item input {
    margin-top: 3px;
    flex: 0 0 auto;
}

.source-detail-addon-item_text {
    flex: 1 1 auto;
    font-size: 13px;
    color: var(--ink);
}

.source-detail-addon-item_price {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .source-detail-modal_layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Account pages — default theme classes from test/default_assest/css/style.css
   Scoped under .account-page where a global rule would collide with homepage. */

.account-page {
    min-width: 0;
}

.account-page .text-right {
    text-align: right !important;
}

.account-page .text-left {
    text-align: left !important;
}

@media (min-width: 768px) {
    .account-page .text-md-left {
        text-align: left !important;
    }
}

.account-page .float-right {
    float: right !important;
}

.account-page .ml-1 {
    margin-left: 0.25rem !important;
}

.account-page .ml-3 {
    margin-left: 1rem !important;
}

.account-page .no-gutters {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-right: 0;
    margin-left: 0;
}

.account-page .no-gutters > .col,
.account-page .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.account-page .row.row5 {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 5px;
}

.account-page .row.row10 {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 10px;
    align-items: flex-start;
}

.account-page .row.row15 {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 15px;
}

.account-page .form-m1 form > .row.row15 + .row.row15,
.account-page .form-m1 > .row.row15 + .row.row15 {
    margin-top: 15px;
}

@media screen and (max-width: 575px) {
    .account-page .rowmb3 {
        --bs-gutter-x: 6px;
        --bs-gutter-y: 3px;
    }

    .account-page .rowmb3 > [class*="col"] {
        margin-bottom: 8px;
    }
}

/***** Custom Button — default, scoped *****/
.account-page .btn {
    display: inline-block;
    white-space: nowrap;
    border-radius: 3px;
    min-height: 0;
    height: auto;
    gap: 0;
    padding: 0.375rem 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    transform: none;
    transition: var(--transition-default);
}

.account-page .btn:hover,
.account-page .btn:focus,
.account-page .btn:active {
    transform: none;
    box-shadow: none !important;
    outline: none !important;
}

.account-page .btn:disabled {
    cursor: not-allowed;
}

.account-page .btn.btn-sm_table {
    font-size: 11px;
    height: 21px;
    max-height: 21px !important;
    min-height: 21px !important;
    line-height: 20px;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 8px;
    padding-right: 8px;
}

.account-page .btn.btn-small {
    height: 33px;
    max-height: 33px !important;
    min-height: 33px !important;
    line-height: 21px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
}

.account-page .btn.btn-default {
    height: 38.5px;
    max-height: 38.5px !important;
    min-height: 38.5px !important;
    line-height: 25px;
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
}

.account-page .btn.btn-large {
    height: 44px;
    max-height: 44px !important;
    min-height: 44px !important;
    line-height: 32px;
    font-size: 16px;
    padding-left: 14px;
    padding-right: 14px;
}

.account-page .btn-theme_primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.account-page .btn-theme_primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
}

.account-page .btn-theme_secondary {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
    color: var(--white);
}

.account-page .btn-theme_secondary:hover {
    background-color: #ec971f;
    border-color: #ec971f;
    color: var(--white);
}

.account-page .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.account-page .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: #fff;
}

.account-page .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.account-page .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

.account-page .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
}

.account-page .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #212529;
}

.account-page .btn-primary,
.account-page .btn-default.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.account-page .btn-primary:hover,
.account-page .btn-default.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #fff;
}

.account-page .btn-outline-danger {
    background: transparent;
    border: 1px solid #dc3545;
    color: #dc3545;
}

.account-page .btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

.account-page .btn-outline-success {
    background: transparent;
    border: 1px solid #28a745;
    color: #28a745;
}

.account-page .btn-outline-success:hover {
    background: #28a745;
    color: #fff;
}

.account-page .btn-block {
    display: block;
    width: 100%;
}

/***** Custom Title *****/
.account-page .title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--gray-900);
}

.account-page .sub-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--gray-800);
}

.account-page .small-title {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--gray-800);
}

@media screen and (max-width: 991px) {
    .account-page .title {
        font-size: 20px;
        line-height: 1.2;
    }

    .account-page .sub-title {
        font-size: 16px;
        line-height: 1.2;
    }
}

.account-page .description.d-flex > .title,
.account-page .description.d-flex > h1.title {
    margin-bottom: 0;
}

.account-page .page-heading-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    float: none;
    clear: both;
}

.account-page .page-heading-bar > .title,
.account-page .page-heading-bar > h1.title {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    position: static;
}

.account-page .page-heading-bar > .section-breadcrumb {
    grid-column: 2;
    grid-row: 1;
    position: static;
    inset: auto;
    float: none;
    padding: 0;
    margin: 0;
    border: 0;
    transform: none;
    align-self: center;
}

.account-page .page-heading-bar .section-breadcrumb .breadcrumb,
.account-page .page-heading-bar .section-breadcrumb .breadcrumb .breadcrumb-item > a {
    padding: 0;
    margin: 0;
    position: static;
}

.account-page .page-heading-bar + .row.row10 {
    --bs-gutter-y: 0;
    margin-top: 0;
    clear: both;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .account-page .page-heading-bar + .row.row10 > [class*="col-"] {
        margin-top: 0;
    }
}

/***** Custom Form *****/
.account-page .form-control:not(textarea) {
    height: 33px;
    min-height: 33px;
    line-height: 33px;
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 3px;
}

.account-page .form-control::placeholder {
    color: var(--gray-400);
}

.account-page .input-group-append {
    display: flex;
}

.account-page .input-group-append .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    height: 33px;
    max-height: 33px !important;
    min-height: 33px !important;
    line-height: 21px;
    padding-top: 0;
    padding-bottom: 0;
}

.account-page .input-group {
    flex-wrap: wrap;
    align-items: stretch;
}

.account-page .input-group > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.account-page .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.account-page .button-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    text-align: center;
    height: 33px;
    min-height: 33px;
    background: #F3F8FE;
    border-radius: 3px;
    border: 1px solid var(--gray-200);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    padding: 0 10px 0 36px;
    transform: none;
}

.account-page .button-social:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: none;
}

.account-page .button-social img,
.account-page .button-social i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    color: var(--primary-color);
    font-size: 20px;
}

.account-page .button-social i {
    top: calc(50% + 1px);
}

/***** Custom Label *****/
.account-page .badge-module {
    padding: 0.45em 0.6em;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 400;
}

.account-page .badge-success,
.account-page .badge-module.badge-success {
    background-color: #28a745;
    color: #fff;
}

.account-page .badge-secondary,
.account-page .badge-module.badge-secondary {
    background-color: #6c757d;
    color: #fff;
}

.account-page .badge-warning,
.account-page .badge-module.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.account-page .badge-danger,
.account-page .badge-module.badge-danger {
    background-color: #dc3545;
    color: #fff;
}

.account-page .badge-primary,
.account-page .badge-module.badge-primary {
    background-color: #007bff;
    color: #fff;
}

.account-page .badge-info,
.account-page .badge-module.badge-info {
    background-color: #17a2b8;
    color: #fff;
}

.account-page .badge-dark,
.account-page .badge-module.badge-dark {
    background-color: #343a40;
    color: #fff;
}

/***** Custom Tables *****/
.account-page .table-module td,
.account-page .table-module th {
    padding: 0.5rem;
    font-size: 13.5px;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    background: transparent;
    color: inherit;
}

.account-page .table-module tr:nth-child(even) {
    background-color: #fafafa;
}

.account-page .table-module thead th {
    white-space: nowrap;
    font-weight: 700;
    background: transparent;
    color: var(--gray-800);
}

.account-page .table-module thead td,
.account-page .table-module thead th {
    border-bottom-width: 1px;
}

.account-page .table-module.table-module_primary thead > tr:first-child > * {
    background-color: var(--primary-color);
    color: var(--white);
}

.account-page .table-module img {
    max-width: 48px;
    height: auto;
}

/***** Custom Breadcrumb *****/
.account-page .section-breadcrumb {
    border-top: none;
    padding: 0;
    margin: 0;
    position: static;
}

.account-page .section-breadcrumb .container {
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
}

.account-page .section-breadcrumb .breadcrumb .breadcrumb-item > a {
    padding: 0;
    font-size: 13px;
    color: var(--gray-600);
    display: inline-flex;
}

.account-page .section-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    float: none;
}

.account-page .section-breadcrumb .breadcrumb .breadcrumb-item > a:hover {
    color: var(--primary-color);
}

/***** Custom Alert *****/
.account-page .alert-custom {
    margin-bottom: 10px;
    border-radius: 5px;
    border-left-width: 3px;
    border-left-style: solid;
    font-size: 13.5px;
}

.account-page .alert-custom.alert-primary {
    border-left-color: #2d5683;
}

.account-page .alert-custom.alert-secondary {
    border-left-color: #88939b;
}

.account-page .alert-custom.alert-success {
    border-left-color: #1c8a35;
}

.account-page .alert-custom.alert-danger {
    border-left-color: #96212c;
}

.account-page .alert-custom.alert-warning {
    border-left-color: #9a851c;
}

.account-page .alert-custom.alert-info {
    border-left-color: #158598;
}

.account-page .alert-custom.alert-light {
    border-left-color: #5b5b5b;
    color: var(--gray-700);
}

.account-page .alert-custom.alert-dark {
    border-left-color: #3d3f42;
}

.account-page .alert-custom p:last-child {
    margin-bottom: 0;
}

.account-page .alert-custom.alert-dismissible {
    position: relative;
    padding-right: 2.75rem;
}

.account-page .alert-custom .btn-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.25rem;
    width: 0.7em;
    height: 0.7em;
    min-height: 0;
}

/***** Custom Profile *****/
.information-inner .card .card-header {
    padding-left: 10px;
    padding-right: 10px;
}

.information-inner .card .card-body {
    padding: 0;
}

.information-inner .card .card-body .information-view {
    position: relative;
    padding: 0 10px 10px;
    overflow: hidden;
}

.information-inner .card .card-body .information-list .row {
    align-items: center;
}

.information-inner .card .card-body .information-list .row:not(:last-child) {
    border-bottom: 1px dashed #5cb85c45;
}

.information-inner .card .card-body .information-list .row:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.information-inner .card .card-body .information-form {
    position: relative;
    padding: 0 10px 20px;
    overflow: hidden;
}

.information-inner .card .card-body .information-form .row {
    align-items: center;
}

.information-inner .information-list b {
    color: var(--gray-900);
    font-weight: 700;
}

.information-inner a.text-danger {
    color: #dc3545;
}

.information-inner a.text-danger:hover {
    color: #b91c1c;
}

@media screen and (max-width: 768px) {
    .information-inner .card .card-header {
        padding: 10px;
    }

    .information-inner .card .card-body .information-view,
    .information-inner .card .card-body .information-form {
        padding: 0 10px 10px;
    }
}

/***** Custom Card Profile *****/
.card-profile {
    border-radius: 3px;
    transition: var(--transition-default);
    margin-bottom: 15px;
}

.card-profile .card-body {
    padding: 12px 15px;
}

.card-profile .card-body .media {
    align-items: center;
}

.card-profile .card-body .media .avatar {
    height: 70px;
    width: 70px;
    font-size: 18px;
    flex-shrink: 0;
    background-color: rgba(247, 247, 247, .25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.card-profile .card-body .media .avatar img {
    max-width: 100%;
    height: auto;
}

.card-profile .card-body .media .media-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-profile .card-body .media .media-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

/***** Custom Card Service *****/
.card-service {
    border-radius: 3px;
    transition: var(--transition-default);
}

.card-service .card-body {
    padding: 12px 15px;
}

.card-service .card-body .media {
    align-items: center;
    flex-wrap: nowrap;
}

.card-service .card-body .media > .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.card-service .card-body .media .media-body p {
    font-size: 15px;
    margin-bottom: 5px;
}

.card-service .card-body .media .media-body h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.card-service .card-body .media .avatar {
    height: 40px;
    width: 40px;
    padding: 5px;
    font-size: 22px;
    flex-shrink: 0;
    background-color: rgba(247, 247, 247, .25) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-service .card-body .media .avatar img {
    max-width: 100%;
    height: auto;
}

.card-service + .card-service {
    margin-top: 15px;
}

a.card-service {
    text-decoration: none;
}

a.card-service:hover {
    opacity: .9;
    color: #fff;
}

.account-page .media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.account-page .media-body {
    min-width: 0;
    flex: 1 1 auto;
}

/***** Security setup / box-content *****/
.box-content {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 20px;
}

.template-1-heading {
    margin-bottom: 20px;
}

.template-1-heading h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.account-page .box-content .form-group > .btn[style*="width: 100%"],
.account-page .box-content .form-group > .btn.w-100 {
    width: 100%;
}

.account-page .card.bg-white {
    background-color: #fff;
}

.account-page .card-footer {
    background: var(--surface);
    border-color: var(--border);
}

.account-page .blockContent p svg,
.account-page .blockContent p img {
    max-width: 180px;
    height: auto;
    background: #fff;
}

/***** Admin login-box (from default admin login) *****/
.account-page .login-box {
    width: 360px;
    max-width: 100%;
    margin: 24px auto 40px;
}

.account-page .login-logo {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 300;
}

.account-page .login-logo img {
    max-height: 48px;
    width: auto;
}

.account-page .login-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px;
}

.account-page .login-box-body {
    background: #fff;
    padding: 20px;
    border: 1px solid var(--border);
    color: #666;
}

.account-page .login-box-body .form-control {
    height: 34px;
    min-height: 34px;
    border-radius: 0;
    border: 1px solid #999;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}

.account-page .has-feedback {
    position: relative;
}

.account-page .has-feedback .form-control {
    padding-right: 42.5px;
}

.account-page .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
    color: #777;
}

@media screen and (max-width: 767px) {
    .account-page .card-service .card-body .media {
        flex-wrap: wrap;
    }

    .account-page .card-service .btn.btn-small {
        width: 100%;
        margin-left: 0 !important;
    }

    .account-page .page-heading-bar {
        grid-template-columns: minmax(0, 1fr);
    }

    .account-page .section-breadcrumb {
        display: none;
    }
}

.client-module-page .client-module-grid + .client-module-grid {
    margin-top: 16px;
}

.client-module-page .merchant-panel {
    overflow: visible;
}

.client-module-page .merchant-empty .title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}

.client-module-page .col-form-label > span {
    color: var(--secondary);
}

.client-module-page .merchant-note-content,
.client-module-page .merchant-note-content p,
.client-module-page .merchant-note-content li {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
}

.client-module-page .merchant-note-content p:last-child {
    margin-bottom: 0;
}

.client-module-page .merchant-console.form-control {
    min-height: 140px;
}

.client-module-page .merchant-console--compact.form-control {
    min-height: 64px;
}

/* table-filter — no card, compact row like default */
.table-filter.form-inner {
    padding: 0;
    margin-bottom: 12px;
    border: 0;
    background: transparent;
}

.table-filter .form-m1 .form-control:not(textarea),
.table-filter .form-m1 select.form-control {
    height: 33px;
    min-height: 33px;
    line-height: 33px;
    padding-top: 0;
    padding-bottom: 0;
}

.table-filter .btn {
    min-height: 0;
}

.table-filter .btn.btn-small {
    height: 33px;
    max-height: 33px !important;
    min-height: 33px !important;
    line-height: 21px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
    gap: 4px;
}

.table-filter .rowmb3 {
    --bs-gutter-x: 5px;
    --bs-gutter-y: 0;
    align-items: center;
}

.table-filter .rowmb3 > [class*="col"] {
    margin-bottom: 0;
}

@media screen and (max-width: 575px) {
    .table-filter .rowmb3 > [class*="col"] {
        margin-bottom: 6px;
    }
}

/* invoice-page */
.invoice-page .text-danger {
    color: #dc3545;
}

.invoice-page .heading-m1 {
    margin-bottom: 10px;
}

.invoice-page .heading-m1 .title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.invoice-page .heading-m1 .title::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 80px;
    background-color: #c3c3c3;
    border-radius: 20px;
}

.invoice-page .heading-m1 .title::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: var(--primary-color, var(--accent));
    border-radius: 20px;
}

.invoice-page .invoice-pay-table tbody td:first-child {
    width: 220px;
    white-space: nowrap;
}

.account-page.invoice-page .table-module img.invoice-qr {
    max-width: 200px;
    width: 200px;
    height: auto;
}

.account-page.invoice-page .table-module .btn.btn-light {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #212529;
    min-height: 28px;
    padding: 0 8px;
}

.account-page.invoice-page .table-module .btn.btn-light:hover {
    background: #e2e6ea;
    border-color: #dae0e5;
    color: #212529;
}

.account-page.invoice-page .table-module .btn.btn-success {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

/* service-source-code */
.service-source-code .source-code-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.service-source-code .source-code-thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
    background: #fff;
}

.service-source-code .source-code-thumb a {
    min-width: 0;
    color: var(--ink);
}

.service-source-code .source-code-thumb a:hover {
    color: var(--primary-color, var(--accent));
}

.service-source-code .heading-m1 {
    margin-bottom: 10px;
}

.service-source-code .heading-m1 .title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.service-source-code .heading-m1 .title::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 80px;
    background-color: #c3c3c3;
    border-radius: 20px;
}

.service-source-code .heading-m1 .title::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: var(--primary-color, var(--accent));
    border-radius: 20px;
}

.service-source-code .table-module tbody th {
    width: 180px;
    white-space: nowrap;
    font-weight: 700;
    background: #fafafa;
    color: var(--gray-800);
}

@media screen and (max-width: 991px) {
    .service-source-code .heading-m1 .title {
        font-size: 18px;
        line-height: 1.2;
    }
}

.hosting-buy-card,
.hosting-buy-sidebar,
.invoice-detail-card {
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hosting-buy-sidebar {
    position: sticky;
    top: 88px;
    align-self: start;
}

.hosting-buy-main {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.hosting-buy-cycles,
.hosting-buy-payments,
.card-cart-fields {
    display: grid;
    gap: 8px 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hosting-buy-cycles .hosting-buy-option,
.hosting-buy-payments .hosting-buy-option {
    margin-bottom: 0;
}

.hosting-buy-option input {
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--accent);
}

@media (max-width: 575.98px) {
    .hosting-buy-cycles,
    .hosting-buy-payments,
    .card-cart-fields {
        grid-template-columns: 1fr;
    }
}

.hosting-buy-field {
    margin-bottom: 14px;
}

.hosting-buy-field > label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.hosting-buy-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #dc3545;
}

.hosting-buy-option_text {
    display: flex;
    flex: 1;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.hosting-buy-option_text em {
    font-style: normal;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

.hosting-buy-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin: 8px 0 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.hosting-buy-total span {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}

.hosting-buy-total strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

.hosting-buy-note {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.vps-os-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.vps-os-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    background: #fff;
}

.vps-os-card.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.vps-os-card_mark {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 26px solid var(--accent);
    border-left: 26px solid transparent;
    display: none;
}

.vps-os-card.is-active .vps-os-card_mark {
    display: block;
}

.vps-os-card_mark i {
    position: absolute;
    top: -24px;
    right: 2px;
    color: #fff;
    font-size: 9px;
}

.vps-os-card_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 92px;
    padding: 12px 8px 10px;
}

.vps-os-card_top img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vps-os-card_top strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    text-align: center;
}

.vps-os-card_select {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239ca3af' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding: 8px 22px 8px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    appearance: none;
}

.vps-os-card.is-active .vps-os-card_select {
    color: var(--accent);
}

.vps-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.vps-extra-item > label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

.vps-extra-item input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 4px;
    margin: 0;
    background: var(--gray-200);
    border-radius: 99px;
}

.vps-extra-item input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.vps-extra-item input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 0;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
}

.vps-extra-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .vps-os-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .vps-os-grid,
    .vps-extra-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.invoice-detail-copy {
    margin-left: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    line-height: 1;
}

.invoice-detail-copy.is-copied {
    color: #059669;
}

.invoice-detail-qr {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
    margin: 12px auto 0;
}

.invoice-detail-warn {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #dc3545;
}

/* service-hosting */
.card-cart {
    align-self: start;
}

aside.card-cart {
    position: sticky;
    top: 81px;
}

.card-cart .card-header {
    border-radius: 0;
    background-color: var(--white);
}

.card-cart .card-header .card-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color, var(--accent));
    line-height: 1.6;
    position: relative;
}

.card-cart .hosting-order-head {
    margin-bottom: 0;
}

.card-cart .hosting-order-tabs {
    margin: 0;
    padding: 0 1rem;
}

.card-cart .card-header .card-title span {
    height: 28px;
    width: 28px;
    border-radius: 4px;
    font-size: 16px;
    background-color: var(--white);
    border: 1px solid var(--primary-color, var(--accent));
    color: var(--primary-color, var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.card-cart .card-body .item:not(:last-of-type) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.card-cart .card-body .cart-name,
.card-cart .card-body .cart-name .cart-price {
    font-size: 14px;
    font-weight: 600;
}

.card-cart .card-body .cart-percent {
    font-size: 90%;
}

.card-cart .card-body .cart-price {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

.card-cart .card-body .total {
    padding: 10px 0;
}

.card-cart .card-body .total .cart-total {
    font-size: 18px;
    color: var(--gray-800);
    font-weight: 700;
}

.card-cart .card-body .total .card-total-value,
.card-cart .card-body .item .cart-price {
    text-align: right;
    font-weight: 700;
    color: #dc3545;
    font-size: 18px;
}

.card-cart .card-body .item .cart-name .cart-price {
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.card-cart .form-m1 .row.row10 + .row.row10 {
    margin-top: 8px;
}

.card-cart .form-m1 .col-7 {
    font-weight: 600;
    color: var(--gray-800);
    word-break: break-word;
    text-align: right;
}

.card-cart .card-body .info .info-item + .info-item {
    margin-top: 7px;
}

.card-cart .btn.btn-large {
    height: 44px;
    min-height: 44px;
    font-size: 16px;
    font-weight: 700;
}

.account-page .form-m1 .row.row10 + .row.row10 {
    margin-top: 8px;
}

.form-m1 .form-check {
    margin-bottom: 4px;
}

.form-m1 .form-check-label {
    font-size: 13px;
}

button[aria-expanded="false"] .hosting-feat-toggle-less,
button[aria-expanded="true"] .hosting-feat-toggle-more {
    display: none;
}

.hosting-util-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 8px 10px;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
}

.hosting-util-item:hover {
    border-color: rgba(var(--accent-rgb), 0.34);
}

.hosting-order-page .table-module tbody th,
.account-page .table-module tbody th {
    font-weight: 700;
    color: var(--gray-800);
}

@media screen and (max-width: 991px) {
    .card-cart {
        position: static;
        top: unset;
    }
}

.hosting-order-modal .modal-header {
    padding: 12px 16px;
}

.hosting-order-modal .modal-body {
    padding: 16px;
}

.hosting-order-modal .form-m1 .row-item + .row-item,
.hosting-order-modal .hosting-buy-field + .hosting-buy-field {
    margin-top: 12px;
}

.hosting-order-modal .modal-actions {
    display: flex;
    gap: 8px;
}

.hosting-order-modal .modal-actions .btn {
    flex: 1;
}

.hosting-order-modal .form-m1 .input-group .btn {
    height: 33px;
    min-height: 33px;
    padding: 0 10px;
}

.hosting-order-modal .progress {
    height: 6px;
}

.hosting-order-modal .hosting-buy-total {
    margin: 4px 0 14px;
}

.hosting-antiddos-modal .modal-header .close,
.hosting-order-modal .modal-header .close {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-auth-modal .client-auth-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
}

.client-auth-modal .client-auth-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0 12px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.client-auth-modal .client-auth-divider::before,
.client-auth-modal .client-auth-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: var(--border);
}

.client-auth-modal .button-social {
    cursor: pointer;
}

/* hosting-order-page */
.hosting-order-page .heading-m1 {
    margin-bottom: 10px;
}

.hosting-order-page .heading-m1 .title {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.hosting-order-page .heading-m1 .title::before {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 80px;
    background-color: #c3c3c3;
    border-radius: 20px;
}

.hosting-order-page .heading-m1 .title::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    height: 3px;
    width: 30px;
    background-color: var(--primary-color, var(--accent));
    border-radius: 20px;
}

.hosting-order-page .table-module tbody th {
    width: 180px;
    white-space: nowrap;
    font-weight: 700;
    background: #fafafa;
    color: var(--gray-800);
}

.hosting-order-page .form-m1 .row-item + .row-item {
    margin-top: 12px;
}

@media screen and (max-width: 991px) {
    .hosting-order-page .heading-m1 .title {
        font-size: 18px;
        line-height: 1.2;
    }
}

.account-page .page-heading-bar.hosting-order-breadcrumb > .title {
    display: none;
}

.account-page .page-heading-bar.hosting-order-breadcrumb {
    grid-template-columns: 1fr;
    justify-items: end;
    margin-bottom: 8px;
}

.hosting-order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
}

.hosting-order-head_title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.hosting-order-head_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.hosting-order-head_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.hosting-order-head_actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.account-page .hosting-order-head_actions .btn-secondary:hover {
    background: #fff;
    border-color: var(--accent);
    color: var(--ink);
}

.hosting-order-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin: 14px 0 16px;
    padding: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.hosting-order-tabs .nav-item {
    margin: 0;
}

.hosting-order-tabs .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.hosting-order-tabs .nav-link:hover,
.hosting-order-tabs .nav-link.active {
    background: transparent;
    color: var(--accent);
    border-color: transparent;
    border-bottom-color: var(--accent);
}

.hosting-order-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.hosting-order-metric {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 3px;
}

.hosting-order-metric_icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface);
    color: var(--accent);
}

.hosting-order-metric_label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 2px;
}

.hosting-order-metric_value {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.hosting-order-metric_value small {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
}

.hosting-order-metric_value .hosting-order-copy {
    font-size: 13px;
    flex: 0 0 auto;
}

.hosting-order-head_meta i {
    margin-right: 4px;
}

.hosting-order-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    margin-bottom: 16px;
}

.hosting-order-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 16px;
}

.hosting-order-body > .hosting-order-panel {
    margin-bottom: 0;
}

.hosting-order-panel_title {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
}

.hosting-order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.hosting-order-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.hosting-order-info-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
}

.hosting-order-info-item strong {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    word-break: break-word;
}

.hosting-order-copy {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 0;
    line-height: 1;
}

.hosting-order-copy:hover {
    color: var(--accent);
}

.hosting-order-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hosting-order-action {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
}

.hosting-order-action i {
    width: 16px;
    color: var(--muted);
    text-align: center;
}

.hosting-order-action:hover {
    border-color: rgba(var(--accent-rgb), 0.34);
    color: var(--ink);
    background: var(--surface);
}

.hosting-order-action:disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
    color: var(--muted);
}

.hosting-stat-rings {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.hosting-stat-ring {
    text-align: center;
    min-width: 0;
}

.hosting-stat-ring_circle {
    --p: 0;
    width: 84px;
    height: 84px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: conic-gradient(var(--accent) calc(var(--p) * 1%), var(--gray-200) 0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosting-stat-ring_hole {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hosting-stat-ring_pct {
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hosting-stat-ring_label {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
}

.hosting-stat-ring_meta {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    word-break: break-word;
}

@media screen and (max-width: 991px) {
    .hosting-order-metrics,
    .hosting-order-body,
    .hosting-order-info-grid {
        grid-template-columns: 1fr;
    }

    .hosting-stat-rings {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hosting-order-head {
        flex-direction: column;
    }

    .hosting-order-head_actions {
        width: 100%;
    }

    .hosting-order-head_actions .btn {
        flex: 1;
        justify-content: center;
    }

    .hosting-order-head_title {
        font-size: 18px;
    }
}
