@font-face {
    font-family: "NDot 55";
    src: url("../textfont/fonts-ndot55.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NDot 57";
  src: url("../textfont/fonts-ndot57.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
    --text-font: "NDot 55", sans-serif;
    --body-font: "Noto Sans Mono", monospace;
    --heading-font: "NDot 57", sans-serif;
    --base-h: 263;
    --base-s: 70%;
    --base-l: 50%;
    --base: var(--base-h) var(--base-s) var(--base-l);
    --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
    --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
    --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
    --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
    --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
    --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
    --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
    --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
    --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
    --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
    --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
    --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
    --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);
    --base-l-400: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.4);
    --base-l-500: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.5);
    --base-l-600: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.6);
    --base-l-700: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.7);
    --base-l-800: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.8);
    --base-l-900: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.9);
    --base-l-1000: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 1);
    --white: 0 0% 100%;
    --black: 0 0% 0%;
}

/* Fully Fit image Css */
.fit-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/* ============================= Display Flex Css Start ============================= */
.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============================= Display Flex Css End ============================= */
/* ===================== Font Size For responsive devices Start =================== */
.fs-10 {
    font-size: 0.625rem;
}

.fs-11 {
    font-size: 0.6875rem;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-13 {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.9375rem;
}

.fs-16 {
    font-size: 1rem;
}

@media screen and (max-width: 1199px) {
    .fs-16 {
        font-size: 0.9375rem;
    }
}

.fs-17 {
    font-size: 1.0625rem;
}

@media screen and (max-width: 1199px) {
    .fs-17 {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-17 {
        font-size: 0.9375rem;
    }
}

.fs-18 {
    font-size: 1.125rem;
}

@media screen and (max-width: 1399px) {
    .fs-18 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-18 {
        font-size: 1rem;
    }
}

.fs-20 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
    .fs-20 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .fs-20 {
        font-size: 1.0625rem;
    }
}

/* ===================== Font Size For responsive devices End =================== */
/* ================================= Common Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: #0a0a0a;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: hsl(var(--white));
}

span {
    display: inline-block;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin: 0;
    font-family: var(--heading-font);
    color: hsl(var(--white));
    line-height: 1.3;
    font-weight: 600;
}

h1,
.h1 {
    font-size: 4rem;
}

@media screen and (max-width: 1399px) {
    h1,
.h1 {
        font-size: 3.375rem;
    }
}

@media screen and (max-width: 1199px) {
    h1,
.h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 991px) {
    h1,
.h1 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 767px) {
    h1,
.h1 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 575px) {
    h1,
.h1 {
        font-size: 2rem;
    }
}

h2,
.h2 {
    font-size: 3rem;
}

@media screen and (max-width: 1399px) {
    h2,
.h2 {
        font-size: 2.625rem;
    }
}

@media screen and (max-width: 1199px) {
    h2,
.h2 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 991px) {
    h2,
.h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 575px) {
    h2,
.h2 {
        font-size: 1.75rem;
    }
}

h3,
.h3 {
    font-size: 2.5rem;
}

@media screen and (max-width: 1399px) {
    h3,
.h3 {
        font-size: 2.375rem;
    }
}

@media screen and (max-width: 1199px) {
    h3,
.h3 {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 991px) {
    h3,
.h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 767px) {
    h3,
.h3 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 575px) {
    h3,
.h3 {
        font-size: 1.5rem;
    }
}

h4,
.h4 {
    font-size: 2rem;
}

@media screen and (max-width: 1399px) {
    h4,
.h4 {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 1199px) {
    h4,
.h4 {
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 991px) {
    h4,
.h4 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 575px) {
    h4,
.h4 {
        font-size: 1.25rem;
    }
}

h5,
.h5 {
    font-size: 1.5rem;
}

@media screen and (max-width: 1199px) {
    h5,
.h5 {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 991px) {
    h5,
.h5 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    h5,
.h5 {
        font-size: 1.125rem;
    }
}

h6,
.h6 {
    font-size: 1.25rem;
}

@media screen and (max-width: 1199px) {
    h6,
.h6 {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 991px) {
    h6,
.h6 {
        font-size: 1rem;
    }
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    line-height: inherit;
}

a {
    display: inline-block;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    text-decoration: none;
    color: hsl(var(--info));
}

a:hover {
    color: hsl(var(--base));
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dashboard-body h1,
.dashboard-body h2,
.dashboard-body h3,
.dashboard-body h4,
.dashboard-body h5,
.dashboard-body h6 {
    font-family: var(--text-font);
}

/* ================================= Common Typography Css End =========================== */
/* ================================= Custom Classes Css Start =========================== */
/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xsm-6 {
        width: 50%;
    }
}

/* Section Background */
.section-bg {
    background-color: hsl(var(--section-bg));
}

.text-muted {
    color: hsl(var(--white)/0.6) !important;
}

/* Bg Image Css */
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

/* Overlay Start */
.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.body-overlay.show {
    visibility: visible;
    opacity: 1;
}

.gradient-text {
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base-d-200))), to(hsl(var(--base))));
    background-image: linear-gradient(180deg, hsl(var(--base-d-200)) 0%, hsl(var(--base)) 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.gradient-text::-moz-selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.gradient-text::selection {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
    background: transparent;
}

.sidebar-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.sidebar-overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}

.form--control {
    background-color: transparent;
    border: 1px solid hsl(var(--white)/0.1);
    color: hsl(var(--white)) !important;
    padding: 0.625rem 1rem;
    border-radius: 0.375rem;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    width: 100%;
}

.form--control::-webkit-input-placeholder {
    color: hsl(var(--white)/0.6);
}

.form--control::-moz-placeholder {
    color: hsl(var(--white)/0.6);
}

.form--control:-ms-input-placeholder {
    color: hsl(var(--white)/0.6);
}

.form--control::-ms-input-placeholder {
    color: hsl(var(--white)/0.6);
}

.form--control::placeholder {
    color: hsl(var(--white)/0.6);
}

.form--control:focus {
    border-color: hsl(var(--base));
    background-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Overlay End */
/* ================================= Custom Classes Css End =========================== */
/* ====================== Section Heading ==================== */
.section-heading {
    --outer-m: 32px;
    --name-fs: 16px;
    --desc-fs: 18px;
    --extra-fs: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: var(--outer-m);
}

.section-heading-content {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    width: 100%;
}

.section-heading-title {
    font-size: var(--extra-fs);
    line-height: 1;
}

.section-heading-desc {
    max-width: 536px;
    width: 100%;
    font-size: var(--desc-fs);
    color: hsl(var(--black));
}

@media screen and (max-width: 991px) {
    .section-heading-desc {
        display: none;
    }
}

.section-heading-subtitle {
    --extra-x-fs: 180px;
    font-size: var(--extra-x-fs);
    font-weight: 900;
    line-height: 87%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-331.4%, hsl(var(--white))), to(transparent));
    background: linear-gradient(180deg, hsl(var(--white)) -331.4%, transparent 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1399px) {
    .section-heading-subtitle {
        --extra-x-fs: 140px;
    }
}

@media screen and (max-width: 1199px) {
    .section-heading-subtitle {
        --extra-x-fs: 110px;
    }
}

@media screen and (max-width: 991px) {
    .section-heading-subtitle {
        --extra-x-fs: 80px;
    }
}

@media screen and (max-width: 767px) {
    .section-heading-subtitle {
        --extra-x-fs: 70px;
    }
}

@media screen and (max-width: 575px) {
    .section-heading-subtitle {
        --extra-x-fs: 64px;
    }
}

@media screen and (max-width: 424px) {
    .section-heading-subtitle {
        --extra-x-fs: 48px;
    }
}

.section-heading-text {
    font-weight: 400;
    max-width: 680px;
    width: 100%;
}

.section-heading-text .highlight {
    color: hsl(var(--body-color));
    display: inline;
}

.section-heading.style-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.section-heading.style-center .section-heading-name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.view-btn {
    color: hsl(var(--white));
}

/* ====================== Section Heading End ==================== */
/* ========================== custom container start ========================= */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

/* ========================== custom container end ========================= */
/* ================================= Background Color Css Start =========================== */
.bg--base {
    background-color: hsl(var(--base)) !important;
}

.bg--primary {
    background-color: hsl(var(--primary)) !important;
}

.bg--secondary {
    background-color: hsl(var(--secondary)) !important;
}

.bg--success {
    background-color: hsl(var(--success)) !important;
}

.bg--danger {
    background-color: hsl(var(--danger)) !important;
}

.bg--warning {
    background-color: hsl(var(--warning)) !important;
}

.bg--info {
    background-color: hsl(var(--info)) !important;
}

.bg--gr {
    background: var(--gr-color);
}

/* ================================= Background Color Css End =========================== */
/* ================================= Color Css Start =========================== */
.text--base {
    color: hsl(var(--base)) !important;
}

.text--color {
    color: hsl(var(--body-color)) !important;
}

.text--primary {
    color: hsl(var(--primary)) !important;
}

.text--secondary {
    color: hsl(var(--secondary)) !important;
}

.text--success {
    color: hsl(var(--success)) !important;
}

.text--danger {
    color: hsl(var(--danger)) !important;
}

.text--warning {
    color: hsl(var(--warning)) !important;
}

.text--info {
    color: hsl(var(--info)) !important;
}

.text--dark {
    color: hsl(var(--dark)) !important;
}

.text--muted {
    color: hsl(var(--black)/0.2) !important;
}

/* ================================= Color Css End =========================== */
.py-120 {
    padding-block: 120px;
}

@media screen and (max-width: 991px) {
    .py-120 {
        padding-block: 80px;
    }
}

@media screen and (max-width: 424px) {
    .py-120 {
        padding-block: 60px;
    }
}

.pt-120 {
    padding-top: 120px;
}

@media screen and (max-width: 991px) {
    .pt-120 {
        padding-top: 80px;
    }
}

@media screen and (max-width: 424px) {
    .pt-120 {
        padding-top: 60px;
    }
}

.pb-120 {
    padding-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .pb-120 {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 424px) {
    .pb-120 {
        padding-bottom: 60px;
    }
}

.py-60 {
    padding-block: 60px;
}

@media screen and (max-width: 991px) {
    .py-60 {
        padding-block: 40px;
    }
}

@media screen and (max-width: 424px) {
    .py-60 {
        padding-block: 30px;
    }
}

.pt-60 {
    padding-top: 60px;
}

@media screen and (max-width: 991px) {
    .pt-60 {
        padding-top: 40px;
    }
}

@media screen and (max-width: 424px) {
    .pt-60 {
        padding-top: 30px;
    }
}

.pb-60 {
    padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .pb-60 {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 424px) {
    .pb-60 {
        padding-bottom: 30px;
    }
}

.my-120 {
    margin-block: 120px;
}

@media screen and (max-width: 991px) {
    .my-120 {
        margin-block: 80px;
    }
}

@media screen and (max-width: 424px) {
    .my-120 {
        margin-block: 60px;
    }
}

.mt-120 {
    margin-top: 120px;
}

@media screen and (max-width: 991px) {
    .mt-120 {
        margin-top: 80px;
    }
}

@media screen and (max-width: 424px) {
    .mt-120 {
        margin-top: 60px;
    }
}

.mb-120 {
    margin-bottom: 120px;
}

@media screen and (max-width: 991px) {
    .mb-120 {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 424px) {
    .mb-120 {
        margin-bottom: 60px;
    }
}

.my-60 {
    margin-block: 60px;
}

@media screen and (max-width: 991px) {
    .my-60 {
        margin-block: 40px;
    }
}

@media screen and (max-width: 424px) {
    .my-60 {
        margin-block: 30px;
    }
}

.mt-60 {
    margin-top: 60px;
}

@media screen and (max-width: 991px) {
    .mt-60 {
        margin-top: 40px;
    }
}

@media screen and (max-width: 424px) {
    .mt-60 {
        margin-top: 30px;
    }
}

.mb-60 {
    margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 424px) {
    .mb-60 {
        margin-bottom: 30px;
    }
}

/* ================================= Border Color Css Start =========================== */
.border--base {
    border-color: hsl(var(--base)) !important;
}

.border--primary {
    border-color: hsl(var(--primary)) !important;
}

.border--secondary {
    border-color: hsl(var(--secondary)) !important;
}

.border--success {
    border-color: hsl(var(--success)) !important;
}

.border--danger {
    border-color: hsl(var(--danger)) !important;
}

.border--warning {
    border-color: hsl(var(--warning)) !important;
}

.border--info {
    border-color: hsl(var(--info)) !important;
}

/* ================================= Border Color Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

.pill {
    border-radius: 32px !important;
}

.btn {
    color: hsl(var(--white)) !important;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    border: 1px solid transparent;
    display: inline-block !important;
    font-size: 1rem;
    line-height: 1.3;
    font-family: var(--heading-font);
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 11px 20px;
    }
}

.btn:has(.icon) {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.btn:has(.icon) .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn:hover, .btn:focus, .btn:focus-visible {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:active {
    top: 1px;
}

.btn--sm {
    padding: 9px 16px;
    font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
    .btn--sm {
        padding: 6px 12px;
    }
}

.btn--white {
    background: hsl(var(--white));
    color: hsl(var(--dark)) !important;
}

.btn--white:has(.icon) {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.btn--white:has(.icon) .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn--white:hover, .btn--white:focus .btn--white:focus-visible {
    opacity: 0.9;
    background: hsl(var(--white)) !important;
}

.btn--light {
    background: hsl(var(--white)/0.1);
    border: 1px solid hsl(var(--white)/0.1);
    color: hsl(var(--white)) !important;
}

.btn--light:hover, .btn--light:focus .btn--light:focus-visible {
    background: hsl(var(--white)/0.15) !important;
    border-color: hsl(var(--white)/0.2);
}

.btn--primary {
    background-color: hsl(var(--primary)) !important;
    border-color: hsl(var(--primary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--primary:hover, .btn--primary:focus .btn--primary:focus-visible {
    background-color: hsl(var(--primary-d-200)) !important;
    border: 1px solid hsl(var(--primary-d-200)) !important;
}

.btn-outline--primary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--primary)) !important;
    color: hsl(var(--primary)) !important;
}

.btn-outline--primary:hover, .btn-outline--primary:focus .btn-outline--primary:focus-visible {
    background-color: hsl(var(--primary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base {
    background-color: hsl(var(--base)) !important;
    border-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base:hover, .btn--base:focus .btn--base:focus-visible {
    background-color: hsl(var(--base-d-200)) !important;
    border: 1px solid hsl(var(--base-d-200)) !important;
}

.btn-outline--base {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base)) !important;
    color: hsl(var(--base)) !important;
}

.btn-outline--base:hover, .btn-outline--base:focus .btn-outline--base:focus-visible {
    background-color: hsl(var(--base)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base-two {
    background-color: hsl(var(--base-two)) !important;
    border-color: hsl(var(--base-two)) !important;
    color: hsl(var(--white)) !important;
}

.btn--base-two:hover, .btn--base-two:focus .btn--base-two:focus-visible {
    background-color: hsl(var(--base-two-d-200)) !important;
    border: 1px solid hsl(var(--base-two-d-200)) !important;
}

.btn-outline--base-two {
    background-color: transparent !important;
    border: 1px solid hsl(var(--base-two)) !important;
    color: hsl(var(--base-two)) !important;
}

.btn-outline--base-two:hover, .btn-outline--base-two:focus .btn-outline--base-two:focus-visible {
    background-color: hsl(var(--base-two)) !important;
    color: hsl(var(--white)) !important;
}

.btn--secondary {
    background-color: hsl(var(--secondary)) !important;
    border-color: hsl(var(--secondary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--secondary:hover, .btn--secondary:focus .btn--secondary:focus-visible {
    background-color: hsl(var(--secondary-d-200)) !important;
    border: 1px solid hsl(var(--secondary-d-200)) !important;
}

.btn-outline--secondary {
    background-color: transparent !important;
    border: 1px solid hsl(var(--secondary)) !important;
    color: hsl(var(--secondary)) !important;
}

.btn-outline--secondary:hover, .btn-outline--secondary:focus .btn-outline--secondary:focus-visible {
    background-color: hsl(var(--secondary)) !important;
    color: hsl(var(--white)) !important;
}

.btn--danger {
    background-color: hsl(var(--danger)) !important;
    border-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

.btn--danger:hover, .btn--danger:focus .btn--danger:focus-visible {
    background-color: hsl(var(--danger-d-200)) !important;
    border: 1px solid hsl(var(--danger-d-200)) !important;
}

.btn-outline--danger {
    background-color: transparent !important;
    border: 1px solid hsl(var(--danger)) !important;
    color: hsl(var(--danger)) !important;
}

.btn-outline--danger:hover, .btn-outline--danger:focus .btn-outline--danger:focus-visible {
    background-color: hsl(var(--danger)) !important;
    color: hsl(var(--white)) !important;
}

.btn--warning {
    background-color: hsl(var(--warning)) !important;
    border-color: hsl(var(--warning)) !important;
    color: hsl(var(--white)) !important;
}

.btn--warning:hover, .btn--warning:focus .btn--warning:focus-visible {
    background-color: hsl(var(--warning-d-200)) !important;
    border: 1px solid hsl(var(--warning-d-200)) !important;
}

.btn-outline--warning {
    background-color: transparent !important;
    border: 1px solid hsl(var(--warning)) !important;
    color: hsl(var(--warning)) !important;
}

.btn-outline--warning:hover, .btn-outline--warning:focus .btn-outline--warning:focus-visible {
    background-color: hsl(var(--warning)) !important;
    color: hsl(var(--white)) !important;
}

.btn--info {
    background-color: hsl(var(--info)) !important;
    border-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

.btn--info:hover, .btn--info:focus .btn--info:focus-visible {
    background-color: hsl(var(--info-d-200)) !important;
    border: 1px solid hsl(var(--info-d-200)) !important;
}

.btn-outline--info {
    background-color: transparent !important;
    border: 1px solid hsl(var(--info)) !important;
    color: hsl(var(--info)) !important;
}

.btn-outline--info:hover, .btn-outline--info:focus .btn-outline--info:focus-visible {
    background-color: hsl(var(--info)) !important;
    color: hsl(var(--white)) !important;
}

.btn--dark {
    background-color: hsl(var(--dark)) !important;
    border-color: hsl(var(--dark)) !important;
    color: hsl(var(--white)) !important;
}

.btn--dark:hover, .btn--dark:focus .btn--dark:focus-visible {
    background-color: hsl(var(--dark-d-200)) !important;
    border: 1px solid hsl(var(--dark-d-200)) !important;
}

.btn-outline--dark {
    background-color: transparent !important;
    border: 1px solid hsl(var(--dark)) !important;
    color: hsl(var(--dark)) !important;
}

.btn-outline--dark:hover, .btn-outline--dark:focus .btn-outline--dark:focus-visible {
    background-color: hsl(var(--dark)) !important;
    color: hsl(var(--white)) !important;
}

.btn--success {
    background-color: hsl(var(--success)) !important;
    border-color: hsl(var(--success)) !important;
    color: hsl(var(--white)) !important;
}

.btn--success:hover, .btn--success:focus .btn--success:focus-visible {
    background-color: hsl(var(--success-d-200)) !important;
    border: 1px solid hsl(var(--success-d-200)) !important;
}

.btn-outline--success {
    background-color: transparent !important;
    border: 1px solid hsl(var(--success)) !important;
    color: hsl(var(--success)) !important;
}

.btn-outline--success:hover, .btn-outline--success:focus .btn-outline--success:focus-visible {
    background-color: hsl(var(--success)) !important;
    color: hsl(var(--white)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Table Css Start =========================== */
.card-body .table {
    border-radius: 0;
    border: 0;
}

.table {
    margin: 0;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0px 0px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid hsl(var(--white)/0.1);
}

.table thead tr th {
    background-color: hsl(var(--white)/0.03);
    text-align: left;
    padding: 12px 24px;
    color: hsl(var(--white));
    font-weight: 700;
    border-bottom: 0;
    max-width: 220px;
    font-size: 0.875rem;
    border: 0;
    border-bottom: 1px solid hsl(var(--black)/0.05);
}

.table thead tr th:not(:first-child) {
    border-left: 0;
}

.table thead tr th:first-child {
    text-align: left;
}

.table thead tr th:last-child {
    text-align: right;
}

.table tbody {
    border: 0 !important;
}

.table tbody tr:nth-child(even) {
    background-color: hsl(var(--white)/0.02);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0px 0 0 6px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0px 6px 0;
}

.table tbody tr td {
    text-align: left;
    vertical-align: middle;
    padding: 16px 24px;
    border-width: 1px;
    border: 0;
    color: hsl(var(--white));
    max-width: 220px;
    font-size: 0.9375rem;
    border-bottom: 1px solid hsl(var(--white)/0.05);
    background-color: transparent;
}

.table tbody tr td::before {
    content: attr(data-label);
    color: hsl(var(--white));
    font-weight: 600;
    font-size: 0.875rem;
    display: none;
    width: 45% !important;
    text-align: left;
}

.table tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td:last-child {
    text-align: right;
}

@media screen and (max-width: 1399px) {
    .table-responsive--md tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 991px) {
    .table-responsive--md thead {
        display: none;
    }

    .table-responsive--md tbody .form--check {
        display: none;
    }

    .table-responsive--md tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--md tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--md tbody tr {
        display: block;
    }

    .table-responsive--md tbody tr:nth-child(even) {
        background-color: hsl(var(--white)/0.04);
    }

    .table-responsive--md tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white)/0.05);
    }

    .table-responsive--md tbody tr td {
        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;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--md tbody tr td:last-child {
        border: none;
    }

    .table-responsive--md tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--md tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1499px) {
    .table-responsive--lg tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1199px) {
    .table-responsive--lg thead {
        display: none;
    }

    .table-responsive--lg tbody .form--check {
        display: none;
    }

    .table-responsive--lg tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--lg tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--lg tbody tr {
        display: block;
    }

    .table-responsive--lg tbody tr:nth-child(even) {
        background-color: hsl(var(--white)/0.04);
    }

    .table-responsive--lg tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white)/0.05);
    }

    .table-responsive--lg tbody tr td {
        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;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--lg tbody tr td:last-child {
        border: none;
    }

    .table-responsive--lg tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--lg tbody tr td::before {
        display: block;
    }
}

@media screen and (max-width: 1399px) {
    .table-responsive--xl tr td {
        font-size: 0.875rem !important;
    }
}

@media (max-width: 1399px) {
    .table-responsive--xl thead {
        display: none;
    }

    .table-responsive--xl tbody .form--check {
        display: none;
    }

    .table-responsive--xl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xl tbody tr {
        display: block;
    }

    .table-responsive--xl tbody tr:nth-child(even) {
        background-color: hsl(var(--white)/0.04);
    }

    .table-responsive--xl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white)/0.05);
    }

    .table-responsive--xl tbody tr td {
        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;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xl tbody tr td::before {
        display: block;
    }
}

@media (max-width: 1599px) {
    .table-responsive--xxl thead {
        display: none;
    }

    .table-responsive--xxl tbody .form--check {
        display: none;
    }

    .table-responsive--xxl tbody tr:has(td .empty-data) {
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data) {
        width: 100%;
        background-color: transparent;
    }

    .table-responsive--xxl tbody td:has(.empty-data)::before {
        display: none;
    }

    .table-responsive--xxl tbody tr {
        display: block;
    }

    .table-responsive--xxl tbody tr:nth-child(even) {
        background-color: hsl(var(--white)/0.04);
    }

    .table-responsive--xxl tbody tr:last-child td {
        border-bottom: 1px solid hsl(var(--white)/0.05);
    }

    .table-responsive--xxl tbody tr td {
        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;
        gap: 15px;
        text-align: right;
        padding: 16px !important;
        border: none;
        border-bottom: 1px solid hsl(var(--white)/0.05);
        max-width: unset;
        background-color: transparent;
    }

    .table-responsive--xxl tbody tr td:last-child {
        border: none;
    }

    .table-responsive--xxl tbody tr td:first-child {
        text-align: right;
        border-left: 0;
    }

    .table-responsive--xxl tbody tr td::before {
        display: block;
    }
}

/* ================================= Table Css End =========================== */
/* ============= Header Start Here ======================= */
.header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px;
}

.header-navbar {
    padding: 10px 24px;
    background-color: hsl(var(--white)/0.05);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 100%;
    margin-inline: auto;
    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;
    gap: 16px;
}

.logo-text {
    color: hsl(var(--white));
    font-size: 30px;
    text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
    .logo-text {
        font-size: 24px;
    }
}

.logo-view {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.header-right-item {
    color: hsl(var(--white));
    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;
}

@media (min-width: 576px) {
    .header-right-item.bag-icon {
        border-left: 1px solid hsl(var(--white)/0.1);
        padding-left: 16px;
    }

    .header-right-item.bar-icon {
        border-right: 1px solid hsl(var(--white)/0.1);
        padding-right: 16px;
    }
}

.header-menu-trigger {
    border: 0;
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
}

.header-sidebar {
    background-color: hsl(var(--black));
    border: 0;
    color: hsl(var(--white));
    width: 320px;
}

.header-sidebar .header-sidebar__header {
    border-bottom: 1px solid hsl(var(--white)/0.08);
    background-color: hsl(var(--black)/0.6);
    padding: 20px 24px;
}

.header-sidebar .header-sidebar__body {
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.header-sidebar .header-sidebar__eyebrow {
    margin: 0;
    color: hsl(var(--white)/0.55);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.header-sidebar .header-sidebar__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.header-sidebar .header-sidebar__item {
    margin: 0;
}

.header-sidebar .header-sidebar__link {
    display: block;
    color: hsl(var(--white));
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 12px;
    background-color: hsl(var(--white)/0.04);
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.header-sidebar .header-sidebar__link:hover, .header-sidebar .header-sidebar__link.active {
    background-color: hsl(var(--white)/0.1);
    color: hsl(var(--white));
}

.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-150%);
        transform: translateY(-150%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/* ================================= Header Css End =========================== */
/* ================ Top Header Start Here ================ */
.header-top {
    position: relative;
    background-color: hsl(var(--white));
}

.header-top-wrapper {
    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;
    padding-block: 16px;
    background-color: hsl(var(--white));
    gap: 24px;
}

.header-top-logo {
    max-width: 148px;
    width: 100%;
}

.header-top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.header-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: hsl(var(--white));
    display: none;
}

.header-top:has(.header-search-form.show)::after {
    display: block;
}

.track-order-btn {
    font-size: 1rem;
    font-weight: 500;
    color: hsl(var(--black));
    border-left: 2px solid hsl(var(--black)/0.1);
    padding-left: 12px;
    line-height: 1.15;
}

.header-search-toggle {
    color: hsl(var(--black));
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 575px) {
    .header-search-toggle {
        display: block;
    }
}

.header-search {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 575px) {
    .header-search {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.header-search-form {
    margin-inline: auto;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

@media screen and (max-width: 575px) {
    .header-search-form {
        position: absolute;
        width: 90%;
        left: 50%;
        top: -100%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: all linear 0.3s;
        transition: all linear 0.3s;
        z-index: 2;
    }

    .header-search-form.show {
        top: 50%;
    }
}

.header-search-input {
    width: 100%;
    padding: 9px 16px;
    padding-right: 80px;
    font-size: 1rem;
    color: hsl(var(--black));
    border: 1px solid hsl(var(--black)/0.15);
    outline: none;
    border-radius: inherit;
}

@media screen and (max-width: 575px) {
    .header-search-input {
        padding-inline: 48px;
    }
}

.header-search-input::-webkit-input-placeholder {
    color: hsl(var(--black)/0.3);
}

.header-search-input::-moz-placeholder {
    color: hsl(var(--black)/0.3);
}

.header-search-input:-ms-input-placeholder {
    color: hsl(var(--black)/0.3);
}

.header-search-input::-ms-input-placeholder {
    color: hsl(var(--black)/0.3);
}

.header-search-input::placeholder {
    color: hsl(var(--black)/0.3);
}

.header-search-input:focus {
    border-color: hsl(var(--base));
    -webkit-box-shadow: 0px 4px 10px hsl(var(--base)/0.1) !important;
    box-shadow: 0px 4px 10px hsl(var(--base)/0.1) !important;
}

.header-search-btn {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--black));
    cursor: pointer;
    height: 100%;
    padding-inline: 12px;
}

.header-search-btn svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
}

.header-search-close {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--black));
    cursor: pointer;
    height: 100%;
    padding-inline: 12px;
    display: none;
}

.header-search-close svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 575px) {
    .header-search-close {
        display: block;
    }
}

/* ================ Top Header End Here ================ */
/* ========================= Footer CSS Start ============================= */
.footer {
    position: relative;
    margin-top: auto;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-fit: bottom;
    object-fit: bottom;
}

.footer-menu {
    margin-bottom: 60px;
    position: relative;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
}

.footer-menu__item:not(:last-child) {
    margin-bottom: 4px;
}

.footer-menu__link {
    font-size: 1.125rem;
    line-height: 150%;
    font-family: var(--heading-font);
    overflow: hidden;
    color: hsl(var(--white));
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 52px 14px 14px;
    background-color: hsl(var(--white)/0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: block;
    border-radius: 12px;
    position: relative;
}

.footer-menu__link .footer-menu__icon {
    position: absolute;
    right: 14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--white));
    pointer-events: none;
    -webkit-transition: -webkit-transform linear 0.2s;
    transition: -webkit-transform linear 0.2s;
    transition: transform linear 0.2s;
    transition: transform linear 0.2s, -webkit-transform linear 0.2s;
}

.footer-menu__link:hover {
    color: hsl(var(--white));
    text-decoration: none;
}

.footer-menu__link:hover .footer-menu__icon {
    -webkit-transform: translate(3px, -50%);
    transform: translate(3px, -50%);
}

@media screen and (max-width: 1199px) {
    .footer-menu__link {
        font-size: 2rem;
    }
}

@media screen and (max-width: 575px) {
    .footer-menu__link {
        font-size: 1.75rem;
    }
}

.footer-contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.footer-contact__item:not(:last-child) {
    margin-bottom: 16px;
}

.footer-contact__item .content :is(p, a) {
    color: hsl(var(--white)/0.66);
}

.footer-contact__item .content :is(p, a):hover {
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .footer-contact__item .content :is(p, a) {
        font-size: 0.875rem;
    }
}

.footer-contact__item .icon {
    color: hsl(var(--white));
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: hsl(var(--white)/0.1);
    font-size: 0.8rem;
}

.footer-newsletter {
    border-radius: 12px;
    overflow: hidden;
    background-color: hsl(var(--white)/0.02);
    padding: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: center;
}

.footer-newsletter-title {
    font-size: 1.75rem;
    color: hsl(var(--white));
    margin-bottom: 6px;
}

.footer-newsletter-desc {
    color: hsl(var(--white)/0.85);
    margin-bottom: 40px;
}

.newsletter-form {
    background-color: hsl(var(--white));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px;
}

.newsletter-form-input {
    width: 100%;
    outline: 0;
    border: 0;
    height: 100%;
    background-color: transparent;
    color: hsl(var(--black));
    padding: 12px;
}

.newsletter-form-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 11px 16px;
    background-color: hsl(var(--base));
    border-radius: 999px;
    color: hsl(var(--white));
}

@media (max-width: 575px) {
    .newsletter-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-radius: 16px;
    }

    .newsletter-form-btn {
        width: 100%;
        min-height: 44px;
    }
}

.footer .social-list {
    gap: 10px;
}

.footer .social-list__link {
    border-radius: 8px;
    background-color: hsl(var(--white)/0.15);
    color: hsl(var(--white));
    font-size: 1.125rem;
    -webkit-transition: all linear 0.2s;
    transition: all linear 0.2s;
}

.footer .social-list__link:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-block: 16px;
    border-top: 1px solid hsl(var(--white)/0.1);
    position: relative;
}

.footer-bottom__text {
    color: hsl(var(--white));
    font-size: 0.875rem;
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: hsl(var(--white));
    font-size: 0.875rem;
}

.footer-btn {
    position: relative;
    text-align: center;
}

.footer-btn-text {
    font-size: 32px;
    color: hsl(var(--white));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 12px 64px;
    border: 1px dashed hsl(var(--white)/0.2);
    border-radius: 12px;
    background-color: hsl(var(--white)/0.03);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    font-family: var(--heading-font);
}

.footer-btn-text:hover {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
}

.global-dot {
    position: fixed;
    pointer-events: none;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cpath fill='%23999999' transform='translate(0 0) scale(0.6)' d='M12 2l2.9 6.2L22 9.3l-5 4.9 1.2 6.8L12 17.8 5.8 21l1.2-6.8-5-4.9 7.1-1.1z'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    width: 95vw;
    height: 95vh;
    mix-blend-mode: difference;
}

/* ================================= Template Selection Css Start =========================== */
::-moz-selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

::selection {
    color: hsl(var(--white));
    background: hsl(var(--base-d-100));
}

/* ================================= Template Selection Css End ===========================  */
/* ========================= Social Icon CSS Start ======================== */
.social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.social-list__link {
    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;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: hsl(var(--white)/0.3);
    color: hsl(var(--black));
    font-size: 24px;
}

@media screen and (max-width: 991px) {
    .social-list__link {
        font-size: 20px;
    }
}

@media screen and (max-width: 575px) {
    .social-list__link {
        font-size: 18px;
    }
}

.social-list__link:hover {
    background-color: hsl(var(--black)/0.1);
    color: hsl(var(--black));
}

/* ========================= Social Icon CSS End ========================== */
/* =========================== Banner Section Start Here ========================= */
.banner-section {
    --inner-p: 80px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-block: calc(var(--inner-p) + var(--header-h)) var(--inner-p);
    background-color: hsl(var(--black)/0.5);
}

body:not(:has(.banner-section, .product-details)) main {
    padding-top: var(--header-h);
}

.banner-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1199px) {
    .banner-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================== Banner Section End Here ========================= */
.banner-slider {
    width: 100%;
    width: 764px;
    margin: 0;
    padding-block: 20px;
}

@media screen and (max-width: 1399px) {
    .banner-slider {
        width: 640px;
    }
}

@media screen and (max-width: 767px) {
    .banner-slider {
        width: 540px;
        margin-inline: auto;
    }
}

@media screen and (max-width: 575px) {
    .banner-slider {
        width: 385px;
    }
}

@media screen and (max-width: 424px) {
    .banner-slider {
        width: 300px;
    }
}

.banner-slider .swiper-slide {
    width: 360px;
    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-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
}

@media screen and (max-width: 1399px) {
    .banner-slider .swiper-slide {
        width: 352px;
    }
}

@media screen and (max-width: 767px) {
    .banner-slider .swiper-slide {
        width: 312px;
    }
}

@media screen and (max-width: 575px) {
    .banner-slider .swiper-slide {
        width: 290px;
    }
}

@media screen and (max-width: 424px) {
    .banner-slider .swiper-slide {
        width: 218px;
    }
}

.banner-slider .swiper-slide img {
    width: 100%;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: hsl(var(--black)/0.4);
    color: hsl(var(--white));
    font-size: 0.75rem;
    margin: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media screen and (max-width: 575px) {
    .banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
    display: none;
}

.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
    opacity: 1;
}

.banner-section .swiper-3d .swiper-slide-shadow-left,
.banner-section .swiper-3d .swiper-slide-shadow-right {
    background: transparent;
}

.banner-product {
    background-color: #1d1d1d;
    border-radius: 16px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 0 6px hsl(var(--white)/0.1);
    box-shadow: 0 0 0 6px hsl(var(--white)/0.1);
    width: 100%;
    background-color: hsl(var(--black)/0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.banner-product-thumb {
    padding: 60px;
    height: 400px;
}

@media screen and (max-width: 1399px) {
    .banner-product-thumb {
        padding: 40px;
        height: 320px;
    }
}

@media screen and (max-width: 991px) {
    .banner-product-thumb {
        padding: 32px;
        height: 280px;
    }
}

@media screen and (max-width: 575px) {
    .banner-product-thumb {
        padding: 24px;
        height: 260px;
    }
}

.banner-product-thumb img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: 100%;
}

.banner-product-price {
    margin-bottom: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    color: hsl(var(--white));
}

.banner-product-price .currency {
    color: hsl(var(--white)/0.65);
    font-size: 0.875rem;
    font-weight: 400;
}

.banner-product-name {
    font-size: 0.9125rem;
    color: hsl(var(--white));
}

.banner-product-content {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: hsl(var(--white)/0.02);
    border-top: 4px solid hsl(var(--white)/0.025);
}

.banner-product-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: hsl(var(--white));
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 575px) {
    .banner-product-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

.banner-product-btn .icon {
    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;
}

.banner-content {
    max-width: 360px;
    width: 100%;
    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;
    text-align: center;
    gap: 14px;
    position: relative;
}

@media screen and (max-width: 1199px) {
    .banner-content {
        max-width: 100%;
    }
}

.banner-content-title {
    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;
    gap: 2px;
    margin: 0;
    font-family: var(--body-font);
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    line-height: 0.84;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(45%, #d7d7d7), to(#7f7f7f));
    background: linear-gradient(180deg, #ffffff 0%, #d7d7d7 45%, #7f7f7f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 10px hsl(var(--white)/0.2), 0 0 24px hsl(var(--white)/0.12);
}

@media screen and (max-width: 575px) {
    .banner-content-title {
        font-size: clamp(1.2rem, 6vw, 2rem);
    }
}

.banner-content-title span {
    display: block;
}

.banner-content-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    width: min(220px, 100%);
    color: hsl(var(--white)/0.75);
}

.banner-content-divider span {
    height: 1px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(hsl(var(--white)/0.6)), to(transparent));
    background: linear-gradient(90deg, transparent, hsl(var(--white)/0.6), transparent);
}

.banner-content-divider i {
    font-size: 0.75rem;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}

.banner-content-text {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--white)/0.7);
}

.policy-banner {
    text-align: center;
}

.policy-content {
    padding: 32px;
    border-radius: 16px;
    background-color: hsl(var(--white)/0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.policy-content h5 {
    margin-bottom: 32px;
}

.policy-content p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.policy-content ul {
    margin-bottom: 24px;
    list-style: auto;
    padding-left: 20px;
    font-weight: 500;
}

.policy-content li {
    margin-bottom: 12px;
    color: hsl(var(--white));
}

.category-card-wrapper {
    --count: 5;
    --gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--gap);
}

@media screen and (max-width: 1199px) {
    .category-card-wrapper {
        --count: 4;
    }
}

@media screen and (max-width: 991px) {
    .category-card-wrapper {
        --count: 3;
    }
}

@media screen and (max-width: 767px) {
    .category-card-wrapper {
        --count: 2;
    }
}

@media screen and (max-width: 575px) {
    .category-card-wrapper {
        --count: 1;
    }
}

.category-card {
    --radius: 16px;
    width: calc(100% / var(--count) - (var(--gap) - var(--gap) / var(--count)));
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    display: block;
}

.category-card-thumb {
    height: 100%;
}

.category-card-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.category-card-content {
    --inner-m: 12px;
    bottom: var(--inner-m);
    left: var(--inner-m);
    right: var(--inner-m);
    position: absolute;
    bottom: var(--inner-m);
    background-color: hsl(var(--black)/0.3);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    padding: 12px;
    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;
    border: 1px solid hsl(var(--white));
    gap: 16px;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.category-card-content .info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.category-card-content .arrow {
    --size: 38px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: var(--size);
    width: var(--size);
    color: hsl(var(--black));
    background-color: hsl(var(--white));
    border-radius: 50%;
    display: grid;
    place-content: center;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.category-card-content .name {
    font-weight: 700;
    color: hsl(var(--white));
    margin-bottom: 4px;
}

.category-card-content .type {
    color: hsl(var(--white));
    font-size: 0.875rem;
}

.category-card:hover .category-card-content {
    background-color: hsl(var(--white));
}

.category-card:hover .category-card-content .name,
.category-card:hover .category-card-content .type {
    color: hsl(var(--black));
}

.category-card:hover .category-card-content .arrow {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.product-show {
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
}

.product-show-bg {
    position: absolute;
    inset: 0;
}

.product-show::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: hsl(var(--black)/0.5);
}

.show-item {
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: hsl(var(--black)/0.05);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 20px;
    max-width: 460px;
    width: 100%;
    border: 1px solid hsl(var(--white)/0.2);
}

.show-item-name {
    margin-bottom: 12px;
}

.show-item-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
}

.show-item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.show-item-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.show-item-brand {
    color: hsl(var(--white));
    font-family: var(--text-font);
    font-size: 14px;
}

.show-item-thumb {
    max-width: 120px;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.show-item-btn {
    width: 100%;
    height: 40px;
    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;
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.all-product-wrapper {
    --count: 5;
    --gap: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--gap);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 1399px) {
    .all-product-wrapper {
        --count: 4;
        --gap: 32px;
    }
}

@media screen and (max-width: 1199px) {
    .all-product-wrapper {
        --count: 3;
    }
}

@media screen and (max-width: 991px) {
    .all-product-wrapper {
        --count: 2;
        --gap: 24px;
    }
}

@media screen and (max-width: 575px) {
    .all-product-wrapper {
        --count: 1;
        --gap: 16px;
    }
}

.product-card {
    width: calc(100% / var(--count) - (var(--gap) - var(--gap) / var(--count)));
    position: relative;
}

.product-card:hover .product-card-thumb {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product-card-thumb {
    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;
    margin-bottom: 10px;
    padding: 16px;
    border-radius: 12px;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.product-card-thumb img {
    max-height: 180px;
}

.product-card-body {
    padding: 8px;
    text-align: center;
}

.product-card-title {
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    color: hsl(var(--white));
    font-size: 1.125rem;
}

.product-card-price {
    font-size: 1.25rem;
    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: 8px;
    font-family: var(--heading-font);
}

.product-card-price .old-price {
    text-decoration: line-through;
    color: hsl(var(--white)/0.5);
}

.product-card-price .offer-price {
    color: hsl(var(--white));
    font-weight: 700;
}

.view-btn {
    background-color: transparent;
    border-radius: 6px;
    border: 1px solid hsl(var(--white)/0.2);
    color: hsl(var(--white));
    height: 40px;
    padding-inline: 16px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: all linear 0.3s;
    transition: all linear 0.3s;
}

.view-btn:hover {
    border: 1px solid hsl(var(--base));
    color: hsl(var(--white));
    background-color: hsl(var(--base));
}

.product-details__story {
    position: relative;
    padding: 72px 0 88px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .product-details__story {
        padding: 96px 0 120px;
    }
}

.product-details__banner {
    display: grid;
    margin-bottom: 56px;
}

@media screen and (min-width: 992px) {
    .product-details__banner {
        grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 88px;
    }
}

.product-details__banner-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid hsl(var(--white)/0.1);
    border-radius: 20px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--white)/0.08)), to(hsl(var(--white)/0.03)));
    background: linear-gradient(180deg, hsl(var(--white)/0.08), hsl(var(--white)/0.03));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    -webkit-box-shadow: 0 18px 40px hsl(var(--black)/0.2);
    box-shadow: 0 18px 40px hsl(var(--black)/0.2);
}

.product-details__banner-thumb {
    width: 72px;
    height: 88px;
    border-radius: 14px;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-details__banner-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.product-details__banner-copy p {
    margin-bottom: 0;
    color: hsl(var(--white));
    font-size: 14px;
    line-height: 1.3;
}

.product-details__banner-label {
    display: inline-block;
    font-size: 14px;
    color: hsl(var(--white));
    font-family: var(--text-font);
}

.product-details__banner-track {
    position: relative;
    overflow: hidden;
    border-top: 1px solid hsl(var(--white)/0.12);
    border-bottom: 1px solid hsl(var(--white)/0.12);
    border-right: 1px solid hsl(var(--white)/0.12);
    padding: 18px 0;
    background: hsl(var(--white)/0.03);
    border-radius: 0px 12px 12px 0;
}

@media screen and (max-width: 991px) {
    .product-details__banner-track {
        border: 0;
    }
}

.product-details__banner-track::before, .product-details__banner-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 1;
    pointer-events: none;
}

.product-details__banner-track::before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(hsl(var(--black))), to(transparent));
    background: linear-gradient(90deg, hsl(var(--black)) 0%, transparent 100%);
}

.product-details__banner-marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 48px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-animation: productDetailsMarquee 24s linear infinite;
    animation: productDetailsMarquee 24s linear infinite;
}

.product-details__banner-marquee span {
    white-space: nowrap;
    font-size: clamp(18px, 4vw, 24px);
    color: hsl(var(--white));
}

.product-details__story-list {
    display: grid;
    gap: 32px;
}

@media screen and (min-width: 768px) {
    .product-details__story-list {
        gap: 40px;
    }
}

.product-details__feature {
    display: grid;
    gap: 28px;
    padding: 24px;
    border: 1px solid hsl(var(--white)/0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, hsl(var(--white)/0.08), hsl(var(--white)/0.02)), hsl(var(--black)/0.6);
    -webkit-box-shadow: 0 24px 70px hsl(var(--black)/0.24);
    box-shadow: 0 24px 70px hsl(var(--black)/0.24);
}

@media screen and (min-width: 768px) {
    .product-details__feature {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 36px;
        padding: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .product-details__feature {
        gap: 52px;
        padding: 40px;
    }
}

@media screen and (min-width: 768px) {
    .product-details__feature--reverse .product-details__feature-content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .product-details__feature--reverse .product-details__feature-media {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.product-details__feature-content {
    max-width: 560px;
}

.product-details__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: hsl(var(--white)/0.58);
}

.product-details__feature-title {
    margin-bottom: 16px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: hsl(var(--white));
}

.product-details__feature-text {
    margin-bottom: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.8;
    color: hsl(var(--white)/0.72);
}

@media screen and (min-width: 992px) {
    .product-details__feature-text {
        font-size: 17px;
    }
}

.product-details__feature-media {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background-color: hsl(var(--white)/0.04);
}

@media screen and (min-width: 768px) {
    .product-details__feature-media {
        min-height: 460px;
    }
}

.product-details__feature-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.product-details__feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(hsl(var(--black)/0.14)));
    background: linear-gradient(180deg, transparent 0%, hsl(var(--black)/0.14) 100%);
    pointer-events: none;
}

@-webkit-keyframes productDetailsMarquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes productDetailsMarquee {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.product-details-show__shell {
    display: grid;
    gap: 20px;
}

@media screen and (min-width: 992px) {
    .product-details-show__shell {
        grid-template-columns: minmax(240px, 0.9fr) minmax(420px, 1.15fr) minmax(250px, 0.9fr);
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
}

.product-details-show__stack {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
}

.product-details-show__hero {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 760px;
    padding-bottom: 72px;
}

.product-details-show__hero-stage {
    position: absolute;
    inset: 0;
}

.product-details-show__hero-stage img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.product-details-show__spot {
    margin: 0;
    text-align: center;
    color: hsl(var(--black));
}

.product-details-show__frame {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background-color: hsl(var(--white));
    -webkit-box-shadow: 0 16px 42px hsl(var(--black)/0.08);
    box-shadow: 0 16px 42px hsl(var(--black)/0.08);
}

.product-details-show__spot--video .product-details-show__frame {
    height: 170px;
}

.product-details-show__spot--image .product-details-show__frame {
    height: 290px;
}

.product-details-show__spot--wide .product-details-show__frame {
    height: 290px;
}

.product-details-show__right-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.product-details-show__right-grid .product-details-show__frame {
    height: 150px;
}

.product-details-show__spot img,
.product-details-show__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.product-details-show__spot p {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.2;
    color: hsl(var(--white));
    font-family: var(--heading-font);
}

.product-details-show__purchase-card {
    left: 50%;
    right: auto;
    width: min(100%, 480px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1199px) {
    .product-details-show__stack--left,
.product-details-show__stack--right {
        padding-top: 0;
    }

    .product-details-show__hero {
        grid-column: 1/-1;
        min-height: 640px;
        padding-bottom: 24px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

@media screen and (max-width: 991px) {
    .product-details-show__shell {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-details-show__hero {
        min-height: 560px;
    }
}

@media screen and (max-width: 767px) {
    .product-details-show__shell {
        grid-template-columns: 1fr;
    }

    .product-details-show__hero {
        min-height: 420px;
        padding-bottom: 0;
    }

    .product-details-show__stack--left,
.product-details-show__stack--right {
        gap: 18px;
    }

    .product-details-show__spot--video .product-details-show__frame {
        height: 200px;
    }

    .product-details-show__spot--image .product-details-show__frame,
.product-details-show__spot--wide .product-details-show__frame {
        height: 260px;
    }

    .product-details-show__right-grid {
        gap: 14px;
    }

    .product-details-show__right-grid .product-details-show__frame {
        height: 170px;
    }

    .product-details-show__purchase-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        -webkit-transform: none;
        transform: none;
        margin-top: 18px;
    }
}

@media screen and (max-width: 575px) {
    .product-details-show__spot figcaption {
        font-size: 15px;
    }

    .product-details-show__spot--video .product-details-show__frame,
.product-details-show__spot--image .product-details-show__frame,
.product-details-show__spot--wide .product-details-show__frame,
.product-details-show__right-grid .product-details-show__frame {
        height: 220px;
    }

    .product-details-show__hero {
        min-height: 360px;
    }

    .product-details-show__purchase-card {
        padding: 16px;
    }
}

.pd-show {
    position: relative;
    overflow: visible;
    height: 100vh;
    background: hsl(var(--white)/0.03);
}

.pd-show__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.pd-show__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.pd-show__wrap {
    position: relative;
    z-index: 1;
    display: block;
    overflow: visible;
    padding: clamp(18px, 2.2vw, 40px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100vh;
    min-height: 100vh;
}

.pd-show__side {
    position: absolute;
    top: 8%;
    bottom: 8%;
    width: clamp(220px, 18vw, 290px);
    overflow: visible;
}

.pd-show__side--left {
    left: 5%;
}

.pd-show__side--right {
    right: 5%;
}

.pd-show__hero {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(46vw, 640px);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 100%;
    padding: 48px 0 34px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}

.pd-show__buy {
    width: min(100%, 480px);
    margin-inline: auto;
    padding: 20px;
    border: 1px solid hsl(var(--white)/0.12);
    border-radius: 24px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--white)/0.12)), to(hsl(var(--white)/0.05))), hsl(var(--black)/0.42);
    background: linear-gradient(180deg, hsl(var(--white)/0.12), hsl(var(--white)/0.05)), hsl(var(--black)/0.42);
    -webkit-box-shadow: 0 24px 60px hsl(var(--black)/0.32);
    box-shadow: 0 24px 60px hsl(var(--black)/0.32);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.pd-show__row {
    margin-bottom: 16px;
}

.pd-show__price {
    margin-bottom: 0;
    color: hsl(var(--white));
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    letter-spacing: 0.02em;
}

.pd-show__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 18px;
}

.pd-show__thumb {
    width: 72px;
    height: 72px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background: hsl(var(--white)/0.08);
}

.pd-show__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.pd-show__copy {
    min-width: 0;
}

.pd-show__title {
    margin-bottom: 8px;
    color: hsl(var(--white));
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.35;
}

.pd-show__brand {
    color: hsl(var(--white)/0.75);
    font-size: 0.95rem;
}

.pd-show__forms {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.pd-show__field {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.pd-show__label {
    display: block;
    margin-bottom: 8px;
    color: hsl(var(--white)/0.72);
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pd-show__select-wrap {
    position: relative;
    display: block;
}

.pd-show__select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid hsl(var(--white)/0.7);
    border-bottom: 1.5px solid hsl(var(--white)/0.7);
    -webkit-transform: translateY(-70%) rotate(45deg);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.pd-show__select {
    width: 100%;
    min-height: 52px;
    padding: 0 40px 0 16px;
    border: 1px solid hsl(var(--white)/0.12);
    border-radius: 14px;
    background: hsl(var(--black)/0.55);
    color: hsl(var(--white));
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pd-show__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    background: hsl(var(--white));
    color: hsl(var(--black));
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pd-show__card {
    position: absolute;
    margin: 0;
    text-align: center;
    color: hsl(var(--white));
}

/* .pd-show__card p {
    margin-top: 14px;
    margin-bottom: 0;
    color: hsl(var(--white));
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 1.25;
} */

.pd-show__card p {
    display: none: 
}

.pd-show_card--wide .pd-show_media {
    margin-bottom: 16px;
}

.pd-show__media {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: hsl(var(--white));
    -webkit-box-shadow: 0 16px 40px hsl(var(--black)/0.28);
    box-shadow: 0 16px 40px hsl(var(--black)/0.28);
}

.pd-show__media img,
.pd-show__video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.pd-show__card--video {
    top: 44px;
    left: 0;
    width: min(100%, 310px);
}

.pd-show__card--video .pd-show__media {
    height: 168px;
}

.pd-show__card--image {
    bottom: 0;
    left: 0;
    width: min(100%, 310px);
}

.pd-show__card--image .pd-show__media {
    height: 298px;
}

.pd-show__card--spec {
    top: 18px;
    right: 10px;
    width: 110px;
}

.pd-show__card--spec .pd-show__media {
    height: 110px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 18px;
    place-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.pd-show__card--spec .pd-show__media span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: hsl(var(--black));
    -webkit-box-shadow: 0 0 0 1px hsl(var(--black)/0.1);
    box-shadow: 0 0 0 1px hsl(var(--black)/0.1);
}

.pd-show__card--wide {
    top: 36px;
    right: 0;
    width: min(100%, 300px);
}

.pd-show__card--wide .pd-show__media {
    height: 292px;
}

.pd-show__grid {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(100%, 332px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pd-show__card--small {
    position: relative;
    width: auto;
}

.pd-show__card--small .pd-show__media {
    height: 140px;
}

@media screen and (max-width: 1399px) {
    .pd-show__card--video,
.pd-show__card--image {
        width: min(100%, 280px);
    }

    .pd-show__card--wide {
        width: min(100%, 270px);
    }
}

@media screen and (max-width: 1199px) {
    .pd-show__card--video,
.pd-show__card--image {
        width: min(100%, 200px);
    }

    .pd-show__card--wide {
        width: min(100%, 200px);
    }

    .pd-show__hero {
        width: min(46vw, 400px);
    }
}

@media screen and (max-width: 991px) {
    .pd-show__side,
.pd-show__card,
.pd-show__hero,
.pd-show__grid {
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: unset;
        transform: unset;
        width: 100%;
    }

    .pd-show__hero {
        padding: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%;
    }

    .pd-show__wrap,
.pd-show {
        height: auto;
    }

    .pd-show__wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .pd-show {
        padding-top: var(--header-h);
    }

    .pd-show__side--left {
        display: none;
    }

    .pd-show__side--right {
        max-width: 480px;
        margin-inline: auto;
    }
}

@media (max-width: 575px) {
    .pd-show__forms {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contact-section {
    overflow: hidden;
}

.contact-layout {
    padding: 24px;
    border-radius: 24px;
    background-color: hsl(var(--black));
}

.contact-form-panel {
    height: 100%;
    padding: 12px 6px 0 6px;
}

.contact-form-panel__header {
    max-width: 540px;
    margin-bottom: 28px;
}

.contact-form-panel__title {
    margin-bottom: 10px;
    color: hsl(var(--white));
    font-weight: 700;
}

.contact-form-panel__desc {
    color: hsl(var(--white)/0.8);
    font-size: 1rem;
    line-height: 1.75;
}

.contact-form .form--control {
    padding: 14px 18px;
    border: 1px solid hsl(var(--white)/0.08);
    border-radius: 12px;
    background-color: hsl(var(--white)/0.01);
    color: hsl(var(--white)) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
    width: 100%;
}

.contact-form .form--control::-webkit-input-placeholder {
    color: #9ca3af;
}

.contact-form .form--control::-moz-placeholder {
    color: #9ca3af;
}

.contact-form .form--control:-ms-input-placeholder {
    color: #9ca3af;
}

.contact-form .form--control::-ms-input-placeholder {
    color: #9ca3af;
}

.contact-form .form--control::placeholder {
    color: #9ca3af;
}

.contact-form .form--control:focus {
    border-color: hsl(var(--base)/0.45);
    -webkit-box-shadow: 0 0 0 4px hsl(var(--base)/0.08);
    box-shadow: 0 0 0 4px hsl(var(--base)/0.08);
}

.contact-form textarea.form--control {
    height: 120px;
    padding-top: 18px;
    border-radius: 12px;
    resize: none;
}

.contact-form__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.contact-form__action .btn {
    min-height: 56px;
    padding-inline: 28px;
    border-radius: 12px;
}

.contact-support {
    height: 100%;
    padding: 34px 24px 28px;
    border-radius: 20px;
    background-color: hsl(var(--white)/0.14);
    color: hsl(var(--white));
}

.contact-support__header {
    margin-bottom: 24px;
}

.contact-support__title {
    color: hsl(var(--white));
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-support__list {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-support__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 16px 16px 14px;
    border-radius: 16px;
    background-color: hsl(var(--white)/0.14);
}

.contact-support__item a {
    color: hsl(var(--white));
    font-weight: 500;
    line-height: 1.6;
}

.contact-support__item a:hover {
    color: hsl(var(--white));
}

.contact-support__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: hsl(var(--white));
}

.contact-support__label {
    margin-bottom: 2px;
    color: hsl(var(--white)/0.8);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-support__social {
    padding-top: 24px;
    border-top: 1px solid hsl(var(--white)/0.16);
}

.contact-support__social-title {
    margin-bottom: 16px;
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 600;
}

.contact-support__social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-support__social-links a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid hsl(var(--white)/0.08);
    border-radius: 12px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--white)/0.12)), to(hsl(var(--white)/0.05)));
    background: linear-gradient(180deg, hsl(var(--white)/0.12), hsl(var(--white)/0.05));
    color: hsl(var(--white));
    font-size: 1.05rem;
    -webkit-box-shadow: inset 0 1px 0 hsl(var(--white)/0.08), 0 10px 24px hsl(var(--black)/0.18);
    box-shadow: inset 0 1px 0 hsl(var(--white)/0.08), 0 10px 24px hsl(var(--black)/0.18);
    -webkit-transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.contact-support__social-links a:hover {
    color: hsl(var(--white));
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    border-color: hsl(var(--base)/0.45);
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--base)/0.42)), to(hsl(var(--base)/0.22)));
    background: linear-gradient(180deg, hsl(var(--base)/0.42), hsl(var(--base)/0.22));
    -webkit-box-shadow: inset 0 1px 0 hsl(var(--white)/0.12), 0 14px 30px hsl(var(--black)/0.24);
    box-shadow: inset 0 1px 0 hsl(var(--white)/0.12), 0 14px 30px hsl(var(--black)/0.24);
}

.contact-card {
    height: 100%;
    padding: 24px;
    border-radius: 16px;
    background-color: hsl(var(--white)/0.05);
    -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.contact-card__icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    color: hsl(var(--base));
}

.contact-card__icon svg {
    height: 32px;
    width: 32px;
}

.contact-card__title {
    margin-bottom: 14px;
    color: hsl(var(--white));
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    word-break: break-word;
}

.contact-card__desc {
    color: hsl(var(--white)/0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-card__link {
    color: hsl(var(--white));
    font-size: 1rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-card__link:hover {
    color: hsl(var(--white));
}

.contact-map {
    overflow: hidden;
    border-radius: 16px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 350px;
    border: 0;
}

@media screen and (max-width: 991px) {
    .contact-form-panel {
        padding: 0;
    }

    .contact-support__title {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .contact-layout {
        padding: 14px;
        border-radius: 18px;
    }

    .contact-cards {
        margin-bottom: 20px;
    }

    .contact-form-panel__header {
        margin-bottom: 22px;
    }

    .contact-form .form--control {
        min-height: 54px;
    }

    .contact-form textarea.form--control {
        min-height: 124px;
        border-radius: 18px;
    }

    .contact-form__action {
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
        justify-content: stretch;
    }

    .contact-form__action .btn {
        width: 100%;
        min-width: 0;
    }

    .contact-support {
        border-radius: 20px;
    }

    .contact-support__social-links {
        gap: 8px;
    }

    .contact-support__social-links a {
        width: 40px;
        height: 40px;
    }

    .contact-card {
        min-height: auto;
        padding: 24px 20px 26px;
        border-radius: 18px;
    }

    .contact-card__icon {
        margin-bottom: 24px;
    }

    .contact-map,
.contact-map iframe {
        min-height: 280px;
    }
}

.form--label {
    display: block;
    color: hsl(var(--white));
    margin-bottom: 8px;
    font-weight: 700;
}

.cart .checkout-information .title {
    font-size: 1.25rem;
}

.cart-list {
    padding: 20px;
    background-color: hsl(var(--white)/0.03);
    border-right: 1px solid hsl(var(--white)/0.08);
}

.cart-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.cart-list-item:not(:last-child) {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid hsl(var(--white)/0.08);
}

.cart-list-item__thumb {
    width: 100px;
    display: block;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 6px;
}

.cart-list-item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.cart-list-item__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .cart-list-item__content {
        gap: 5px;
    }
}

.cart-list-item__content-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
}

.cart-list-item__content-middle {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 6px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6px;
}

.cart-list-item__content-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 32px;
}

@media (max-width: 767px) {
    .cart-list-item__content-bottom {
        margin-top: 16px;
    }
}

.cart-list-item__title {
    margin-bottom: 0px;
    font-size: 1.125rem;
    color: hsl(var(--white)/0.9);
}

.cart-list-item__price .regular {
    font-size: 0.875rem;
    text-decoration: line-through;
    font-weight: 600;
    color: hsl(var(--white)/0.5);
    padding-right: 5px;
}

.cart-list-item__price .discount {
    color: hsl(var(--white)/0.92);
    font-weight: 500;
    font-size: 1.125rem;
}

@media screen and (max-width: 424px) {
    .cart-list-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cart-list-item__price .discount {
        font-size: 1rem;
    }
}

.cart-list-item__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.cart-list-item__action-btn {
    color: hsl(var(--white)/0.68);
}

.cart-list-item__action svg:hover {
    color: hsl(var(--danger));
}

.cart-list-item__action-btn {
    width: 30px;
    height: 30px;
    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: 8px;
}

.cart-list-item__action-btn svg {
    height: 18px;
    width: 18px;
}

.cart-list-item__action-btn.active path {
    fill: hsl(var(--base)) !important;
    color: hsl(var(--base));
}

.cart-list-item__action-btn:hover {
    color: hsl(var(--base));
}

.cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    background-color: hsl(var(--white)/0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid hsl(var(--white)/0.08);
}

.cart-wrapper__right {
    width: 400px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cart-wrapper__left {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

@media screen and (max-width: 991px) {
    .cart-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cart-wrapper__right {
        border-left: none;
        width: 100%;
    }
}

.cart-header {
    padding-bottom: 20px;
}

.cart-header__title {
    margin-bottom: 5px;
    font-size: 1.125rem;
}

.cart-header .desc {
    font-size: 1rem;
    color: hsl(var(--white)/0.68);
    margin-bottom: 20px;
}

.cart-header__action li {
    color: hsl(var(--white)/0.9);
    font-size: 1rem;
    margin-right: 25px;
    position: relative;
}

.cart-header__action li:after {
    content: "";
    position: absolute;
    left: -10px;
    height: 100%;
    width: 1px;
    background-color: hsl(var(--white)/0.12);
}

.cart-header__action li:first-child:after {
    display: none;
}

.cart-header__action li .form-check-label {
    color: hsl(var(--white)/0.68);
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 500;
}

.cart-header__action li button {
    color: hsl(var(--white)/0.68);
}

.cart .checkout-information {
    padding: 24px;
    background-color: hsl(var(--white)/0.03);
}

@media screen and (max-width: 424px) {
    .cart .checkout-information {
        padding: 20px;
    }
}

.cart-list-item__content-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    font-size: 13px;
}

.cart-list-item__content-info li:not(:last-child) {
    margin-bottom: 5px;
}

.cart-list-item__content-info li span:last-child {
    color: hsl(var(--white)/0.9);
    font-weight: 700;
}

.cart-list-item__info a, .cart-list-item__info span {
    color: hsl(var(--white)/0.55);
    font-size: 0.9125rem;
}

.cart-list-item__info a:hover, .cart-list-item__info span:hover {
    color: hsl(var(--base));
}

.checkout-information__list {
    border-bottom: 1px solid hsl(var(--white)/0.1);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.checkout-information__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout-information__list li:last-child {
    margin-bottom: none;
}

.checkout-information__list span {
    color: hsl(var(--white)/0.9);
    font-weight: 500;
}

.checkout-information__list span:last-child {
    font-weight: 600;
}

.checkout-information__list span:first-child {
    color: hsl(var(--white)/0.68);
}

.checkout-information__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.checkout-information__total span {
    font-weight: 600;
    color: hsl(var(--white)/0.92);
}

.checkout-information__total span:last-child {
    font-size: 1.25rem;
}

.checkout-payment-gateway {
    border-bottom: 1px solid hsl(var(--white)/0.1);
    padding-bottom: 15px;
    margin-bottom: 16px;
}

/* cart page end */
/* Checkout page design css */
.checkout-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background-color: hsl(var(--white)/0.03);
    border: 1px solid hsl(var(--white)/0.08);
}

.checkout-wrapper .cart-wrapper__right {
    width: 500px;
}

@media screen and (max-width: 1399px) {
    .checkout-wrapper .cart-wrapper__right {
        width: 380px;
    }

    .checkout-wrapper {
        gap: 24px;
    }
}

@media screen and (max-width: 1199px) {
    .checkout-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .checkout-wrapper .cart-wrapper__right {
        width: 100%;
    }
}

.checkout .cart-wrapper__left {
    background-color: transparent;
    padding: 24px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-right: 1px solid hsl(var(--white)/0.08);
}

.checkout .cart-wrapper__right {
    width: 555px !important;
    border: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1399px) {
    .checkout .cart-wrapper__right {
        width: 400px !important;
    }
}

@media screen and (max-width: 1199px) {
    .checkout .cart-wrapper__right {
        width: 100% !important;
    }
}

.checkout .checkout-information {
    background-color: transparent;
    padding: 24px;
    border-radius: 8px;
    width: 100%;
}

.shipping-method-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .shipping-method-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.shipping-method-wrapper .form--radio {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 !important;
}

@media screen and (max-width: 767px) {
    .shipping-method-wrapper .form--radio {
        width: 100%;
        max-width: 100%;
    }
}

.shipping-method-wrapper .form--radio .form-check-label {
    margin: 0;
    background-image: none !important;
    z-index: -1;
    border: 1px solid hsl(var(--white)/0.12);
    color: hsl(var(--white)/0.9) !important;
    padding: 24px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 8px;
    background-color: hsl(var(--white)/0.03);
}

@media screen and (max-width: 767px) {
    .shipping-method-wrapper .form--radio .form-check-label {
        padding: 20px;
    }
}

@media screen and (max-width: 575px) {
    .shipping-method-wrapper .form--radio .form-check-label {
        padding: 16px;
    }
}

.shipping-method-wrapper .form--radio .form-check-label .icon {
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1;
}

.shipping-method-wrapper .form--radio .form-check-label .text {
    font-size: 16px;
    font-weight: 600;
}

.shipping-method-wrapper .form--radio .form-check-input {
    border: 2px solid hsl(var(--white)/0.2);
    position: absolute;
    top: 20px;
    left: 45px;
    width: 24px;
    height: 24px;
}

@media screen and (max-width: 575px) {
    .shipping-method-wrapper .form--radio .form-check-input {
        left: 35px;
    }
}

.shipping-content {
    padding-left: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shipping-method-wrapper .form--radio .form-check-input:checked {
    border-color: hsl(var(--base)) !important;
}

.shipping-method-wrapper .form--radio .form-check-input:checked::before {
    width: 13px;
    height: 13px;
}

.profile-category {
    margin-top: 24px;
    max-width: 470px;
}

.profile-category__title {
    color: hsl(var(--white)/0.9);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-check-label:has(.form-check-input:checked) {
    border-color: hsl(var(--base)) !important;
    background: hsl(var(--base)/0.12);
}

.checkout-product__wrapper {
    margin-bottom: 24px;
}

.checkout-product__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.checkout-product__item:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.checkout-product__item__thumb {
    width: 80px;
    overflow: hidden;
}

.checkout-product__item__thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.checkout-product__item__right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.checkout-product__item__content .tag {
    display: inline-block;
    color: hsl(var(--white)/0.62);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.checkout-product__item__content .title {
    font-size: 1rem !important;
    font-weight: 700;
    color: hsl(var(--white)/0.92);
    margin-bottom: 4px;
}

.checkout-product__item__right .price {
    font-size: 0.875rem;
    font-weight: 900;
    color: hsl(var(--base));
}

/* Checkout page design css */
.qnty-cart-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.qnty-cart-list .product-qty {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px;
    border-radius: 30px;
    border: 1px solid hsl(var(--white)/0.12);
    background-color: hsl(var(--white)/0.03);
}

.qnty-cart-list .product-qty input[type=number] {
    -moz-appearance: textfield;
}

.qnty-cart-list .product-qty .product-qty__value:focus {
    outline: none;
}

.qnty-cart-list .product-qty__btn {
    width: 20px;
    height: 20px;
    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;
    text-align: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: hsl(var(--white)/0.08);
    color: hsl(var(--white)/0.9);
}

.qnty-cart-list .product-qty__btn:hover {
    background-color: hsl(var(--white)/0.14);
}

.product-qty__value {
    color: hsl(var(--white)/0.9);
    border: none;
    font-weight: 600;
    background-color: transparent !important;
}

.cart-list-item__content-info {
    color: hsl(var(--white)/0.9);
}

.cookie-card {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 999;
    width: min(420px, 100% - 32px);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(24px);
    transform: translateY(24px);
    pointer-events: none;
    -webkit-transition: opacity 0.45s ease, visibility 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, visibility 0.45s ease, -webkit-transform 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease, -webkit-transform 0.45s ease;
}

.cookie-card.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-card.hide {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(18px);
    transform: translateY(18px);
    pointer-events: none;
}

@media screen and (max-width: 991px) {
    .cookie-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        width: auto;
    }
}

@media screen and (max-width: 575px) {
    .cookie-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

.cookie-card__inner {
    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;
    gap: 20px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid hsl(var(--white)/0.12);
    background: hsl(var(--white)/0.03);
    -webkit-box-shadow: 0 18px 50px hsl(var(--black)/0.35);
    box-shadow: 0 18px 50px hsl(var(--black)/0.35);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media screen and (max-width: 767px) {
    .cookie-card__inner {
        padding: 16px;
    }
}

.cookie-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.cookie-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -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 hsl(var(--white)/0.12);
    background-color: hsl(var(--white)/0.04);
    color: hsl(var(--white));
    -webkit-box-shadow: inset 0 1px 0 hsl(var(--white)/0.05);
    box-shadow: inset 0 1px 0 hsl(var(--white)/0.05);
}

.cookie-card__copy {
    min-width: 0;
}

.cookie-card__title {
    margin-bottom: 4px;
    color: hsl(var(--white));
    font-size: 1rem;
    line-height: 1.2;
}

.cookie-card__text {
    margin-bottom: 0;
    color: hsl(var(--white)/0.66);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.cookie-card__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 575px) {
    .cookie-card__actions {
        width: 100%;
        gap: 10px;
    }
}

.cookie-card__btn {
    border: 0;
    min-width: 100px;
    min-height: 48px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.cookie-card__btn:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

@media screen and (max-width: 575px) {
    .cookie-card__btn {
        min-width: 0;
        width: 50%;
        min-height: 50px;
        padding-inline: 14px;
    }
}

.cookie-card__btn--ghost {
    border: 1px solid hsl(var(--white)/0.12);
    background-color: hsl(var(--white)/0.05);
    color: hsl(var(--white));
}

.cookie-card__btn--ghost:hover {
    background-color: hsl(var(--white)/0.1);
    color: hsl(var(--white));
}

.cookie-card__btn--solid {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
}

.cookie-card__btn--solid:hover {
    background-color: hsl(var(--white)/0.88);
    color: hsl(var(--black));
}

.region-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: auto;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    padding: 10px;
    background: radial-gradient(circle at 10% 18%, hsl(var(--black)/0.84), transparent 18%), radial-gradient(circle at 84% 26%, hsl(var(--black)/0.72), transparent 14%), radial-gradient(circle at 24% 82%, hsl(var(--black)/0.44), transparent 16%), -webkit-gradient(linear, left top, left bottom, from(hsl(var(--white)/0.08)), to(hsl(var(--black)/0.32))), rgba(204, 210, 215, 0.92);
    background: radial-gradient(circle at 10% 18%, hsl(var(--black)/0.84), transparent 18%), radial-gradient(circle at 84% 26%, hsl(var(--black)/0.72), transparent 14%), radial-gradient(circle at 24% 82%, hsl(var(--black)/0.44), transparent 16%), linear-gradient(180deg, hsl(var(--white)/0.08), hsl(var(--black)/0.32)), rgba(204, 210, 215, 0.92);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-transition: opacity 0.38s ease, visibility 0.38s ease, -webkit-transform 0.38s ease;
    transition: opacity 0.38s ease, visibility 0.38s ease, -webkit-transform 0.38s ease;
    transition: opacity 0.38s ease, transform 0.38s ease, visibility 0.38s ease;
    transition: opacity 0.38s ease, transform 0.38s ease, visibility 0.38s ease, -webkit-transform 0.38s ease;
}

.region-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 488px);
    min-height: min(100vh - 20px, 832px);
    margin: auto 0;
    padding: 212px 24px 84px;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--black)/0.97)), to(hsl(var(--black)/0.95)));
    background: linear-gradient(180deg, hsl(var(--black)/0.97), hsl(var(--black)/0.95));
    -webkit-box-shadow: 0 40px 80px hsl(var(--black)/0.5), inset 0 1px 0 hsl(var(--white)/0.1);
    box-shadow: 0 40px 80px hsl(var(--black)/0.5), inset 0 1px 0 hsl(var(--white)/0.1);
    color: hsl(var(--white));
    text-align: center;
}

.region-modal__eyebrow {
    margin-bottom: 8px;
    font-family: "Noto Sans Mono", monospace;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: hsl(var(--white)/0.92);
}

.region-modal__eyebrow--spaced {
    margin-top: 44px;
}

.region-modal__country,
.region-modal__market {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: hsl(var(--white));
}

.region-modal__country {
    font-size: clamp(2.1rem, 3.2vw, 2.72rem);
    line-height: 1.05;
}

.region-modal__market {
    font-size: clamp(1.9rem, 2.9vw, 2.5rem);
    line-height: 1.08;
}

.region-modal__actions {
    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;
    gap: 16px;
    margin-top: 74px;
}

.region-modal__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 272px;
    min-height: 62px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    -webkit-transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}

.region-modal__btn--primary {
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    font-family: "Noto Sans Mono", monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    -webkit-box-shadow: 0 16px 24px hsl(var(--black)/0.14);
    box-shadow: 0 16px 24px hsl(var(--black)/0.14);
}

.region-modal__btn--primary:hover {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    color: hsl(var(--black));
}

.region-modal__btn--link {
    min-width: auto;
    min-height: auto;
    padding: 0 2px 4px;
    border-bottom: 1px solid hsl(var(--white)/0.35);
    border-radius: 0;
    color: hsl(var(--white)/0.66);
    font-family: "Noto Sans Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.region-modal__btn--link:hover {
    color: hsl(var(--white));
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

@media screen and (max-width: 575px) {
    .region-modal {
        padding: 6px;
    }

    .region-modal__dialog {
        min-height: calc(100vh - 12px);
        padding: 180px 18px 68px;
    }

    .region-modal__icon {
        top: 184px;
    }

    .region-modal__eyebrow--spaced {
        margin-top: 36px;
    }

    .region-modal__actions {
        gap: 14px;
        margin-top: 58px;
    }

    .region-modal__btn {
        width: 100%;
        min-width: 0;
    }
}
/* ======================  Plugin Customization Start  ======================*/
/* ======================  Select2 Start  ======================*/
.select2-wrapper {
    --s-height: 48px;
    --select-border: hsl(var(--border-color));
    --select-bg: var(--white);
    --select-shadow: none;
    --border-radius: 8px;
    --font-size: 1rem;
    --font-weight: 400;
    --select-width: 100%;
    --select-color: hsl(var(--heading-color));
    --arrow-color: hsl(var(--border-color));
}

.select2-group {
    position: relative;
}

.select2-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.select2-group .select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    padding-left: 36px;
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    border: 1px solid var(--select-border);
    background: var(--select-bg);
    border-radius: var(--border-radius);
    min-height: var(--s-height);
    padding-inline: 4px;
    -webkit-box-shadow: var(--select-shadow);
    box-shadow: var(--select-shadow);
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: hsl(var(--base));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--black)/0.05);
}

.select2-dropdown {
    border: 1px solid hsl(var(--black)/0.2) !important;
    min-width: 140px;
    border-radius: var(--border-radius) !important;
    margin-top: 4px !important;
    background-color: hsl(var(--white));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--section-bg)) !important;
    color: hsl(var(--heading-color)) !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: hsl(var(--white)/0.1) !important;
    color: hsl(var(--white)) !important;
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--black));
    font-size: var(--font-size);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--gray-color)/0.1);
    border: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--black));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--s-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--arrow-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--arrow-color) transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: var(--s-height);
    font-size: var(--font-size);
    color: var(--select-color);
    font-weight: var(--font-weight);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--select-border);
    outline: 0;
    border-radius: var(--border-radius);
    padding: 6px 16px;
    font-size: var(--font-size);
    color: hsl(var(--black));
    background-color: hsl(var(--white));
}

.select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    width: var(--select-width) !important;
}

.img-flag-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}

.img-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.select2-results__options::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: hsl(var(--select-border));
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: hsl(var(--black)/0.2);
}

/* ======================  Select2 End  ======================*/
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider {
    margin: 0 -10px;
}

.slick-initialized.slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide > div {
    height: 100%;
}

.slick-arrow {
    --size: 40px;
    position: absolute;
    z-index: 1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    width: var(--size);
    height: var(--size);
    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;
    border-radius: 50%;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    background-color: hsl(var(--white));
    color: hsl(var(--black));
    font-size: 16px;
}

@media screen and (max-width: 991px) {
    .slick-arrow {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 575px) {
    .slick-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
}

.slick-arrow:hover {
    border-color: hsl(var(--base));
    background-color: hsl(var(--base));
    color: hsl(var(--white));
}

.slick-next {
    right: -20px;
}

@media screen and (max-width: 991px) {
    .slick-next {
        right: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-next {
        right: 0px;
    }
}

.slick-prev {
    left: -20px;
}

@media screen and (max-width: 991px) {
    .slick-prev {
        left: -10px;
    }
}

@media screen and (max-width: 575px) {
    .slick-prev {
        left: 0px;
    }
}

/* Dots Css Start */
.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: hsl(var(--black)/0.06);
    color: hsl(var(--heading-color));
    margin: 0 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    text-indent: -9999px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.slick-dots li.slick-active button {
    background: hsl(var(--base));
    width: 48px;
    border-radius: 24px;
    color: hsl(var(--base));
}

/* ================= Slick Arrow & Dots css Start ================ */
/* ======================  Plugin Customization End  ======================*/
/* ======================  Pages Design Start  ======================*/
body:has(.account-page) {
    overflow-x: hidden;
    background-color: #121212;
}

body:has(.account-page)::before {
    position: fixed;
    inset: 0;
    content: "";
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.35px) 0 18px/190px 190px;
    opacity: 0.9;
}

.account-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 48px 24px 56px;
}

.account-page__back {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(76, 76, 76, 0.96);
    color: rgba(255, 255, 255, 0.92);
    -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
    -webkit-transition: background-color 180ms ease, -webkit-transform 180ms ease;
    transition: background-color 180ms ease, -webkit-transform 180ms ease;
    transition: transform 180ms ease, background-color 180ms ease;
    transition: transform 180ms ease, background-color 180ms ease, -webkit-transform 180ms ease;
}

.account-page__back:hover {
    color: rgba(255, 255, 255, 0.92);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    background: rgba(88, 88, 88, 0.98);
}

.account-shell {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px;
}

.account-card {
    width: min(100%, 354px);
    padding: 20px 20px 24px;
    border-radius: 18px;
    background: #434343;
    -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    margin: auto;
}

.account-card-register {
    padding: 20px 20px 24px;
    border-radius: 18px;
    background: #434343;
    -webkit-box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    margin: auto;
}

.account-card__title {
    margin-bottom: 76px;
    color: rgba(245, 245, 245, 0.98);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
    font-weight: 400;
    line-height: 1.05;
}

.account-form {
    display: grid;
    gap: 18px;
}

.account-form__fields {
    display: grid;
    gap: 12px;
}

.account-form__control {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(245, 245, 245, 0.92) !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 0.94rem;
}

.account-form__control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.account-form__control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.account-form__control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.account-form__control::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.account-form__control::placeholder {
    color: rgba(255, 255, 255, 0.36);
}

.account-form__control:focus {
    border-color: rgba(255, 255, 255, 0.36);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
}

.account-password {
    position: relative;
}

.account-password .account-form__control {
    padding-right: 46px;
}

.account-password__toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
}

.account-card__forgot {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.79rem;
    font-weight: 700;
    text-align: center;
}

.account-card__forgot:hover {
    color: rgba(255, 255, 255, 0.96);
}

.account-card__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.account-card__submit {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: #7b7b7b;
    color: rgba(255, 255, 255, 0.38);
    font-family: var(--heading-font);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: not-allowed;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.account-card__social {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42px;
    flex: 0 0 42px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #f3f3f3;
    color: #111;
    font-size: 1rem;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.account-card__legal {
    margin: 12px auto 0;
    max-width: 250px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
}

.account-card__legal a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.account-card__legal a:hover {
    color: rgba(255, 255, 255, 0.98);
}

.account-card__create {
    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;
    width: 100%;
    min-height: 40px;
    margin-top: 32px;
    border-radius: 999px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#f0f0f0));
    background: linear-gradient(180deg, #fbfbfb 0%, #f0f0f0 100%);
    color: #111;
    font-size: 0.95rem;
    font-weight: 500;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 24px rgba(0, 0, 0, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 24px rgba(0, 0, 0, 0.14);
}

.account-card__create:hover {
    color: #111;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f3f3f3));
    background: linear-gradient(180deg, #ffffff 0%, #f3f3f3 100%);
}

@media screen and (max-width: 575px) {
    .account-page {
        padding-inline: 14px;
        padding-top: 56px;
    }

    .account-page__back {
        top: 12px;
        left: 12px;
    }

    .account-card {
        width: 100%;
        padding: 18px 16px 20px;
        border-radius: 16px;
    }

    .account-card__title {
        margin-bottom: 58px;
        font-size: 1.75rem;
    }

    .account-card__actions {
        gap: 10px;
    }

    .account-card__social {
        -ms-flex-preferred-size: 40px;
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .account-card__legal {
        max-width: 235px;
    }
}

.shop-page {
    position: relative;
}

.shop-refine-card {
    position: fixed;
    bottom: 24px;
    left: 50%;
    z-index: 990;
    width: min(650px, 100vw - 32px);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 1px solid hsl(var(--white)/0.1);
    border-radius: 12px;
    background: -webkit-gradient(linear, left top, left bottom, from(hsl(var(--white)/0.05)), to(hsl(var(--white)/0.03))), hsl(var(--black)/0.94);
    background: linear-gradient(180deg, hsl(var(--white)/0.05), hsl(var(--white)/0.03)), hsl(var(--black)/0.94);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
}

.shop-refine-card.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-16px);
    transform: translateX(-50%) translateY(-16px);
    pointer-events: none;
}

.shop-refine-card__panel {
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
    overflow: hidden;
    -webkit-transition: max-height 0.35s ease, opacity 0.25s ease, -webkit-transform 0.35s ease;
    transition: max-height 0.35s ease, opacity 0.25s ease, -webkit-transform 0.35s ease;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
    transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}

.shop-refine-card.is-expanded .shop-refine-card__panel {
    max-height: 220px;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.shop-refine-card__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 14px;
    padding: 18px 20px 16px;
}

.shop-refine-card__chip {
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background-color: transparent;
    color: hsl(var(--white));
    font-size: 0.9rem;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.shop-refine-card__chip:hover, .shop-refine-card__chip:focus-visible {
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.05);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.shop-refine-card__chip.is-active {
    color: hsl(var(--white));
    background-color: hsl(var(--white)/0.06);
}

.shop-refine-card__chip:nth-child(5), .shop-refine-card__chip:nth-child(6) {
    grid-column: span 2;
}

.shop-refine-card__toggle {
    width: 100%;
    min-height: 58px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: hsl(var(--white));
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-transition: color 0.25s ease, background-color 0.25s ease;
    transition: color 0.25s ease, background-color 0.25s ease;
}

.shop-refine-card__toggle-icon {
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.shop-refine-card.is-expanded .shop-refine-card__toggle {
    border-top: 1px solid hsl(var(--white)/0.08);
}

.shop-refine-card.is-expanded .shop-refine-card__toggle-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
    .shop-refine-card {
        width: min(100vw - 20px, 640px);
        border-radius: 20px;
    }

    .shop-refine-card__grid {
        gap: 10px 12px;
        padding: 16px 14px 14px;
    }

    .shop-refine-card__chip {
        min-height: 50px;
        font-size: 0.8rem;
    }

    .shop-refine-card__toggle {
        min-height: 54px;
    }
}

@media screen and (max-width: 575px) {
    .shop-refine-card__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-refine-card__chip:nth-child(5), .shop-refine-card__chip:nth-child(6) {
        grid-column: span 1;
    }
}
/* ======================  Pages Design End  ======================*/
/*# sourceMappingURL=main.css.map */


/* New css   */

.custom--card {
  background: #000 !important;
}

.stock-wrapper {
    color: hsl(var(--white) / 0.72) !important;
}

/* ======================  Select2 Start  ======================*/
* {
    --s-height: 45px;
    --select-border: hsl(var(--white)/0.1);
    --select-bg: #121212;
    --select-shadow: none;
    --border-radius: 8px;
    --font-size: 1rem;
    --font-weight: 400;
    --select-width: 100%;
    --select-color: hsl(var(--white));
    --arrow-color: hsl(var(--border-color));
}

.select2-group {
    position: relative;
}

.select2-group .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.select2-group .select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    padding-left: 36px;
}

.selection {
    display: block;
}

.select2 .dropdown-wrapper {
    display: none;
}

.select2-container--default :is(.select2-selection--multiple, .select2-selection--single) {
    border: 1px solid var(--select-border);
    background: var(--select-bg);
    border-radius: var(--border-radius);
    min-height: var(--s-height);
    padding-inline: 4px;
    -webkit-box-shadow: var(--select-shadow);
    box-shadow: var(--select-shadow);
}

.select2-container--default.select2-container--focus :is(.select2-selection--multiple, .select2-selection--single),
.select2-container--default.select2-container--open :is(.select2-selection--multiple, .select2-selection--single) {
    border-color: hsl(var(--base));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--white)/0.05);
}

.select2-dropdown {
    border: 1px solid hsl(var(--white)/0.2) !important;
    min-width: 140px;
    border-radius: var(--border-radius) !important;
    margin-top: 4px !important;
    background-color: hsl(var(--black));
}

.select2-container--default .select2-results__option--selected {
    background-color: hsl(var(--section-bg)) !important;
    color: hsl(var(--heading-color)) !important;
}

.select2-container--default .select2-results__option--highlighted {
    background-color: hsl(var(--white)/0.1) !important;
    color: hsl(var(--heading-color)) !important;
}

.select2-results__option {
    padding: 6px 10px;
    color: hsl(var(--white));
    font-size: var(--font-size);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: hsl(var(--white)/0.1);
    border: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: hsl(var(--white));
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 6px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--s-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--arrow-color) transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent var(--arrow-color) transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: var(--s-height);
    font-size: var(--font-size);
    color: var(--select-color);
    font-weight: var(--font-weight);
}

.select2-container--default .select2-selection--multiple .select2-selection_choice_display {
    padding-left: 6px;
    padding-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection_choice_remove {
    border: 0;
}

.select2-search--dropdown {
    display: block;
    padding: 8px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid var(--select-border);
    outline: 0;
    border-radius: var(--border-radius);
    padding: 6px 16px;
    font-size: var(--font-size);
    color: hsl(var(--white));
    background-color: hsl(var(--select-bg));
}

.select2-container:has(.select2-selection--multiple, .select2-selection--single) {
    width: var(--select-width) !important;
}
.select2-results__options::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: var(--select-border);
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: hsl(var(--white)/0.2);
}

/* ======================  Select2 End  ======================*/

a.cookie-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* Custom Modal Styling for Dark Theme */
.modal-content {
    background-color: #1a1a1a;
    border: 1px solid hsl(var(--white)/0.1);
    color: hsl(var(--white));
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.modal-footer {
    border-top: 1px solid hsl(var(--white)/0.1);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}


/* Dashboard Table Action Button */
.dashboard-table__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: hsl(var(--white)/0.8);
    border: 1px solid hsl(var(--white)/0.1);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.dashboard-table__action:hover {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
    box-shadow: 0 4px 12px hsl(var(--base)/0.2);
}

.dashboard-table__action i {
    margin-right: 6px;
    font-size: 1.1rem;
}



/* ====================== about section ==================== */
body:has(.about-page) {
    overflow-x: hidden;
    background: radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.35), transparent 35%), radial-gradient(circle at 80% 35%, rgba(190, 170, 255, 0.28), transparent 32%), -webkit-gradient(linear, left top, left bottom, from(#0d0d0f), to(#070708));
    background: radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.35), transparent 35%), radial-gradient(circle at 80% 35%, rgba(190, 170, 255, 0.28), transparent 32%), linear-gradient(180deg, #0d0d0f 0%, #070708 100%);
}

.about-page {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-h, 88px) + 18px);
    padding-bottom: 64px;
}

.about-section {
    position: relative;
    min-height: 100svh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-block: clamp(56px, 7vw, 96px);
    overflow: hidden;
}

.about-section + .about-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-kicker {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(34px, 5vw, 84px);
}

.about-hero__content {
    max-width: 760px;
}

.about-hero__title {
    margin-bottom: 22px;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
}

.about-hero__lead {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.about-hero__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 18px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-hero__cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.12)), to(rgba(255, 255, 255, 0.04)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.25);
}

.about-hero__cta:hover {
    color: rgba(255, 255, 255, 0.98);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
}

.about-hero__cta--secondary {
    background: transparent;
}

.about-hero__meta {
    max-width: 300px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.8rem;
    line-height: 1.7;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero__visual {
    position: relative;
    min-height: clamp(540px, 74vw, 820px);
    isolation: isolate;
    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;
}

.about-hero__visual::before,
.about-hero__visual::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.about-hero__visual::before {
    background: radial-gradient(circle at 54% 50%, rgba(255, 255, 255, 0.28), transparent 26%), radial-gradient(circle at 50% 66%, rgba(196, 166, 255, 0.18), transparent 34%);
    -webkit-filter: blur(18px);
    filter: blur(18px);
    opacity: 1;
}

.about-hero__visual::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.08)), to(rgba(8, 8, 10, 0.55))), radial-gradient(circle at center, transparent 42%, rgba(5, 5, 6, 0.5) 100%);
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.55)), radial-gradient(circle at center, transparent 42%, rgba(5, 5, 6, 0.5) 100%);
}

.about-hero__cap {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    position: relative;
    z-index: 2;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 72px);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.about-story__title,
.about-craft__title {
    max-width: 720px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.about-story__copy {
    display: grid;
    gap: 18px;
    padding-top: 6px;
}

.about-story__copy p,
.about-story__panel p,
.about-craft__card p,
.about-craft__footer p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.9;
}

.about-story__panel {
    margin-top: clamp(40px, 6vw, 84px);
    padding: clamp(24px, 4vw, 36px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.04)), to(rgba(255, 255, 255, 0.01)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.about-story__panel p {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.about-craft__header {
    display: grid;
    gap: 8px;
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 56px);
}

.about-craft__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-craft__card {
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.06)), to(rgba(255, 255, 255, 0.02)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.about-craft__index {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.about-craft__card h3 {
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-craft__footer {
    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;
    gap: 24px;
    margin-top: clamp(28px, 4vw, 44px);
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-craft__footer p {
    max-width: 720px;
}

@media screen and (max-width: 1199px) {
    .about-hero__grid,
.about-story__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__content {
        max-width: 100%;
    }

    .about-hero__visual {
        min-height: 640px;
    }

    .about-craft__grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .about-page {
        padding-top: calc(var(--header-h, 80px) + 8px);
        padding-bottom: 40px;
    }

    .about-section {
        min-height: auto;
        padding-block: 46px;
    }

    .about-kicker {
        margin-bottom: 14px;
        font-size: 0.7rem;
        letter-spacing: 0.26em;
    }

    .about-hero__lead,
.about-story__copy p,
.about-craft__card p,
.about-craft__footer p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .about-hero__visual {
        min-height: 520px;
    }

    .about-story__panel p {
        font-size: clamp(1.2rem, 5.2vw, 1.8rem);
    }

    .about-craft__card {
        min-height: auto;
        padding: 24px;
        border-radius: 20px;
    }

    .about-craft__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .about-hero__cta {
        width: 100%;
    }
}
/* ====================== about section end ==================== */