/* Verile Estedad Variable Font */
@font-face {
    font-family: 'Estedad';
    src: url('../fonts/estedad/fd/estedad-fd-var.woff2') format('woff2-variations'),
        url('../fonts/estedad/fd/estedad-fd-var.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-size: 14px;
    font-size: var(--font-size);
    --bg-primary: #2D45D2;
    --bg-primary-op: #F5F7FC;
    --bg-primary-50: #EAECFB;
    --bg-primary-500: #2437AA;
    --bg-warning : #FFFAEB;
    --bg-error : #FEF3F2;
    --bg-info : #F9FAFB;
    --bg-success : #ECFDF3;
    --color-primary: #2437AA;
    --color-primary-light: #D5DAF6;
    --color-primary-500: #2D45D2;
    --color-danger: #DF292C;
    --color-success: #17B26A;
    --color-dark: #0A0B0F;
    --color-dark-50: #808185;
    --color-dark-400: #A2AAC3;
    --color-dark-500: #838EAF;
    --color-dark-600: #505B7C;
    --color-dark-700: #3C445D;
    --color-dark-800: #282E3E;
    --block-spacer: 50px;
    --block-padding: 50px;
    --swiper-theme-color: #2437AA;
    --base-gap: 7.5px;
    --base-sapcing: 15px;
    --container-pading: 20px;
    --row-gutter-x: 20px;
    --row-gutter-y: 10px;
}

/* ============================================
   Colors and BG
   ============================================ */
.text-dark {
    color: var(--color-dark) !important;
}
.text-dark-50, .text-muted {
    color: var(--color-dark-50) !important;
}
.text-dark-800 {
    color: var(--color-dark-800) !important;
}
.text-dark-700 {
    color: var(--color-dark-700) !important;
}
.text-dark-600 {
    color: var(--color-dark-600) !important;
}
.text-dark-500 {
    color: var(--color-dark-500) !important;
}
.text-dark-400 {
    color: var(--color-dark-400) !important;
}
.text-primary {
    color: var(--color-primary) !important;
}
.text-primary-500 {
    color: var(--color-primary-500) !important;
}
.text-primary-light {
    color: var(--color-primary-light) !important;
}
.text-danger {
    color: var(--color-danger) !important;
}
.text-success {
    color: var(--color-success) !important;
}
.text-white {
    color:#fff !important; 
}
.bg-white {
    background-color: #fff !important;
}
.bg-dark {
    background-color: var(--color-dark) !important;
}
.bg-primary {
    background-color: var(--bg-primary) !important;
}
.bg-primary-op {
    background-color: var(--bg-primary-op) !important;
}
.bg-primary-50 {
    background-color: var(--bg-primary-50) !important;
}
.bg-primary-500 {
    background-color: var(--bg-primary-500) !important;
}
.bg-warning {
    background-color: var(--bg-warning) !important;
}
.bg-error {
    background-color: var(--bg-error) !important;
}
.bg-info {
    background-color: var(--bg-info) !important;
}
.bg-success {
    background-color: var(--bg-success) !important;
}
/* ============================================
   Base Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    direction: rtl;
    text-align: right;
    font-family: 'Estedad', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #FFFFFF;
    color: #0A0B0F;
    font-size: 14px;
    line-height: 1.5;
}
*,::after,::before {
    box-sizing: border-box
}
@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}
.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.4;
}
.h1,h1 {
    font-size:1.8rem
}
.h2,h2 {
    font-size:1.5rem
}
 .h3,h3 {
    font-size:1.3rem
}
 .h4,h4 {
    font-size:1.2rem
}

.h5,h5 {
    font-size: 1.1rem
}
.h6,h6 {
    font-size: 1rem
}
a {
    text-decoration: none;
    color: inherit;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

input,
select,
textarea {
    font-family: inherit;
}

input::-moz-placeholder {
    color: #A2AAC3;
}

input::placeholder {
    color: #A2AAC3;
}
.border {border: 1px solid #E8EAF0;}
.border-light {border-color:  rgba(232, 234, 240, 0.3);}
.border-0 {
    border: none !important
}
.hr-divider, hr, .border-top {
    border-top: 1px solid #E8EAF0;
    border-width: 1px 0 0 0;
}
.vr-divider {
    width: 1px;
    display: inline-block;
    height: 10px;
    border-left: 1px solid #E8EAF0;
    margin: 0 6px;
}
.border-bottom {
    border-bottom: 1px solid #E8EAF0;
}
.rounded-0 {
  border-radius: 0;  
}
.rounded-sm {
  border-radius: 8px;  
}
.rounded-md {
  border-radius: 12px;  
}
.rounded-lg {
  border-radius: 16px !important;  
}
.rounded-xl {
  border-radius: 20px;  
}
.rounded-circle {
  border-radius: 50% !important;  
}
.rounded {
  border-radius: 60px !important;  
}
.block-contents {
    color: #505B7C;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

.block-contents > :first-child {
    margin-top: 0;
}

.block-contents h1,
.block-contents h2,
.block-contents h3,
.block-contents h4,
.block-contents h5,
.block-contents h6 {
    color: #0A0B0F;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: right;
}

.block-contents h1 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 44px;
    font-weight: 800;
}

.block-contents h2 {
    margin: 32px 0 16px;
    font-size: 24px;
    line-height: 36px;
}

.block-contents h3 {
    margin: 28px 0 14px;
    font-size: 20px;
    line-height: 32px;
}

.block-contents h4 {
    margin: 24px 0 12px;
    font-size: 18px;
    line-height: 28px;
}

.block-contents h5 {
    margin: 20px 0 10px;
    font-size: 16px;
    line-height: 26px;
}

.block-contents h6 {
    margin: 16px 0 8px;
    font-size: 14px;
    line-height: 24px;
    color: #282E3E;
}

.block-contents p {
    margin: 0 0 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #505B7C;
    text-align: justify;
}

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

.block-contents p + h2,
.block-contents p + h3,
.block-contents p + h4 {
    margin-top: 28px;
}

.block-contents ul,
.block-contents ol {
    margin: 0 0 20px;
    padding-right: 24px;
}

.block-contents li {
    margin-bottom: 10px;
    text-align: justify;
}

.block-contents ul {
    list-style: disc;
}

.block-contents ol:not(.list-styled) {
    list-style: decimal;
}

.block-contents ol.list-styled {
    list-style: none;
    padding: 0;
    counter-reset: content-counter;
}

.block-contents ol.list-styled li {
    counter-increment: content-counter;
    margin-bottom: 20px;
}

.block-contents ol.list-styled li::before {
    content: counter(content-counter) "- ";
    font-weight: 600;
    color: #0A0B0F;
}

.block-contents ol.list-styled.list-styled-from-5 {
    counter-reset: content-counter 4;
}

.block-contents a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.block-contents a:hover {
    color: #2437AA;
}

.block-contents strong,
.block-contents b {
    font-weight: 700;
    color: #0A0B0F;
}

.block-contents blockquote {
    display: block;
    margin: 24px 0;
    padding: 30px;
    background: #F5F7FC;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #282E3E;
    text-align: right;
    position: relative;
}
.block-contents blockquote:before {
    content : "";
    width: 2px;
    height: 20px;
    position:absolute;
    right: 0;
    top: 30px;
    background: var(--color-primary);
}
.block-contents blockquote p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #282E3E;
    text-align: right;
}

.block-contents .content-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
    padding: 26px 36px;
    background: #fff;
    border: 1px solid #E8EAF0;
    border-radius: 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    color: #0A0B0F;
    text-align: right;
}

.block-contents blockquote p,
.block-contents .content-callout p {
    margin: 0;
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    line-height: 2;
    color: #0A0B0F;
    text-align: right;
}

.block-contents .content-callout-btn {
    flex: 0 0 41px;
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #0A0B0F;
    border: 1px solid #E0E3EB;
}

.block-contents figure {
    margin: 24px 0;
    text-align: center;
}

.block-contents figure img,
.block-contents img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    margin: auto;
}

.block-contents figcaption {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #838EAF;
    text-align: center;
}

.block-contents .table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid #E0E3EB;
    border-radius: 16px;
}

.block-contents table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    background: #fff;
}

.block-contents th,
.block-contents td {
    padding: 14px 18px;
    border-bottom: 1px solid #E8EAF0;
    text-align: right;
    vertical-align: top;
}

.block-contents thead th {
    background: #F5F7FC;
    font-weight: 700;
    color: #0A0B0F;
    border-bottom: 1px solid #E0E3EB;
}

.block-contents tbody tr:last-child td {
    border-bottom: none;
}

.block-contents hr {
    margin: 32px 0;
    border: none;
    border-top: 1px solid #E8EAF0;
}

.block-contents pre {
    margin: 20px 0;
    padding: 20px 24px;
    overflow-x: auto;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 12px;
    font-size: 14px;
    line-height: 24px;
    color: #282E3E;
    direction: ltr;
    text-align: left;
}

.block-contents code {
    padding: 2px 8px;
    background: #F5F7FC;
    border-radius: 6px;
    font-size: 14px;
    color: #282E3E;
}

.block-contents pre code {
    padding: 0;
    background: transparent;
}
.lh-regular {line-height: 1.8 !important}
.lh-md {line-height: 2 !important}
.lh-lg {line-height: 2.2 !important}
/* ============================================
   Container & Layout
   ============================================ */
.container {
    max-width: 1239px;
    margin: 0 auto;
    padding: 0 var(--container-pading);
}

/* ============================================
   Font Styles 
   ============================================ */
.fw-lighter {
    font-weight: 200 !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-regular {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold,
.bold,
strong,
b {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.fw-blacker {
    font-weight: 1000 !important;
}

.small {
    font-size: 90%;
}

.fs-xxs {
    font-size: 0.857rem !important;
}

/* 12px */
.fs-xs {
    font-size: 0.929rem !important;
}

/* 13px */
.fs-regular {
    font-size: 1rem !important;
}

/* 14px (بیس) */
.fs-sm {
    font-size: 1.143rem !important;
}

/* 16px */
.fs-md {
    font-size: 1.286rem !important;
}

/* 18px */
.fs-lg {
    font-size: 1.429rem !important;
}

/* 20px */
.fs-xl {
    font-size: 1.564rem !important;
}

/* 21.9px */
.fs-xxl {
    font-size: 1.714rem !important;
}

/* 24px */
.fs-3xl {
    font-size: 1.857rem !important;
}

/* 26px */
.fs-4xl {
    font-size: 2rem !important;
}

/* 28px */
.fs-5xl {
    font-size: 2.286rem !important;
}

/* 32px */

/* icons : icon style */
.iconSize-normal {
    font-size: 1.429rem !important;
}

/* ============================================
   Flex Grid System - 12 Columns
   ============================================ */
.d-flex {
    display: flex;
}
.d-block {
    display: block;
}
.d-inline-flex {
    display: inline-flex !important;
}
.flex-wrap{flex-wrap:wrap}
.flex-column {flex-direction: column;}
.d-none {
    display: none !important;
}
.flex-grid {
    --grid-gap: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--grid-gap);
}
.flex-grid>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
}
.flex-grid>*:not([class^="col-"]) {
    flex: 1 0 0%;
}
.ws-nowrap {
    white-space: nowrap;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--row-gutter-y));
    margin-right: calc(-0.5 * var(--row-gutter-x));
    margin-left: calc(-0.5 * var(--row-gutter-x));
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--row-gutter-x) * 0.5);
    padding-left: calc(var(--row-gutter-x) * 0.5);
    margin-top: var(--row-gutter-y);
}
.flex-fill {
    flex: 1
}

.mr-auto {
    margin-right: auto;
}
.ml-auto {
    margin-left: auto;
}
.ml-xs {margin-left: calc(0.25 * var(--base-sapcing));}
.ml-sm {margin-left: calc(0.5 * var(--base-sapcing));}
.ml-md {margin-left: var(--base-sapcing);}
.ml-lg {margin-left: calc(1.5 * var(--base-sapcing));}
.mr-xs {margin-right: calc(0.25 * var(--base-sapcing));}
.mr-sm {margin-right: calc(0.5 * var(--base-sapcing));}
.mr-md {margin-right: var(--base-sapcing);}
.mr-lg {margin-right: calc(1.5 * var(--base-sapcing));}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}
.text-limit-ellipsis,.text-limit-ellipsis-md,.text-limit-ellipsis-lg {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-limit-ellipsis-md {
    max-width: 200px;
}
.text-limit-ellipsis-lg {
    max-width: 300px;
}
.flex-gap {
    --grid-gap: 5px;
    gap : var(--grid-gap)
}
.gap-5 {
    --grid-gap: 5px;
}
.gap-8 {
    --grid-gap: 8px;
}

.gap-10 {
    --grid-gap: 10px;
}

.gap-15 {
    --grid-gap: 15px;
}

.gap-20 {
    --grid-gap: 20px;
}

.gap-30 {
    --grid-gap: 30px;
}


.col {
    flex: 1 0 0%;
}
.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }
@media (min-width: 576px) {
  .col-sm { flex: 1 0 0%; }
  .col-sm-auto { flex: 0 0 auto; width: auto; }

  .col-sm-1 { width: 8.333333%; }
  .col-sm-2 { width: 16.666667%; }
  .col-sm-3 { width: 25%; }
  .col-sm-4 { width: 33.333333%; }
  .col-sm-5 { width: 41.666667%; }
  .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.333333%; }
  .col-sm-8 { width: 66.666667%; }
  .col-sm-9 { width: 75%; }
  .col-sm-10 { width: 83.333333%; }
  .col-sm-11 { width: 91.666667%; }
  .col-sm-12 { width: 100%; }
}
@media (min-width: 768px) {
  .col-md { flex: 1 0 0%; }
  .col-md-auto { width: auto; }

  .col-md-1 { width: 8.333333%; }
  .col-md-2 { width: 16.666667%; }
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333333%; }
  .col-md-5 { width: 41.666667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.333333%; }
  .col-md-8 { width: 66.666667%; }
  .col-md-9 { width: 75%; }
  .col-md-10 { width: 83.333333%; }
  .col-md-11 { width: 91.666667%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg { flex: 1 0 0%; }
  .col-lg-auto { width: auto; }

  .col-lg-1 { width: 8.333333%; }
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
  .col-lg-8 { width: 66.666667%; }
  .col-lg-9 { width: 75%; }
  .col-lg-10 { width: 83.333333%; }
  .col-lg-11 { width: 91.666667%; }
  .col-lg-12 { width: 100%; }
}
.g-0 { --row-gutter-x: 0; --row-gutter-y: 0; }
.g-sm { --row-gutter-x: 10px; --row-gutter-y: 10px; }
.g-regular { --row-gutter-x: 15px; --row-gutter-y: 15px; }
@media (min-width: 992px) {
    .g-md { --row-gutter-x: 30px; --row-gutter-y: 20px; }
    .g-lg { --row-gutter-x: 50px; --row-gutter-y: 30px; }
}
.w-100 {width: 100%;}
.h-100 {height: 100%;}
.h-100vh {height: 100vh;}

.sticky-top {
    position: sticky;
    top: 20px;
}




.align-middle {vertical-align: middle;}
.align-items-center {
    align-items: center;
}
.align-items-end {
    align-items: flex-end;
}
.justify-content-start {
    justify-content: flex-start;
}
.justify-content-end {
    justify-content: flex-end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}

.my-sm,
.mt-sm {
    margin-top: calc(0.5 * var(--base-sapcing))
}
.my-sm,
.mb-sm {
    margin-bottom: calc(0.5 * var(--base-sapcing))
}
.py-sm,
.pt-sm {
    padding-top: calc(0.5 * var(--base-sapcing))
}
.py-sm,
.pb-sm {
    padding-bottom: calc(0.5 * var(--base-sapcing))
}
.p-sm {padding: calc(0.5 * var(--base-sapcing));}
.p-md {padding: calc(1 * var(--base-sapcing));}
.p-semi-lg {padding: calc(1.5 * var(--base-sapcing));}
.p-lg {padding: calc(2 * var(--base-sapcing));}
.p-xl {padding: calc(3 * var(--base-sapcing));}
.p-0 {padding: 0 !important;}
.m-0 {margin: 0 !important;}
.my-md,
.mt-md {
    margin-top: var(--base-sapcing)
}

.my-md,
.mb-md {
    margin-bottom: var(--base-sapcing)
}

.py-md,
.pt-md {
    padding-top: var(--base-sapcing)
}

.py-md,
.pb-md {
    padding-bottom: var(--base-sapcing)
}

.my-lg,
.mt-lg {
    margin-top: calc(2 * var(--base-sapcing))
}

.my-lg,
.mb-lg {
    margin-bottom: calc(2 * var(--base-sapcing))
}

.py-lg,
.pt-lg {
    padding-top: calc(2 * var(--base-sapcing))
}

.py-lg,
.pb-lg {
    padding-bottom: calc(2 * var(--base-sapcing))
}

.my-xl,
.mt-xl {
    margin-top: calc(3 * var(--base-sapcing))
}

.my-xl,
.mb-xl {
    margin-bottom: calc(3 * var(--base-sapcing))
}

.py-xl,
.pt-xl {
    padding-top: calc(3 * var(--base-sapcing))
}

.py-xl,
.pb-xl {
    padding-bottom: calc(3 * var(--base-sapcing))
}

/* Scrollbar Style */
.scrollbar-inner {
    overflow: auto;
}

@media (min-width: 769px) {
    .scrollbar-inner {
        scrollbar-color: #ccc transparent;
        scrollbar-width: thin;
    }

    .scrollbar-inner::-webkit-scrollbar {
        background-color: transparent;
        width: 2px;
    }

    .scrollbar-inner::-webkit-scrollbar-corner {
        display: none;
    }

    .scrollbar-inner::-webkit-scrollbar-thumb {
        background-color: rgb(210 210 210 / 15%);
    }


    .scrollbar-inner:hover::-webkit-scrollbar-thumb {
        background-color: #ccc;
    }

    .sticky-inner.scrollbar-inner:not(:hover)::-webkit-scrollbar {
        display: none;
    }

    .sticky-inner.scrollbar-inner:not(:hover) {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .sidebar-widget-sticky {
        position: sticky;
        top: 150px;
        transition: all 0.3s ease;
    }
}

/* ============================================
   loading styles
   ============================================ */
.loader {
	position: relative;
}

.btn.loader, .submitting .btn[type="submit"], [type="submit"].loader {
	color: rgb(255 255 255 / 0%);
	position: relative;
}
.loader:after, .submitting .btn[type="submit"]:after {
	content: "";
	border-radius: 50%;
	width: 20px;
	height: 20px;
	font-size: 10px;
	border: 2px solid rgb(255 255 255 / 0%);
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: loading_circle 1s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);
	animation: loading_circle 1s infinite cubic-bezier(0.18, 0.89, 0.32, 1.28);
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -12px;
	margin-left: -12px;
	z-index: 11;
}

@-webkit-keyframes loading_circle {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loading_circle {
	0% {
		-webkit-transform: scale(1) rotate(0deg);
		transform: scale(1) rotate(0deg);
	}

	100% {
		-webkit-transform: scale(0.9) rotate(360deg);
		transform: scale(0.9) rotate(360deg);
	}
}
/* ============================================
   Header
   ============================================ */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E8EAF0;
    padding-bottom: 8px;
}
.header-banner {
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
}
.header-banner.header-banner--media {padding: 0;}
.header-banner--media {
    padding: 0;
    min-height: 44px;
}
.header-banner-media-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    line-height: 0;
}
.header-banner-media {
    display: block;
    max-height: 52px;
    min-height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
}
.header-banner-text {
    line-height: 1.4;
}

.header-top {
    padding: 20px 0 30px;
}

.header-top-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 55px;
    height: 64px;
}

.header-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 31px;
}

.header-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.icon-divider {
    width: 0px;
    height: 26px;
    border: 1.5px solid #F0F1F5;
}

.icon-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0B0F;
    font-size: 20px;
}

.icon-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-badge {
    width: 6px;
    height: 6px;
    background: #0A0B0F;
    border-radius: 50%;
}

.icon-badge-count {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary, #e11d48);
    color: #fff;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    z-index: 1;
}

.header-search {
    position: relative;
}

.header-search.is-open .search-form {
    border-color: var(--color-primary);
}

.search-form {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 28px;
    gap: 20px;
    width: 500px;
    max-width: 100%;
    height: 60px;
    border: 1.5px solid #F0F1F5;
    border-radius: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;

    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #3C445D;
}

.search-input::placeholder {
    color: #3C445D;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A0B0F;
    font-size: 20px;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: 160px;
    height: 39px;
}
.header-logo a {display: block; width: 100%; height: auto;}
.logo-text {
    width: 161px;
    height: 29px;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: right;
    letter-spacing: 0.04em;
    color: #121219;
}

.logo-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 7px;
    gap: 10px;
    background: #DF292C;
    border-radius: 9px;
}

.header-nav {
    padding: 0;
}

.nav-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 183px;
    height: 41px;
}

.nav-support {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: 178px;
    height: 25px;
}

.nav-support-text {

    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    color: #0A0B0F;
}

.nav-support-label {

    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    color: #0A0B0F;
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.nav-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #3C445D;
    cursor: pointer;
    white-space: nowrap;
}

.nav-item-icon {
    width: 20px;
}

.nav-item-main {
    font-weight: 700;
    color: #0A0B0F;
    letter-spacing: -0.02em;
    margin-left: 20px;
    position: relative;
}

.nav-item-main:after {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 1px;
    height: 1px;
    width: 100%;
    background: #000;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    z-index: 100;
    background: #fff;
    right: 0;
    width: 100%;
    min-width: 140px;
    box-shadow: 0 0 20px rgb(0 0 0 / 3%);
    border: 1px solid #eee;
    padding: 10px;
    font-size: 13px;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.2s ease;
    transform: scaleY(0.8);
    transform-origin: top center;
    opacity: 0;
    display: none;
}
.dropdown-menu-left {
    right: auto;
    left: 0;
}
.dropdown-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.dropdown-toggle:after {
    content: "\e912";
    font-family: 'shop_webfont_icons';
    transform-origin: center;
    transition: all 0.2s ease;
}

.dropdown {
    position: relative;
}

.dropdown-item {
    padding: 8px 12px;
    border-radius: 10px;
}

.dropdown-item:hover {
    background: #f5f7fc;
}

.dropdown-item:active,
.dropdown-item.active {
    background: #f5f7fc;
    color: #2337aa;
}

.dropdown.show>.dropdown-menu {
    display: flex;
    animation: dropdownIn 0.2s ease forwards;
}
@keyframes dropdownIn {
    from {
        transform: scaleY(0.9);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}
.dropdown.show>.dropdown-toggle:after {
    transform: rotate(180deg);
}
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdown-menu ul li {
    margin-bottom: 3px;
}
.dropdown-menu ul li a {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.dropdown-menu.user-dropdown-menu {
    min-width: 200px;
    padding: 12px 5px;
}
.dropdown-menu ul li a i {
    font-size: 15px;
    font-weight: 600;
}
.dropdown-menu ul li a:hover,
.dropdown-menu ul li a.active {
    background: linear-gradient(-90deg, #f5f7fc, rgb(255 255 255 / 0%));
    color: #2337aa;
}
/* Mega menu styles (advanced) */
.mega-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    display: block !important;
}

.mega-toggle {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

.mega-toggle>i {
    font-size: 18px;
}

.mega-menu {
    display: none;
    position: absolute;
    top: calc(100% + 13px);
    right: 0;
    transform-origin: top center;
    width: 1200px;
    background: #fff;
    box-shadow: 0 13px 20px rgba(10, 11, 15, 0.05);
    border: 1px solid rgba(12, 13, 20, 0.1);
    padding: 0;
    z-index: 60;
    border-radius: 10px;
    overflow: hidden;
}

.mega-wrap.open .mega-menu {
    display: block;
}

.mega-inner {
    display: flex;
    align-items: flex-start;
}

/* Sidebar (right side in RTL) */
.mega-sidebar {
    width: 240px;
    border-left: 1px solid rgba(12, 13, 20, 0.06);
    display: flex;
    flex-direction: column;
    height: 600px;
    background: #f5f7fc;
    padding: 20px;
    direction: ltr;
}

.mega-side-item {
    background: transparent;
    border: none;
    text-align: right;
    padding: 15px 12px;
    cursor: pointer;
    color: #3C445D;
    font-weight: 600;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    direction: rtl;
}

.mega-side-item i {
    font-size: 18px
}

.mega-side-item:hover,
.mega-side-item:focus {
    background: rgba(27, 42, 126, 0.06);
    outline: none;
}

.mega-side-item.active,
.mega-side-item[aria-selected="true"] {
    background: #ffffff;
    color: #2337aa;
}

.mega-side-item:before {
    content: "";
    width: 2px;
    height: 20px;
    background: #2337aa;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: all 0.3s ease
}

.mega-side-item.active:before,
.mega-side-item[aria-selected="true"]:before {
    transform: scaleY(1);
    opacity: 1
}

/* Content area */
.mega-content {
    flex: 1;
    min-width: 560px;
}

.mega-panel {
    display: none;
    gap: 20px;
    padding: 35px;
}

.mega-panel.active {
    display: flex;
    flex-wrap: wrap;
}

.mega-panel-col {
    min-width: 160px;
}

.mega-panel-col h5 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #0A0B0F;
}

.mega-panel-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-panel-col ul+ul {
    margin-top: 30px
}

.mega-panel-col li {
    margin-bottom: 8px;
}

.mega-panel-col a {
    color: #6B7280;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    line-height: 1.4;
}

.mega-panel-col a:hover {
    color: #0A0B0F;
}

.mega-panel-head {
    width: 100%;
    color: #2337aa;
}

.mega-item-heading a {
    border-right: 2px solid #2337aa;
    padding-right: 8px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #0A0B0F;
}

[data-href] {
    cursor: pointer;
}

/* Mobile: accordion behavior */
@media (max-width: 768px) {
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 12px;
        border-radius: 6px;
    }

    .mega-inner {
        display: block;
    }

    .mega-sidebar {
        display: flex;
        flex-direction: row;
        gap: 8px;
        overflow: auto;
        border-left: none;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .mega-side-item {
        white-space: nowrap;
    }

    .mega-panel {
        display: none;
    }

    .mega-panel.active {
        display: block;
    }
}

.nav-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 7px 6px;
    gap: 8px;
    width: 41px;
    height: 25px;
    background: #1B2A7E;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

/* ============================================
   Main Content
   ============================================ */
.main {
    background-color: #FFFFFF;
}

.block {
    position: relative;
    padding: 40px 0;
}

.block-spacer {
    border: none !important;
    background: none !important;
}

.block-title {
    display: inline-flex;
    gap: 18px;
    align-items: center;
}

.block-heading-icon {
    width: 54px;
}
.page-head-title {
    width: 370px;
    max-width: 100%;
    font-weight: 800;
    font-size: 35px;
    line-height: 1.4;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

/* ============================================
   Hero/Banners Block
   ============================================ */
.block-hero {
    padding: 48px 0;
}

.banners {
    --banner-gap: 25px;
    --banner-small-width: 320px;
    --banner-height: 439px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--banner-gap);
    width: 100%;
}

.banners.banners-full {
    display: block;
}

.banner-hiro-full {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.banners.banners-full a {
    display: block;
}

.banner {
    position: relative;
    border-radius: 16.1051px;
    overflow: hidden;
}

.banner-small {
    width: var(--banner-small-width);
    height: var(--banner-height);
    background: #F1F1F1;
}

.banner-small-wrap {
    width: var(--banner-small-width);
}

.banner-large {
    height: var(--banner-height);
    flex: 1;
    background: #f7f7f8;
}

.banner-large-wrap {
    flex: 1;
    min-width: calc(100% - var(--banner-small-width) - var(--banner-gap));
    max-width: 100%;
}

.banner-content {
    position: absolute;
    z-index: 2;
}

.banner-small .banner-content {
    right: 0;
    top: 10px;
    padding: 30px;
    height: calc(100% - 20px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-badge {

    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #838EAF;
    margin-bottom: 4px;
    display: block;
}

.banner-title {

    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    margin-bottom: 20px;
}

.banner-title-large {
    width: 260px;
    font-weight: 800;
    font-size: 30px;
    line-height: 1.4;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    margin-bottom: 22px;
}

.banner-text {
    width: 320px;
    max-width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #505B7C;
    margin-bottom: 22px;
}

.banner-large .banner-content {
    padding: 60px;
    max-width: 100%;
}

.banner-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 43px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 8.05px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn.btn-sm {
    padding: 10px 15px !important;
    height: 43px;
    min-width: 110px;
}
.btn.btn-xs {
    padding: 5px 10px !important;
    height: 32px;
    min-width: 70px;
}
.btn-full {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
}
.btn>i {
    font-size: 18px;
}

.btn-link {
    padding: 0;
}

.btn-link.btn-link-arrow {
    position: relative;
}

.btn-link.btn-link-arrow:after {
    content: "\e904";
    font-family: 'shop_webfont_icons';
    position: relative;
    left: 0;
    transition: all 0.3s ease;
    border: 1px solid #000;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.btn-link.btn-link-arrow.btn-link-arrow-simple:after {
    content: "\e913";
    border: none;
    width: 10px;
}

.btn-link.btn-link-arrow:hover:after {
    left: -2px;
}

.btn-primary {
    background: #2437AA;
    color: #FFFFFF;
}

.btn-outline {
    border: 1.5px solid #0A0B0F;
    background: transparent;
    color: #0A0B0F;
}
.btn-outline-light {
    background: var(--bg-primary-op);
    border: 1px solid #E0E3EB;
}
.btn.btn-sq {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.btn.btn-sq i {
    font-size: 17px;
}
.btn-login {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 28px;
    gap: 10px;
    width: 178px;
    height: 60px;
    background: #0A0B0F;
    border-radius: 360px;
    color: #FFFFFF;

    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.03em;
}

.btn-curved, .btn-rounded {
    border-radius: 33.4694px;
}

.btn-white {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid rgb(0 0 0 / 0%);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    background: #000;
    color: #fff;
}
.iconstyle-circle {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-size: 18px;
}
.iconstyle-circle-lg {
    width: 65px;
    height: 65px;
}
.iconstyle-circle-sm {
    width: 42px;
    height: 42px;
}
.iconstyle-sq {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #E8EAF0;
    border-radius: 12px;
    font-weight: 600;
}
.icon-wrapper {
    position: relative;
}
.icon-wrapper .badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #FF3F3F;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 13px;
}
.icon-wrapper .seen-badge {
    position: absolute;
    width: 4px;
    height: 4px;
    display: block;
    background: #FF3F3F;
    border-radius: 50%;
    top: 16px;
    right: 16px;
}
.banner-small .btn-primary {
    height: 48.32px;
    padding: 16px 24px 20px;
    margin-top: auto;
}

.banner-amazon-icon {
    position: absolute;
    width: 69px;
    height: 69px;
    left: 0;
    top: 80px;
    background: #FFB700;
    border-radius: 117.647px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-promo {
    position: absolute;
    width: 273px;
    height: 112px;
    left: 70px;
    top: 285px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 31px 32px;
    gap: 44px;
    background: #2437AA;
    border-radius: 12px;
    z-index: 10;
    flex-direction: row-reverse;
}

.banner-promo-icon {
    width: 49px;
    height: 48.08px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-promo-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.banner-promo-category {

    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #D5DAF6;
}

.banner-promo-title {

    font-weight: 800;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Calculator Block
   ============================================ */
.block-calculator {
    padding: 0;
}

.calculator {
    box-sizing: border-box;
    max-width: 1240px;
    /* per Figma frame */
    margin: 0 auto;
    /* center inside container */
    border: 1.5px solid #E8EAF0;
    border-radius: 12px;
    padding: 24px 38px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    background: #FFFFFF;
}

.calculator-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;

    /* place tabs and title on edges */
    gap: 28px;
    width: 100%;
    margin-bottom: 10px;
}

.calculator-tabs {
    max-width: 365px;
}

.calculator-tabs,
.nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.nav-tabs .nav-item {
    opacity: 0.7;
    font-weight: 400;
}
.nav-tabs .nav-item.active {
    opacity: 1;
    font-weight: 600;
}
.nav-link,
[role="button"],
[role="tab"] {
    cursor: pointer
}

.nav-link.active {
    font-weight: 700;
}
.nav-link[data-tab-target] {
    position: relative;
}
.nav-link[data-tab-target]:after {
    position: absolute;
    content: "";
    width: 90%;
    top: 100%;
    height: 1.5px;
    background: #000;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
    transform-origin: center;
    transform: scaleX(0);
    opacity: 0;
}
.nav-link[data-tab-target].active:after {
   opacity: 1;
   transform: scaleX(1);
}
.tab-link {

    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.tab-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.tab-label {

    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.tab-line {
    width: 82px;
    height: 0px;
    border: 1px solid #0A0B0F;
}

.calculator-title {

    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.calculator-body {
}

.calculator-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.calculator-actions .btn {
    min-width: 130px;
}

.btn-dark,
.btn-light {
    border: none;
}

.btn-dark {
    background: #0A0B0F;
    color: #FFFFFF;
    border-radius: 8px;
    padding: 8px 16px;
    height: 48px;
}

.btn-light {
    background: #F5F7FC;
    color: #0A0B0F;
    padding: 9px 13px;
    height: 48px;
}

.calculator-form {
    
    
    /* horizontal form on desktop */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {

    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #3C445D;
}

.form-group input:not([type=checkbox]):not([type=radio]),
.form-group select {
    box-sizing: border-box;
    border: 1px solid #E0E3EB;
    border-radius: 8px;
    padding: 9px 13px;
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    height: 48px;
}
.form-control {
    border: 1px solid #E8EAF0;
    border-radius: 12px;
    padding: 10px;
    width: 100%;
}
textarea.form-control {
    padding: 20px;
    max-width: 100%;
}
.select-wrap {
    position: relative;
}

.select-wrap:after {
    position: absolute;
    content: "\e912";
    font-family: 'shop_webfont_icons';
    left: 15px;
    top: 11px;
    color: #838EAF;
    font-size: 17px;
}

.select-wrap select {
    appearance: none;
    width: 100%;
}
/* checkbox */
.filter-list {
    list-style: none;
}


@media (max-width: 768px) {
    .calculator {
        padding: 30px 20px;
    }

    .calculator-body {
        flex-direction: column;
        align-items: stretch;
    }

    .calculator-actions {
        justify-content: space-between;
        width: 100%;
    }

    .form-group:not([class*="col-"]),
    .form-group input,
    .form-group select {
        width: 100% !important;
    }
}

.form-group input::placeholder {
    color: #A2AAC3;
}

.input-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    width: 100%;
    height: 48px;
    border: 1px solid #838EAF;
    border-radius: 8px;
    gap:8px
}
.input-wrapper.input-wrapper-backed {
    background: var(--bg-primary-op);
    border: none;
}
.input-wrapper input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    font-weight: 800;
    font-size: 13px;
    line-height: 16px;
    text-align: left;
    color: #0A0B0F;
    background: none;
    width: 100%;
}

.input-wrapper span {
    font-weight: 400;
    font-size: 12px;
    line-height: 21px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    white-space: nowrap;
}

.calculator-note {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.calculator-note span {

    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #3C445D;
}

/* ============================================
   Features Block
   ============================================ */
.block-features {
    padding: 50px 0;
}

/* ============================================
   Promo Banners2 (Beauty & Audio) â€” based on Figma specs
   ============================================ */
.promo-banners2 {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
    width: 100%;
    height: 271px;
    /* target height from Figma */
    position: relative;
}

.promo-card {
    position: relative;
    width: 610px;
    /* per Figma group width */
    height: 271px;
    overflow: visible;
    border-radius: 12px;
}

/* Decorative rotated rectangles (using pseudo elements would also work) */
.promo-shape {
    position: absolute;
    width: 271px;
    height: 610px;
    top: 0;
    left: calc(50% - 271px/2 - 484.48px);
    /* approximate placement; overridden for left/right classes */
    transform: rotate(90deg);
    border-radius: 16px;
    z-index: 1;
}

.promo-shape-accent {
    background: #14DAC3;
    left: -90px;
}

.promo-shape-muted {
    background: #D6D6D6;
    left: calc(100% - 180px);
}

/* Mask groups (containers for images/background layers) */
.promo-mask {
    position: absolute;
    width: 610px;
    height: 271px;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.promo-mask-right {
    left: 0;
}

.promo-mask-left {
    left: 0;
}

/* Main image/figure over the shapes */
.promo-figure {
    position: absolute;
    z-index: 3;
}

.promo-figure-left {
    left: -90px;
    top: 20px;
    width: 416px;
    height: 231px;
    transform: scaleX(-1);
}

.promo-figure-right {
    right: -90px;
    top: 29px;
    width: 324.7px;
    height: 370px;
    transform: rotate(68deg);
}

.promo-figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* Titles and CTA */
.promo-card-content {
    position: absolute;
    z-index: 4;
    right: 346px;
    top: 66px;
    text-align: right;
    max-width: 260px;
}

.promo-right .promo-card-content {
    right: auto;
    left: 346px;
    text-align: right;
}

.promo-card-title {

    font-weight: 400;
    font-size: 22px;
    /* approximate 21.9px */
    line-height: 35px;
    color: #000;
    margin: 0 0 12px 0;
}

.btn-pill {
    width: 147px;
    height: 52px;
    background: #fff;
    border-radius: 33px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Background art layers (e.g., Background55) */
.promo-card .bg-art {
    position: absolute;
    z-index: 0;
    mix-blend-mode: soft-light;
}

/* Hide very large decorative layers on small screens */
@media (max-width: 992px) {
    .promo-banners2 {
        flex-direction: column;
        height: auto;
        gap: 12px;
        padding: 16px 0;
    }

    .promo-card {
        width: 100%;
        height: 220px;
    }

    .promo-figure-left,
    .promo-figure-right {
        left: 0;
        right: 0;
        top: 8px;
        width: 100%;
        transform: none;
    }

    .promo-card-content {
        position: relative;
        right: 0;
        left: 0;
        top: auto;
        margin-top: 8px;
        max-width: none;
        text-align: center;
    }

    .btn-pill {
        margin: 0 auto;
    }
}

.features {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 50px;
    width: 100%;
}

.features-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 30px;
    flex: 1;
}

.feature-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0;
    gap: 16px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    background: #EAECFB;
    border-radius: 35.2218px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.feature-title {
    width: 100%;
    height: 30px;

    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #0A0B0F;
    margin: 0;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.feature-text {
    width: 100%;
    height: 23px;

    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #505B7C;
    margin: 0;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.features-headline {
    flex: none;
    flex-grow: 0;
}

.features-headline-text {
    width: 240px;
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    margin: 0;
    max-width: 100%;
}

/* ============================================
   Categories Block
   ============================================ */
.block-categories {
    padding: 0;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 43px 30px;
    gap: 20px;
    margin: 0 auto;
    height: 180px;
    background: #F5F7FC;
    color: #0A0B0F;
    border-radius: 12px;
    text-decoration: none;
    position: relative;
    flex: none;
    flex-grow: 0;
    transition: all 0.2s;
    box-sizing: border-box;
}

.category-item-featured:not(.category-item-inverse),
.category-item:not(.category-item-inverse):hover {
    background: #2437AA;
    gap: 24px;
    color: #fff;
}

.category-item-featured:not(.category-item-inverse) img,
.category-item:not(.category-item-inverse):hover img {
    filter: invert(1) grayscale(1);
}

.category-item-wrapper {
    position: relative;
}

.category-badge {
    padding: 1px 11px;
    width: 48px;
    height: 30px;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 360px;
    position: absolute;
    top: 19px;
    left: 21px;
    z-index: 1;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    direction: ltr;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 48px;
    height: 48px;

}

.category-title {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.02em;

}
.category-item-inverse{
    flex-direction: column-reverse;
    padding-bottom: 0;
}
.category-item-inverse .category-icon {
    margin-bottom: -30px;
    transition: all 0.3s ease;
}
.category-item-inverse:hover .category-icon {
    margin-bottom: -25px;
}
/* ============================================
   Daily Offers Block
   ============================================ */
.block-daily-offers {
    padding: 50px 0;
}

.block-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.block-header-left,
.block-header-right,
.block-header-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.block-header-right,
.block-header-heading {
    gap: 20px;
}

.hr-gap {
    width: var(--base-gap);
}

.hr-gap-md {
    width: var(2 * --base-gap);
}

.hr-gap-lg {
    width: var(3 * --base-gap);
}

.block-badge {
    display: flex;
    align-items: center;
    padding: 1px 11px;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 360px;

    font-weight: 700;
    font-size: 14px;
    line-height: 133%;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.block-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: #0A0B0F;
    direction: ltr;
}
.timer-bordered {
    border: 1px solid #0A0B0F;
    padding: 16px 28px;
    border-radius: 100px;
}
.block-link {

    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}
.block-link i {
    font-size: 18px;
    vertical-align: -2px;
    margin-left: 4px;
}
/* ============================================
   Products Swiper
   ============================================ */
.block-inner-bordered {
    border: 2px solid #2D45D2;
    border-radius: 20px;
    padding: 40px;
}

.products-swiper {}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 8px;
    border: 1.5px solid #E8EAF0;
    border-radius: 20px;
    background: #FFFFFF;
    min-width: 260px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.product-card.border-0 {
    padding: 0;
    min-width: 220px;
}

.product-card.product-card-02 {
    border: none !important;
    box-shadow: none !important;
    background: #f6f7fd;
}

.product-image {
    height: 191px;
    object-fit: contain;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}
.product-card
.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    order: -1;
    z-index: 10;
}

.product-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-right: auto;
}

.product-badge i {
    font-size: 21px
}

.product-badge span {

    font-weight: 700;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.product-tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1px 11px;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 360px;
    width: 47px;
    height: 31px;
    font-weight: 700;
    font-size: 14px;
    line-height: 133%;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    direction: ltr;
}

.product-tag-primary {
    background: var(--bg-primary);
    opacity: 0.98;
    color: #fff;
    height: 41px;
    width: 41px;
    font-size: 12px;
    border: none;
}

.product-tag-text {
    background: var(--bg-primary);
    color: #fff;
    font-weight: 400;
    border: none;
}

.product-title {
    font-weight: 700;
    font-size: 16px;
    color: #0A0B0F;
    margin-bottom: 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-wrap {
    width: 82px;
    height: 21px;
    --rating-gap: 2px;
    position: relative;
}

.rating-wrap>* {
    width: 100%;
    height: 100%;
    display: flex;
    letter-spacing: var(--rating-gap);
}

.rating-stars-base:before {
    content: "\e94f\e94f\e94f\e94f\e94f";
    font-family: 'shop_webfont_icons';
}

.price-current-discount {
    text-decoration: line-through;
    color: var(--color-dark-400);
    font-size: 90%;
}

.product-top-badge {
    background: #F5F7FC;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 30px;
}

.rating-stars {
    color: #FBBF24;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 0;
}

.product-footer {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-card.border-0 .product-price {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2px;
}

.product-price {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 2px;
}

.price-current {

    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #0A0B0F;
}

.product-btn {
    background: #F5F7FC;
    color: #0A0B0F;
    border-radius: 42px;
    padding: 9px 16px;
    height: 42px;
}

.product-card.product-card-02 .product-btn {
    border: 1px solid #E8EAF0;
}

.btn-extra-txt {
    display: none;
}

.product-actions-onhover {
    display: none;
}

.product-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.product-card:not(.border-0):hover {
    border-color: var(--color-primary);
    box-shadow: inset 0 0 0 0.5px var(--color-primary);
}
.product-card-minimal {
    min-width: 158px;
    padding: 15px;
}
.product-card-minimal .product-image {
    height: auto;
}
.product-card-minimal .product-title {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* تعداد خطوط */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-minimal .product-description {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* تعداد خطوط */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-minimal .product-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 10px;
    padding: 0px 15px;
}
.product-card-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}
.product-img-thumb {
    width: 100px;
    height: 100px;
    background: var(--bg-primary-op);
    border-radius: 20px;
}
.product-card-row .product-title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card-row  .product-description {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*
.product-card:hover .product-footer {
    flex-direction: column;
    align-items: flex-start;
}
.product-card:hover .product-footer .btn {
    display: flex;
    margin-top: 8px;
    width: 100%;
    border-radius: 10px;
    height: 48px;
}
.product-card:hover .product-footer .product-actions {
    width: 100%;
}
.product-card:hover .product-footer .btn .btn-extra-txt {
    display: block;
}
.product-card:hover .product-footer .product-btn {
    background: var(--color-primary);
    color: #fff;
}*/
/* ============================================
    Post
   =================== */
.post-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 260px;
    max-width: 292px;
    position: relative;
    transition: all 0.3s ease;
}

.post-image img {
    border-radius: 20px;
    min-height: 176px;
    object-fit: cover;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ============================================
   Swiper Navigation
   ============================================ */
.swiper-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.swiper-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1px 11px;
    width: 40px;
    height: 40px;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 10px;
    color: #0A0B0F;
}

.swiper-btn:hover {
    background: #EAECFB
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-num {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 1px 11px;
    background: #F5F7FC;
    border: 1px solid #E0E3EB;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.02em;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pagination-num:hover {
    background: #EAECFB;
}

.pagination-num.is-active {
    background: #2c46d2;
    border-color: #2c46d2;
    color: #fff;
    font-weight: 600;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-weight: 500;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: 0.08em;
    color: #ccc;
    user-select: none;
}

.pagination-prev:disabled,
.pagination-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   Promo Wide Block
   ============================================ */
.block-promo-wide {
    padding: 0;
}

.promo {
    position: relative;
    border-radius: 16.3265px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.promo .promo-content {
    position: absolute;
    z-index: 2;
    padding: 50px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.promo-title {
    font-weight: 600;
    font-size: 21.9006px;
    line-height: 35px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #000000;
    margin-bottom: 20px;
}

.promo-amazon-icon {
    width: 69px;
    height: 69px;
    background: #FFB700;
    border-radius: 117.647px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promo-image {

    z-index: 1;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-filter-light {
    filter: contrast(0.5) brightness(1.3);
}

.image-filter-white {
    filter: invert(1) grayscale(1);
}

.promo-flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f2f2;
    border-radius: 12px;
    padding: 20px;
    gap: 10px;
}

.promo-grid-gap {
    --promo_grid_gap: 15px;
}

.promo-grid-gap,
.promo-grid-gap .flex-grid {
    gap: var(--promo_grid_gap)
}

.promo-flexbox.promo-large {
    padding: 40px 50px 0 20px;
    flex: 0 0 40%;
}

.promo-flexbox.promo-large .promo-image {
    align-self: end;
}

.promo-small-items>.promo-flexbox {
    min-width: calc(33.33% - var(--promo_grid_gap));
    flex: 1;
}

.promo-small-items .promo-title {
    font-size: 14px;
}

.promo-small-items .btn {
    font-size: 10px;
    color: var(--color-dark-600);
}

.promo-small-items>.promo-flexbox .promo-content {
    min-width: 50%;
}

/* ============================================
   Best Sellers Block
   ============================================ */
.block-best-sellers {
    padding: 0;
}

.block-icon {
    width: 57.98px;
    height: 57.98px;
    background: #EAECFB;
    color: var(--bg-primary);
    border-radius: 85.2665px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-icon i {
    font-size: 22px;
}

.block-subtitle {

    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.block-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.tab {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    letter-spacing: -0.03em;
    color: #0A0B0F;
    padding: 11px 22px;
    border: 1px solid rgb(232 234 240 / 0%);
    border-radius: 41px;
    cursor: pointer;
}

.tab:hover,
.tab:active {
    color: var(--color-primary)
}

.tab-active {
    font-weight: 600;
    border: 1px solid #E8EAF0;
}

/* ============================================
   Testimonials Block
   ============================================ */
.block-testimonials {
    padding: 0;
}

.testimonials-swiper {
    padding: 0;
}

.testimonial-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 33px;
    gap: 10px;
    background: #FFFFFF;
    border: 1.5px solid #EBEBEB;
    border-radius: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
    width: 100%;
}
.avatar {
    border-radius: 50%;
    object-fit: cover;
}
.avatar-54 {
    width: 54px;
    height: 54px;
}
.avatar-42 {
    width: 42px;
    height: 42px;
}
.avatar-36 {
    width: 36px;
    height: 36px;
}
.testimonial-avatar {
    width: 63px;
    height: 63px;
    position: relative;
    margin-right: auto;
}
i.icons-shop.avatar {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fc;
    color: #ccc;
    font-size: 17px;
}
.testimonial-avatar img {
    width: 66px;
    height: 66px;
    border-radius: 31.5px;
    object-fit: cover;
}

.testimonial-info {}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 151%;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.testimonial-role {

    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    opacity: 0.8;
}

.testimonial-divider {
    width: 0px;
    height: 37px;
    opacity: 0.05;
    border: 1.5px solid #0A0B0F;
}

.testimonial-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D45D2;
}

.testimonial-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: right;
    letter-spacing: -0.03em;
    color: #0A0B0F;
}

/* ============================================
   SEO Block
   ============================================ */
.block-seo {
    padding: 0;
}

h2.seo-title {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    text-align: right;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    margin-bottom: 50px;
}

.content-expandable-toggle .btn {
    padding: 0;
    margin-top: 20px;
    position: relative;
    font-weight: 400;
}

.content-expandable-toggle .btn:after {
    content: "\e912";
    font-family: 'shop_webfont_icons';
    transition: all 0.3s ease;
}

.content-expandable.expanded+.content-expandable-toggle .btn:after {
    transform: rotate(180deg);
}

.content-expandable {
    max-height: 500px;
    overflow: hidden;
    position: relative;
    word-break: break-word;
    -webkit-mask: linear-gradient(rgb(255, 255, 255) 45%, transparent);
    mask: linear-gradient(rgb(255, 255, 255) 45%, transparent);
}

.content-expandable.expanded {
    max-height: none !important;
    -webkit-mask: none;
    mask: none;
    overflow: visible;
}

.expanded+.content-expandable-toggle {
    padding-top: 30px
}

/* ============================================
   Blog Block
   ============================================ */
   .banner-has-gradient .banner-image:after {
    background: linear-gradient(0deg, rgb(0 0 0 / 50%) -0.28%, rgb(102 102 102 / 20%) 87.39%);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.banner-has-gradient .banner-image {
    position: relative;
}
.banner-has-gradient .banner-title-large {
    width: 70%;
    max-width: 100%;
    font-weight: 700;
}

.banner-large.banner-has-gradient .banner-content {
    bottom: 0;
}

.swiper-slides-has-gradient .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #fff;
    opacity: 1;
}
.banner-normal .banner-content {
    padding: 30px;
    bottom: 0;
    right: 0;
}
.banner-side-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.banner-side-rows .promo {
    flex: 1;
}

.banner-side-rows .promo .promo-image {
    height: 100%;
    min-height: 200px;
}

.banner-side-rows .promo .promo-content {
    padding: 30px;
}
/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0A0B0F;
    color: rgba(255, 255, 255, 0.7);
    padding: 104px 0 98px;
}

.footer-main {
    display: flex;
    flex-direction: row;
    gap: 100px;
    margin-bottom: 30px;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
    font-weight: 300;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-newsletter {
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 6px 24px 6px 6px;
}

.newsletter-input {
    flex: 1;
    color: #000;
    border: none !important;
    outline: none !important;
    background: none;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
    background: #27292f;
    border-radius: 50%;
}

.social-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    gap: 10px;
    margin-bottom: 30px;
    width: 180px;
}

.footer-info {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    color: #fff;
    line-height: 1.7;
    font-size: 13px;
}

.footer-copy {
    direction: ltr;
    text-align: left;
    color: rgba(255, 255, 255, 0.4);
}

.footer-help {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column.footer-about {
    width: 480px;
    max-width: 100%;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 200;
    line-height: 1.6;
}

.footer-logo .logo-text {
    color: inherit;
}

form.newsletter-form .btn {
    min-width: 84px;
    border-radius: 12px;
}

form.newsletter-form>img {
    width: 32px;
    height: 20px;
    border-left: 1px solid #ddd;
    display: inline-block;
    padding-left: 10px;
}

.footer-social-title {
    color: #fff;
    padding-left: 20px;
}

.footer-info-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 8px;
}

.footer-info-item {
    gap: 15px;
    align-items: center;
}

.footer-nav a {
    font-weight: 300;
    transition: all 0.3s ease;
    font-size: 13px;
}

.footer-nav a:hover {
    color: #fff
}

.footer-info-item a {
    text-decoration: underline;
}
/* ====================
    Menu mobile
    =============== */
@media(min-width:768px) {
    .mobile-menu-sticky {
        display: none!important;
    }
}
.mobile-menu-sticky {
    position: fixed;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background: #fff;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px 3px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 2%);
    border: 1px solid #D5DAF6;
    border-radius: 15px;
}
.mobile-menu-sticky button i,.mobile-menu-sticky button img {
    font-size: 20px;
    max-width: 20px;
    color: var(--color-dark-600);
}
.mobile-menu-sticky button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--color-dark-500);
    font-weight: 400;
}
.mobile-menu-sticky button.active {color: var(--color-dark);font-weight: 500;}

/* Mobile profile sheet (sticky bar) */
.mobile-profile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 15, 0.45);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
}

body.mobile-profile-open .mobile-profile-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-profile-sheet {
    position: fixed;
    inset-inline: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-height: min(82dvh, 640px);
    margin: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(10, 11, 15, 0.12);
    z-index: 99;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(105%);
    transition: none;
    overflow: hidden;
    padding-bottom: var(--mobile-profile-nav-offset, 78px);
    box-sizing: border-box;
}

.mobile-profile-sheet.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1), visibility 0.38s ease;
}

.mobile-profile-sheet-head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px 4px;
    cursor: grab;
    touch-action: none;
}

.mobile-profile-sheet-head:active {
    cursor: grabbing;
}

.mobile-profile-grab {
    display: block;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: #D5DAF6;
}

.mobile-profile-sheet-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    padding: 8px 16px 16px;
    -webkit-overflow-scrolling: touch;
}

.mobile-profile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-profile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 12px;
    color: var(--color-dark-600);
    font-size: 13px;
    font-weight: 500;
}

.mobile-profile-nav ul li a i {
    font-size: 18px;
    color: var(--color-dark-500);
}

.mobile-profile-nav ul li a.active,
.mobile-profile-nav ul li a:hover {
    background: var(--color-primary-50, #F0F3FF);
    color: var(--color-dark);
}

.mobile-profile-nav ul li a.active i {
    color: var(--color-primary);
}

.mobile-profile-logout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px !important;
    font-size: 13px;
}

body.mobile-profile-open {
    overflow: hidden;
}

body.mobile-profile-open .mobile-menu-sticky button[aria-haspopup="dialog"] {
    color: var(--color-dark);
    font-weight: 500;
}

@media (min-width: 769px) {
    .mobile-profile-overlay,
    .mobile-profile-sheet {
        display: none !important;
    }
}

/* Tabs and Accordions */
.accordion-content,.tab-pane {
    display: none;
}
.accordion-item.active .accordion-content ,.tab-pane.active{
    display: block;
}

/* ============================================
   Main Archive pages 
   ============================================ */
.main-content-wrap {
    padding: 50px 0;
}

.sidebar-widget {
    border: 1.5px solid #E8EAF0;
    border-radius: 20px;
    background: #FFFFFF;
    padding: 20px;
    margin-bottom: 15px;
}


.sidebar-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #E8EAF0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.sidebar-widget-header h5 {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input[type=checkbox] {
    border-radius: 8px;
}
.form-check-input[type=radio] {
    border-radius: 50%;
}
.form-check-input {
    width: 24px;
    height: 24px;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #E0E3EB;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.filter-list .form-check {
    width: 100%;
}

.filter-list li {
    margin-bottom: 10px;
    list-style: none;
}

.filter-list li ul {
    padding-right: 15px;
    margin-top: 15px;
    border-right: 1px solid #E8EAF0;
    margin-right: 15px;
}

.filter-list .form-check-input[type=checkbox] {
    margin-right: auto;
    order: 2;
}

.form-check-input[type=checkbox]:checked {
    background: #2D45D2;
    border-color: #2D45D2;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L3.5 7L9 1' stroke='%23F5F7FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 8px;
}
.form-check-input:checked[type=radio]{
    background-color: #2D45D2;
    box-shadow: inset 0 0 0 6px #fff;
}
.form-check-input:checked + label {
    font-weight: 600
}
.form-switch {
    padding-left: 2.5em;
    cursor: pointer;
}
.form-switch .form-check-input[type=checkbox] {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    width: 2.2em;
    height: 1.3em;
    margin-left: -2.5em;
    background-image: var(--bs-form-switch-bg);
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out;
    background-size: contain !important;
}
.form-switch .form-check-input[type=checkbox]:checked {
    background-position: right center;
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.disabled {opacity: 0.5; pointer-events: none;}
.breadcrumb {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}
.breadcrumb a:not(:last-child):after {
    content: "/";
    margin-right: 3px;
}

.breadcrumb>i {
    font-size: 18px;
}
/* ============================================
   Product Page
   ============================================ */
.product-price-column {
    width: 317px;
    max-width: 100%;
}
.product-image-large {
    border: 1px solid #E8EAF0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    padding: 20px;
    aspect-ratio: 1 / 1;
    max-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100%;
}
.product-image-large .product-info {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    width: auto;
    order: initial;
    pointer-events: none;
    z-index: 2;
}
.product-image-main-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}
.product-image-large .product-image-main {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.product-image-zoom {
    width: 46px;
    height: 46px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #C1C7D7;
    box-shadow: 0 2px 27px rgb(0 0 0 / 10%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 0;
    cursor: pointer;
    z-index: 2;
}

.product-image-thumbs {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.product-image-thumb-item {
    border: 1px solid #E8EAF0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 90px;
    height: 90px;
    position: relative;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-image-thumb-item.is-active,
.product-image-thumb-item:hover {
    border-color: var(--primary, #024EEC);
    box-shadow: 0 0 0 1px var(--primary, #024EEC);
}
.product-image-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-image-more-items {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 90%);
    filter: blur(0.5px);
    cursor: pointer;
}

.product-gallery-modal .modal-content,
.product-gallery-modal-content {
    max-width: min(96vw, 1080px);
    width: min(96vw, 1080px);
    max-height: 90vh;
    padding: 16px 18px 18px;
}
.product-gallery-modal-body {
    display: flex;
    gap: 14px;
    min-height: 0;
    max-height: calc(90vh - 70px);
}
.product-gallery-viewer {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 420px;
    height: min(70vh, 640px);
    border: 1px solid #E8EAF0;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f8fb;
}
.product-gallery-viewer-stage,
.product-gallery-viewer [class*="react-transform-wrapper"] {
    width: 100% !important;
    height: 100% !important;
}
.product-gallery-viewer-content,
.product-gallery-viewer [class*="react-transform-component"] {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.product-gallery-viewer-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}
.product-gallery-zoom-controls {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: flex;
    gap: 6px;
}
.product-gallery-zoom-controls .btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #E8EAF0;
    box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
}
.product-gallery-modal-thumbs {
    width: 92px;
    flex: 0 0 92px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    max-height: min(70vh, 640px);
    padding-left: 2px;
}
.product-gallery-modal-thumb {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;
    border: 2px solid #E8EAF0;
    border-radius: 12px;
    overflow: hidden;
    padding: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.product-gallery-modal-thumb.is-active {
    border-color: var(--primary, #024EEC);
    box-shadow: 0 0 0 1px var(--primary, #024EEC);
}
.product-gallery-modal-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-gallery-stage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    cursor: grab;
}
.product-gallery-stage.is-dragging {
    cursor: grabbing;
}
.product-gallery-stage-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .product-image-large {
        max-height: 360px;
    }
    .product-gallery-modal-body {
        flex-direction: column;
    }
    .product-gallery-viewer {
        min-height: 280px;
        height: 55vh;
    }
    .product-gallery-modal-thumbs {
        width: 100%;
        flex: none;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: 0;
        padding-bottom: 4px;
    }
    .product-gallery-modal-thumb {
        flex: 0 0 72px;
        width: 72px;
        height: 72px;
    }
}

.product-head-links > a:not(:last-child) {
    border-left: 1px solid #ccc;
    margin-left: 10px;
    padding-left: 10px;
}

.product-head-links > a {
    line-height: 1;
    display: inline-flex;
}



/* ==========
    Checkbox and radio
    ======*/
.button-checkbox-text {
    border: 1px solid #E8EAF0;
    padding: 9px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.button-checkbox input {
    position: absolute;
    top: 0;
    opacity: 0;
}
.button-checkbox {
    position: relative;
}
.button-checkbox-elem {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    order: 2;
}
.color-item-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.button-checkbox input:checked+.button-checkbox-text {
    border-color: var(--color-dark);
}
.button-checkbox.is-active .button-checkbox-text {
    border-color: var(--color-dark);
}
.button-checkbox.button-checkbox-primary input:checked+.button-checkbox-text {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
/* ===============
    Accordion
    =========*/
.accordion-btn {
    font-weight: 600;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 3px;
    white-space: normal;
}
.accordion-btn:after {
    content: "\e912";
    font-family: 'shop_webfont_icons';
    transform-origin: center;
    transition: all 0.2s ease;
}
.active>.accordion-btn:after {
    transform: rotate(180deg);
}
.accordion-item {
    border-bottom: 1px solid #E8EAF0;
}
.accordion-body {
    display: none;
    padding: 0 0 12px;
}
.active>.accordion-body {
    display: block;
}

/* ================
    Product Tabs
    =======*/
.product-tabs-head .tab {
    opacity: 0.5;
    position: relative;
    white-space: nowrap;
}
.product-tabs-head .tab.active {
    opacity: 1;
    background: var(--bg-primary-op);
    font-weight: 500;
}
.product-tabs-body {
    border: 1px solid #E8EAF0;
    padding: 60px 50px;
    border-radius: 20px;
}
.product-tabs-head .tab:after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--bg-primary);
    display: block;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
    transform-origin: center;
    transform: scaleX(0);
}
.product-tabs-head .tab.active:after {
    transform: scale(1);
}
.product-tabs-head .tab i {
    font-size: 17px;
    vertical-align: -2px;
    margin-left: 3px;
}
.product-tabs-head .tab.active i {
    color: var(--color-primary);
}

/* ============
    Comments
======== */
.comment-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgb(232 234 240 / 70%)
}
.comment-form {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}
.comment-item-body {
    display: flex;
    gap: 36px;
}

/* ==============
    Cart
    ==========*/

.cart-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin-bottom: 15px;
}
.cart-img {
    width: 150px;
    height: 150px;
    background: var(--bg-primary-op);
    border-radius: 20px;
    border: 1px solid var(--bg-primary-op);
}
.button-counter {
    background: var(--bg-primary-op);
    border-radius: 8px;
    border: 1px solid #E0E3EB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    gap: 5px;
    height: 42px;
}
.button-counter input {
    background: none;
    border: none;
    font-size: 16px;
    width: 30px;
    text-align: center;
}
.button-counter-btns {
    display: flex;
    flex-direction: column;
    height: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
.button-counter-btns button {
    line-height: 0;
    display: block;
    height: 10px;
}
.button-counter-vahed {
    line-height: 0;
}
.form-wrap-more-radius .input-wrapper, .form-wrap-more-radius .btn {
    border-radius: 12px;
}

/* ================
    Panel 
    ==============*/
.panel-main {
    padding: 50px 0;
    background: #F9F9FB;
}
.panel-flex {
    display: flex;
    --panel-sidebar-width: 320px;
}
.panel-login-box {
    width: 380px;
    max-width: 100%;
    padding: 30px;
    background: #fff;
}
.panel-sidebar {
    width: var(--panel-sidebar-width);
    flex: 0 0 auto;
    padding: 25px;
}
.panel-content {
    flex: 1 0 0%;
    padding: 40px;
    max-width: calc(100% - var(--panel-sidebar-width));
}
.panel-logo {
    max-width: 200px;
    margin-bottom: 30px;
}
.panel-sidebar-nav ul {
    list-style: none;
    margin-top: 10px;
}
.panel-sidebar-nav {
    margin-bottom: 20px;
}
.panel-sidebar-nav ul li {
    margin-bottom: 2px;
}
.panel-sidebar-nav ul li a {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 12px;
}
.panel-sidebar-nav ul li a:after {
    content : "";
    width: 2px;
    height: 20px;
    background: #b5bedb;
    transition: all 0.3s ease;
    transform-origin: center;
    transform: scaleY(0);
    position: absolute;
    left: -26px;
    top: 50%;
    margin-top: -10px;
}
.panel-sidebar-nav ul li a.active:after {
    transform: scaleY(1);
}
.badge-circle {
    background: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.panel-sidebar-nav ul li a.active,.panel-sidebar-nav ul li a:hover {
    background: linear-gradient(90deg, #f9f9fb, #fff);
    font-weight: 600;
}
.panel-sidebar-nav ul li a.active {
    padding: 20px 15px;
}
.panel-sidebar-nav ul li a.active i {
    color: var(--color-primary);
}
.panel-sidebar-nav ul li a i {
    font-weight: 600;
    font-size: 18px;
}
.panel-verify-btn {
    text-align: center;
    margin-bottom: -40px;
}
.panel-box-item {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
}
.panel-box-item.active {
    box-shadow: 0 28px 38px hsl(231deg 100% 96% / 50%);
    border: 1px solid #E8EAF0;
    background: #fff;
}
.panel-box-item.order-list-item--skeleton, .tickets-dash--skeleton{
    background: #fff !important;
    border: 1px solid #f1f4f8 !important;
}


.product-bookmark, .bookmark-remove {
    width: 36px;
    height: 36px;
    background: #e7eaf2;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}
.product-bookmark.bookmarked i:before {
    content: "\e972";
}
.product-bookmark:hover {
    background: #d5d9e3;
}
.flex-cols {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-list-item,.address-list-item ,.box-list-item{
    padding: 20px 30px;
    margin-bottom: 10px;
}
.order-list-item--skeleton,
.box-list-item--skeleton {
    min-height: 88px;
    pointer-events: none;
}
.order-list-item--skeleton .flex-col,
.box-list-item--skeleton .flex-col, .tickets-dash--skeleton .flex-col {
    min-width: 72px;
    flex: 1;
}
.order-products-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-products-list li {
    position: relative;
    padding-right: 14px;
    line-height: 1.7;
}
.order-products-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #A2AAC3;
    position: absolute;
    right: 0;
    top: 0.7em;
}
.notify-seen {
    opacity: 0.65;
}
.notify-items {
    max-height: 360px;
    overflow: auto;
}
.notify-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 0 16px;
}
.notify-item + .notify-item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f1f5;
}
.notify-item--skeleton {
    pointer-events: none;
}
.notify-item-icon-skeleton {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}
.notify-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px 32px;
    min-height: 180px;
}
.notify-empty-icon-wrap {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f7fc;
    color: #9aa3b8;
    font-size: 32px;
    margin-bottom: 14px;
}
.notify-empty-text {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
}
.label {
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
}
.collapse-content{display: none;}
[data-collapse] i {
    transform-origin: center;
    transition: all 0.2s ease;
}
[data-collapse].collapsed i {
    transform: rotate(180deg);
}
.font-digit {
    font-family: monospace;
}
/* ================
    Modal
  ========== */
body.modal-show {
    overflow: hidden;
}
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease, visibility 0.25s ease;
    z-index: 1000;
}
.modal.show {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    transform: translateY(-10px) scale(0.95);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-summary-specs-modal .modal-content {
    max-width: 720px;
    width: min(90vw, 720px);
}
.product-summary-specs-modal-body {
    max-height: min(70vh, 560px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* =========
    Amazon Import Modal
    ===== */
.amazon-import-modal .modal-content {
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.amazon-import-modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.amazon-import-modal-content {
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
}
.amazon-import-loading {
    padding: 4px 0 10px;
}
.amazon-import-loading-text {
    text-align: center;
    margin-bottom: 0;
}

/* Skeleton / placeholder shimmer */
.placeholder-loader {
    overflow: hidden;
    background: #f7fafc;
    position: relative;
    display: block;
    border-radius: 8px;
}
.placeholder-loader::before {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.6), transparent 50%);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    animation: elemload 1s linear infinite;
    transform: translateX(-100%);
    content: "";
    z-index: 1;
}
.placeholder-block {
    display: block;
    width: 100%;
    height: 100%;
}
.placeholder-thumb {
    min-height: 130px;
}
.placeholder-line {
    height: 12px;
    border-radius: 6px;
}
.placeholder-line--sm { width: 35%; }
.placeholder-line--md { width: 55%; }
.placeholder-line--lg { width: 85%; height: 16px; }
.placeholder-line--full { width: 100%; }
.placeholder-line--price { width: 45%; height: 20px; }

.js-purchase-final-field {
    position: relative;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}
.js-purchase-final-wrap.is-loading .js-purchase-final {
    opacity: 0;
    visibility: hidden;
}
.js-purchase-final-wrap.is-loading .js-purchase-final-loader {
    display: block !important;
    width: 100%;
    max-width: 140px;
    margin-right: auto;
}

@keyframes elemload {
    to { transform: translateX(100%); }
}

.amazon-import-product--skeleton .amazon-import-product-media {
    border-color: transparent;
    background: #f7fafc;
}
.amazon-import-product--skeleton .amazon-import-product-body {
    display: flex;
    flex-direction: column;
}

.amazon-import-steps {
    list-style: none;
    margin: 20px auto 0;
    padding: 0;
    max-width: 320px;
    min-height: 110px;
    text-align: center;
    display: none;
    overflow: hidden;
}
.amazon-import-modal.is-importing .amazon-import-steps {
    display: block;
}

.amazon-variant-unavailable-content {
    max-width: 480px;
    width: calc(100% - 32px);
    margin: 40px auto;
    padding: 24px;
}
.amazon-variant-unavailable-modal .amazon-import-error-icon {
    font-size: 42px;
    color: var(--color-primary);
}
.amazon-import-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.amazon-import-steps li {
    position: relative;
    padding: 8px 0;
    color: #9aa0ac;
    font-size: 13px;
    max-height: 36px;
    overflow: hidden;
    opacity: 0.45;
    transform: scale(0.9) translateY(4px);
    transform-origin: center right;
    transition:
        color 0.3s ease,
        opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        margin-top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    
    gap: 10px;
}
.is-steps-complete .amazon-import-steps {
    display: none !important;
}
.amazon-import-steps li.is-fading {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;
}
.amazon-import-steps li.is-collapsed {
    /* display: none; */
    opacity: 0 !important;
    margin-top: -35px;
}
.amazon-import-steps li::before {
    content: "\e911";
    font-family: 'shop_webfont_icons';
    position: static;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d7dae1;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex: 0 0 12px;
}
.amazon-import-steps li.is-active {
    color: var(--dark, #0a0b0f);
    font-weight: 700;
    opacity: 1;
    transform: scale(1) translateY(0);
}
.amazon-import-steps li.is-active::before {
    border-color: var(--primary, #2d45d2);
    box-shadow: 0 0 0 3px var(--primary-op, #e9ecff);
}
.amazon-import-steps li.is-done {
    color: #2e9e5b;
    opacity: 1;
    transform: scale(1) translateY(0);
}
.amazon-import-steps li.is-done::before {
    border-color: #2e9e5b;
    background: #2e9e5b;
    box-shadow: 0 0 10px rgb(46 158 91 / 50%);
}
.amazon-import-error {
    text-align: center;
    padding: 20px 0;
}
.amazon-import-error-icon {
    font-size: 42px;
    color: #e5484d;
}
.amazon-import-product {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.amazon-import-product--revealed {
    animation: amazon-import-reveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes amazon-import-reveal {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.amazon-import-product-media {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}
.amazon-import-product-media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.amazon-import-product-body {
    flex: 1;
    min-width: 0;
}
.amazon-import-product-title {
    line-height: 1.6;
}
.amazon-import-product-desc {
    line-height: 1.7;
}
@media (max-width: 480px) {
    .amazon-import-product {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .amazon-import-steps {
        text-align: center;
    }
    .amazon-import-steps li {
        transform-origin: center center;
    }
}


/* ========= 
    OTP
    ===== */
.otp-wrapper {
    text-align: center;
}
.otp-single-input {
    width: 100%;
    text-align: center !important;
    font-size: 16px !important;
    letter-spacing: 12px !important;
}
.otp-single-input:focus {
    border-color: #000;
}
.otp-timer {
    text-align: center;
    margin-top: 10px;
}
.otp-timer .time {
    font-weight: bold;
    margin-left: 5px;
}
.otp-timer a {
    color: #000;
    cursor: pointer;
    text-decoration: underline;
}


/* Blog page — block-specific styles  */
.block-blog-search {
    padding: 32px 0;
}

.blog-panel-title {
    font-weight: 800;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    margin: 0 0 16px;
}

.blog-search-hashtags {
    gap: 40px 24px;
}

.blog-search-form {
    width: 100%;
    max-width: 397px;
    height: 64px;
    border-color: #E0E3EB;
}

.blog-search-meta {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #A2AAC3;
}

.blog-hashtags {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: flex-end; */
    align-items: flex-start;
    gap: 8px 4px;
}

.blog-hashtag,.blog-label-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1.5px solid #E0E3EB;
    border-radius: 360px;
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    background: #fff;
    transition: border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.blog-label-view {
    background: #F6F7FB;
    border-color: #F6F7FB;
    gap: 10px;
    height: 47px;
}
.blog-hashtag:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* User buying guides */
.block-blog-guides {
    padding-top: 24px;
}
.blog-guides-grid {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 28px 46px;
}

.blog-guide-card {
    width: calc(50% - 23px);
    min-width: 280px;
    flex: 1 1 calc(50% - 23px);
}

.blog-guide-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 33px;
}

.blog-guide-thumb {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: #F6F7FB;
    order: 2;
}

.blog-guide-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-guide-body {
    display: flex;
    flex-direction: column;
    gap: 13px;
    flex: 1;
    min-width: 0;
}

.blog-guide-title {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.03em;
    color: #0A0B0F;
}

.blog-guide-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #0A0B0F;
}

.blog-guide-meta i {
    font-size: 20px;
}

.blog-guide-divider {
    margin: 29px 0 0;
    border: none;
    border-top: 1.5px solid #E8EAF0;
}

.blog-guide-swiper-wrap {
    height: 100%;
}

.blog-guide-swiper-wrap .banner-guide {
    height: 300px;
    border-radius: 20px;
}
.blog-single-sidebar .blog-guide-swiper-wrap .banner-guide {
    height: auto;
}

.blog-guide-swiper-wrap .banner-guide .banner-image,
.blog-guide-swiper-wrap .banner-guide .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-guide-swiper-wrap .banner-guide .banner-content {
    inset: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.blog-guide-swiper-wrap .banner-guide .banner-title {
    width: 100%;
    max-width: 378px;
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: -0.01em;
    color: #fff;
}
.blog-single-sidebar .blog-guide-swiper-wrap .banner-guide .banner-title {
    font-size: 16px;
    font-weight: 600;
}
.blog-guide-swiper-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 48px;
    background: #000;
    color: #fff;
    font-size: 28px;
}
.blog-single-sidebar .blog-guide-swiper-link {
    width: 60px;
    height: 60px;
    font-size: 22px;
}
.blog-guide-swiper-wrap .swiper-pagination {
    top: 36px;
    bottom: auto;
    left: 30px;
    right: auto;
    width: auto;
}

.blog-guide-swiper-wrap .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px !important;
    opacity: 1;
    background: #fff;
}

.blog-guide-swiper-wrap .swiper-pagination-bullet-active {
    background: #A5A5A5;
}
.block-header.block-header-has-line:after {
    content: "";
    height: 1px;
    width: auto;
    background: #E8EAF0;
    flex: 1;
}

/* Single blog post */
.block-blog-single {
    padding: 40px 0 60px;
}

.blog-single-head {
    margin-bottom: 32px;
}
.blog-single-title {
    margin: 20px 0 30px;
    font-weight: 800;
    font-size: 35px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #0A0B0F;
    width: 700px;
    max-width: 100%;
}
.blog-single-featured {
    margin: 0 0 40px;
    border-radius: 20px;
    overflow: hidden;
    background: #F6F7FB;
}

.blog-single-featured img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 480px;
}
.post-comments {
    border: 1px solid #E8EAF0;
    padding: 60px 50px;
    border-radius: 20px;
}
.blog-single-layout {
    align-items: flex-start;
}

.blog-single-contents {
    color: #3C445D;
}

.blog-single-contents h2,
.blog-single-contents h3 {
    color: #0A0B0F;
    font-weight: 800;
}

.blog-single-contents h2 {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 28px;
}

.blog-single-contents h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 24px;
}

.blog-single-footer {
    margin-top: 40px;
    display: flex;
}

.blog-single-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.blog-single-tags-label {
    font-weight: 600;
    font-size: 14px;
    color: #0A0B0F;
}

.blog-single-tags .blog-hashtags {
    gap: 8px;
}

.blog-single-tags .blog-hashtag {
    padding: 10px 20px;
    background: #fff;
}

.blog-single-share {
    min-width: 150px;
    border-radius: 360px;
    gap: 10px;
}

.blog-single-comments-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1.5px solid #E8EAF0;
}

.blog-single-comments-title {
    margin: 0;
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
    color: #0A0B0F;
}

.blog-single-comments-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.blog-sidebar-title {
    margin: 0 0 24px;
    font-weight: 800;
    font-size: 20px;
    line-height: 35px;
    color: #0A0B0F;
}

.blog-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-sidebar-card {
    width: 100%;
    flex-basis: 100%;
    min-width: 0;
}

.blog-sidebar-card .blog-guide-card-inner {
    gap: 16px;
}

.blog-sidebar-card .blog-guide-thumb {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
}

.blog-sidebar-card .blog-guide-title {
    font-size: 16px;
    line-height: 26px;
}

.blog-sidebar-card .blog-guide-divider {
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-single-sidebar .promo {
    min-height: 220px;
}
.blog-single-sidebar .promo .promo-content {
    padding: 30px
}
.posts-cols .post-card {
    max-width: none;
}
.banner-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* React select (stable via classNamePrefix="rs") */
.rs__menu-portal {
    z-index: 1000 !important;
}
.rs__control {
    border: 1px solid #E0E3EB !important;
    min-height: 44px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}
.rs__control--is-focused {
    border-color: #2437AA !important;
}
.rs__indicator-separator {
    display: none;
}
.rs__dropdown-indicator svg,
.rs__clear-indicator svg {
    fill: #838EAF;
    margin-left: 5px;
    width: 18px;
}
.rs__option--is-focused {
    background: #f4f6fe !important;
    color: #2437AA !important;
}
.rs__option--is-selected {
    background: #2437AA;
    color: #fff;
}
.rs__menu {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #E0E3EB !important;
    box-shadow: none !important;
    z-index: 1200;
}
.rs__menu-list {
    padding: 0;
}
.rs__option {
    border-radius: 8px;
    text-align: right;
}
/* ============================================
   Responsive
   ============================================ */
@media (min-width: 768px) {
    span.breadcrumb-item {
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
@media (max-width: 1200px) {
    :root {
        --container-pading : 16px;
    }
    .container {
        max-width: 100%;
        padding: 0 var(--container-pading);
    }

    .header-top-inner {
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
    }
    .banner-small,
    .banner-large {
        width: 100%;
    }
}
.visible-md {display: none;}
@media (max-width: 991px) {
    .visible-md {display: block;}
    .hidden-md {display: none;}
    .panel-flex {
        --panel-sidebar-width: 260px;
    }
    .panel-content {
        padding: 20px;
    }
    .blog-search-form {
        max-width: 100%;
    }

    .blog-guide-card {
        width: 100%;
        flex-basis: 100%;
    }

    .blog-guides-swiper-col {
        order: -1;
    }
    .blog-single-title {
        font-size: 28px;
    }

    .blog-single-sidebar {
        margin-top: 40px;
    }
    .features-list {
        
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .search-form {
        max-width: 360px;
    }
    .footer-main {
        flex-wrap: wrap;
        gap: 50px;
        justify-content: space-between;
    }
    .footer-column.footer-about {
        width: 100%;
    }
    .header-actions {
        gap: 16px;
    }

}
.visible-sm {display: none;}
@media (max-width: 768px) {
    .visible-sm {display: block;}
    .hidden-sm {display: none;}
     /* header */
     .header-fast-links {
        display: flex;
        gap: 10px;
        flex-grow: 1;
    }
    .header-fast-links::-webkit-scrollbar {display:none}
    .header-fast-links > * {
        border: 1.5px solid #F0F1F5;
        padding: 10px;
        border-radius: 10px;
        min-width: 90px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
        text-align: center;
        font-size: 12px;
        white-space: nowrap;
        position:relative
    }
    .header-fast-links .nav-badge {
        position: absolute;
            top: 2px;left:-10px
    }
    .header-fast-links i,.header-fast-links img {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    .header-fast-links .fast-link-logo {
        padding: 0;
        border: none;
        justify-content: flex-start;
        margin-left: auto;
    }
    
    .header-fast-links .fast-link-logo img {
        width: auto;
        height: auto;
    }
    .header-search {
        flex: 0 0 auto;
        width: 100%;
    }
    header.header {
        padding-bottom: 0;
        border-bottom: none;
    }
    .header-top {
        padding: 15px 0 0;
    }
    .search-form {max-width: 100%;width: 100%;}
    .nav-inner {
        flex-direction: column;
        gap: 16px;
        height: auto;
        padding: 16px 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 16px;
    }

    .banner-small-wrap {
        display: none;
    }

    .banners {
        --banner-gap: 0;
        --banner-small-width: 0;
        --banner-height: 230px;
    }

    .block-hero {
        padding: 20px 0;
    }

    .banner-promo {
        display: none;
    }

    .banner-amazon-icon {
        display: none;
    }

    .banner-large .banner-content {
        padding: 30px 20px;
    }

    .banner-title-large {
        width: 80%;
        font-size: 20px;
        margin-bottom: 10px;
    }
    .banner-has-gradient .banner-title-large {width:100%}
    .banner-text {
        width: 63%;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .banner-actions {
        display: none;
    }
    .block-header {
        gap: 16px;
    }

    .categories-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .category-item, .categories-swiper .swiper-slide {
        width: 180px;
    }
    .post-swiper .swiper-slide, .products-swiper .swiper-slide {
        width: 260px;
    }
    .post-swiper, .products-swiper {
        overflow: visible;
    }
    .swiper-holder {
        overflow : hidden
    }
    .block-header-right {
        flex: 1;
    }
    .promo-flexbox.promo-large {
        min-width: 100%;
    }
    .product-price-column {
        width: 100%;
        margin-top: 40px;
    }
    .flex-cols {
        flex-wrap: wrap;
        row-gap: 20px;
    }
    
}
.visible-xs {display: none;}
@media (max-width:576px) {
    .visible-xs {display: block}
    .hidden-xs {display: none !important;}

    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    .pagination-pages {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .features {
        flex-wrap: wrap;
        gap: 30px;
    }

    .features-list {
        /* width: 100%; */
        /* flex: 0 0 auto; */
        /* overflow: auto; */
    }

    .feature-item {
        flex-direction: column-reverse;
        align-items: flex-start;
    }


    .block-tabs {
        white-space: nowrap;
    }

    .promo-flexbox.promo-large {
        flex: 0 0 auto;
        width: 100%;
        padding: 24px 24px 0;
    }


    .nav.product-tabs-toggles {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        flex: 0 0 auto;
    }

    .block-header-left,
    .block-header-right,
    .block-header-heading {
        flex-wrap: wrap;
        width: 100%;
    }

    .flex-grid>*:not([class^="col-"]) {
        flex: 0 0 auto;
        width: 100%;
    }

    .footer {
        padding: 50px 0;
        overflow: hidden;
    }

    .footer-info {
        flex-wrap: wrap;
        gap: 25px;
    }

    .footer-nav {
        white-space: nowrap;
        flex-wrap: wrap;
    }

    .footer-social-title {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 4px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .search-form {
        width: 100%;
    }

    .icon-divider {
        display: none;
    }

    .overflow-xs-hidden {
        overflow: hidden;
    }
    .overflow-xs-visible {
        overflow: visible;
    }
    .flex-xs-fill {
        flex: 0 0 auto;
        width: 100%;
    }
    .scrollable-on-mobile {
        margin: 0 calc(-1 * var(--container-pading));
        padding: 0 var(--container-pading);
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .calculator-header {
        gap: 20px;
        margin-bottom: 10px;
    }

    .input-wrapper {
        width: 100%;
    }

    .promo .promo-content {
        padding: 20px;
    }

    .promo-title {
        font-size: 18px;
    }

    .promo .promo-content .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .promo-small-items>.promo-flexbox {
        min-width: 0;
        width: calc(50% - (var(--promo_grid_gap)/2));
    }
    .blog-guide-card-inner {
        gap: 16px;
    }

    .blog-guide-thumb {
        flex-basis: 80px;
        width: 80px;
        height: 80px;
    }

    .blog-guide-title {
        font-size: 16px;
        line-height: 26px;
    }
    .blog-single-title {
        font-size: 24px;
    }

    .blog-single-meta {
        gap: 16px;
    }

    .blog-single-footer {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }

    .blog-single-share {
        width: 100%;
    }
    .product-tabs-body, .post-comments {
        padding: 30px !important;
    }
    .comment-item-body > i,.comment-form > i {display: none;}
    .comment-form {
        display: block;
    }
    .blog-hashtags> * {
        flex-grow: 1;
    }
    .promo-content {
        min-width: 60%;
    }
    .promo-flexbox.promo-large .promo-content {
        margin-bottom: 30px;
    }
    .block-header.block-header-nav h2,.flex-heading-right {max-width: calc(100% - 125px);white-space: nowrap;overflow: hidden;text-overflow: ellipsis;display: block;}
    .block-timer {
        position: absolute;
        background: var(--bg-primary);
        color: #fff;
        padding: 5px 15px;
        min-width: 140px;
        border-radius: 0 0 10px 10px;
        top: -1px;
        left: 20px;
        font-size: 15px;
    }
    
    .block-inner-bordered {
        position: relative;
        padding: 40px 20px;
    }
    .panel-sidebar {
        display: none;
    }
    .panel-content {
        max-width: 100%;
        padding: 0;
        background: none !important;
        border: none !important;
    }
    .panel-box-item {
        border: 1px solid #E8EAF0;
    }

}

/* ============================================
   Header Search Dropdown
   ============================================ */
.header-search .search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 120;
    padding: 12px;
    border: 1px solid #E8EAF0;
    box-shadow: 0 20px 40px rgb(10 11 15 / 8%);
    border-radius: 16px;
    background: #fff;
    max-height: 420px;
    overflow: auto;
}

.header-search .search-dropdown-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-search .search-dropdown-label {
    padding: 8px 12px 4px;
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
}

.header-search .search-dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #E8EAF0;
}

.header-search .search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.header-search .search-result:hover {
    background: #F8F9FB;
}

.header-search .search-result-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    background: #F5F7FC;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-search .search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-search .search-result-category-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EEF2FE;
    color: #3B5BDB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.header-search .search-result-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.header-search .search-result-title {
    font-weight: 600;
    color: #0A0B0F;
    line-height: 1.6;
}

.header-search .search-dropdown-empty {
    color: #505B7C;
    padding: 12px;
    text-align: right;
}

.header-search .search-amazon-missing {
    display: block;
    padding: 8px 4px;
    text-align: center;
}
.header-search .search-amazon-missing[hidden] {
    display: none;
}

.header-search .search-amazon-missing-btn {
    width: 100%;
}

.header-search .search-dropdown-footer {
    display: flex;
    justify-content: stretch;
    padding-top: 4px;
}

.header-search .search-dropdown-reset {
    width: 100%;
}
