html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f6f8;
    color: #0d1630;
}

.select-arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23707f96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.choice-btn.active {
    border-color: #0d1630;
    background: #0d1630;
    color: #fff;
    box-shadow: 0 16px 34px rgba(13,22,48,.18);
}
.choice-btn.active .muted,
.plan-btn.active .muted {
    color: rgba(255,255,255,.72);
}
.plan-btn.active {
    border-color: #0d1630;
    background: #0d1630;
    color: #fff;
    box-shadow: 0 16px 34px rgba(13,22,48,.18);
}

 .order-shell {
     border-radius: 34px;
     padding: 1px;
     background: linear-gradient(180deg, #dde5ee 0%, #eff3f7 100%);
 }

.order-shell-inner {
    border-radius: 33px;
    padding: 8px;
    background:
            linear-gradient(
                    180deg,
                    rgb(246, 246, 246) 0%,
                    rgba(230, 230, 230, 0.98) 45%,
                    rgb(218, 218, 218) 100%
            );
}

.order-panel {
    position: relative;
    border-radius: 25px;
    background:
            linear-gradient(
                    180deg,
                    rgba(255,255,255,.92) 0%,
                    rgba(249,250,252,.90) 100%
            );
    border: 1px solid rgba(232,237,243,.95);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95);
}

.order-mini-label {
    display: block;
    text-align: left;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #94a3b8;
    margin-bottom: 10px;
}

.order-field,
.order-select {
    height: 56px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1630;
    outline: none;
    transition: .18s ease;
}

.order-field::placeholder {
    color: #97a3b6;
    font-weight: 500;
}

.order-field:focus,
.order-select:focus {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.order-select {
    padding-right: 42px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23707f96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.order-select-native {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.bs-select {
    position: relative;
}

.bs-select-trigger {
    height: 56px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 14px 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1630;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: .18s ease;
}

.bs-select.open .bs-select-trigger,
.bs-select-trigger:focus {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
    outline: none;
}

.bs-select-value {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.bs-select-value img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.bs-select-value span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bs-select-trigger::after {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23707f96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .15s ease;
}

.bs-select.open .bs-select-trigger::after {
    transform: rotate(180deg);
}

.bs-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    padding: 6px;
    max-height: 280px;
    overflow: auto;
    display: none;
}

.bs-select.open .bs-select-dropdown {
    display: block;
}

.bs-select-option {
    width: 100%;
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    color: #0d1630;
    font-size: 14px;
    font-weight: 600;
    transition: background-color .15s ease;
}

.bs-select-option img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.bs-select-option:hover,
.bs-select-option.is-selected {
    background: #f1f5f9;
}

.order-submit {
    height: 56px;
    border-radius: 18px;
    background: #08132b;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 0 22px;
    white-space: nowrap;
    box-shadow: 0 18px 40px rgba(8,19,43,.20);
    transition: .18s ease;
}

.order-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(8,19,43,.26);
}

.order-total-box {
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background:
            linear-gradient(180deg, rgba(248,250,252,.96), rgba(255,255,255,.96));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.9),
            0 8px 30px rgba(15,23,42,.04);
}

@media (max-width: 1279px) {
    .order-horizontal-grid {
        grid-template-columns: 1fr 1fr;
    }
    .order-summary-side {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .order-horizontal-grid {
        grid-template-columns: 1fr;
    }
}

.qty-box:focus-within {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.link-helper {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9),
        0 10px 30px rgba(15,23,42,.04);
    overflow: hidden;
}

.link-helper.d-none {
    display: none !important;
}

.link-helper__status {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
}

.link-helper__status::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 5px;
    border-radius: 999px;
    flex-shrink: 0;
    background: #cbd5e1;
    box-shadow: 0 0 0 5px rgba(203,213,225,.28);
}

.link-helper__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-helper__status-title {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.01em;
    color: #0f172a;
}

.link-helper__status-text {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
    color: #64748b;
}

.link-helper--error {
    border-color: rgba(248,113,113,.34);
    background: linear-gradient(180deg, rgba(255,245,245,.96), rgba(255,250,250,.98));
}

.link-helper--error .link-helper__status::before {
    background: #ef4444;
    box-shadow: 0 0 0 5px rgba(239,68,68,.14);
}

.link-helper--error .link-helper__status-title {
    color: #b91c1c;
}

.link-helper--error .link-helper__status-text {
    color: #991b1b;
}

.link-helper--ok {
    border-color: rgba(45,212,191,.30);
    background: linear-gradient(180deg, rgba(240,253,250,.98), rgba(247,254,252,.98));
}

.link-helper--ok .link-helper__status::before {
    background: #14b8a6;
    box-shadow: 0 0 0 5px rgba(20,184,166,.14);
}

.link-helper--ok .link-helper__status-title {
    color: #0f766e;
}

.link-helper--ok .link-helper__status-text {
    color: #0f766e;
}

.order-field.link-error {
    border-color: #fca5a5;
    background: linear-gradient(180deg, #fff, #fff7f7);
    box-shadow: 0 0 0 4px rgba(239,68,68,.08);
}

.order-field.link-ok {
    border-color: #99f6e4;
    background: linear-gradient(180deg, #fff, #f3fffd);
    box-shadow: 0 0 0 4px rgba(20,184,166,.08);
}

.order-field.link-error:focus,
.order-field.link-ok:focus {
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.link-helper__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.link-helper__avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    flex-shrink: 0;
    object-fit: cover;
    background: #e2e8f0;
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 6px 16px rgba(15,23,42,.06);
}

.link-helper__preview-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-helper__preview-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-helper__preview-sub {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qty-btn:active {
    transform: scale(.98);
}

 .reviews-fade {
     background: linear-gradient(90deg, #f5f6f8 0%, rgba(245,246,248,0) 100%);
 }

.reviews-fade-right {
    background: linear-gradient(270deg, #f5f6f8 0%, rgba(245,246,248,0) 100%);
}

.reviews-track {
    display: flex;
    width: max-content;
    gap: 20px;
    will-change: transform;
}

.reviews-track-left {
    animation: reviewsMarqueeLeft 42s linear infinite;
}

.reviews-track-right {
    animation: reviewsMarqueeRight 38s linear infinite;
}

.reviews-row {
    display: flex;
    gap: 20px;
    width: max-content;
}

.review-card {
    border-radius: 28px;
    border: 1px solid rgba(221,228,237,.9);
    background: linear-gradient(180deg, rgba(248,250,252,.96), rgba(241,245,249,.92));
    padding: 28px;
    box-shadow:
            0 20px 60px rgba(15,23,42,.05),
            inset 0 1px 0 rgba(255,255,255,.9);
}

.review-quote {
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0d1630;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 650;
    color: #64748b;
    text-align: left;
    min-height: 132px;
}

.review-user {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    display: flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(226,232,240,.95);
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    flex-shrink: 0;
}

.review-name {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    text-align: left;
}

.review-date {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #8090a7;
    text-align: left;
}

@keyframes reviewsMarqueeLeft {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 10px)); }
}

@keyframes reviewsMarqueeRight {
    from { transform: translateX(calc(-50% - 10px)); }
    to { transform: translateX(0); }
}

.reviews-track:hover {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .review-card {
        padding: 22px;
        border-radius: 24px;
    }

    .review-text {
        min-height: auto;
        font-size: 15px;
    }

    .review-name {
        font-size: 17px;
    }

    .review-date {
        font-size: 14px;
    }
}

 .faq-item {
     border-bottom: 1px solid #dbe3ee;
 }

.faq-btn {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
    color: #111827;
    transition: .18s ease;
}

.faq-btn:hover {
    color: #0d1630;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1;
    color: #7b8aa0;
    transition: transform .22s ease, color .18s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #0d1630;
}

.faq-answer {
    display: none;
    padding: 0 0 18px 0;
}

.faq-answer-inner {
    max-width: 92%;
    font-size: 15px;
    line-height: 1.8;
    color: #6f7e95;
    text-align: left;
}

.cta-shell {
    position: relative;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(10,20,44,1), rgba(6,12,28,1));
    box-shadow:
            0 30px 80px rgba(15,23,42,.10),
            0 10px 30px rgba(15,23,42,.06);
}

.cta-panel {
    background:
            radial-gradient(circle at 50% 0%, rgba(31, 77, 180, .22), transparent 38%),
            linear-gradient(180deg, #071327 0%, #030915 100%);
    border: 1px solid rgba(255,255,255,.05);
}

.cta-glow {
    position: absolute;
    inset: auto 12% -20px 12%;
    height: 120px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(22, 78, 255, .12) 0%, rgba(22,78,255,0) 72%);
    filter: blur(28px);
    pointer-events: none;
}

.footer-title {
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #94a3b8;
}

.footer-link {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    color: #4f5f77;
    transition: .18s ease;
}

.footer-link:hover {
    color: #0d1630;
}

@media (max-width: 1023px) {
    .faq-btn {
        min-height: 66px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .faq-btn {
        min-height: 62px;
        font-size: 15px;
    }

    .faq-answer-inner {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }
}


.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select > .dropdown-toggle {
    height: 56px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 44px 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1630;
    box-shadow: none;
    outline: none !important;
}

.bootstrap-select > .dropdown-toggle:focus,
.bootstrap-select.show > .dropdown-toggle {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04) !important;
    background: #fff;
}

.bootstrap-select .dropdown-toggle::after {
    border: 0;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23707f96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
    margin-top: -9px;
    right: 14px;
    position: absolute;
    top: 50%;
}

.bootstrap-select .dropdown-menu {
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15,23,42,.10);
    padding: 8px;
    margin-top: 8px !important;
}

.bootstrap-select .dropdown-menu .inner {
    max-height: 280px !important;
}

.bootstrap-select .dropdown-menu li a {
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0d1630;
}

.bootstrap-select .dropdown-menu li a:hover,
.bootstrap-select .dropdown-menu li.selected a {
    background: #f4f7fb;
    color: #0d1630;
}

.bootstrap-select .filter-option {
    display: flex;
    align-items: center;
}

.cursor-pointer {
    cursor: pointer;
}



.modal {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

.modal.fade.show {
    opacity: 1;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    pointer-events: none;
    transform: translateY(-16px);
    transition: transform .2s ease-out;
}

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

.modal-content {
    pointer-events: auto;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(15, 23, 42, 0.58);
    opacity: 0;
    transition: opacity .15s linear;
}

.modal-backdrop.show {
    opacity: 1;
}

body.modal-open {
    overflow: hidden;
}

     /* =========================
        NEIROBOOST MODALS SYSTEM
        ========================= */

 .modal-backdrop.show {
     opacity: .58;
     backdrop-filter: blur(3px);
 }

.modal .modal-dialog {
    --bs-modal-width: 720px;
}

.modal .modal-content {
    position: relative;
    border: 0 !important;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(180deg, #dde5ee 0%, #eff3f7 100%);
    box-shadow:
            0 30px 80px rgba(15,23,42,.12),
            0 10px 30px rgba(15,23,42,.06);
    overflow: hidden;
}

.modal .modal-content::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 22px;
    pointer-events: none;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,.95) 0%,
            rgba(245,248,251,.97) 100%
    );
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            inset 0 0 0 1px rgba(234,240,246,.92);
}

.modal .modal-header,
.modal .modal-body,
.modal .modal-footer {
    position: relative;
    z-index: 1;
}

.modal .modal-header {
    padding: 26px 28px 0;
    background: transparent;
}

.modal .modal-body {
    padding: 22px 28px 28px;
    color: #516178;
    font-size: 15px;
    line-height: 1.75;
}

.modal .modal-title,
.modal h3,
.modal h4,
.modal h5,
.modal h6 {
    color: #0d1630;
    letter-spacing: -.03em;
}

.modal .modal-title {
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
}

.modal h3 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -.05em;
}

.modal h4 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 850;
    margin: 0 0 12px;
}

.modal h5 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
    margin: 0;
}

.modal p,
.modal span,
.modal label,
.modal li,
.modal .text-muted,
.modal .small {
    color: #6f7e95 !important;
}

.modal a {
    color: #1d4ed8;
    text-decoration: none;
    transition: .18s ease;
}

.modal a:hover {
    color: #0d1630;
}

.modal hr {
    border: 0;
    height: 1px;
    background: linear-gradient(
            90deg,
            rgba(221,228,237,0) 0%,
            rgba(221,228,237,1) 15%,
            rgba(221,228,237,1) 85%,
            rgba(221,228,237,0) 100%
    );
    opacity: 1;
}

/* close */
.modal .btn-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    margin: 0;
    padding: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 6px 16px rgba(15,23,42,.04);
    opacity: 1;
    transition: .18s ease;
}

.modal .btn-close:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #d4dde8;
    box-shadow: 0 10px 20px rgba(15,23,42,.06);
}

.modal .btn-close:focus {
    box-shadow: 0 0 0 4px rgba(15,23,42,.05);
    outline: none;
}

.modal .btn-close img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* =========================
   FORM ELEMENTS
   ========================= */

.modal input[type="text"],
.modal input[type="email"],
.modal input[type="password"],
.modal input[type="number"],
.modal textarea,
.modal select,
.modal .form-control {
    height: 56px;
    width: 100%;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 600;
    color: #0d1630 !important;
    outline: none;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 4px 14px rgba(15,23,42,.02);
    transition: .18s ease;
}

.modal textarea {
    min-height: 120px;
    height: auto;
    padding: 14px 16px;
    resize: vertical;
}

.modal input::placeholder,
.modal textarea::placeholder,
.modal .form-control::placeholder {
    color: #97a3b6;
    font-weight: 500;
}

.modal input:focus,
.modal textarea:focus,
.modal select:focus,
.modal .form-control:focus {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.modal .input-group {
    gap: 10px;
    flex-wrap: nowrap;
}

.modal .input-group > .form-control,
.modal .input-group > .btn {
    border-radius: 16px !important;
}

.modal .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 14px;
    min-height: 56px;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 4px 14px rgba(15,23,42,.02);
}

.modal .input-wrapper input {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0;
    height: 54px;
}

.modal .input-wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #f4f7fb;
    border: 1px solid #e2e8f0;
}

.modal .input-wrapper a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* =========================
   BUTTONS
   ========================= */

.modal button,
.modal .btn,
.modal .pay,
.modal .confirm__order,
.modal .btn-change-password,
.modal .bottom_button button,
.modal .settings_group button,
.modal .networks_group button,
.modal .reset_password button,
.modal .verification_group button,
.modal .new_passwords button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border: 0;
    border-radius: 18px;
    background: #08132b;
    color: #fff !important;
    padding: 0 22px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 18px 40px rgba(8,19,43,.20);
    transition: .18s ease;
}

.modal button:hover,
.modal .btn:hover,
.modal .pay:hover,
.modal .confirm__order:hover,
.modal .btn-change-password:hover,
.modal .bottom_button button:hover,
.modal .settings_group button:hover,
.modal .networks_group button:hover,
.modal .reset_password button:hover,
.modal .verification_group button:hover,
.modal .new_passwords button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(8,19,43,.26);
}

.modal .btn-outline-primary,
.modal .nb-cart-continue,
.modal .nb-cart-section__close {
    background: #fff !important;
    color: #0d1630 !important;
    border: 1px solid #dbe3ee !important;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.modal .btn-outline-primary:hover,
.modal .nb-cart-continue:hover,
.modal .nb-cart-section__close:hover {
    background: #f8fafc !important;
    border-color: #cfd9e5 !important;
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

.modal .btn-primary,
.modal .text-bg-primary,
.modal .violet-bg {
    background: #08132b !important;
    border-color: #08132b !important;
    color: #fff !important;
}

.modal .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,.08);
}

/* =========================
   CARDS / PANELS
   ========================= */

.modal .card,
.modal .nb-cart-card,
.modal .nb-cart-section,
.modal .nb-cart-sidebar,
.modal .left_basket_group,
.modal .right_payment_group,
.modal .details_group,
.modal .to_paid {
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.95)) !important;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 28px rgba(15,23,42,.04) !important;
}

.modal .card-body {
    padding: 22px;
}

.modal .nb-cart-modal {
    min-height: 100vh;
    border-radius: 0 !important;
}

.modal .nb-cart-modal::before {
    inset: 0;
    border-radius: 0 !important;
}

.modal .nb-cart-modal__header {
    padding: 24px 26px 0;
}

.modal .nb-cart-modal__body {
    padding: 20px 26px 28px;
}

.modal .nb-cart-modal__eyebrow,
.modal .nb-cart-section__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.modal .nb-cart-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.modal .nb-cart-section__head h4,
.modal .nb-cart-section__head h3 {
    margin: 0;
}

.modal .detail,
.modal .total,
.modal .top_total {
    color: #0d1630;
}

.modal .detail p,
.modal .total h4,
.modal .top_total h5 {
    color: #0d1630 !important;
    font-weight: 700;
}

/* =========================
   PAYMENT METHODS
   ========================= */

.modal .method {
    cursor: pointer;
    transition: .18s ease;
    border-radius: 22px !important;
    border: 1px solid #e2e8f0 !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.95)) !important;
}

.modal .method:hover {
    transform: translateY(-1px);
    border-color: #d5dfeb !important;
    box-shadow: 0 16px 34px rgba(15,23,42,.06) !important;
}

.modal .method .card-body {
    padding: 18px;
}

.modal .method img {
    max-width: 72px;
    object-fit: contain;
}

.modal .method h6 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: #0d1630;
}

/* =========================
   ALERT / INFO MODAL
   ========================= */

.service-alert__info .modal-dialog {
    max-width: 760px;
}

.service-alert__info .modal-body > .mb-3 {
    border-radius: 20px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,250,252,.93));
    border: 1px solid #e7edf4;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.service-alert__info .text-uppercase {
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .14em;
}

#serviceExecutionTime,
#serviceLargeDesc,
#serviceAlert {
    color: #0d1630;
    font-size: 15px;
    line-height: 1.75;
    font-weight: 600;
}

#serviceAlertWrap.alert-warning {
    border: 1px solid rgba(245, 158, 11, .18);
    background: linear-gradient(180deg, rgba(255,251,235,.96), rgba(255,247,237,.96));
    color: #92400e;
    border-radius: 20px;
    padding: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

#serviceAlertWrap .fw-semibold {
    color: #92400e !important;
    font-weight: 800 !important;
}

/* =========================
   CUSTOM SELECTS
   ========================= */

.modal .custom-select {
    position: relative;
    user-select: none;
}

.modal .custom-select .selected {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 16px;
    color: #0d1630;
    font-size: 15px;
    font-weight: 600;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 4px 14px rgba(15,23,42,.02);
    cursor: pointer;
    transition: .18s ease;
}

.modal .custom-select .selected::after {
    content: "";
    margin-left: auto;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23707f96' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
    background-size: 18px;
    transition: transform .2s ease;
}

.modal .custom-select.open .selected {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.modal .custom-select.open .selected::after {
    transform: rotate(180deg);
}

.modal .custom-select .selected img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.modal .custom-select .options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    display: none;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15,23,42,.10);
}

.modal .custom-select.open .options {
    display: block;
}

.modal .custom-select .option {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-radius: 12px;
    padding: 10px 12px;
    color: #0d1630;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: .18s ease;
}

.modal .custom-select .option:hover {
    background: #f4f7fb;
}

/* =========================
   PREVIEWS / FILES
   ========================= */

.modal .img_group_file,
.modal .new-ticket-preview-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.modal .img_block {
    position: relative;
    width: 78px;
    height: 78px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 6px 16px rgba(15,23,42,.04);
}

.modal .img_file {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal .img_back {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    padding: 4px;
    box-shadow: 0 4px 10px rgba(15,23,42,.08);
}

/* =========================
   ACCOUNT / SETTINGS
   ========================= */

.modal .name_profile {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 22px;
}

.modal .img_profile img {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 20px rgba(15,23,42,.05);
    background: #fff;
}

.modal .img_profile p,
.modal .right_name_text p,
.modal .settings_group p,
.modal .networks_group p,
.modal .reset_password p,
.modal .verification_group p,
.modal .new_passwords p,
.modal .password_last,
.modal .new_password,
.modal .emeil_text {
    margin: 0 0 8px;
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.modal .settings_group h4 {
    margin-top: 8px;
}

.modal .change_password {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    background: #fff !important;
    color: #0d1630 !important;
    border: 1px solid #dbe3ee !important;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.modal .change_password svg {
    width: 18px;
    height: 18px;
}

.modal .change_password svg path {
    fill: #08132b;
}

.modal .account-modal__title-wrap {
    min-width: 0;
}

.modal .account-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.modal .account-modal__intro {
    max-width: 440px;
    margin-top: 10px !important;
    font-size: 14px;
    line-height: 1.6;
}

.modal .account-modal__section {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 10px 24px rgba(15,23,42,.04);
}

.modal .account-modal__section + .account-modal__section {
    margin-top: 16px;
}

.modal .account-modal__section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.modal .account-modal__section-head h4 {
    margin: 0;
}

.modal .account-modal__section-head span {
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
    text-align: right;
}

.modal .account-modal__section--security {
    margin-top: 16px;
}

.modal .account-modal__submit,
.modal .change_password_modal .btn-change-password {
    width: 100%;
    margin-top: 16px;
}

#accountSettingsModal .modal-header,
#changePasswordModal .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 28px 0;
}

#accountSettingsModal .btn-close,
#changePasswordModal .btn-close {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: auto;
}

#accountSettingsModal .modal-body,
#changePasswordModal .modal-body {
    padding-top: 18px;
}

#accountSettingsModal .settings_group,
#changePasswordModal .settings_group,
#accountSettingsModal #profileForm,
#changePasswordModal #changePasswordForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#accountSettingsModal .account-modal__section,
#changePasswordModal .account-modal__section {
    margin: 0;
}

#accountSettingsModal .right_name_text,
#changePasswordModal .account-modal__section {
    display: flex;
    flex-direction: column;
}

#accountSettingsModal .right_name_text input + p,
#changePasswordModal .current-password-block + p,
#changePasswordModal .enter_new_password + input {
    margin-top: 16px;
}

#accountSettingsModal .img_profile p,
#accountSettingsModal .right_name_text p,
#changePasswordModal .password_last,
#changePasswordModal .new_password,
#changePasswordModal .emeil_text {
    margin-bottom: 10px;
}

#accountSettingsModal .right_name_text input[readonly] {
    background: #f8fafc;
}

#newTicketModal .modal-dialog {
    max-width: 640px;
}

#newTicketModal .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 28px 0;
}

#newTicketModal .btn-close {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-left: auto;
}

#newTicketModal .modal-body {
    padding-top: 18px;
}

#newTicketModal .new_appeal_group,
#newTicketModal #createTicketForm {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#newTicketModal .new_appeal_group {
    padding: 0;
}

#newTicketModal .support-ticket-modal__label {
    margin: 0 0 10px;
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

#newTicketModal .support-ticket-modal__message {
    margin: 0;
}

#newTicketModal .support-ticket-modal__message input {
    height: 54px;
}

#newTicketModal .bottom_button {
    margin-top: 4px;
}

#newTicketModal #newTicketSubmitBtn {
    width: 100%;
}

/* =========================
   CODE INPUT
   ========================= */

.modal .code-inputs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.modal .code-inputs input {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    padding: 0;
}

/* =========================
   IMAGE PREVIEW MODAL
   ========================= */

.image-preview-modal .modal-content {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.image-preview-modal .modal-content::before {
    display: none;
}

.image-preview-modal .modal-body {
    padding: 0 !important;
}

.image-preview-modal #modalImg {
    max-height: 86vh;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(15,23,42,.22);
    background: #fff;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 991px) {
    .modal .modal-header {
        padding: 20px 18px 0;
    }

    .modal .modal-body,
    .modal .nb-cart-modal__body {
        padding: 18px;
    }

    .modal .modal-title {
        font-size: 22px;
    }

    .modal h3 {
        font-size: 24px;
    }

    .modal .card-body {
        padding: 18px;
    }

    .modal .name_profile {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .modal .modal-content {
        border-radius: 22px;
    }

    .modal .modal-content::before {
        inset: 6px;
        border-radius: 16px;
    }

    .modal .modal-header {
        padding: 18px 16px 0;
    }

    .modal .modal-body {
        padding: 16px;
        font-size: 14px;
        line-height: 1.72;
    }

    .modal .modal-title {
        font-size: 20px;
    }

    .modal h3 {
        font-size: 22px;
        line-height: 1.04;
    }

    .modal h4 {
        font-size: 18px;
    }

    .modal h5 {
        font-size: 17px;
    }

    .modal input[type="text"],
    .modal input[type="email"],
    .modal input[type="password"],
    .modal input[type="number"],
    .modal textarea,
    .modal select,
    .modal .form-control {
        height: 52px;
        border-radius: 16px;
        font-size: 14px;
    }

    .modal .input-wrapper {
        min-height: 52px;
        border-radius: 16px;
    }

    .modal button,
    .modal .btn,
    .modal .pay,
    .modal .confirm__order,
    .modal .btn-change-password,
    .modal .bottom_button button,
    .modal .settings_group button,
    .modal .networks_group button,
    .modal .reset_password button,
    .modal .verification_group button,
    .modal .new_passwords button {
        min-height: 52px;
        border-radius: 16px;
        font-size: 14px;
    }

    .modal .btn-close {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
    }

    .modal .code-inputs {
        gap: 8px;
    }

    .modal .code-inputs input {
        font-size: 18px;
    }
}

.basket-modal.show {
    display: block;
}

body.modal-open {
    overflow: hidden;
}

.cart-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(221, 228, 237, .9);
    border-radius: 18px;

    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.94) 100%);
    color: #0d1630;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;

    box-shadow:
            0 18px 40px rgba(15,23,42,.12),
            0 6px 18px rgba(15,23,42,.06),
            inset 0 1px 0 rgba(255,255,255,.95);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
            transform .22s ease,
            opacity .22s ease,
            box-shadow .22s ease,
            background .22s ease;
}

.cart-fab:hover {
    transform: translateY(-2px);
    box-shadow:
            0 24px 50px rgba(15,23,42,.16),
            0 10px 24px rgba(15,23,42,.08),
            inset 0 1px 0 rgba(255,255,255,.98);
}

.cart-fab:active {
    transform: translateY(0);
}

.cart-fab .js-sum {
    color: #08132b;
    font-weight: 900;
    white-space: nowrap;
}

.cart-fab--top {
    bottom: auto;
    top: 18px;
}

.cart-fab.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(.98);
}

.cart-fab:not(.is-hidden) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

@media (max-width: 640px) {
    .cart-fab {
        right: 12px;
        left: 12px;
        bottom: 12px;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 16px;
        font-size: 14px;
    }

    .cart-fab--top {
        top: auto;
        bottom: 12px;
    }
}

 .basket-modal {
     backdrop-filter: blur(3px);
     -webkit-backdrop-filter: blur(3px);
 }

.basket-modal .modal-dialog {
    margin: 0;
    max-width: none;
}

.basket-modal .modal-content.nb-cart-modal {
    min-height: 100vh;
    border: 0 !important;
    border-radius: 0 !important;
    background:
            linear-gradient(180deg, #dde5ee 0%, #eff3f7 100%);
    box-shadow: none !important;
    padding: 1px;
    position: relative;
}

.basket-modal .modal-content.nb-cart-modal::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 26px;
    background:
            linear-gradient(
                    180deg,
                    rgba(255,255,255,.95) 0%,
                    rgba(245,248,251,.97) 100%
            );
    border: 1px solid rgba(232,237,243,.95);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 20px 50px rgba(15,23,42,.06);
    pointer-events: none;
}

.basket-modal .nb-cart-modal__header,
.basket-modal .nb-cart-modal__body {
    position: relative;
    z-index: 2;
}

/* header */
.basket-modal .nb-cart-modal__header {
    padding: 24px 28px 0;
    border-bottom: 0 !important;
    background: transparent;
}

.basket-modal .nb-cart-modal__eyebrow,
.basket-modal .nb-cart-section__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.basket-modal .modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #0d1630;
    font-size: 30px;
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.05em;
}

.basket-modal #basketCount.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 0;
    background: #08132b !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(8,19,43,.18);
}

.basket-modal .btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    margin: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 6px 16px rgba(15,23,42,.04);
    opacity: 1;
    transition: .18s ease;
}

.basket-modal .btn-close:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #d4dde8;
    box-shadow: 0 10px 20px rgba(15,23,42,.06);
}

.basket-modal .btn-close:focus {
    box-shadow: 0 0 0 4px rgba(15,23,42,.05);
}

/* body */
.basket-modal .nb-cart-modal__body {
    padding: 22px 28px 28px;
}

/* columns helpers */
.basket-modal .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* cards / panels */
.basket-modal .nb-cart-section,
.basket-modal .nb-cart-card,
.basket-modal .right_payment_group {
    border-radius: 26px;
    border: 1px solid #e2e8f0 !important;
    background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.95)) !important;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 28px rgba(15,23,42,.04) !important;
}

.basket-modal .nb-cart-section,
.basket-modal .right_payment_group {
    padding: 20px;
}

.basket-modal .nb-cart-card .card-body {
    padding: 20px;
}

.basket-modal .nb-cart-section__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.basket-modal .nb-cart-section__head h4,
.basket-modal .title_block,
.basket-modal .card-title,
.basket-modal .payment_methods h4,
.basket-modal .top_total h5,
.basket-modal .total h4 {
    color: #0d1630;
    letter-spacing: -.03em;
}

.basket-modal .nb-cart-section__head h4,
.basket-modal .title_block {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.basket-modal .card-title,
.basket-modal .payment_methods h4,
.basket-modal .top_total h5 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
}

.basket-modal .total h4 {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    margin: 0;
}

/* secondary mobile button */
.basket-modal .nb-cart-section__close,
.basket-modal .nb-cart-continue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    background: #fff;
    color: #0d1630;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    transition: .18s ease;
}

.basket-modal .nb-cart-section__close:hover,
.basket-modal .nb-cart-continue:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #cfd9e5;
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

/* inputs */
.basket-modal .form-control,
.basket-modal .cart-promo-input,
.basket-modal .cart-email-input {
    height: 52px;
    border-radius: 16px !important;
    border: 1px solid #dbe3ee !important;
    background: #fff !important;
    padding: 0 16px !important;
    font-size: 15px;
    font-weight: 600;
    color: #0d1630 !important;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 4px 14px rgba(15,23,42,.02) !important;
    transition: .18s ease;
}

.basket-modal .form-control::placeholder,
.basket-modal .cart-promo-input::placeholder,
.basket-modal .cart-email-input::placeholder {
    color: #97a3b6;
    font-weight: 500;
}

.basket-modal .form-control:focus,
.basket-modal .cart-promo-input:focus,
.basket-modal .cart-email-input:focus {
    border-color: #c5d0de !important;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04) !important;
}

.basket-modal .input-group {
    gap: 10px;
    flex-wrap: nowrap;
}

.basket-modal .input-group > .form-control,
.basket-modal .input-group > .btn {
    flex: initial;
}

.basket-modal .input-group > .form-control {
    width: 100%;
}

/* buttons */
.basket-modal .cart-promo-apply,
.basket-modal .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px !important;
    border: 1px solid #dbe3ee !important;
    background: #fff !important;
    color: #0d1630 !important;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    transition: .18s ease;
}

.basket-modal .cart-promo-apply:hover,
.basket-modal .btn-outline-primary:hover {
    transform: translateY(-1px);
    background: #f8fafc !important;
    border-color: #cfd9e5 !important;
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

.basket-modal .pay.confirm__order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 18px;
    border: 0;
    background: #08132b !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(8,19,43,.20);
    transition: .18s ease;
}

.basket-modal .pay.confirm__order:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(8,19,43,.26);
}

/* detail rows */
.basket-modal .detail,
.basket-modal .total,
.basket-modal .top_total {
    color: #0d1630;
}

.basket-modal .detail p {
    margin: 0;
    color: #0d1630;
    font-size: 15px;
    font-weight: 600;
}

.basket-modal .detail span,
.basket-modal #basketSubtotal,
.basket-modal #basketDiscount {
    color: #0d1630;
    font-size: 15px;
    font-weight: 700;
}

.basket-modal #basketTotal,
.basket-modal #basketPayNow {
    color: #0d1630;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.04em;
}

.basket-modal hr {
    border: 0;
    height: 1px;
    opacity: 1;
    background: linear-gradient(
            90deg,
            rgba(221,228,237,0) 0%,
            rgba(221,228,237,1) 15%,
            rgba(221,228,237,1) 85%,
            rgba(221,228,237,0) 100%
    );
}

/* promo hint / text */
.basket-modal .small,
.basket-modal .text-muted,
.basket-modal p.text-muted {
    color: #6f7e95 !important;
    font-size: 13px;
    line-height: 1.65;
}

.basket-modal .cart-promo-hint a,
.basket-modal .to_paid a.text-decoration-none {
    color: #1d4ed8 !important;
    text-decoration: none !important;
    font-weight: 700;
}

.basket-modal .cart-promo-hint a:hover,
.basket-modal .to_paid a.text-decoration-none:hover {
    color: #0d1630 !important;
}

/* payment methods */
.basket-modal .method {
    cursor: pointer;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    background:
            linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.95));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 28px rgba(15,23,42,.04);
    transition: .18s ease;
}

.basket-modal .method:hover {
    transform: translateY(-1px);
    border-color: #e2e8f0 !important;
    box-shadow: 0 16px 34px rgba(15,23,42,.06) !important;
}

.basket-modal .method.active,
.basket-modal .method[aria-checked="true"] {
    border: 2px solid #08132b !important;
    box-shadow: 0 16px 34px rgba(13,22,48,.18) !important;
}

.basket-modal .method .card-body {
    padding: 18px;
}

.basket-modal .method h6 {
    margin: 0 0 4px;
    color: #0d1630;
    font-size: 15px;
    font-weight: 800;
}

.basket-modal .method p {
    margin: 0;
    color: #6f7e95 !important;
    font-size: 13px;
    line-height: 1.45;
}

.basket-modal .method img {
    display: block;
    object-fit: contain;
}

/* sticky sidebar spacing */
.basket-modal .nb-cart-sidebar {
    padding: 20px;
}

/* responsive */
@media (max-width: 1199px) {
    .basket-modal .modal-title {
        font-size: 28px;
    }

    .basket-modal .nb-cart-section__head h4,
    .basket-modal .title_block {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .basket-modal .nb-cart-modal__header {
        padding: 20px 18px 0;
    }

    .basket-modal .nb-cart-modal__body {
        padding: 18px;
    }

    .basket-modal .nb-cart-section,
    .basket-modal .right_payment_group {
        padding: 16px;
    }

    .basket-modal .nb-cart-card .card-body {
        padding: 16px;
    }
}

@media (max-width: 767px) {
    .basket-modal .modal-content.nb-cart-modal::before {
        inset: 6px;
        border-radius: 18px;
    }

    .basket-modal .modal-title {
        font-size: 24px;
    }

    .basket-modal .nb-cart-section__head h4,
    .basket-modal .title_block {
        font-size: 20px;
    }

    .basket-modal .card-title,
    .basket-modal .payment_methods h4,
    .basket-modal .top_total h5 {
        font-size: 17px;
    }

    .basket-modal .form-control,
    .basket-modal .cart-promo-input,
    .basket-modal .cart-email-input,
    .basket-modal .cart-promo-apply,
    .basket-modal .btn-outline-primary,
    .basket-modal .nb-cart-section__close,
    .basket-modal .nb-cart-continue {
        min-height: 50px;
        height: 50px;
        font-size: 14px;
    }

    .basket-modal .pay.confirm__order {
        min-height: 52px;
        font-size: 14px;
    }

    .basket-modal .input-group {
        flex-direction: column;
    }

    .basket-modal .input-group > .btn,
    .basket-modal .input-group > .form-control {
        width: 100%;
    }

    .basket-modal #basketTotal,
    .basket-modal #basketPayNow {
        font-size: 22px;
    }
}

 .basket-modal .container-fluid {
     width: 100%;
     padding-left: 0;
     padding-right: 0;
 }

.basket-modal .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
}

.basket-modal .row > * {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.basket-modal .g-4 {
    gap: 1rem;
}

.basket-modal .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.basket-modal .h-100 {
    height: 100%;
}

.basket-modal .d-lg-none {
    display: inline-flex;
}

.basket-modal .position-sticky {
    position: sticky;
}

.basket-modal .top-0 {
    top: 0;
}

/* lg >= 992px */
@media (min-width: 992px) {
    .basket-modal .col-lg-8 {
        flex: 0 0 calc(66.666666% - .5rem);
        max-width: calc(66.666666% - .5rem);
    }

    .basket-modal .col-lg-4 {
        flex: 0 0 calc(33.333333% - .5rem);
        max-width: calc(33.333333% - .5rem);
    }

    .basket-modal .d-lg-none {
        display: none !important;
    }
}

/* mobile stacking safety */
@media (max-width: 991px) {
    .basket-modal .col-lg-8,
    .basket-modal .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .basket-modal .position-sticky {
        position: static;
    }
}

.basket_cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nb-cart-item {
    position: relative;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.95));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 28px rgba(15,23,42,.04);
    transition: .18s ease;
}

.nb-cart-item:hover {
    transform: translateY(-1px);
    border-color: #d5dfeb;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 18px 34px rgba(15,23,42,.06);
}

.nb-cart-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.nb-cart-item__service {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.nb-cart-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    border: 1px solid #e5ebf2;
    background: #fff;
    box-shadow: 0 4px 16px rgba(15,23,42,.04);
}

.nb-cart-item__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.nb-cart-item__content {
    min-width: 0;
}

.nb-cart-item__content h5 {
    margin: 0;
    color: #0d1630;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.03em;
}

.nb-cart-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.nb-cart-item__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #f4f7fb;
    color: #5f7088;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.nb-cart-item__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 6px 16px rgba(15,23,42,.04);
    transition: .18s ease;
    color: #f1c9c9;
}

.nb-cart-item__remove:hover {
    transform: translateY(-1px);
    background: #fff5f5;
    border-color: #f1c9c9;
    box-shadow: 0 10px 20px rgba(15,23,42,.06);
}

.nb-cart-item__remove img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.nb-cart-item__grid {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    gap: 12px;
}

.nb-cart-item__cell {
    border-radius: 18px;
    border: 1px solid #e7edf4;
    background: rgba(255,255,255,.82);
    padding: 14px 14px 13px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.88);
    min-width: 0;
}

.nb-cart-item__cell p {
    margin: 0 0 8px;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.nb-cart-item__cell h6 {
    margin: 0;
    color: #0d1630;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: -.03em;
}

.nb-cart-item__cell--link a {
    display: inline-block;
    max-width: 100%;
    color: #1d4ed8;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
    transition: .18s ease;
}

.nb-cart-item__cell--link a:hover {
    color: #0d1630;
}

.nb-cart-item__cell--price {
    background: linear-gradient(180deg, rgba(244,247,251,.92), rgba(255,255,255,.95));
}

.nb-cart-item__cell--price h6 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.04em;
}

@media (max-width: 900px) {
    .nb-cart-item {
        padding: 16px;
        border-radius: 22px;
    }

    .nb-cart-item__content h5 {
        font-size: 17px;
    }

    .nb-cart-item__grid {
        grid-template-columns: 1fr;
    }

    .nb-cart-item__cell h6 {
        font-size: 17px;
    }

    .nb-cart-item__cell--price h6 {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .nb-cart-item {
        padding: 14px;
        border-radius: 20px;
    }

    .nb-cart-item__head {
        gap: 12px;
        margin-bottom: 14px;
    }

    .nb-cart-item__service {
        gap: 12px;
    }

    .nb-cart-item__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
    }

    .nb-cart-item__content h5 {
        font-size: 16px;
        line-height: 1.2;
    }

    .nb-cart-item__meta {
        margin-top: 8px;
        gap: 6px;
    }

    .nb-cart-item__meta span {
        font-size: 11px;
        min-height: 26px;
        padding: 0 9px;
    }

    .nb-cart-item__remove {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
    }

    .nb-cart-item__cell {
        border-radius: 16px;
        padding: 12px;
    }

    .nb-cart-item__cell h6 {
        font-size: 16px;
    }

    .nb-cart-item__cell--link a {
        font-size: 13px;
    }
}

.basket-modal .nb-cart-modal__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.basket-modal .nb-cart-modal__header > div {
    display: flex;
    flex-direction: column;
}

.basket-modal .btn-close {
    align-self: center;
}

.basket-modal .payment_methods .menthods_group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.basket-modal .payment_methods .col-6 {
    width: auto;
    max-width: none;
    padding: 0;
}

.basket-modal .payment_methods .method {
    width: 100%;
    min-height: 66px;
    padding: 10px;
    border-radius: 18px !important;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.basket-modal .payment_methods .method .card-body {
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.basket-modal .payment_methods .method img {
    max-height: 18px !important;
    width: auto;
    object-fit: contain;
}

.basket-modal .payment_methods .method h6 {
    margin: 0;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
}

.basket-modal .payment_methods .method p {
    margin: 0;
    font-size: 11px;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .basket-modal .payment_methods .menthods_group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

button {
    cursor: pointer;
}

.basket-modal .input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
}

.basket-modal .input-group .cart-promo-input {
    flex: 1 1 auto;
    min-width: 0;
}

.basket-modal .input-group .cart-promo-apply {
    flex: 0 0 auto;
    white-space: nowrap;
}

.basket-modal .btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0d1630 !important;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 6px 16px rgba(15,23,42,.04);
    transition: .18s ease;
}

.basket-modal .btn-close:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #d4dde8;
    box-shadow: 0 10px 20px rgba(15,23,42,.06);
}
.basket-modal .details_group .card-body {
    display: block;
    padding: 20px;
}

.basket-modal .details_group .card-title {
    margin: 0 0 14px !important;
    color: #0d1630;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.03em;
}

.basket-modal .details_group .details_group__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.basket-modal .details_group .detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 88px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid #e7edf4;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}

.basket-modal .details_group .detail p {
    margin: 0 0 10px !important;
    color: #7b8aa0;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.basket-modal .details_group .detail span {
    color: #0d1630;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.basket-modal .details_group .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 72px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid #dbe3ee;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 8px 22px rgba(15,23,42,.03);
}

.basket-modal .details_group .total h4 {
    margin: 0 !important;
    color: #0d1630;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.basket-modal .details_group .total #basketTotal {
    color: #08132b;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

@media (max-width: 640px) {
    .basket-modal .details_group .details_group__row {
        grid-template-columns: 1fr;
    }

    .basket-modal .details_group .total {
        padding: 14px 16px;
    }

    .basket-modal .details_group .total h4 {
        font-size: 17px;
    }

    .basket-modal .details_group .total #basketTotal {
        font-size: 21px;
    }
}

.registration_page {
    position: relative;
    min-height: 100vh;
    padding: 36px 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration_page .container {
    width: 100%;
}

.registration_page .about_block {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    border-radius: 34px;
    padding: 1px;
    background: linear-gradient(180deg, #dde5ee 0%, #eff3f7 100%);
    box-shadow:
            0 24px 70px rgba(15,23,42,.05),
            0 8px 28px rgba(15,23,42,.03);
}

.registration_page .about_block::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 26px;
    pointer-events: none;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,.94) 0%,
            rgba(245,248,251,.97) 100%
    );
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            inset 0 0 0 1px rgba(234,240,246,.92);
}

.registration_page .left_register {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    padding: 34px 34px 30px;
    background: linear-gradient(
            180deg,
            rgba(255,255,255,.98) 0%,
            rgba(248,250,252,.95) 100%
    );
    border: 1px solid rgba(232,237,243,.95);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.96);
}

.registration_page form {
    margin: 0;
}

.registration_page .return_home {
    margin-bottom: 22px;
}

.registration_page .return_home a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6f7e95;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    transition: .18s ease;
}

.registration_page .return_home a::before {
    content: "←";
    font-size: 15px;
    line-height: 1;
}

.registration_page .return_home a:hover {
    color: #0d1630;
}

.registration_page h2 {
    margin: 0 0 24px;
    color: #0d1630;
    font-size: clamp(30px, 4vw, 46px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.05em;
}

.registration_page .input_groupp + .input_groupp {
    margin-top: 16px;
}

.registration_page .input_groupp span {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.registration_page .input_groupp input {
    display: block;
    width: 100%;
    height: 58px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    padding: 0 18px;
    color: #0d1630;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 4px 14px rgba(15,23,42,.02);
    transition: .18s ease;
}

.registration_page .input_groupp input::placeholder {
    color: #97a3b6;
    font-weight: 500;
}

.registration_page .input_groupp input:focus {
    border-color: #c5d0de;
    box-shadow: 0 0 0 4px rgba(15,23,42,.04);
}

.registration_page .forgot_password {
    display: inline-block;
    margin-top: 10px;
    color: #1d4ed8;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    transition: .18s ease;
}

.registration_page .forgot_password:hover {
    color: #0d1630;
}

.registration_page .login_tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.registration_page .login_tags a {
    text-decoration: none;
}

.registration_page .login_tags .login,
.registration_page .auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border-radius: 18px;
    background: #08132b;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.01em;
    box-shadow: 0 18px 40px rgba(8,19,43,.20);
    transition: .18s ease;
}

.registration_page .login_tags .login:hover,
.registration_page .auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(8,19,43,.26);
}

.registration_page .login_tags .register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    color: #0d1630;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    transition: .18s ease;
}

.registration_page .login_tags .register:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #cfd9e5;
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

@media (max-width: 767px) {
    .registration_page {
        padding: 18px 0 48px;
    }

    .registration_page .container {
        padding: 0 12px;
    }

    .registration_page .about_block {
        border-radius: 24px;
    }

    .registration_page .about_block::before {
        inset: 6px;
        border-radius: 18px;
    }

    .registration_page .left_register {
        padding: 22px 18px 18px;
        border-radius: 20px;
    }

    .registration_page h2 {
        font-size: 30px;
        line-height: 1.02;
        margin-bottom: 20px;
    }

    .registration_page .input_groupp input,
    .registration_page .login_tags .login,
    .registration_page .auth-submit,
    .registration_page .login_tags .register {
        min-height: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .modal .account-modal__section-head {
        flex-direction: column;
    }

    .modal .account-modal__section-head span {
        text-align: left;
    }

    #accountSettingsModal .modal-header,
    #changePasswordModal .modal-header {
        padding: 22px 20px 0;
    }

    #accountSettingsModal .modal-body,
    #changePasswordModal .modal-body {
        padding: 16px 20px 22px;
    }

    #newTicketModal .modal-header {
        padding: 22px 20px 0;
    }

    #newTicketModal .modal-body {
        padding: 16px 20px 22px;
    }

    #accountSettingsModal .name_profile {
        grid-template-columns: 1fr;
    }
}

.d-none {
    display: none !important;
}


.contact_us {
    position: relative;
    padding: 8px 0 72px;
}

.contact_us .container {
    max-width: 1320px;
    margin: 100px auto 0;
    padding: 0 16px;
}

.contact_us .about_block {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border-radius: 32px;
    padding: 1px;
}

.contact_us .about_block > * {
    position: relative;
    z-index: 1;
}

.contact_us .left_text,
.contact_us .right_text {
    border-radius: 26px;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.95));
    border: 1px solid #e2e8f0;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 32px rgba(15,23,42,.035);
}

.contact_us .left_text h2,
.contact_us .right_text h2 {
    margin: 0 0 12px;
    color: #0d1630;
    font-size: clamp(28px, 4vw, 46px);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.05em;
}

.contact_us .left_text p,
.contact_us .right_text p {
    margin: 0;
    color: #6f7e95;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.contact_us .connecting {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 22px;
}

.contact_us .connecting a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid #dbe3ee;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 10px 24px rgba(15,23,42,.04);
    transition: .18s ease;
}

.contact_us .connecting a:hover {
    transform: translateY(-2px);
    border-color: #cfd9e5;
    background: #f8fafc;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 16px 30px rgba(15,23,42,.07);
}

.contact_us .connecting img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact_us .left_text > a,
.contact_us .right_text > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 18px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.01em;
    transition: .18s ease;
}

.contact_us .left_text > a {
    margin-top: 2px;
    border: 1px solid #dbe3ee;
    background: #fff;
    color: #0d1630;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
}

.contact_us .left_text > a:hover {
    transform: translateY(-1px);
    background: #f8fafc;
    border-color: #cfd9e5;
    box-shadow: 0 14px 28px rgba(15,23,42,.06);
}

.contact_us .left_text > a span {
    color: inherit;
}

.contact_us .right_text > a {
    margin-top: 22px;
    background: #08132b;
    color: #fff;
    box-shadow: 0 18px 40px rgba(8,19,43,.20);
}

.contact_us .right_text > a:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(8,19,43,.26);
}

.contact_us .right_text > span {
    display: block;
    margin-top: 16px;
    color: #8090a7;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 600;
}

@media (max-width: 900px) {
    .contact_us {
        padding: 0 0 56px;
    }

    .contact_us .about_block {
        grid-template-columns: 1fr;
        border-radius: 24px;
        gap: 14px;
    }

    .contact_us .about_block::before {
        inset: 6px;
        border-radius: 18px;
    }

    .contact_us .left_text,
    .contact_us .right_text {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .contact_us .left_text h2,
    .contact_us .right_text h2 {
        font-size: 32px;
        line-height: 1.02;
    }

    .contact_us .left_text p,
    .contact_us .right_text p {
        font-size: 15px;
        line-height: 1.75;
    }
}

@media (max-width: 600px) {
    .contact_us .container {
        padding: 0 12px;
    }

    .contact_us .left_text h2,
    .contact_us .right_text h2 {
        font-size: 28px;
    }

    .contact_us .connecting {
        gap: 10px;
        flex-wrap: wrap;
    }

    .contact_us .connecting a {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }

    .contact_us .left_text > a,
    .contact_us .right_text > a {
        width: 100%;
        min-height: 54px;
        border-radius: 16px;
        font-size: 14px;
    }
}

.details_group .card-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.details_group .detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 92px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(248,250,252,.96), rgba(255,255,255,.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.92);
}

.details_group .detail p {
    margin: 0 0 10px !important;
    color: #8090a7;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.details_group .detail span {
    color: #0d1630;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.details_group .total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 4px;
    border-top: 1px solid #e8edf3;
    margin-top: 2px;
}

.details_group .total h4 {
    margin: 0 !important;
    color: #0d1630;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.details_group .total span {
    color: #08132b;
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.05em;
}

@media (max-width: 640px) {
    .details_group .card-body {
        grid-template-columns: 1fr;
    }
}

.link-helper__text {
    text-align: left;
}

.service-alert__info .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 0;
}

.service-alert__info .modal-title {
    margin: 0;
    color: #0d1630;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
}

.service-alert__info .btn-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    margin: 0;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 8px 20px rgba(15,23,42,.05);
    opacity: 1;
    appearance: none;
    -webkit-appearance: none;
    transition: .18s ease;
    position: relative;
}

.service-alert__info .btn-close:hover {
    transform: translateY(-1px);
    border-color: #cfd9e5;
    background: #f8fafc;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 24px rgba(15,23,42,.08);
}

.service-alert__info .btn-close::before,
.service-alert__info .btn-close::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #0d1630;
    left: 50%;
    top: 50%;
}

.service-alert__info .btn-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-alert__info .btn-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.service-alert__info .btn-close:focus {
    outline: none;
    box-shadow:
            0 0 0 4px rgba(13,22,48,.06),
            inset 0 1px 0 rgba(255,255,255,.96),
            0 12px 24px rgba(15,23,42,.08);
}

@media (max-width: 640px) {
    .service-alert__info .modal-header {
        padding: 18px 18px 0;
    }

    .service-alert__info .modal-title {
        font-size: 20px;
    }

    .service-alert__info .btn-close {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }
}

.basket-modal .pay.confirm__order {
    max-width: 100%;
}

.basket-modal .nb-cart-continue {
    max-width: 100%;
}


.quick-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 10px 24px rgba(15,23,42,.04);
}

.quick-profile .account_name {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.quick-profile .account_name img {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid #dbe3ee;
    background: #fff;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 8px 18px rgba(15,23,42,.05);
}

.quick-profile .name_group {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-profile .name_group h3 {
    margin: 0;
    color: #0d1630;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quick-profile .name_group a {
    display: block;
    color: #7b8aa0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.quick-profile .settings {
    flex-shrink: 0;
}

.quick-profile .settings a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    border: 1px solid #dbe3ee;
    transition: .18s ease;
    padding: 0;
}

.quick-profile .settings a:hover {
    transform: translateY(-1px);
    box-shadow:
            0 18px 34px rgba(8,19,43,.24),
            inset 0 1px 0 rgba(255,255,255,.08);
}

.quick-profile .settings a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

@media (max-width: 640px) {
    .quick-profile {
        padding: 12px;
        border-radius: 18px;
    }

    .quick-profile .account_name img,
    .quick-profile .settings a {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
    }

    .quick-profile .name_group h3 {
        font-size: 14px;
    }

    .quick-profile .name_group a {
        font-size: 11px;
    }
}


#nbMobileMenu .menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
    border-top: 1px solid #e2e8f0;
}

#nbMobileMenu .menu a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
    color: #0d1630;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 750;
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.95),
            0 10px 24px rgba(15,23,42,.04);
    transition: .18s ease;
}

#nbMobileMenu .menu a:hover {
    transform: translateY(-1px);
    border-color: #d4dde8;
    background: #fff;
}

#nbMobileMenu .menu a.active {
    border-color: #cfd9e5;
    background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(243,247,251,.98));
    box-shadow:
            inset 0 1px 0 rgba(255,255,255,.96),
            0 14px 28px rgba(15,23,42,.06);
}

#nbMobileMenu .menu a svg {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
}

#nbMobileMenu .menu a svg path {
    fill: #7b8aa0 !important;
    fill-opacity: 1 !important;
    transition: .18s ease;
}

#nbMobileMenu .menu a.active svg path,
#nbMobileMenu .menu a:hover svg path {
    fill: #0d1630 !important;
}

#nbMobileMenu .menu a.has-new {
    padding-right: 42px;
}

#nbMobileMenu .menu .pulse-dot {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    border-radius: 999px;
    background: #0d1630;
    box-shadow: 0 0 0 6px rgba(13,22,48,.08);
}

#nbMobileMenu .menu a[onclick*="logout"] {
    border-color: #e5e7eb;
    background: #fff;
    color: #7b8aa0;
}

#nbMobileMenu .menu a[onclick*="logout"]:hover {
    color: #0d1630;
    border-color: #cfd9e5;
}

#nbMobileMenu .menu a[style*="rebeccapurple"] {
    border: 1px solid rgba(102, 51, 153, .25) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,255,.96));
    color: rebeccapurple !important;
}

#nbMobileMenu .menu a b {
    font-weight: 800;
}

@media (max-width: 640px) {
    #nbMobileMenu .menu {
        gap: 8px;
        margin-top: 4px;
    }

    #nbMobileMenu .menu a {
        min-height: 54px;
        padding: 0 14px;
        border-radius: 16px;
        font-size: 14px;
    }

    #nbMobileMenu .menu .pulse-dot {
        right: 14px;
    }
}