/** Shopify CDN: Minification failed

Line 2816:41 Unexpected ":"
Line 2816:76 Unexpected ":"
Line 5017:0 Unexpected "}"

**/
/* =============== SITE GLOBAL STYLE CSS =============== */
*,
:after,
:before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    text-decoration: inherit;
    vertical-align: inherit;
}
html {
    outline: none;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
body,
html {
    scrollbar-width: none;
}
body::-webkit-scrollbar {
    display: none;
}
body::-moz-scrollbar {
    display: none;
}
svg,
img {
    max-width: 100%;
    display: block;
}
a,
.btn,
button {
    text-decoration: none;
    outline: none;
    color: inherit;
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    cursor: pointer;
}
a,
a:hover,
a:focus,
a:active,
button,
button:hover,
button:focus,
input,
input:hover,
input:focus,
select,
select:hover,
select:focus,
textarea,
textarea:hover,
textarea:focus,
.btn,
.btn:hover,
.btn:focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
    text-decoration: none;
    -webkit-text-decoration-skip: objects;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    font-family: var(--first-font);
}
.form-control:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="checkbox"]:focus,
[type="password"]:focus,
[type="file"]:focus,
[type="radio"]:focus,
[type="submit"]:focus,
[type="date"]:focus,
[type="time"]:focus,
[type="tel"]:focus,
[type="search"]:focus,
[type="button"]:focus,
[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
::-webkit-input-placeholder {
    color: var(--white);
}
:-ms-input-placeholder {
    color: var(--white);
}
::placeholder {
    color: var(--white);
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    font-size: 100%;
    list-style: none;
    vertical-align: baseline;
}
body {
    font: var(--common-text);
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: var(--theme-color);
    color: var(--white);
}
/* =============== SITE TYPOGRAPHY (RESPONSIVE) =============== */

/* Fluid type scale */
:root{
  /* body */
  --fs-body: clamp(14px, 0.95vw, 16px);
  --lh-body: 1.65;

  /* headings */
  --fs-h1: clamp(28px, 3.2vw, 56px);
  --fs-h2: clamp(22px, 2.4vw, 40px);
  --fs-h3: clamp(18px, 1.8vw, 28px);
  --fs-h4: clamp(16px, 1.4vw, 22px);
  --fs-h5: clamp(14px, 1.2vw, 18px);
  --fs-h6: clamp(12px, 1.0vw, 16px);

  --lh-head: 1.1;
  --ls-head: 0.04em; /* small tracking for uppercase */
}

/* Base */
p, li{
  margin:0;
  padding:0;
  font-family: var(--first-font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

/* Lists reset (keep your current behavior) */
ul, ol{
  margin:0;
  padding:0;
  list-style:none;
}

/* Headings */
h1,.h1,
h2,.h2,
h3,.h3,
h4,.h4,
h5,.h5,
h6,.h6{
  margin:0;
  text-transform: uppercase;
  font-family: var(--second-font);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
}

/* Sizes */
h1,.h1{ font-size: var(--fs-h1); }
h2,.h2{ font-size: var(--fs-h2); }
h3,.h3{ font-size: var(--fs-h3); }
h4,.h4{ font-size: var(--fs-h4); }
h5,.h5{ font-size: var(--fs-h5); }
h6,.h6{ font-size: var(--fs-h6); }

/* Utilities */
.uppercase{ text-transform: uppercase; }
.text-center{ text-align:center !important; }
.text-left{ text-align:left !important; }
.text-right{ text-align:right !important; }

b, strong{ font-weight:700; }
p:not(:last-of-type){ margin-bottom:15px; }

/* =============== GRID CSS =============== */
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

@media(min-width: 1200px){
    .container{
        max-width: 1500px;
    }
}
.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.no-gutters {
    margin: 0 !important;
}
.row [class*="col-"] {
    padding: 0 15px;
}
.no-gutters [class*="col-"] {
    padding: 0;
}
.w-100 {
    width: 100%;
}
.h-100 {
    height: 100%;
}
.d-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.align-items-start {
    -ms-flex-align: start;
    align-items: flex-start;
}
.align-items-end {
    -ms-flex-align: end;
    align-items: flex-end;
}
.align-items-center {
    -ms-flex-align: center;
    align-items: center;
}
.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.justify-content-between {
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.justify-content-start {
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}
.justify-content-end {
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.no-wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.desk-only,
.hidden,
.visually-hidden,
[hidden] {
    display: none !important;
}
.mobile-only {
    display: block !important;
}



/*****  Columns  *****/
.col-auto {
    flex: 0 0 auto;
    width: auto;
}
.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}
.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}
.col-3 {
    flex: 0 0 auto;
    width: 25%;
}
.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}
.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}
.col-9 {
    flex: 0 0 auto;
    width: 75%;
}
.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}
.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.offset-1 {
    margin-left: 8.33333333%;
}
.offset-2 {
    margin-left: 16.66666667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.33333333%;
}
.offset-5 {
    margin-left: 41.66666667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.33333333%;
}
.offset-8 {
    margin-left: 66.66666667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.33333333%;
}
.offset-11 {
    margin-left: 91.66666667%;
}
@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333333%;
    }
    .offset-sm-2 {
        margin-left: 16.66666667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333333%;
    }
    .offset-sm-5 {
        margin-left: 41.66666667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333333%;
    }
    .offset-sm-8 {
        margin-left: 66.66666667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333333%;
    }
    .offset-sm-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }
    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333333%;
    }
    .offset-md-2 {
        margin-left: 16.66666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333333%;
    }
    .offset-md-5 {
        margin-left: 41.66666667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333333%;
    }
    .offset-md-8 {
        margin-left: 66.66666667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333333%;
    }
    .offset-md-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333333%;
    }
    .offset-lg-2 {
        margin-left: 16.66666667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333333%;
    }
    .offset-lg-5 {
        margin-left: 41.66666667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333333%;
    }
    .offset-lg-8 {
        margin-left: 66.66666667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333333%;
    }
    .offset-lg-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xl-11 {
        margin-left: 91.66666667%;
    }
}
@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }
    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }
    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }
    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
    .offset-xxl-0 {
        margin-left: 0;
    }
    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }
    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }
    .offset-xxl-3 {
        margin-left: 25%;
    }
    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }
    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }
    .offset-xxl-6 {
        margin-left: 50%;
    }
    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }
    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }
    .offset-xxl-9 {
        margin-left: 75%;
    }
    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }
    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }
}
/* =============== NICE SELECT CSS =============== */
.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    border: solid 1px var(--border-color);
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    outline: none;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 35px 10px 15px;
    width: 100%;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    appearance: none;
}
.nice-select.open:after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -moz-transform: scale(1) translateY(0);
    -o-transform: scale(1) translateY(0);
}
.nice-select.disabled {
    border-color: var(--border-color);
    color: var(--border-color);
    pointer-events: none;
}
.nice-select.disabled:after {
    border-color: #cccccc;
}
.nice-select.wide {
    width: 100%;
}
.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}
.nice-select.right {
    float: right;
}
.nice-select.right .list {
    left: auto;
    right: 0;
}
.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}
.nice-select.small:after {
    height: 4px;
    width: 4px;
}
.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}
.nice-select .list {
    background-color: var(--black);
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.7);
    box-sizing: border-box;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 2;
    width: 100%;
    -moz-transform: scale(0.75) translateY(-21px);
    -o-transform: scale(0.75) translateY(-21px);
    -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -o-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
}
.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.nice-select .option {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    outline: none;
    padding-left: 14px;
    padding-right: 14px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.nice-select .option.selected {
    font-weight: bold;
}
.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}
.no-csspointerevents .nice-select .list {
    display: none;
}
.no-csspointerevents .nice-select.open .list {
    display: block;
}
/* =============== SLICK SLIDER CSS =============== */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
    outline: none;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: absolute;
    bottom: 20px;
}
.slick-dots li:not(:last-child) {
    margin-right: 9px;
}
.slick-dots li {
    display: flex;
    height: 5px;
    width: 5px;
    background: var(--theme-color);
    border-radius: 100%;
    border: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    position: relative;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.slick-dots li:before {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    border: 1px solid var(--black);
    top: -4px;
    left: -4px;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    opacity: 0;
}
.slick-dots li.slick-active:before {
    opacity: 1;
}
.slick-dots li button {
    display: none;
}
.slick-slider .slick-next,
.slick-slider .slick-prev {
    display: inline-block;
    vertical-align: middle;
}
.slick-slider .slick-next::before,
.slick-slider .slick-prev::before {
    display: none;
}
.slick-slider .slick-arrow {
    background: var(--second-color);
    position: absolute;
    text-align: center;
    border: none;
    font-size: 0;
    text-transform: uppercase;
    min-width: 32px;
    min-height: 32px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    width: auto;
    height: auto;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}
.slick-slider:hover .slick-arrow {
    opacity: 1;
}
.slick-slider .slick-arrow:hover {
    opacity: 0.5;
}
.slick-slider .slick-arrow svg {
    width: 11px;
    height: 11px;
}
.slick-slider .slick-prev {
    left: 10px;
}
.slick-slider .slick-prev svg {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.slick-slider .slick-next {
    right: 10px;
}
.slick-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
    background-color: transparent;
}
.slick-lightbox .slick-prev {
    left: 15px;
}
.slick-lightbox .slick-next {
    right: 15px;
}
.slick-lightbox-inner .slick-arrow {
    background: var(--white) url(right-black-arrow.svg);
    background-repeat: no-repeat;
  background-size:20px;
    background-position: 50% 50%;
}
.slick-lightbox-hide {
    opacity: 0;
}
.slick-lightbox-hide-init {
    position: absolute;
    top: -9999px;
    opacity: 0;
}
.slick-lightbox-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slick-lightbox-slick-item {
    text-align: center;
    overflow: hidden;
}
.slick-lightbox-slick-item:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}
.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
    display: block;
    text-align: center;
}
.slick-lightbox-slick-item-inner {
    display: inline-block;
    vertical-align: middle;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}
.slick-lightbox-slick-caption {
    margin: 10px 0 0;
    display: none;
    color: var(--white);
}
.slick-lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    padding: 0;
    border: none;
}
.slick-lightbox .close svg {
    height: 100%;
    width: 100%;
}
.slick-lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    opacity: 1;
    background: transparent;
    border: none;
    height: 27px;
    width: 27px;
    padding: 0;
}
.slick-lightbox .slick-arrow.slick-prev {
    -webkit-transform: translateY(-50%) scale(-1);
    -moz-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    -o-transform: translateY(-50%) scale(-1);
    transform: translateY(-50%) scale(-1);
}
.slick-lightbox .slick-arrow:hover,
.slick-lightbox .slick-arrow:focus {
    background-color: var(--white);
}
/* =============== COMMON BUTTON =============== */
.btn {
    text-align: center;
    padding: 11px 25px;
    font-family: var(--first-font);
    color: var(--theme-color);
    background-color: var(--second-color);
    box-shadow: none;
    appearance: none;
    outline: none;
    border: 1px solid var(--second-color);
    position: relative;
    border-radius: 0;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}
.btn svg {
    width: 20px;
    margin-left: 8px;
    height: 18px;
}
.btn svg path {
    fill: var(--theme-color);
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}
.btn:hover,
.btn:focus {
    background-color: transparent;
    color: var(--white);
}
.btn:focus svg path,
.btn:hover svg path {
    fill: var(--second-color);
}
.btn.white-btn {
    color: var(--second-color);
    background-color: var(--theme-color);
}
.btn.white-btn svg path {
    fill: var(--second-color);
}
.btn.white-btn:hover,
.btn.white-btn:focus {
    color: var(--theme-color);
    border-color: var(--theme-color);
    background-color: transparent;
}
.btn.white-btn:hover svg path,
.btn.white-btn:focus svg path {
    fill: var(--theme-color);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    background: transparent;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    border-radius: 0;
    text-transform: uppercase;
}
.btn-ic {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    margin-left: 10px;
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.btn-secondary svg {
    width: 12px;
    height: 12px;
}
.btn-secondary svg path {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    fill: var(--white);
}
.btn-secondary:hover {
    background: var(--second-color);
    color: var(--black);
}
.btn-secondary.white-btn .btn-ic {
    background: var(--white);
}
/* .btn-secondary:hover svg path {
    fill: var(--theme-color);
  } */
.btn-secondary.white-btn {
    border: 1px solid var(--white);
    color: var(--white);
}
.btn-secondary.white-btn:hover .btn-ic {
    background: var(--theme-color);
}
.btn-secondary.white-btn svg path {
    fill: var(--black);
}
.btn-secondary.white-btn:hover {
    border: 1px solid var(--white);
    color: var(--theme-color);
    background: var(--white);
}
.btn-secondary:hover .btn-ic {
    background: var(--white);
}
.btn-secondary.white-btn:hover svg path {
    fill: var(--white);
}
.add-cart-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--second-color);
    border-radius: 30px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    min-width: 150px;
    letter-spacing: 0.5px;
    color: var(--white);
    justify-content: center;
    text-transform: uppercase;
    box-shadow: 0 4.53333px 11.3333px 3px rgba(241, 110, 54, 0.29);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.add-cart-btn .atc-ic {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 20px;
    background: #f5a280;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.add-cart-btn .atc-ic svg {
    width: 10px;
    height: 11px;
    margin: 0 auto;
    fill: var(--white);
}
.add-cart-btn:hover,
.add-cart-btn:focus {
    background: var(--white);
    color: var(--second-color);
    box-shadow: 0 4.53333px 11.3333px 3px rgba(241, 110, 54, 0.29);
}
/* =============== FORM  CSS =============== */
.form-control,
input:not([type="submit"]),
input:not([type="checkbox"]),
input:not([type="radio"]),
select,
textarea {
    position: relative;
    border: 1px solid var(--border-color);
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    font-size: 14px;
    line-height: 1.3;
    color: var(--white);
}
select option {
    color: var(--black);
}
textarea {
    resize: none;
}
form .row {
    margin: 0 -8px;
}
form .row [class*="col-"] {
    padding: 0 10px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}
.form-group .nice-select .list,
.form-group .form-control {
    border-radius: 0;
}
sup {
    top: -0.5em;
}
sub,
sup {
    position: relative;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    margin-left: 5px;
}
.form-group label sup {
    color: red;
    font-size: 10px;
    line-height: 0;
    margin-right: 3px;
}
.checkbox-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.checkbox-custom label {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    padding: 0 0 0 30px;
}
.checkbox-custom label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid var(--theme-color);
    padding: 8px;
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.checkbox-custom input:checked+label:before {
    border-color: var(--second-color);
    background-color: var(--theme-color);
}
.checkbox-custom input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0px 1px 1px 0;
    transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
}
.checkbox-custom label a {
    text-decoration: underline;
    font-weight: 600;
}
/** RADIO BUTTON CSS **/
.radio-group input[type="radio"] {
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}
.radio-group label {
    cursor: pointer;
    position: relative;
    font-size: 12px;
    padding-left: 24px;
    color: var(--white);
    margin: 0;
    vertical-align: bottom;
}
.radio-group label::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: transparent;
    border: 2px solid var(--second-color);
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
    -webkit-transition: border-color 400ms ease;
    -moz-transition: border-color 400ms ease;
    -ms-transition: border-color 400ms ease;
    -o-transition: border-color 400ms ease;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.radio-group label::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: var(--second-color);
    border: 2px solid var(--second-color);
    border-radius: 50%;
    top: 50%;
    left: 1px;
    right: auto;
    transform: translateY(-50%) scale(0);
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
    -webkit-transition: transform 400ms ease;
    -moz-transition: transform 400ms ease;
    -ms-transition: transform 400ms ease;
    -o-transition: transform 400ms ease;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.radio-group input[type="radio"]:checked+label::before {
    border-color: var(--second-color);
}
.radio-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
    -webkit-transform: translateY(-50%) scale(0.55);
    -moz-transform: translateY(-50%) scale(0.55);
    -ms-transform: translateY(-50%) scale(0.55);
    -o-transform: translateY(-50%) scale(0.55);
}
/***** COMMON CSS ****/
body.active-menu,
body.no-scroll {
    overflow: hidden;
    position: relative;
}
.right-gliter {
    bottom: 0;
    right: 0;
}
.gliter-img {
    position: absolute;
    z-index: -1;
}
.padding-top {
    padding-top: 70px;
}
.padding-bottom,
.product .bestseller-section {
    padding-bottom: 70px;
}
.section-title {
    margin-bottom: 26px;
}
.subtitle {
    font-weight: 500;
    line-height: 88%;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* =============== CUSTOMIZE THE NAVBAR =============== */
.header-style-one {
  /* DEFAULT = DARK (non-home) */
  background: var(--second-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

/* HOME (index) = LIGHT */
.index .header-style-one{
  background: var(--border-color);
}

.index .header-style-one .main-navigationbar.fixed {
  background: var(--border-color);
}

.header-style-one .main-navigationbar.fixed {
  background: var(--second-color);
  box-shadow: 0 2px 2px #0000001a;
  -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
  -moz-box-shadow: 0 2px 2px rgba(0,0,0,.1);
  -ms-box-shadow: 0 2px 2px rgba(0,0,0,.1);
  -o-box-shadow: 0 2px 2px rgba(0,0,0,.1);
  position: fixed;
  width: auto;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3; /* DO NOT TOUCH */
}
/* ===== MENU-RIGHT alignment (clean) ===== */
.header-style-one .menu-right{
  align-items: center;
}

.header-style-one .menu-right > li{
  display: flex;
  align-items: center;
}

/* Make icon + label sit nicely */
.header-style-one .menu-right > li > a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

/* ===== CART BADGE (fix) ===== */
.header-style-one .cart-header{ position: relative; }

/* important: anchor becomes the badge container */
.header-style-one .cart-header a.main-cart{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* badge */
.header-style-one .cart-header .count{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(55%, -55%);

  height: 18px;
  min-width: 18px;
  padding: 0 5px;

  border: 0;
  border-radius: 999px;

  background: red;
  color: var(--border-color); /* your black token */

  display: grid;
  place-items: center;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

/* Non-home: main bar is dark */
body:not(.index) .header-style-one .main-navigationbar{
  background: var(--second-color);
  border-bottom-color: color-mix(in srgb, var(--border-color) 14%, transparent);
}

/** Main navigation bar css **/
.header-style-one .main-navigationbar .logo-col {
  max-width: 90px;
  width: 100%;
}
.header-style-one .main-navigationbar .logo-col a {
  display: block;
}
.header-style-one .main-navigationbar .menu-items-col {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav {
  display: none;
  padding-left: 65px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li {
  padding: 22px 0;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
  padding-right: 30px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a {
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--theme-color);
  text-transform: uppercase;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a {
  padding-right: 20px;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a:after {
  content: '';
  position: absolute;
  height: 10px;
  width: 10px;
  right: 0;
  top: 3px;
  background: url(menu-dropdown-blk.png);
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all ease-in-out 0.5s;
  -moz-transition: all ease-in-out 0.5s;
  -ms-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item:hover>a:after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:before {
  content: '';
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -3px;
  left: 0;
  background: var(--theme-color);
  margin: 0 auto;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:hover >a:before {
  width: 80%;
}

.header-style-one .menu-right li {
  padding: 20px 0;
}
.header-style-one .menu-right li a {
  display: flex;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
}
.header-style-one .menu-right li a span {
  display: inline-block;
  margin: 0 0 0 10px;
}
.header-style-one .menu-right .profile-header .wishlist span{ margin: 0px; }
.header-style-one .menu-right li.headwish a span.wishcount { line-height: 1; }
.header-style-one .menu-right li:not(:first-of-type) { margin-left: 20px; }
.header-style-one .menu-right li:last-of-type { width: 100%; max-width: 96px; }
.header-style-one .menu-right li a svg { width: 16px; height: 16px; margin: 0; flex-shrink: 0; }
.header-style-one .menu-right li a svg path { fill: var(--theme-color); }

.header-style-one .menu-dropdown ul>li a {
  color: var(--theme-color);
  position:relative;
}
.header-style-one .menu-dropdown .list-title { color: var(--second-color); }
.header-style-one .mobile-menu svg line { stroke: var(--second-color); }

/* =========================================================
   SKINS (NO z-index changes)
   HOME = LIGHT, OTHERS = DARK
   IMPORTANT: your "white" is var(--border-color)
========================================================= */

/* ---------- HOME LIGHT (index) ---------- */
.index .header-style-one .main-navigationbar{
  background: var(--border-color);
}

.index .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a{
  color: var(--second-color);
}
.index .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:before{
  background: var(--second-color);
}
.index .header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a:after{
  background-image: url(menu-dropdown-blk.png);
}

.index .header-style-one .menu-right li a{ color: var(--second-color); }
.index .header-style-one .menu-right li a svg path{ fill: var(--second-color); }
.index .header-style-one .mobile-menu svg line{ stroke: var(--second-color); }

/* Light dropdowns */
.index .header-style-one .menu-dropdown{
  background-color: var(--border-color) !important;
  border-top: 1px solid var(--theme-color) !important;
}
.index .header-style-one .menu-dropdown ul>li a{ color: var(--second-color) !important; }
.index .header-style-one .menu-dropdown .list-title{ color: var(--second-color) !important; }
.index .header-style-one .profile-header .menu-dropdown li a{ color: var(--second-color) !important; }

/* ---------- DARK (all pages except home) ---------- */
body:not(.index) .header-style-one,
body:not(.index) .header-style-one .main-navigationbar,
body:not(.index) .header-style-one .main-navigationbar.fixed{
  background: var(--second-color) !important;
}

/* Nav links in dark */
body:not(.index) .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a{
  color: var(--border-color) !important; /* WHITE */
}
body:not(.index) .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a:before{
  background: var(--border-color) !important;
}
body:not(.index) .header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a:after{
  background-image: url(menu-dropdown.png) !important;
}

/* Right side in dark */
body:not(.index) .header-style-one .menu-right li a{
  color: var(--border-color) !important;
}
body:not(.index) .header-style-one .menu-right li a svg path{
  fill: var(--border-color) !important;
}
body:not(.index) .header-style-one .mobile-menu svg line{
  stroke: var(--border-color) !important;
}

/* Dropdowns in dark */
body:not(.index) .header-style-one .menu-dropdown{
  background-color: var(--second-color) !important;
  border-top: 1px solid color-mix(in srgb, var(--border-color) 18%, transparent) !important;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.10);
}
body:not(.index) .header-style-one .menu-dropdown ul>li a{
  color: var(--border-color) !important;
}
body:not(.index) .header-style-one .menu-dropdown .list-title,
body:not(.index) .header-style-one .megamenu-list>li span{
  color: var(--border-color) !important;
}

/* Profile dropdown base (keep z-index) */
.profile-header .menu-dropdown {
  position: absolute;
  top: 100%;
  background-color: var(--second-color) !important;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  min-width: 150px;
  z-index: 2; /* DO NOT TOUCH */
  padding: 15px;
  border-top: 1px solid var(--border-color);
  -o-transition: all ease-in-out .3s;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
  -ms-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
li.profile-header:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.header-style-one .profile-header .menu-dropdown li {
  padding: 0 !important;
  max-width: 100%;
  margin: 0 0 7px !important;
}
.header-style-one .profile-header .menu-dropdown li:last-child { margin: 0 !important; }

/* Profile dropdown links: light default, dark override */
.header-style-one .profile-header .menu-dropdown li a {
  color: var(--theme-color) !important;
  display: inline-block;
  text-align: left;
  width: auto;
}
body:not(.index) .header-style-one .profile-header .menu-dropdown li a{
  color: var(--border-color) !important;
}

/* Keep your special-case selector (left as-is) */
body:not(.index) .header-style-one .menu-right li webi-cart-remove-button a svg path {
  fill: var(--theme-color);
}

/**  Megamenu css  **/
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown {
  position: absolute;
  top: 100%;
  background-color: var(--second-color);
  transform-origin: top;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  min-width: 220px;
  z-index: 2; /* DO NOT TOUCH */
  padding: 20px;
  border-top: 1px solid var(--theme-color);
  -moz-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px 0;
}
.header-style-one .main-navigationbar .menu-items-col .main-nav>li:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.header-style-one .menu-dropdown ul [class*="col-"] { padding: 0 15px; }
.header-style-one .menu-dropdown ul>li:not(:last-of-type) { margin-bottom: 10px; }
.header-style-one .megamenu-list>li span {
  margin-bottom: 15px;
  display: block;
  font-size:16px;
  font-weight: 600;
  text-transform: capitalize;
}
.header-style-one .menu-dropdown ul>li a { border-bottom: 1px solid transparent; }

/* Make megamenu links readable in dark */
body:not(.index) .header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown a{
  color: var(--border-color) !important;
}
body:not(.index) .header-style-one .main-navigationbar .menu-items-col .main-nav>li.menu-lnk .menu-dropdown .megamenu-list>li span{
  color: var(--border-color) !important;
}

/**********  HOME PAGE HEADER FIXED LEFT CSS **********/
.fixed-headr-left {
    position: fixed;
    left: 0;
    top: 0;
    width: 120px;
    background: var(--border-color);
    text-align: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 38px 10px;
}
.cartOpen .fixed-headr-left, .quick-active .fixed-headr-left {
    border-right: 0;
    border-bottom: 0;
}
.cartOpen .fixed-headr-left::before, .quick-active .fixed-headr-left::before {
    content: " ";
    z-index: 3;
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.cartOpen .header-style-one, .quick-active .header-style-one {
    border-bottom: 0;
}
.fixed-headr-left ul.main-nav {
    display: block !important;
    text-align: center;
    padding: 0 !important;
}
.fixed-headr-left .logo-col {
    margin: 0 auto 50px;
}
.fixed-headr-left .cart-header .hcart svg {
    fill: var(--white);
    margin: 0 auto;
}
.fixed-headr-left .cart-header {
    position: relative;
    margin-bottom: 15px;
}
.fixed-headr-left .cart-header .count {
    display: block;
    position: absolute;
    height: 15px;
    width: 15px;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 20px;
    font-size: 10px;
    top: -4px;
    right: 32px;
}
.fixed-headr-left .cart-header .icon-lable ins {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin: 10px 0 0;
    text-align: center;
    display: block;
}
.fixed-headr-left .socials {
    margin: 50px 0 0;
    color: var(--white);
}
.fixed-headr-left .socials a {
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 5px;
    font-size: 12px;
    position: relative;
}
.fixed-headr-left .socials a:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    bottom: 0px;
    background: var(--white);
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    right: 0;
}
.fixed-headr-left .socials a:hover:before {
    width: 100%;
    left: 0;
}
.fixed-headr-left li.menu-lnk a {
    display: inline-block;
    writing-mode: tb-rl;
    margin: 1rem 0;
    text-orientation: sideways-right;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    position: relative;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .fixed-headr-left .main-nav>li:not(:last-of-type) {
    padding-right: 0;
}
.header-style-one .main-navigationbar .menu-items-col .fixed-headr-left .main-nav>li {
    padding: 0;
}
.header-style-one .main-navigationbar .menu-items-col .fixed-headr-left .main-nav>li>a:before {
    display: none;
}
.header-style-one .main-navigationbar .menu-items-col .fixed-headr-left .main-nav>li>a:after {
    content: '';
    position: absolute;
    height: 0;
    width: 2px;
    background-color: var(--white);
    left: -4px;
    top: 0;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.header-style-one .main-navigationbar .menu-items-col .fixed-headr-left .main-nav>li>a:hover:after {
    height: 50%;
}
.fixed-headr-left .logo-col img {
    margin: 0 auto;
}
.home-link {
    position: relative;
    padding-left: 60px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
}
.home-link:before {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background: var(--white);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.home-link:after {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    background: var(--white);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
/****** MOBILE MENU CSS ********/
.mobile-menu-wrapper {
    position: fixed;
    z-index: 4;
    background: var(--second-color);
    top: 0;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translate(100%, 0px);
    -moz-transform: translate(100%, 0px);
    -ms-transform: translate(100%, 0px);
    -o-transform: translate(100%, 0px);
    transform: translate(100%, 0px);
    right: 0;
    width: 100%;
    max-width: 450px;
    left: auto;
}
.mobile-menu-wrapper.active-menu {
    transform: translate(0%, 0px);
    -webkit-transform: translate(0%, 0px);
    -moz-transform: translate(0%, 0px);
    -ms-transform: translate(0%, 0px);
    -o-transform: translate(0%, 0px);
}
.mobile-menu-wrapper .menu-close-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 15px;
    justify-content: center;
    background: var(--second-color);
    z-index: 1;
    padding: 5px;
    cursor: pointer;
}
.mobile-menu-bar {
    height: 100%;
    overflow: auto;
    padding: 40px 25px;
    color: var(--white);
}
.mobile-menu-bar::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.mobile-menu-bar::-webkit-scrollbar-track {
    background: var(--second-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.mobile-menu-bar::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
/***/
.mobile-menu-wrapper .mobile-menu-bar>ul {
    height: calc(100vh - 110px);
    overflow: auto;
    padding: 10px 20px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li {
    margin-top: 10px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a {
    font-size: 18px;
    color: var(--theme-color);
    letter-spacing: 1px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .menu-open-arrow {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li.is-open>a.acnav-label .close-menu-ioc {
    display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a .close-menu-ioc {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .acnav-list {
    margin: 12px 0;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .close-menu-ioc {
    display: block;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .menu-h-drop.is-open .acnav-label .menu-open-arrow {
    display: none;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li:not(:last-of-type) {
    margin-bottom: 8px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul li a {
    font-size: 14px;
    line-height: 18px;
    text-transform: lowercase;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li a svg {
    margin-left: auto;
    width: 14px;
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li .mobile_menu_inner .menu-h-link ul {
    margin-bottom: 12px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul {
    margin: 12px 0 0 !important;
    padding-bottom: 0;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li:not(:last-of-type) {
    margin-bottom: 9px;
}
.mobile-menu-wrapper .mobile-menu-bar .has-children>ul>li>a {
    font-size: 14px;
}
.mobile-menu-wrapper .menu-close-icon svg path {
    fill: var(--white);
}
.headwish .wishcount {
    margin: 0;
}
.customer_account ul .headwish .hyutr:first-of-type {
    margin-left: 5px;
}
/****** CART DRAWER CSS ********/
.overlay {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}
.overlay.menu-overlay,
.overlay.active,
.cartOpen .overlay::after,
.quick-active .overlay:after {
    content: " ";
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
}
.subscribe-overlay {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 3;
    background: rgba(255, 255, 255, 0.50);
    visibility: hidden;
    opacity: 1;
}

.cartDrawer {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 5;
    background: var(--white);
    width: 410px;
    height: 100%;
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    -moz-transition: 0.4s all;
    -ms-transition: 0.4s all;
    -o-transition: 0.4s all;
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
}
.cartOpen .cartDrawer {
    opacity: 1;
    visibility: visible;
    display: flex;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.cart-header .closecart,
.header-style-one .menu-right .cart-header .closecart {
    position: fixed;
    right: 424px;
    top: 20px;
    width: 20px;
    height: 20px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}
.cartOpen .cart-header .closecart,
.cartOpen .header-style-one .menu-right .cart-header .closecart {
    opacity: 1;
    visibility: visible;
}
.cartDrawer .mini-cart-header {
    position: relative;
    text-align: center;
    padding: 17px 30px 16px 30px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--theme-color);
    color: var(--white);
}
.cartDrawer .cart-tottl-itm {
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}
.cartDrawer .closecart {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
}
.cartOpen .cartDrawer .closecart {
    opacity: 1;
    visibility: visible;
}
.cartDrawer .mini-cart-has-item {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cartDrawer .mini-cart-body {
    overflow-y: auto;
    padding: 30px;
    flex: 1;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar {
    width: 5px;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.cartDrawer .mini-cart-body::-webkit-scrollbar-thumb {
    background-color: #888;
}
.mini-cart-item {
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--border-color);
    background: var(--white);
}
.mini-cart-item:not(:last-of-type) {
    margin-bottom: 20px;
}
.mini-cart-image {
    width: 80px;
    border: 1px solid var(--border-color);
}
.mini-cart-image a {
    display: block;
    padding-top: 150%;
    position: relative;
}
.mini-cart-image img {
    top: 0;
    width: 100%;
    object-fit: scale-down;
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
}
.mini-cart-details {
    flex: 1;
    width: 100%;
    padding-left: 15px;
    text-align: left;
}
.mini-cart-title {
    color: var(--theme-color) !important;
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index .header-style-one.dark-header .menu-right li .webi-mini-cart-footer a svg path {
    fill: var(--theme-color);
}
.mini-cart-title a {
    color: inherit;
}
.cart-variable {
    margin-bottom: 10px;
}
.cart-variable p {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 14px;
    color: #4e4e4e;
}
.qty-spinner {
    border: 1px solid var(--border-color);
    display: flex;
    max-width: 100px;
    height: 35px;
    width: 100%;
}
.qty-spinner button {
    background: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    flex: 1;
}
.qty-spinner button svg {
    margin: auto;
    height: 10px;
    width: 10px;
    pointer-events: none;
}
.qty-spinner button svg path {
    fill: var(--white);
}
.qty-spinner input {
    border: 0;
    flex: 1;
    width: 29px;
    color: var(--white);
    padding: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}
.interiors-design-section .row:nth-child(:last-of-type) .col-lg-6:nth-child(:last-of-type) del {
    color: var(--second-color);
    opacity: 0.8;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: line-through;
}
.cartDrawer .qty-spinner button svg path {
    fill: var(--theme-color);
}
.cartDrawer .qty-spinner input,
.cartDrawer del {
    color: var(--black);
}
.mini-cart-item del {
    margin-left: 10px;
}
.price {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.price-lbl {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
ins {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}
.cartDrawer .mini-cart-details .price {
    justify-content: center;
    font: var(--common-text);
    align-items: flex-end;
    color: var(--black);
}
.cartDrawer .pvarprice {
    margin-top: 12px;
}
.cartDrawer .price del {
    margin-left: 10px;
    line-height: 1;
}
.cartDrawer .price ins {
    align-items: center;
    font-size: 16px;
    color: var(--theme-color);
}
.cartDrawer .price .currency-type {
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    margin-left: 0;
    display: inline-block;
}
.webi-mini-cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
}
.mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    color: var(--theme-color);
    margin: 0 -10px 20px;
}
.mini-cart-footer-total-row div ins {
    font-size: 20px;
}
.mini-cart-footer-total-row div {
    padding: 0 10px;
}
.webi-mini-cart-footer .checkout-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    display: flex;
    padding: 12px 30px;
}
.webi-mini-cart-footer .link-btn {
    display: flex;
    justify-content: center;
    color: var(--black);
    font-weight: 600;
}
.webi-mini-cart-footer .link-btn svg {
    height: 20px;
    width: 20px;
}
.remove_item svg path {
    fill: var(--theme-color);
}
.remove_item svg {
    height: 15px !important;
    width: 15px !important;
}
.cartDrawer .emptyCart {
    padding: 50px 0 0 0;
}
.mini-cart-item .qty-spinner{
  max-width:90px;
}
/**** SEARCH POPUP CSS ****/
.search-popup,
.size-popup {
    position: fixed;
    background: rgba(0, 0, 0, 0.81);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 3;
    padding: 0 30px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.5s;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.search-popup.active,
.size-popup.active {
    opacity: 1;
    visibility: visible;
}
.search-form-wrapper {
    max-width: 1000px;
    width: 100%;
    margin-top: 50px;
}
.search-form-wrapper form {
    width: 100%;
}
.search-popup .close-search {
    position: absolute;
    right: 50px;
    top: 50px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}
.search-popup .close-search svg {
    height: 100%;
    width: 100%;
}
.search-form-wrapper .form-inputs {
    width: 100%;
    position: relative;
}
.search-form-wrapper input {
    padding: 15px 60px 15px 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-color: var(--white);
}
.search-form-wrapper .btn {
    position: absolute;
    right: 5px;
    top: 50%;
    width: 38px;
    padding: 0px;
    height: 38px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.search-form-wrapper .btn svg {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    fill: #fff;
}
/*****  SUBSCRIBE POPUP CSS *****/
.subscribe-popup {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 550px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: var(--theme-color);
    color: var(--white);
    z-index: 5;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border:1px solid var(--border-color);
}
.subscribe-popup .close-sub-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 0;
    height: 16px;
    width: 16px;
    padding: 0;
}
.subscribe-popup .close-sub-btn svg {
    height: 100%;
    width: 100%;
}
.subscribe-popup .close-sub-btn svg path {
    fill: var(--white);
}
.subscribe-popup h2 {
    font-family: var(--first-font);
    font-weight: 500;
    font-size: 31px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-style: italic;
}
.subscribe-popup p {
    letter-spacing: 1px;
    max-width: 330px;
    margin: 0 auto 25px;
}
.form-row {
    position: relative;
}
.form-row .btn-svg {
    background: transparent;
    border: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    padding: 0;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.form-row .btn-svg svg {
    width: 100%;
    height: 100%;
}
.form-row .btn-svg svg path {
    fill: var(--white);
}
.thank-u-for,
.form-row input {
    padding: 13px 50px 13px 15px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 13px;
    letter-spacing: 1px;
}
.form-row input::-webkit-input-placeholder {
    color: var(--white);
}
.form-row input:-ms-input-placeholder {
    color: var(--white);
}
.form-row input::placeholder {
    color: var(--white);
}
.thank-u-for svg {
    margin-left: 12px;
}
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: var(--theme-color);
    color: var(--white);
    padding: 15px 50px 15px 15px;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.cookie p {
    font-weight: 500;
    letter-spacing: 0.2px;
}
.cookie-close {
    position: absolute;
    right: 13px;
    top: 50%;
    background: transparent;
    border: 1px solid var(--white);
    width: 25px;
    height: 25px;
    padding: 5px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cookie-close svg {
    width: 100%;
    height: 100%;
}
.cookie-close svg path {
    fill: var(--white);
}
.menu-right .profile-header .menu-dropdown .wishlist a span:first-child {
    margin-left: 5px;
}

/* =========================================================
   MAIN HIRO — CLEAN, FIXED & NICER (SLICK SAFE)
   - Better cards + typography + controls
   - Arrows hidden on mobile
   - Arrows clickable on desktop (z-index fix)
========================================================= */

.show-on-tblt { display: none; }

/* ROOT + TOKENS */
.main-hiro-section{
  position:relative;
  overflow:hidden;
  margin-bottom:28px;

  --hiro-card-bg: var(--border-color);
  --hiro-text:    var(--second-color);
  --hiro-ink:     var(--theme-color);
  --hiro-accent:  var(--grey-color);
  --hiro-dark:    var(--white);
  --hiro-border:  1px solid rgba(0,0,0,.12);

  --hiro-radius:  18px;
  --hiro-shadow:  0 14px 40px rgba(0,0,0,.06);

  --hiro-pill-h:  50px;
  --hiro-pad:     40px 40px 32px;
  --hiro-max:     1600px;
  --hiro-padX:    16px;

  --font-display: var(--second-font);
  --font-body:    var(--first-font);

  /* tooltip */
  --tip-dot:    18px;
  --tip-ring:   2px;
  --tip-font:   11px;
  --tip-radius: 10px;
}

@media (min-width:1640px){
  .main-hiro-section{ --hiro-max:1640px; --hiro-padX:20px; }
}

/* CONTAINER */
.main-hiro-section .container{
  max-width:var(--hiro-max) !important;
  width:100% !important;
  margin:0 auto !important;
  padding:0 var(--hiro-padX) !important;
  background:transparent;
}

/* GRID OVERFLOW GUARDS */
.main-hiro-section :is(.row,.main-hiro-col,.main-hiro-left,.main-hiro-center,.main-hiro-right){ min-width:0; }

/* =========================================================
   SLICK BASE (SAFE)
========================================================= */
.main-hiro-section :is(.main-hiro-slides,.main-hiro-pro-slider){
  position:relative;
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.main-hiro-section :is(.main-hiro-slides,.main-hiro-pro-slider) .slick-list{
  width:100%;
  overflow:hidden;
}

/* Keep Slick default behavior stable */
.main-hiro-section .main-hiro-pro-slider .slick-track{ will-change:transform; }

.main-hiro-section :is(.main-hiro-slides,.main-hiro-pro-slider) .slick-slide,
.main-hiro-section :is(.main-hiro-slides,.main-hiro-pro-slider) .slick-slide > div{
  height:auto !important;
}

.main-hiro-section .main-hiro-slide{ position:relative; margin:0; }

/* =========================================================
   LEFT CARDS
========================================================= */
.main-hiro-section :is(.main-hiro-left-top,.main-hiro-left-bottom){
  position:relative;
  margin:8px;
  padding:var(--hiro-pad);
  background:var(--hiro-card-bg);
  border:var(--hiro-border);
  /* border-radius:var(--hiro-radius); */
  box-shadow: var(--hiro-shadow);
  overflow:hidden;
}

.main-hiro-section :is(.main-hiro-left-top,.main-hiro-left-bottom)::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:var(--hiro-accent);
}

/* TITLES + DESC */
.main-hiro-section :is(.hiro-overlay__title,.main-hiro-left-top h2){
  margin:0 0 16px;
  font-family:var(--font-display);
  font-weight:900;
  letter-spacing:-.03em;
  line-height:.90;
  text-transform:uppercase;
  text-wrap:balance;
  color:var(--hiro-text);
  font-size:clamp(28px,2.6vw,52px);
}

.main-hiro-section :is(.hiro-overlay__desc,.main-hiro-left-top p){
  margin:0 0 28px;
  max-width:46ch;
  font-family:var(--font-body);
  line-height:1.65;
  letter-spacing:.01em;
  font-size:14px;
  color:var(--hiro-text);
  opacity:.68;
}

/* CTA BUTTON */
.main-hiro-section :is(.hiro-overlay__btn,.main-hiro-left-top .btn){
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:var(--hiro-pill-h);
  padding:0 32px;

  background:var(--hiro-text);
  color:var(--hiro-ink);
  border:1px solid var(--hiro-text);
  box-shadow:none !important;

  font-family:var(--font-body);
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;

  transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}

.main-hiro-section :is(.hiro-overlay__btn,.main-hiro-left-top .btn):hover{
  transform:translateY(-1px);
  background:var(--hiro-dark);
  color:var(--hiro-ink);
  border-color:color-mix(in srgb, var(--hiro-text) 70%, transparent);
}

/* BOTTOM CARD OVERRIDES */
.main-hiro-section .main-hiro-left-bottom .product-form__submit{ border:0 !important; }
.main-hiro-section .main-hiro-left-bottom .price-btn .cart-button{ background:var(--hiro-accent) !important; }
.main-hiro-section .main-hiro-left-bottom .price-btn .cart-button svg{ fill:var(--theme-color) !important; }

/* CHIPS */
.main-hiro-section .hiro-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0 14px;
}

.main-hiro-section .hiro-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 14px;

  background:var(--hiro-ink);
  color:var(--hiro-text);
  border:1px solid var(--hiro-text);
  text-decoration:none;

  font:900 12px/1 var(--font-body);
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;

  transition:background .15s ease, color .15s ease, transform .15s ease;
}

.main-hiro-section .hiro-chip:hover{
  background:var(--hiro-text);
  color:var(--hiro-ink);
  transform: translateY(-1px);
}
.main-hiro-section .hiro-chip::after{ content:" →"; margin-left:10px; font-weight:900; }

/* =========================================================
   CENTER IMAGE
========================================================= */
.main-hiro-center{
  position:relative;
  height:100%;
  z-index:2;
  overflow:visible;
}

.main-hiro-center .product-image{
  position:relative;
  z-index:1;
  max-width:100%;
  height:100%;
  padding:0 !important;
  overflow:hidden;
}

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

.main-hiro-section .product-image{
    padding: 0 !important;
}

/* BACKGROUND LABEL */
.banner-labl{ position:absolute; right:25%; z-index:-1; pointer-events:none; }
.banner-labl.bottom-bnr-lbl{ bottom:180px; right:36%; }

.banner-labl span{
  font-family:var(--font-display);
  font-size:88px;
  font-weight:900;
  text-transform:uppercase;
  line-height:1;
  padding:0 10px;
  color:transparent;
  -webkit-text-stroke:1px var(--hiro-text);
  opacity:.07;
}

/* RIGHT COLUMN */
.main-hiro-right{ position:relative; overflow:hidden; }
.main-hiro-right-stack{ display:flex; flex-direction:column; gap:16px; }
.main-hiro-right .price-btn .price{ background:var(--hiro-accent); }

/* PRO BOX FULL-BLEED BG */
.main-hiro-section .main-hiro-pro-box{
  position:relative;
  overflow:hidden;
  width:100%;
  max-width:100%;
}

.main-hiro-section .main-hiro-right .main-hiro-pro-box::before{
  content:"";
  position:absolute;
  inset:0;
  right:calc(-1 * ((100vw - 100%) / 2));
  background:inherit;
  z-index:0;
  pointer-events:none;
}

.main-hiro-section .main-hiro-right .main-hiro-pro-box > *{ position:relative; z-index:1; }

/* =========================================================
   TOOLTIPS
========================================================= */
.main-hiro-section .tooltip{
  position:absolute;
  display:block;
  width:max-content;
  height:max-content;
  cursor:pointer;
  z-index:3;
  color:var(--hiro-text);
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
  transition:filter .25s ease, transform .25s ease;
}

.main-hiro-section .tooltip:hover{
  filter:drop-shadow(0 3px 10px rgba(0,0,0,.15));
  transform:translateY(-1px);
}

.main-hiro-section .round{
  position:absolute;
  top:0; left:0;
  width:var(--tip-dot);
  height:var(--tip-dot);
  border-radius:6px;

  background:color-mix(in srgb, var(--hiro-ink) 14%, transparent);
  border:1px solid color-mix(in srgb, var(--hiro-ink) 38%, transparent);

  transform-origin:left center;
  transition:transform .25s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}

.main-hiro-section .tooltip:hover .round{ transform:scale(1.06); opacity:.92; }

.main-hiro-section .round::before{
  content:"";
  position:absolute;
  inset:-2px;
  border:var(--tip-ring) solid var(--hiro-ink);
  border-radius:8px;
  opacity:.85;
  animation:hiro-pulse 1.8s infinite ease-out .4s;
}

@keyframes hiro-pulse{
  0%   { box-shadow:0 0 0 0 rgba(0,0,0,.18); opacity:1; }
  65%  { box-shadow:0 0 0 8px rgba(0,0,0,0); opacity:.6; }
  100% { box-shadow:0 0 0 0 transparent; opacity:0; }
}

.main-hiro-section .tooltip:hover .round::before{
  animation-play-state:paused;
  opacity:0;
  transition:opacity .2s ease;
}

.main-hiro-section .tooltip-txt{
  position:relative;
  left:-92px;
  top:-6px;
  z-index:6;
  width:90px;
  padding:5px 9px;
  text-align:right;

  font:900 var(--tip-font)/1.25 var(--font-body);
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--hiro-ink);

  opacity:.72;
  transform:translateX(2px);

  background:color-mix(in srgb, var(--hiro-card-bg) 90%, transparent);
  border:1px solid color-mix(in srgb, var(--hiro-text) 18%, transparent);
  border-radius:var(--tip-radius);

  transition:opacity .25s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}

.main-hiro-section .tooltip:hover .tooltip-txt{ opacity:1; transform:translateX(0); }

/* =========================================================
   ARROWS + DOTS
========================================================= */

/* Arrows (desktop/tablet only) */
.main-hiro-section :is(.hiro-slick-prev,.hiro-slick-next){
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:1; /* above center image */
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;

  opacity:.92;
  background:color-mix(in srgb, var(--hiro-card-bg) 88%, transparent);
  border:1px solid color-mix(in srgb, var(--hiro-text) 16%, transparent);

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

  transition:transform .15s ease, background .15s ease, opacity .15s ease, border-color .15s ease;
}

.main-hiro-section .hiro-slick-prev{ left:-12px; }
.main-hiro-section .hiro-slick-next{ right:-12px; }

.main-hiro-section :is(.hiro-slick-prev,.hiro-slick-next):hover{
  transform:translateY(-50%) translateY(-1px);
  background:color-mix(in srgb, var(--hiro-card-bg) 94%, transparent);
  border-color:color-mix(in srgb, var(--hiro-text) 22%, transparent);
  opacity:1;
}

.main-hiro-section :is(.hiro-slick-prev,.hiro-slick-next) svg{
  width:18px;
  height:18px;
  display:block;
}

/* Dots */
.main-hiro-section .main-hiro-slides .slick-dots{
  position:absolute;
  left:35px; right:0; bottom:12px;
  display:flex !important;
  justify-content:center;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  z-index:2;
}

.main-hiro-section .main-hiro-slides .slick-dots button{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid color-mix(in srgb, var(--hiro-text) 45%, transparent);
  background:transparent;
  padding:0;
  cursor:pointer;
  font-size:0;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
}

.main-hiro-section .main-hiro-slides .slick-dots .slick-active button{
  background:var(--hiro-text);
  border-color:var(--hiro-text);
  transform:scale(1.08);
}

/* SMALL RESETS */
.main-hiro-left{ padding:0; }
.main-hiro-section .price-item--sale{ display:none; }

/* =========================================================
   MOBILE / TABLET
========================================================= */

/* ✅ Hide arrows on mobile */
@media (max-width: 768px){
  .main-hiro-section :is(.hiro-slick-prev,.hiro-slick-next){
    display:none !important;
  }
}

/* Tiny screens: dots a bit higher */
@media (max-width:576px){
  .main-hiro-right-stack{ gap:12px; }
  .main-hiro-section .main-hiro-slides .slick-dots{ bottom:10px; }
}

@media (max-width:1024px){

  /* tokens */
  .main-hiro-section{
    --hero-h:78vh;
    --pad-x:16px;
    --pad-b:16px;
    --gap:10px;
  }

  .main-hiro-section .container{
    max-width:100% !important;
    padding:0 !important;
  }

  /* flatten row/card */
  .main-hiro-section .row.grid__item.product-card.card{
    position:relative !important;
    display:block !important;
    margin:0 !important;
    border:0 !important;
    overflow:visible !important;
    background:transparent !important;
    box-shadow:none !important;
  }
  .main-hiro-section .row.grid__item.product-card.card > .main-hiro-col{
    width:100% !important;
    max-width:100% !important;
    flex:none !important;
    padding:0 !important;
    margin:0 !important;
  }

  /* image column */
  .main-hiro-section .row.grid__item.product-card.card > .main-hiro-col:nth-child(2){
    height:var(--hero-h) !important;
    position:relative !important;
    z-index:1 !important;
  }

  /* full-bleed image wrapper */
  .main-hiro-center{
    position:relative !important;
    height:var(--hero-h) !important;

    width:100vw !important;
    max-width:none !important;
    left:50% !important;
    transform:translateX(-50%) !important;

    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
    z-index:1 !important;
  }

  /* media fill */
  .main-hiro-center .product-image,
  .main-hiro-center .card__media{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    z-index:1 !important;
    border-radius: 0 !important;
  }

  /* clickable */
  .main-hiro-center a.product__media-item,
  .main-hiro-center .product-image > a,
  .main-hiro-center .card__media > a{
    position:absolute !important;
    inset:0 !important;
    display:block !important;
    width:100% !important;
    height:100% !important;
    z-index:2 !important;
    cursor:pointer !important;
    -webkit-tap-highlight-color:transparent;
  }
  .main-hiro-center a:active{ opacity:.94; }

  /* image */
  .main-hiro-center img{
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    display:block !important;
    object-fit:cover !important;
    object-position:center !important;
    pointer-events:none !important;
  }

  /* softer gradient */
  .main-hiro-center::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
      to bottom,
      rgba(0,0,0,0) 58%,
      rgba(0,0,0,.35) 78%,
      rgba(0,0,0,.62) 100%
    );
    pointer-events:none;
    z-index:2 !important;
  }

  /* overlay column */
  .main-hiro-section .row.grid__item.product-card.card > .main-hiro-col:nth-child(1){
    position:absolute !important;
    inset:0 !important;
    height:var(--hero-h) !important;
    z-index:2 !important;
    pointer-events:none !important;
  }

  /* remove desktop card pieces */
  .main-hiro-left,
  .main-hiro-left-top{
    position:absolute !important;
    inset:0 !important;
    height:100% !important;
    background:transparent !important;
    border:0 !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
    overflow:visible !important;
    pointer-events:none !important;
  }
  .main-hiro-left-top::before{ display:none !important; }

  /* overlay content */
  .hiro-overlay{
    position:absolute !important;
    left:var(--pad-x) !important;
    right:var(--pad-x) !important;
    bottom:var(--pad-b) !important;

    display:grid !important;
    gap:var(--gap) !important;
    justify-items:start !important;
    text-align:left !important;
    pointer-events:none !important;
  }

  /* title/desc: clean glass pills */
  .hiro-overlay__title,
  .hiro-overlay__desc{
    display:inline-block !important;
    width:fit-content !important;
    max-width:92% !important;
    margin:0 !important;

    padding:7px 10px !important;
    background:rgba(0,0,0,.62) !important;
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);

    color:#fff !important;
    border:1px solid rgba(255,255,255,.14) !important;
    border-radius:12px !important;

    pointer-events:auto !important;
    user-select:text !important;
    -webkit-user-select:text !important;
  }

  .hiro-overlay__title{
    font-size:16px !important;
    line-height:1.08 !important;
    font-weight:950 !important;
    letter-spacing:.03em !important;
    text-transform:uppercase !important;
  }

  .hiro-overlay__desc{
    font-size:12px !important;
    line-height:1.35 !important;
    opacity:.95 !important;
  }

  /* chips: strong CTA */
  .hiro-overlay__chips{
    display:flex !important;
    gap:8px !important;
    margin:0 !important;
    padding:0 !important;
    flex-wrap:nowrap !important;
    pointer-events:auto !important;
  }

  .hiro-overlay__chips .hiro-chip{
    height:34px !important;
    padding:0 12px !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;

    background:#fff !important;
    color:#111 !important;
    border:1px solid rgba(0,0,0,.14) !important;
    border-radius:999px !important;

    font-size:13px !important;
    font-weight:950 !important;
    letter-spacing:.03em !important;
    text-transform:uppercase !important;
    white-space:nowrap !important;

    pointer-events:auto !important;
    cursor:pointer !important;
    touch-action:manipulation !important;
    -webkit-tap-highlight-color:transparent;
  }

  .hiro-overlay__chips .hiro-chip::after{
    content:"→" !important;
    font-size:16px !important;
    transform:translateY(-1px) !important;
    pointer-events:none !important;
    opacity:.9 !important;
  }

  /* hide extras */
  .hiro-overlay__btn,
  .main-hiro-center .tooltip,
  .banner-labl,
  .main-hiro-left-bottom,
  .main-hiro-section .row.grid__item.product-card.card > .main-hiro-col:nth-child(3){
    display:none !important;
  }
}

@media (min-width:768px) and (max-width:1024px){
  .main-hiro-section{ --hero-h:82vh; }
}
@media (max-width:575px){
  .main-hiro-section{ --hero-h:70vh; --pad-x:14px; --pad-b:14px; }
}
@media (max-width:360px){
  .main-hiro-section{ --hero-h:62vh; --pad-x:12px; --pad-b:12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .main-hiro-section *{ transition:none !important; animation:none !important; }
}


/*****  SLIDER TAB CSS  ******/
.video-play-colum {
    max-width: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.poster-button {
    display: flex;
    background: var(--second-color);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 15px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.37), 0 0 0 0 rgba(255, 130, 77, 0.67);
    transform: translate3d(0, 0, 0);
    animation: pulse 2s infinite cubic-bezier(0.66, 0.33, 0, 1);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.poster-button svg {
    height: 20px;
    width: 20px;
}
.video-lbl {
    font-weight: 600;
    font-size: 14px;
}
.overlay-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: all ease-in-out 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 4;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.overlay-popup.popup-show {
    opacity: 1;
    visibility: visible;
}
.popup-inner {
    border-radius: 0;
    max-width: 50%;
    width: 100%;
    transition: 1s ease-in-out;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.popup-inner .content {
    display: flex;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.close-popup {
    position: absolute;
    transition: 200ms ease-in;
    font-size: 30px;
    text-decoration: none;
    z-index: 1;
    top: -40px;
    right: 1px;
    width: 30px;
    height: 30px;
    font-weight: bold;
    background-color: var(--second-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 200ms ease-in;
    -moz-transition: 200ms ease-in;
    -ms-transition: 200ms ease-in;
    -o-transition: 200ms ease-in;
}
.close-popup svg {
    height: 15px;
    width: 15px;
}
.popup-inner .content iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.playbutton-sec {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
/********** TWO COLL LAYOUT SECTION CSS  **********/
.offset-container {
    position: relative;
}
.offset-left {
    margin-left: calc((100% - 1170px) / 2);
    padding-left: 15px;
}
/********* TWO COL DARK SECTION CSS **********/
.offset-right {
    margin-right: calc((100% - 1170px) / 2);
    margin-left: 0;
    padding-right: 15px;
}
/********* PRODUCT CARD SECTION CSS **********/
.variant-webi .title {
    margin: 0 0 5px;
}
.variant-webi .size-select {
    width: 100%;
    margin: 0 0 10px;
    border: none;
    display: block;
}
.variant-webi label.color-swatch {
    border: 1px solid var(--black);
    padding: 5px;
    display: inline-block;
}
.product-image {
    max-width: 40%;
    width: 100%;
    display: flex;
    padding: 10px;
}
.product-content {
    width: 100%;
    display: flex;
    justify-content: center;
    flex: 1;
    padding: 15px 15px;
    flex-direction: column;
}
.product-image a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.product-image a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.main-hiro-pro-box {
    position: relative;
}
.product-card {
    display: flex;
}
.product-card .product-card-inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.product-cont-top {
    width: 100%;
    flex: 1;
}
.product-cont-top h4 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.product-cont-top h4 a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.blog-caption h5 a {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.price-btn .cart-button {
    border: none;
    color: var(--white);
    padding: 0;
    flex-shrink: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border: none;
    outline: none;
    background: #3F3F3F;
}
.blog-caption p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 15px;
}
.price-btn .cart-button[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}
.bg-light .price-btn .cart-button {
    background: var(--black);
}
.bg-black .product-card .link-btn {
    justify-content: flex-start;
}
.bg-black .link-btn svg {
    fill: var(--white);
}
.price-btn .cart-button svg {
    fill: var(--white);
    width: 16px;
    height: 16px;
}
.price-btn .cart-button .loading-overlay__spinner svg{
  margin:0 !important;
}
.product-card-itm {
    padding: 0 15px;
}
.product-card .custom_label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--grey-color);
    font-size: 13px;
    padding: 2px 6px;
}
.product-card-inner .wish-lbl-wrp {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.product-card-inner .wish-lbl-wrp a {
    padding: 0;
    background-color: var(--white);
      display: flex;
    width:auto;
  height:auto;
}
.product-card .pro-wishlist,
.product-card .pro-compare,
.product-card .quickview-btn {
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor:pointer;
}
.product-card .pro-wishlist span,
.product-card .pro-compare span{
   cursor:pointer;
}
.product-card .quickview-btn, .product-card .pro-compare, .product-card .pro-wishlist{
  background-color: var(--white);
}
.pro-wishlist svg,
.pro-compare svg,
.quickview-btn svg{
    width: 15px;
    height: 15px;
    margin: auto;
}
.product-card .pro-wishlist svg path,
.pro-compare svg path,
.quickview-btn svg path {
    fill: var(--black);  
}
.price-btn {
    display: flex;
    flex-wrap: wrap;
    max-width: 200px;
}
.price-btn .price {
    margin: 0;
    background: var(--white);
    padding: 0 10px;
    color: var(--black);
    flex: 1;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.price-item--regular,
.price-item--sale {
    display: block;
    line-height: 1;
}
.price-btn ins {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}
.price-btn del {
    font-weight: 500;
    font-size: 10px;
    display: block;
}
.product-card sub,
.product-card sup {
    font-size: 10px;
}
.product-card .product-card-content h4 {
    font-size: 14px;
}
.product-card .product-card-content p {
    font-size: 12px;
}
.product-detail-right .wishlist-label {
    display: flex;
    gap: 5px;
  cursor:pointer;
  margin:0 0 10px;
}
.product-card .add-cart-btn {
    width: 100%;
}
.link-btn {
    display: flex;
    align-items: center;
    margin-top: 18px;
    line-height: 1;
}
.link-btn svg {
    height: 10px;
    width: 10px;
    fill: var(--black);
    margin-left: 10px;
}
.product-card .link-btn {
    margin-left: auto;
    justify-content: flex-end;
    margin-top: 25px;
}
.main-hiro-pro-slider .slick-dots {
    left: calc(40% + 15px);
}
/* CONTENEDOR */
.size-selectors{
  margin: 0 0 12px;
  max-width: 185px;     /* deja esto si te gusta el límite */
  display: flex;        /* clave */
  flex-wrap: wrap;
  gap: 5px;             /* reemplaza column-gap */
}

/* CADA SELECT */
.size-selectors .nice-select{
  position: relative;
  width: auto !important;        /* clave */
  max-width: none !important;    /* quita 33.33% */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  appearance: none;
  border: 1px solid;
  text-align: center !important;
  padding: 5px 12px;             /* un poco más de espacio lateral */
  font-size: 13px;
  line-height: 1.2;
  color: var(--black);

  white-space: nowrap;           /* no rompe texto */
}

/* SI QUIERES: que nunca se salga del contenedor */
.size-selectors .nice-select{
  max-width: 100%;
}

/* TU REGLA */
.size-selectors .nice-select:not(:first-of-type){
  text-align: center !important;
}

/* PUNTITO (solo los que no son el último) */
.size-selectors .nice-select:not(:last-of-type)::before{
  content:'';
  height: 4px;
  width: 4px;
  background: var(--black);
  position: absolute;
  right: 5px;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.bg-light .size-selectors .nice-select:not(:last-of-type)::before{
  background: var(--black);
}

.size-selectors .nice-select::after{
  display: none;
}
.bg-light {
    background-color: var(--second-color);
    color: var(--black);
}
.bg-black {
    background-color: var(--border-color);
    color: var(--white);
}
.main-hiro-pro-box.bg-black:after,
.main-hiro-pro-box.bg-light:after {
    content: '';
    position: absolute;
    right: -50vw;
    width: 50vw;
    height: 100%;
    top: 0;
}
.main-hiro-pro-box.bg-light:after {
    background: var(--second-color);
}
.main-hiro-pro-box.bg-black:after {
    background-color: var(--border-color);
}
.bg-black .product-card .price {
    color: var(--black);
    background: var(--second-color);
}

.bg-black .product-card .price-btn .cart-button{
    color: var(--black);
    background: var(--hiro-accent);
}

.bg-black .product-card .price-btn .cart-button svg{
    fill: var(--theme-color);
}

.bg-black .slick-dots li {
    background: var(--white);
}
.bg-black .slick-dots li.slick-active:before {
    border-color: var(--white);
}
.product-card-reverse .product-card-inner {
    flex-direction: row-reverse;
}
.main-hiro-right .product-card-reverse .slick-dots {
    left: auto;
    right: calc(40% + 15px);
}
.main-hiro-pro-box.bg-black {
    border-left: 1px solid #ebe8e3;
}
h1 b,
h2 b,
h3 b,
h4 b,
h5 b,
h6 b {
    font-weight: 400;
}

/************* HOME CAT SECTION (Adidas grid + centered width) *************/

.home-cat-section{
  width: 100%; 
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Grid: 4 desktop */
.home-cat-section .home-cat-left-inner{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

/* Tablet: 2 columns */
@media (max-width: 991px){
  .home-cat-section .home-cat-left-inner{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }
}

/* Mobile: 1 column */
@media (max-width: 575px){
  .home-cat-section .home-cat-left-inner{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Cards */
.home-cat-section .home-cat-box{
  margin: 0 !important;
}

.home-cat-section .home-cat-box > a{
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0 !important;
  position: static !important;
  overflow: visible !important;
}

/* Remove old overlay */
.home-cat-section .home-cat-box > a::after{
  content: none !important;
}

/* Image */
.home-cat-section .home-cat-box > a > img{
  position: static !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;

  aspect-ratio: 1 / 1;       /* change to 4/5 if you want taller */
  object-fit: cover !important;

  transform: scale(1);
  transition: transform .25s ease;
}

.home-cat-section .home-cat-box:hover > a > img{
  transform: scale(1.03);
}

/* Text */
.home-cat-section .home-cat-text{
  position: static !important;
  z-index: auto !important;
  max-width: none !important;
  padding: 14px 0 0 !important;
}

.home-cat-section .home-cat-text .subtitle{
  margin: 0 0 8px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .6px;
  opacity: .75;
}

.home-cat-section .home-cat-text h5{
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1.2;
}

/* Underline link */
.home-cat-section .home-cat-text .link-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;

  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  width: fit-content;
}

/* Hide arrow */
.home-cat-section .home-cat-text .link-btn svg{
  display: none !important;
}




/******** NEW FEATURED SECTION css ********/
.feature-pro-itm {
    height: calc(50% - 15px);
    display: flex;
    padding: 10px 0;
  overflow:hidden;
}
.featured-img-wrp {
    display: flex;
    overflow: hidden;
    height: 100%;
    ;
}
.featured-img-wrp img {
    width: 100%;
    transition: all ease-in-out 0.7s;
    -webkit-transition: all ease-in-out 0.7s;
    -moz-transition: all ease-in-out 0.7s;
    -ms-transition: all ease-in-out 0.7s;
    -o-transition: all ease-in-out 0.7s;
    height: 100%;
    object-fit: cover;
}
.featured-img-wrp:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.feature-pro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature-verticle {
    display: flex;
    align-items: flex-end;
    margin-top: auto;
}
.feature-title {
    display: flex;
}
.feature-pro-itm select,
.hiro-pro-itm select {
    color: var(--black);
}
.feature-pro-itm.product-card .pro-wishlist svg path,
.hiro-pro-itm.product-card .pro-wishlist svg path,
.hiro-pro-itm.product-card .pro-compare svg path,
.hiro-pro-itm.product-card .quickview-btn svg path,
.feature-pro-itm.product-card .pro-compare svg path,
.feature-pro-itm.product-card .quickview-btn svg path {
    fill: var(--black);
}
.quickview_popup_data label {
    color: var(--black);
}
.feature-verticle h2,
.feature-verticle .subheading {
    margin: 0px 11px 0px;
    writing-mode: tb-rl;
    text-orientation: sideways-right;
    transform: rotate(180deg);
    max-height: min-content;
    text-transform: uppercase;
}
.feature-verticle .subheading {
    margin: 0 !important;
    line-height: normal;
    font-size: 24px;
}
.feature-verticle h2 {
    font-size: 54px;
    line-height: 1;
}
.new-featured-section {
    position: relative;
    z-index: 1;
}
.border-left-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 66px;
}
.border-left-btn:before {
    z-index: -1;
    content: '';
    height: 1px;
    background: #272727;
    width: calc(50% - 96px);
    left: 0;
    position: absolute;
}


/****************  BEST SELLER SECTION CSS (Simple + Clean) **************/

/* ===== Keep slick structure (desktop) ===== */
.product-two-row-slider .slick-list,
.product-two-row-slider .slick-track{
  display: flex;
}

/* ===== Width control (wrap) ===== */
.bestseller-wrap{
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Neutralize global container only inside this module */
.bestseller-wrap .container{
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0px 40px 40px 0px;
}

/* ===== Header ===== */
.bestseller-section .section-title{
  gap: 18px;
  margin-bottom: 18px;
}
.bestseller-section .section-title h2{
  margin: 0;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

/* ===== Tabs ===== */
.bestseller-section .cat-tab{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bestseller-section .cat-tab li a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent;
  color: rgba(0,0,0,.80);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.bestseller-section .cat-tab li a:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.35);
}
.bestseller-section .cat-tab li.active a{
  background: #111;
  border-color: #111;
  color: #fff;
}

/* ===== Remove bg-black background ONLY for this section (desktop + mobile) ===== */
.bestseller-section .bg-black{
  background: transparent !important;
}

/* If theme shows a link button inside this module */
.bestseller-section .bg-black .product-card .link-btn{
  display: none !important;
}

/* ===== Desktop slider spacing ===== */
.product-two-row-slider .slick-list{
  margin: 0 -10px;
  padding: 0 10px;
}
.best-slide{ padding: 0 10px; }
.best-slide-inner{
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
}

/* ===== Product wrappers ===== */
.bestseller-itm{
  display: flex !important;
  flex-wrap: wrap;
  padding: 0 !important;
  max-width: 100%;
}

/* ===== Desktop cards: simple (less padding, less rounding) ===== */
.bestseller-itm .product-card-inner{
  width: 100%;
  border: 1px solid rgba(0,0,0,.10) !important;
  border-radius: 10px;
  background: #fff;
  padding: 12px !important; /* reduced for “simple + lindo” */
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.bestseller-itm .product-card-inner:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,0,.18) !important;
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
}

.bestseller-itm .product-cont-top h4{
  margin: 0 0 8px !important;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* ===== Hide sale price everywhere in this section (desktop + mobile) ===== */
.bestseller-section .price-item--sale,
.bestseller-section .price__compare,
.bestseller-section .price-item--compare{
  display: none !important;
}

/* ===== Slick arrows RED (scoped to this section only) ===== */
.bestseller-section .slick-arrow,
.bestseller-section .slick-arrow:before{
  color: red !important;
}
.bestseller-section .slick-prev,
.bestseller-section .slick-next{
  color: red !important;
}
.bestseller-section .slick-prev svg,
.bestseller-section .slick-next svg{
  fill: red !important;
  stroke: red !important;
}

/* ============================================================
   MOBILE: Grid (edge-to-edge) — Simple + Clean
   - keep icons AS-IS (no styling)
   - remove image padding + remove circles/rounding
   - hide hover image
   - remove Add to Cart black box
   - show subtitle + title + price only
   ============================================================ */

/* desktop default */
.bestsellers-mobile-grid{ display: none; }
.bestsellers-desktop{ display: block; }

@media (max-width: 575px){

  /* 1) Hide desktop slider on mobile */
  .bestseller-section .product-two-row-slider,
  .bestsellers-desktop{
    display: none !important;
  }

  /* 2) Edge-to-edge wrapper */
  .bestseller-wrap,
  .bestseller-section{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .bestseller-section .container{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0px 20px 20px 0px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* 3) Header */
  .bestseller-head{
    padding: 0 12px !important;
    margin: 0 0 10px !important;
  }

  /* Tabs scroll */
  .bestseller-section .cat-tab{
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 8px !important;
    padding-bottom: 4px;
  }
  .bestseller-section .cat-tab::-webkit-scrollbar{ display:none; }

  /* 4) Mobile grid */
  .bestsellers-mobile-grid{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 !important;
    width: 100% !important;
  }

  /* Tiles: thin dividers, no rounding */
  .bestsellers-mobile-grid .bmobile-item{
    border-top: 1px solid rgba(0,0,0,.10);
    border-left: 1px solid rgba(0,0,0,.10);
    background: #fff;
    overflow: hidden;
    border-radius: 0 !important;
  }
  .bestsellers-mobile-grid .bmobile-item:nth-child(-n+2){ border-top: 0; }
  .bestsellers-mobile-grid .bmobile-item:nth-child(2n+1){ border-left: 0; }

  /* Strip card chrome */
  .bestsellers-mobile-grid .product-card-inner{
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 5) Image wrapper: no padding, no rounding, ensure height */
  .bestsellers-mobile-grid .product-image,
  .bestsellers-mobile-grid .product-image.card__media{
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    overflow: hidden !important;
    border-radius: 0 !important;

    /* keeps media visible */
    aspect-ratio: 1 / 1;
  }

  .bestsellers-mobile-grid .product-image.card__media > a.product__media-item{
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .bestsellers-mobile-grid .product-image.card__media img{
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 0 !important;
  }

  /* ✅ Hide ONLY the hover/secondary image (your markup has 2 <a>) */
  .bestsellers-mobile-grid .product-image.card__media > a.product__media-item:nth-of-type(n+2){
    display: none !important;
  }

/* container */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp{
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    position: absolute !important;
    top: 2px !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    right: 3px;
  }

  /* icon blocks */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp > div{
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  /* clickable surface */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp label,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp a{
    display: grid !important;
    place-items: center !important;
    width: 26px !important;
    height: 26px !important;

    /* clean square (not circle) */
    border-radius: 6px !important;

    /* remove the theme “red/active” junk */
    background: rgba(255,255,255,.95) !important;
    border: 1px solid rgba(0,0,0,.14) !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.10) !important;

    outline: none !important;
    text-decoration: none !important;
    line-height: 0 !important;
  }

  /* kill the red outline/background coming from theme states */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp label:hover,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp label:focus,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp label:focus-within,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp a:hover,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp a:focus{
    background: rgba(255,255,255,.95) !important;
    border-color: rgba(0,0,0,.22) !important;
    outline: none !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.12) !important;
  }

  /* IMPORTANT: some themes show a colored “checkmark” overlay */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp .checkmark{
    display: none !important;
  }

  /* SVG size + fill */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp svg{
    width: 14px !important;
    height: 14px !important;
    display: block !important;
  }

  /* Force icon color (fill + stroke) */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp svg,
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp svg *{
    fill: #111 !important;
    stroke: #111 !important;
  }

  /* Hide “Compare Now” text if it exists */
  .bestsellers-mobile-grid .product-image.card__media .wish-lbl-wrp .compare-now{
    display: none !important;
  }
}

  /* 7) Content: show only subtitle + title + price */
  .bestsellers-mobile-grid .product-content{
    padding: 8px 10px 10px !important;
    text-align: left !important;
  }

  .bestsellers-mobile-grid .subtitle{
    font-size: 11px !important;
    letter-spacing: .4px;
    text-transform: uppercase;
    opacity: .65;
    margin: 0 0 4px !important;
    display: block;
  }

  .bestsellers-mobile-grid .product-cont-top h4{
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .4px;
    text-transform: uppercase;
    line-height: 1.25;
    margin: 0 0 6px !important;
  }

  /* 8) Price: hide sale/compare */
  .bestsellers-mobile-grid .price-item--sale,
  .bestsellers-mobile-grid .price__compare,
  .bestsellers-mobile-grid .price-item--compare{
    display: none !important;
  }

  /* Fix alignment (remove price+button layout gap) */
  .bestsellers-mobile-grid .product-content .product-cont-bottom .price-btn{
    display: block !important;
  }

  .bestsellers-mobile-grid .price,
  .bestsellers-mobile-grid .price-item--regular{
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-align: left !important;
  }

  /* 9) Remove ONLY Add-to-Cart black box/button */
  .bestsellers-mobile-grid .product-content .product-cont-bottom .price-btn product-form,
  .bestsellers-mobile-grid .product-content .product-cont-bottom .price-btn product-form .cart-btn,
  .bestsellers-mobile-grid .product-content .product-cont-bottom .price-btn product-form .product-form__submit{
    display: none !important;
  }

  /* Hide Read More */
  .bestsellers-mobile-grid .product-content .link-btn{
    display: none !important;
  }

  /* Hide extras (DO NOT touch icon wrapper) */
  .bestsellers-mobile-grid .size-selectors,
  .bestsellers-mobile-grid .variant,
  .bestsellers-mobile-grid .product-form__input,
  .bestsellers-mobile-grid .product-card__swatches,
  .bestsellers-mobile-grid .swatch,
  .bestsellers-mobile-grid .rating,
  .bestsellers-mobile-grid .spr-badge,
  .bestsellers-mobile-grid .review,
  .bestsellers-mobile-grid .product-description,
  .bestsellers-mobile-grid .read-more,
  .bestsellers-mobile-grid .btn,
  .bestsellers-mobile-grid .quick-add{
    display: none !important;
  }
}
/****************  SKIN CARE  SECTION CSS **************/
.pdp-skincare-section .section-title{
    margin-bottom: 20px;
}
.men-skincare-section {
    overflow-x: hidden;
}
.skincare-left-box .section-title {
    max-width: 235px;
}
.section-title .subtitle {
    line-height: 18px;
}
.skincare-left-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.skincare-right {
    height: 100%;
}
.skincare-left {
    width: 100%;
}
.skincare-pro .skincare-pro-full:not(:last-of-type) {
    margin-bottom: 30px;
}
.skincare-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.skincare-pro-full .hiro-pro-itm {
    display: flex !important;
}
.bestsell-slider .slick-list{
    margin: 0 -10px;
}
/************  VEDIO TOP SECTION CSS ************/
.vedio-top-section {
    position: relative;
    z-index: 1;
}
.vedio-top-section .row {
    margin-bottom: -150px;
}
.vedio-top-left-inner {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-top: 60px;
}
.vedio-top-left-inner .section-title {
    margin: 0;
    max-width: 216px;
}
.vedio-top-left-contnt {
    flex: 1;
    padding-left: 40px;
}
.vedio-top-left-inner .section-title h2 {
    line-height: 1.1;
}
.vedio-top-right a {
    position: relative;
    display: flex;
    min-height: 400px;
    align-items: flex-end;
}
.vedio-top-right a img {
    position: absolute;
    bottom: 0;
    height: 100%;
    left: 0;
    right: 0;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}
.vedio-top-right a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.vedio-tp-right-contn {
    position: relative;
    z-index: 1;
    padding: 20px;
}
.vedio-tp-right-contn .section-title {
    margin-bottom: 15px;
    max-width: 200px;
}
.vedio-tp-right-contn .link-btn svg {
    fill: var(--white);
}
.vedio-tp-right-contn .section-title .subtitle {
    font-size: 20px;
}
/**************** VIDEO CENTER SECTION CSS ****************/
.video-right-wrap {
    position: relative;
    padding-top: 50%;
}
.video-right-wrap video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.video-right-wrap .play-vid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.video-right-wrap .play-vid svg {
    width: 80px;
    height: 80px;
    fill: var(--white);
    margin-right: 20px;
}
.play-vid span {
    font-size: 18px;
    max-width: 124px;
    line-height: 1.1;
}
.play-vid span b {
    font-weight: normal;
}
/**************** VIDEO BOTTOM SECTION CSS — IMPROVED ****************/

/* 1) Layout / spacing */
.video-bottom-section .container{
  max-width: 1400px;
  margin-top: -90px;
}

/* Evita que el margen negativo rompa en pantallas pequeñas */
@media (max-width: 991px){
  .video-bottom-section .container{
    margin-top: 0;
  }
}

/* 2) Background */
.video-bottom-section .bg-black{
  background-color: transparent !important;
}

/* 3) Cards */
.video-bottom-section .bg-black .product-card .product-card-inner{
  background-color: var(--theme-color);
  border-radius: 14px;
  overflow: hidden; /* para que nada se salga */
}

/* Hide button/link */
.video-bottom-section .bg-black .product-card .link-btn{
  display: none !important;
}

/* Hide sale price */
.video-bottom-section .price-item--sale{
  display: none !important;
}

/* 4) Slick arrows: quitar rojo, hacerlas consistentes */
.video-bottom-section .slick-slider .slick-arrow{
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* Asegura que el ícono/flecha se vea */
.video-bottom-section .slick-slider .slick-arrow:before{
  opacity: 1 !important;
}

/* Posición desktop (fuera del slider pero sin exagerar) */
.video-bottom-section .slick-slider .slick-prev{
  left: -18px;
}
.video-bottom-section .slick-slider .slick-next{
  right: -18px;
}

/* En tablet/móvil: mete flechas adentro para que no se corten */
@media (max-width: 991px){
  .video-bottom-section .slick-slider .slick-prev{ left: 8px; }
  .video-bottom-section .slick-slider .slick-next{ right: 8px; }
}

.video-bottom-section .slick-slider .slick-arrow:active{
  transform: translateY(0);
}
/************** TESTIMONIAL SECTION CSS  ***************/
.review-stars svg {
    margin-right: 10px;
}
.review-stars span b {
    color: var(--second-color);
}
.testi-img {
    width: 50px;
    height: 50px;
}
.testi-img img {
    height: 100%;
    width: 100%;
}
.test-auth-detail {
    flex: 1;
    padding-left: 10px;
}
.testimonial-itm-inner {
    border: 1px solid var(--border-color);
  height:100%;
   display:flex;
  flex-direction:column;
}
.testimonial-itm-inner .testm-top {
    padding: 15px;
    flex:1;
}
.testimonial-itm-inner .testm-top .review-title-wrp{
  gap:10px;
}
.testimonial-slider .slick-track, .testimonial-slider .slick-list{
  display:flex;
}
.testimonial-itm {
    padding: 1px 10px;
  height:100%;
}
.testimonial-slider  .slick-list{
    margin: 0 -10px;
}
.testm-top h3 {
    font: var(--h5);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.testm-top p {
    margin-top: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.test-auth-detail span {
    text-transform: uppercase;
    font-size: 13px;
}
.testimonial-section .section-title {
    margin-bottom: 30px;
}
.white-dots .slick-dots li {
    background: var(--white);
}
.white-dots .slick-dots li:before {
    border-color: var(--white);
}
.white-dots .slick-dots {
    position: relative;
    justify-content: flex-start;
    margin: 30px 15px 5px;
    bottom: auto;
}
/************** BLOG SECTION CSS **************/
.home-blog-slider .slick-list{
    margin: 0 -10px;
}
.home-blog-slider .slick-track,
.home-blog-slider .slick-list {
    display: flex;
}
.blog-itm {
    padding: 0 10px;
    display: flex !important;
}
.blog-caption .blog-lbl-row {
    margin: 0px 0 15px;
}
.blog-caption .blog-lbl-row .blog-labl:not(:last-of-type) {
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
}
.blog-caption .blog-lbl-row .blog-labl:not(:last-of-type):after {
    content: '';
    height: 3px;
    width: 3px;
    background: var(--white);
    position: absolute;
    right: 0;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.blog-itm-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid var(--border-color);
}
.blog-caption {
    padding: 15px 15px 15px;
}
.blg-lbl {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 500;
    font-size: 12px;
    z-index: 1;
    background: var(--theme-color);
    padding: 5px;
  line-height:1;
}
.blog-caption h5 {
    margin-bottom: 15px;
    font-size: 16px;
}
.blog-img {
    position: relative;
}
.blog-img a {
    display: block;
    padding-top: 60%;
    position: relative;
}
.blog-img a img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
}
/* =============== FOOTER CSS =============== */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 70px 0 40px;
    background: var(--theme-color);
    color: var(--white);
}
.left-gliter {
    bottom: 0;
    left: 0;
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}
.footer-bottom-row {
    padding: 30px 0 0 0;
}
.footer-col {
    width: 100%;
    flex: 1;
    padding-right: 30px;
}
.footer-subscribe-col {
    max-width: 450px;
    flex: 0 0 450px;
    padding: 0;
}
.footer-subscribe-col .footer-subscribe-form {
    margin-top: 20px;
}
.input-wrapper {
    position: relative;
}
.input-wrapper input {
    background: transparent;
    border-radius: 0;
    color: var(--white);
    padding: 18.5px 55px 18.5px 20px;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-color: var(--white);
}
.input-wrapper .btn-subscibe {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 0;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    background-color: var(--second-color);
    -o-border-radius: 0;
    cursor: pointer;
}
.input-wrapper .btn-subscibe svg {
    fill: var(--theme-color);
    width: 18px;
    height: 18px;
}
.input-wrapper .btn-subscibe:hover {
    background: var(--white);
}
.input-wrapper input::-webkit-input-placeholder {
    /* Edge */
    color: var(--white);
}
.input-wrapper input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--white);
}
.input-wrapper input::placeholder {
    color: var(--white);
}
.footer-subscribe-form .checkbox-custom label:before {
    border-color: var(--white);
}
.footer-widget h3,
.footer-widget h4 {
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer-widget h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-widget ul li:not(:last-of-type) {
    margin-bottom: 8px;
}
.footer-subscribe-form .checkbox-custom {
    margin-top: 20px;
}
.footer-list-social {
    display: flex;
    align-items: center;
}
.footer-widget .footer-list-social li:not(:last-of-type) {
    margin: 0 10px 0 0;
}
.footer-list-social li a {
    height: 32px;
    width: 32px;
    background: var(--theme-color);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.footer-list-social li a svg {
    fill: var(--white);
    height: 16px;
    width: 16px;
}
.footer-list-social {
    margin-top: 24px;
}
.copyright {
    text-transform: uppercase;
    display: block;
    margin: 20px 0;
    font-weight: 500;
    letter-spacing: 0.135em;
}
.footer-widget ul li a {
    font-weight: 500;
}
.footer-bottom-row ul li a {
    text-transform: uppercase;
    font-weight: 500;
}
.footer-bottom-row ul li:not(:last-of-type) {
    margin-right: 15px;
}
/****************  TABS CSS *****************/
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
/********** SLICK SLIDE NOT FIRST NONE CSS ***********/
.main-hiro-pro-slider:not(.slick-initialized) *:not(:first-child) {
    display: none !important;
}
/************** Common banner section css *************/
.common-banner-section {
    padding: 70px 0;
    background: var(--second-color);
    color: var(--theme-color);
    background-position: 50% 50%;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-page-banner .back-btn span svg path {
    fill: var(--white);
}

.common-banner-content .section-title h2 span {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}
.common-banner-content .section-title {
    margin-bottom: 12px;
}
.common-banner-content .back-btn {
    margin-bottom: 20px;
}
.back-btn span {
    width: 34px;
    height: 34px;
    display: flex;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 100%;
    text-align: center;
    padding: 4px 0;
    margin-right: 10px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.back-btn span svg path {
    fill: var(--black);
}
.back-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}
/***********  Product filter category css ***********/
.product-heading-row .row {
    align-items: center;
}
.product-filter-body {
    position: relative;
    padding-bottom: 0px;
}
.product-filter-column .product-filter-body:before {
    content: '';
    position: absolute;
    left: -50vw;
    width: 50vw;
    height: 100%;
}
.product-heading-right-column {
    padding: 20px 0 20px 22px !important;
}
.filter-select-box {
    min-width: 160px;
}
.active-facets__button-remove {
    margin-left: 5px;
    padding: 9px 10px;
}
.product-heading-row .sort-lbl {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}
.product-heading-row .nice-select {
    border: 0;
    color: var(--white);
    width: 170px;
    padding: 10px;
  border:1px solid var(--white);
}
.product-heading-row .nice-select:after {
    right: 0;
}
.produdt-filter-cat li a {
    font-weight: 500;
}
.produdt-filter-cat li:not(:last-of-type) {
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.produdt-filter-cat li:not(:last-of-type):after {
    content: '/';
    position: absolute;
    right: -1px;
}
.acnav-list {
    display: none;
    padding: 0 0 10px 0;
}
.product-cat-widget .acnav-list {
    padding: 0 0 10px 10px;
}
.product-widget .acnav-label {
    display: block;
    position: relative;
    font-weight: 600;
}
.product-widget>.pro-itm>.acnav-label {
    font-weight: 600;
    padding: 9px 0;
    text-transform: uppercase;
}
.product-widget .acnav-list li a {
    text-transform: capitalize;
}
.product-widget .acnav-list li:not(:last-of-type) {
    margin-bottom: 8px;
}
.pro-itm-inner>.filter-listing>ul>li>.acnav-list {
    padding: 10px 0 10px 10px;
}
.product-widget .acnav-label:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 2px;
    width: 10px;
    background: var(--second-color);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
}
.product-widget .acnav-label:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(0%, -50%);
    height: 10px;
    width: 2px;
    background: var(--second-color);
    transition: ease-in-out all 0.5s;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    -webkit-transition: ease-in-out all 0.5s;
    -moz-transition: ease-in-out all 0.5s;
    -ms-transition: ease-in-out all 0.5s;
    -o-transition: ease-in-out all 0.5s;
}
.product-widget.disclosure-has-popup[open] .acnav-label:after {
    opacity: 0;
}
.product-heading-row .nice-select {
    background: url(down-arrow.svg);
    background-position: calc(95% - 0px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
}
.product-widget .is-open>.acnav-label:after {
    opacity: 0;
}
.product-widget:not(:last-of-type) {
    border-bottom: 1px solid #E2E2E2;
}
.product-widget {
    padding: 10px 0;
}
.product-filter-right-column {
    padding-left: 22px !important;
}
.product-filter-right-column .product-card .link-btn {
    display: none;
}
.product-filter-right-column .flip-countdown.simple-countdown{
  margin-top: 15px;
}
.text-checkbox .checkbox {
    margin: 0;
    float: left;
    padding-right: 9px;
    padding-bottom: 10px;
}
.text-checkbox .checkbox input[type=checkbox] {
    display: none;
}
.text-checkbox .checkbox input[type=checkbox]+.checkbox-label {
    content: "";
    display: inline-block;
    border: 1px solid var(--second-color);
    color: var(--second-color);
    width: auto;
    position: relative;
    font-weight: 600;
    letter-spacing: 0px;
    top: 0;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
    font-size: 13px;
    border-radius: 47px;
    padding: 11px 19px;
    text-transform: lowercase;
    -webkit-border-radius: 47px;
    -moz-border-radius: 47px;
    -ms-border-radius: 47px;
    -o-border-radius: 47px;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
}
.text-checkbox .checkbox input[type=checkbox]:checked+.checkbox-label {
    background-color: var(--second-color);
    color: var(--theme-color);
}
.delete-all {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer;
    margin: 10px 0 0;
}
.delete-all svg {
    height: 12px;
    margin-right: 5px;
    width: 12px;
}
.delete-all svg path {
    fill: var(--second-color);
}
.product-tag-widget ul li a {
    padding: 10px 12px;
    background: transparent;
    color: var(--theme-color);
    font-size: 12px;
    line-height: 1;
    border: 1px solid var(--theme-color);
}
.product-tag-widget ul li a:hover,
.product-tag-widget ul li.active a {
    background: var(--theme-color);
    color: var(--white);
}
.product-tag-widget ul li:not(:last-of-type) {
    margin-right: 5px;
}
.product-tag-widget ul li {
    display: inline-block;
}
#range-slider {
    max-width: 100%;
    margin: 0 auto;
    padding-top: 23px;
}
.ui-slider-horizontal .ui-slider-range {
    background-color: var(--second-color);
    height: 3px !important;
    top: -1px !important;
    border-radius: 0 !important;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    background: var(--theme-color) !important;
    border: 1px solid var(--second-color) !important;
}
.ui-widget-content {
    background: #dddddd !important;
    border: none !important;
    border-radius: 0 !important;
    height: 1px !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    font-weight: normal;
    height: 11px !important;
    width: 11px !important;
    top: -5px !important;
    margin-left: 0 !important;
    background: var(--theme-color);
    border: 2px solid var(--second-color) !important;
    border-radius: 10px;
    z-index: 1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.colour-col:not(:last-of-type) {
    padding: 0 15px 0 0;
}
.price-select {
    margin-left: -5px;
    margin-right: -5px;
}
.select-col p {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}
.select-col {
    width: 100%;
    max-width: 50%;
    padding: 0 5px;
}
.sorting-select {
    min-width: 125px;
}
.sorting-select select {
    padding: 10px 15px 9px;
    color: var(--black);
}
.product-price-widget .acnav-list {
    padding: 0 20px 10px 0;
}
.colors-checkbox label {
    width: 100%;
}
.custom-checkbox {
    flex-shrink: 0;
}
.custom-checkbox,
.colors-checkbox label {
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    box-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    position: relative;
    text-align: left;
}
.custom-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    left: 0;
}
.custom-checkbox input[type="checkbox"]+.color,
.custom-checkbox input[type="radio"]+.color {
    margin-right: 3px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    width: 0.9375rem;
    height: 0.9375rem;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.color,
.custom-checkbox input[type="checkbox"]+span.color {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid rgba(0, 0, 0, .05);
    cursor: pointer;
    background-size: contain;
    width: 1.25rem;
    height: 1.25rem;
    -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -o-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    -ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
}
.custom-checkbox input[type="checkbox"]:checked+span.color {
    border: 2px solid var(--theme-color);
}
.custom-checkbox input[type="checkbox"]:checked+span.color:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 9px;
    border: solid var(--theme-color);
    border-width: 0px 1px 1px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}
.color-name {
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 13px;
    font-weight: 500;
}
.product-widget .acnav-list .colors-checkbox {
    margin-top: 8px;
}
.product-filter-right-column {
    padding-top: 22px !important;
}
.product-filter-right-column .row {
    margin: 0 -10px;
}
.product-filter-right-column .product-card {
    padding: 0 10px 20px;
}
.product-filter-right-column .product-content-bottom .price {
    width: 100%;
    margin-bottom: 10px;
}
.product-filter-right-column .addtocart-btn svg {
    fill: var(--theme-color);
}
.bordered-card .product-card-inner {
    border: 1px solid var(--border-color);
}
.bg-white .link-btn svg {
    fill: var(--white);
}


/************************ PRODUCT PAGE CSS *************************/
.product-first-section {
    background: var(--second-color);
    color: var(--theme-color);
    padding: 35px 0 70px;
}
.review-stars.dark-color span b {
    color: var(--theme-color);
}
.size-selectors.dark-doted .nice-select:not(:last-of-type):before {
    background-color: var(--theme-color);
}
.dark-btn .price {
    background: var(--black);
    color: var(--white);
}
.product-detail-left .review-stars {
    margin: 90px 0 25px;
    font-size: 14px;
}
.product-detail-left .size-selectors {
    margin: 0 0 15px;
    max-width: 210px;
}
.pdp-thumb-itm {
    padding: 0 10px;
}
.pdp-thumb-img {
    border: 1px solid var(--theme-color);
}
.pdp-thumb-slider .slick-list{
    margin: 0 -10px;
}
.pdp-itm-img {
    position: relative;
    padding-top: 106%;
}
.pdp-thumb-img {
    position: relative;
    padding-top: 100%;
}
.product-detail-left .size-selectors .nice-select {
    color: var(--black);
}
.pdp-itm-img img,
.pdp-itm-img video,
.pdp-itm-img iframe,
.pdp-thumb-img svg,
.pdp-thumb-img video,
.pdp-thumb-img iframe,
.pdp-thumb-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.pdp-thumb-slider .slick-arrow,
.pdp-thumb-slider .slick-arrow:hover {
    opacity: 1;
}
.pdp-thumb-slider .slick-arrow{
  background:var(--theme-color);
}
.pdp-thumb-slider .slick-arrow svg{
  fill:var(--white);
}
.wishlist-btn {
    display: flex;
    align-items: center;
}
.wishlist-btn svg {
    margin-left: 18px;
}
.product-detail-left .back-btn{
    margin-bottom: 15px;
}
.product-detail-left .section-title{
  margin-bottom: 20px;
}
.product-detail-left .section-title h2{
  font:var(--h3);
}
.product-detail-right p {
    margin: 15px 0;
}
.product-detail-right .pdp-timer {
    margin: 0 0 20px;
}
.product-detail-right p b {
    display: block;
    margin-bottom: 15px;
}
.product-detail-right {
    text-align: right;
}
.pdp-swtch-lbl {
    margin-bottom: 20px;
}
.pdp-skincare-box p {
    margin-bottom: 20px;
}
.pdp-skincare-box {
    height: 100%;
}
.pdp-skincare-box img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/************************  CART PAGE CSS **********************/
.cart-page-section {
    padding-top: 40px;
    padding-bottom: 0px;
}
.cart-page-section .back-btn span svg path {
    fill: var(--second-color);
}
.cart-page-section .section-title {
    margin-bottom: 30px;
}
.cart-page-section .section-title h2 {
    margin-top: 10px;
}
.cart-page-section .section-title h2 span {
    font-size: 18px;
}
.product-option {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-top: 10px;
}
.product-option dt {
    font-weight: 500;
}
.product-option dd {
    margin-left: 5px;
    font-weight: 400;
}
.remove-btn {
    display: inline-block;
    height: 18px;
    width: 18px;
    vertical-align: middle;
    margin-left: 8px;
}
.remove-btn svg path {
    fill: red;
}
.pro-img-cart {
    max-width: 100px;
}
.cart-tble ins {
    font-size: 14px;
}
.cart-summery {
    border: 1px solid var(--border-color);
    padding: 20px;
}
.cart-summery ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.cart-summery ul li span:last-child {
    font-weight: 600;
}
.cart-summery .btn {
    padding: 15px 10px;
    display: block;
    width: 100%;
    margin-top: 20px;
    text-transform: capitalize;
}
/****  TABLE CSS ****/
table {
    border: 0;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: auto;
}
table tr {
    padding: 20px 0 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
}
table tr:first-child {
    border-top: 1px solid var(--border-color);
}
table tr th,
table tr td {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
table tr th {
    padding-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    text-transform: uppercase;
}
table tr th:first-child,
table tr td:first-child {
    padding-left: 0;
}
table tr td:first-child a {
    vertical-align: middle;
}
table tr td {
    display: block;
    text-align: center;
    padding: 0 0 20px;
}
@media (min-width: 992px) {
    .cart-tble tr th:first-child,
    .cart-tble tr td:first-child {
        width: 90px;
    }
    .cart-tble tr th:nth-child(2),
    .cart-tble tr td:nth-child(2) {
        width: 233px;
    }
    .cart-tble tr th:nth-child(4),
    .cart-tble tr td:nth-child(4) {
        width: 116px;
        padding-right: 9px;
      vertical-align:middle;
    }
  .jdgm-widget:not(.jdgm-review-widget--small,.jdgm-review-widget--medium) .jdgm-rev-widg__summary+.jdgm-histogram, .jdgm-widget:not(.jdgm-review-widget--small,.jdgm-review-widget--medium) .jdgm-rev-widg__summary+.jdgm-widget-actions-wrapper, .jdgm-widget:not(.jdgm-review-widget--small,.jdgm-review-widget--medium) .jdgm-histogram+.jdgm-widget-actions-wrapper{
    border-color:var(--border-color) !important;
  }
}
@media (max-width: 767px) {

    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        display: none;
    }
    .product-option {
        justify-content: center;
    }
    table .qty-spinner {
        justify-content: center;
        margin: 0 auto;
    }
    .remove-btn {
        height: 14px;
        width: 14px;
    }
}
@media (min-width: 768px) {
    table tr:first-child {
        border-top: none;
    }
    table tr {
        padding: 0;
        display: table-row;
    }
    table tr td {
        padding: 20px 10px 20px;
        display: table-cell;
        text-align: left;
    }
    table tr th:last-child,
    table tr td:last-child {
        text-align: right;
        padding-right: 0;
    }
    table tr th:nth-child(5),
    table tr td:nth-child(5) {
        text-align: right;
    }
}
/****************** ABOUT PAGE CSS  ******************/
.row-reverse {
    flex-direction: row-reverse;
}
.about-our-shop-section .row {
    margin-top: 50px;
}
.abt-shp-column-right img {
    width: 100%;
}
.aboutpage-btm-sec {
    background: var(--theme-color);
}
.aboutpage-btm-sec .about-us-box {
    padding: 20px 18px;
    border: 1px solid var(--border-color);
    position: relative;
}
.aboutpage-btm-sec .about-us-box p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.aboutpage-btm-sec .about-us-box svg {
    fill: var(--second-color)
}
.aboutpage-btm-sec .section-title {
    max-width: 900px;
}
.aboutpage-btm-sec .section-title p {
    margin-top: 20px;
}
.about-us-section .section-title {
    margin: 0 auto 30px;
}
.about-us-section .about-us-box img {
    position: absolute;
    top: 20px;
    right: 15px;
}
.about-us-section .about-us-box h3 {
    margin-bottom: 15px;
  font:var(--h4);
  max-width:85%;
  width:100%;
}
/******************  CMS PAGES CSS *****************/
.cms-page p:not(:last-of-type) {
    margin-bottom: 25px;
}
.cms-page h3,
.cms-page h4,
.cms-page h5 {
    margin: 20px 0;
}
.cms-page p a {
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
}
.cms-page ul {
    margin: 20px;
}
.cms-page ul li {
    list-style: disc;
}
.cms-page ul li:not(:last-of-type) {
    margin-bottom: 9px;
}
/****************** CONTACT PAGE CSS ******************/
.contact-right-column {
    margin-top: -270px;
}
.contact-form {
    padding: 24px 20px;
    border: 2px solid var(--second-color);
    background: var(--theme-color);
    position: relative;
    z-index: 1;
}
.submit-btn {
    width: 100%;
    padding: 11px 10px;
    text-transform: capitalize;
    align-items: center;
}
.contact-right-inner {
    position: relative;
    z-index: 1;
}
.contact-right-inner h2 {
    color: var(--theme-color);
}
.contact-left-inner * {
    color: var(--white);
}
.contact-left-inner ul li {
    margin-bottom: 30px;
}
.contact-left-inner ul li h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 14px;
}
.contact-left-inner ul li p {
    margin-bottom: 0;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 500;
    word-break: break-all;
}
.contact-left-inner ul li .address {
    font-size: 12px;
    line-height: 26px;
}
/****************** FAQS PAGE CSS ***************/
.faq-search-form {
    max-width: 400px;
    margin: 25px 0;
}
.set {
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.set .acnav-label {
    color: var(--second-color);
    padding: 15px 45px 15px 15px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}
.set .acnav-list {
    padding: 15px;
    border-top: 1px solid var(--border-color);
}
.set .acnav-list p {
    font-size: 13px;
}
.faq-search-form .input-wrapper input {
    border-color: var(--black);
    color: var(--black);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.faq-search-form .input-wrapper input::placeholder {
    color: var(--black);
}
.faq-search-form .input-wrapper .btn-subscibe {
    background-color: var(--black);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.faq-search-form .input-wrapper .btn-subscibe svg,
.faq-search-form .input-wrapper .btn-subscibe svg path {
    fill: var(--second-color);
}
/*******************  BLOG PAGE CSS *****************/
.blog-page-banner {
    color: var(--second-color);
}
.blog-page-banner .section-title {
    margin-bottom: 30px;
}
.blog-cat {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  row-gap:10px;
}
.blog-cat li:not(:last-of-type) {
    margin-right: 20px;
}
.blog-cat li:first-of-type {
    padding: 10px 20px;
    color: var(--white);
    background: transparent;
    line-height: 1;
}
.blog-cat li.active {
    background: var(--white);
    color: var(--theme-color);
}
.blog-grid .blog-widget-inner {
    border-color: var(--theme-color);
}
.blog-grid .blog-caption {
    border-top: 1px solid var(--theme-color);
}
.blog-grid .blog-btn {
    background: var(--theme-color);
}
.blog-grid .blog-btn svg {
    fill: var(--white);
}
.blog-grid .blog-widget {
    margin-bottom: 30px;
}
.blog-head-row {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}
.blog-col-left ul li a {
    padding: 10px 15px;
    font-size: 14px;
    display: block;
    position: relative;
    opacity: 0.5;
    font-weight: 600;
}
.blog-col-left ul li a:before {
    content: '';
    height: 2px;
    width: 100%;
    bottom: -1px;
    background: var(--white);
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.blog-col-left ul li a:hover:before,
.blog-col-left ul li.active a:before {
    opacity: 1;
}
.blog-col-left ul li a:hover,
.blog-col-left ul li.active a {
    opacity: 1;
}
.blog-col-right .select-lbl {
    display: block;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
}
.blog-col-left {
    flex: 1;
}
.blog-col-right .nice-select {
    flex: 1;
    border: none;
    padding: 10px 20px 10px 15px;
    font-size: 12px;
}
.blog-col-right .nice-select:after {
    right: 0;
}
.blog-grid-section .section-title h2 b {
    font-style: normal;
}
.blog-page-banner .common-banner-content p {
    margin-bottom: 30px;
}
.blog-grid-row {
    margin-bottom: -30px;
}
.blog-grid-row .blog-itm {
    margin-bottom: 30px;
}
/*************  ARTICLE PAGE CSS **************/
.article-banner .common-banner-content .back-btn {
    margin: 0 auto 26px auto;
    justify-content: center;
    display: flex;
    max-width: fit-content;
}
.article-banner .blog-cat {
    margin: 40px 0;
}
.post-lbl {
    margin-left: 50px;
}
.article-section .abt-user-img {
    border-color: var(--second-color);
}
.article-section .section-title h2 {
    font-weight: 400;
    max-width: 400px;
    margin: 30px 0 0;
    text-transform: unset;
}
.aticleleftbar h5 {
    margin: 20px 0;
    font-weight: normal;
    line-height: 1.5;
    text-transform: unset;
}
.related-blogs {
    background: transparent;
    color: var(--second-color);
}
.related-blogs .section-title {
    color: var(--second-color);
    border-top: 1px solid var(--border-color);
}
.aticleleftbar p {
    margin-bottom: 25px;
}
.aticleleftbar img {
    margin-bottom: 15px;
}
.art-auther {
    margin-bottom: 15px;
    font-size: 14px;
}
.quote-box {
    position: relative;
    padding: 30px 0 30px 60px;
}
.quote-box h3 {
  font:var(--h4);
    font-weight: 500;
    line-height: 1.6;
    font-family: var(--first-font);
    text-transform: unset;
}
.quote-box svg {
    position: absolute;
    left: 0;
}
.article-socials li a {
    height: 28px;
    width: 28px;
    background: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
  -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.article-socials li a svg {
    fill: var(--theme-color);
    height: 12px;
    width: 12px;
}
.article-socials li a svg path {
    fill: var(--theme-color);
  -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -ms-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}
.article-socials li a:hover{
  background:var(--grey-color)
}
.article-socials li a:hover svg path  {
  fill:var(--white);
}
.article-socials li:not(:last-of-type) {
    margin-right: 10px;
}
.article-socials li span {
    display: inline-block;
    font-size: 18px;
    margin-right: 10px;
}
.blog-media {
    position: relative;
}
.about-pro h6 span {
    display: block;
    font-style: italic;
    font-weight: 400;
}
.about-pro h6 {
    margin-right: 20px;
    font-weight: 700;
}
.abt-user-img {
    border: 1px solid var(--white);
    border-radius: 72.2951px;
    width: 60px;
    height: 60px;
    padding: 5px;
    margin-right: 15px;
    -webkit-border-radius: 72.2951px;
    -moz-border-radius: 72.2951px;
    -ms-border-radius: 72.2951px;
    -o-border-radius: 72.2951px;
}
.abt-user-img img {
    width: 100%;
    height: 100%;
}
.about-user h6 span {
    display: block;
    font-weight: 700;
}
.about-user h6 {
    font-weight: 400;
    font-style: italic;
    font-size: 14px;
}
.aticleleftbar img {
    width: 100%;
}
.articlerightbar .blog-itm {
    padding: 0;
}
.articlerightbar .blog-itm:not(:last-of-type) {
    margin-bottom: 30px;
}
/*****************  ORDER SUMMERY PAGE CSS ***************/
.backbtn .btn-secondary svg {
    transform: scale(-1);
    margin-right: 12px;
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
}
.backbtn .btn-secondary {
    min-width: 190px;
    margin-top: 25px;
    background: var(--second-color);
    color: var(--black);
}
.backbtn .btn-secondary:hover {
    background: transparent;
    border: 1px solid var(--second-color);
    color: var(--white);
}
.backbtn .btn-secondary:hover svg path {
    fill: var(--white);
}
.backbtn .btn-secondary svg path {
    fill: var(--black);
}
/*****************  REGISTER PAGE CSS ***************/
.back-toshop .svg-ic svg path {
    fill: var(--white);
}
.back-toshop {
    margin-bottom: 15px;
}
.register-page .back-toshop {
    margin-bottom: 10px;
}
.form-wrapper h4 {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}
.form-wrapper .form-heading h4 {
    margin-bottom: 0;
}
.form-wrapper h4 b {
    font-family: var(--first-font);
    font-style: normal;
    font-weight: 600;
}
.form-wrapper form {
    border: 1px solid var(--border-color);
}
.form-container {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
/* .form-footer {
    padding-top: 30px;
} */
.form-container:last-child {
    border-bottom: 0;
}
.register-page .section-title {
    margin-bottom: 40px;
}
/****************  LOGIN PAGE CSS ***************/
.login-form .submit-btn {
    max-width: 170px;
    margin: 0 0 0 15px;
    ;
}
.login-form .form-footer {
    padding: 0;
}
.forgot-pass {
    color: red;
    text-decoration: underline;
    font-size: 14px;
}
.login-form p {
    margin-bottom: 15px;
}
.reg-lbl {
    font-size: 14px;
    margin-right: 10px;
}
.login-form .form-heading h4 {
    margin-bottom: 0;
    font-weight: 600;
}
/**************** MY ACCOUNT PAGE CSS ******************/
.my-acc-leftbar h4,
.my-acc-rightbar h2 {
    font-weight: 400;
}
.my-account-page .btn-secondary svg path {
    fill: var(--second-color);
}
.my-account-page .btn-secondary:hover svg path {
    fill: var(--black);
}
.my-acc-leftbar {
    border: 1px solid var(--border-color);
}
.my-acc-leftbar li:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color);
}
.account-list li a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
    opacity: 0.5;
}
.account-list li a svg {
    flex-shrink: 0;
    margin-right: 10px;
}
.account-list li a svg path {
    fill: var(--white);
}
.account-list li a span {
    flex: 1;
}
.account-list li a span b {
    display: block;
}
.my-acc-leftbar li a:hover,
.my-acc-leftbar li.active a {
    opacity: 1;
}
.my-acc-leftbar li a svg path {
    fill: var(--white);
}
.my-acc-leftbar h4 {
    padding: 15px 15px 5px;
}
.my-acc-head {
    margin-bottom: 50px;
}
.my-acc-rightbar .account-list li {
    display: flex;
    margin-bottom: 20px;
}
.my-acc-rightbar .account-list li a {
    border: 1px solid var(--border-color);
    width: 100%;
}
.my-acc-rightbar .account-list li.active a svg path,
.my-acc-rightbar .account-list li a:hover svg path {
    fill: var(--white);
}
.my-acc-rightbar .account-list li.active a,
.my-acc-rightbar .account-list li a:hover {
    opacity: 1;
    color: var(--white);
    background: var(--theme-color);
}
.account-list li.logout-link a svg path {
    fill: red;
}
.account-list li.logout-link a {
    opacity: 1;
    color: red;
}
.my-acc-right-content {
    padding-bottom: 50px;
}
#scroll {
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 2;
}
.acc-back-btn-wrp {
    flex-wrap: wrap;
    gap: 10px;
    align-items: unset !important;
}
.acc-back-btn-wrp button svg {
    width: 16px;
}
.acc-back-btn-wrp .back-btn-acc svg {
    margin-left: 0;
}
.acc-back-btn-wrp .back-btn-acc:hover svg path{
  fill:var(--theme-color);
}
.back-btn-acc {
    background: transparent;
    /*   margin-right: 12px; */
}
.back-btn-acc svg {
    transform: scale(-1);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    margin: 0 10px 0 0;
}
.right-result-tbl {
    padding: 20px 15px 0;
    font-size: 14px;
}
.ttl-pric {
    font-size: 24px;
    font-weight: 800;
    margin-top: 6px;
}
.order-paycol-inner {
    width: 100%;
}
.price-item--sale ins {
    font-size: 12px;
    text-decoration: line-through;
    color: #aaa;
    font-weight: 400;
}
.price-item--sale {
    margin: 5px 0 0;
}
.wishpg .price-item--sale ins {
    font-size: 16px;
}
/*****************  CHECKOUT PAGE CSS ***************/
.set .acnav-label:after {
    content: '';
    position: absolute;
    height: 12px;
    width: 12px;
    background-image: url(menu-dropdown.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 50% 50%;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}
.set.is-open .acnav-label::after {
    transform: translateY(-50%) rotate(180deg);
    -webkit-transform: translateY(-50%) rotate(180deg);
    -moz-transform: translateY(-50%) rotate(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
}
.btn-flex {
    margin-top: 20px;
}
.btn-flex a:not(:last-of-type) {
    margin-right: 14px;
}
/* =============== DESKTOP HOVER CSS =============== */
@media (hover: hover) {
    a:hover,
    a:focus {
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out;
    }

    .index .header-style-one.dark-header .main-navigationbar .menu-items-col .main-nav>li>a.active:hover,
    .index .header-style-one.dark-header .main-navigationbar .menu-items-col .main-nav>li>a.active,
    .index .header-style-one.dark-header .main-navigationbar .menu-items-col .main-nav>li:hover>a {
        color: var(--white);
    }
    .header-style-one .main-navigationbar .menu-items-col .main-nav>li:hover>a:before {
        opacity: 1;
        visibility: visible;
    }
}
/*===========================feature CSS start=======================*/
/* currency */
.currency select {
    color: var(--white);
    border: none;
    padding: 0;
    background-color: transparent;
    font-weight: 500;
    padding: 0 15px 0 0;
  cursor:pointer;
}
.index .currency select {
    color: var(--black);
    padding: 0;
}
.currency select option {
    color: #000;
}
/*==== cart popup custom css ======  */
.site-header .menu-right .apply-coupan-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
}
.coupan-txt svg {
  width: 22px;
  height: 22px;
}
.site-header .menu-right .coupan-txt svg {
  margin: 0;
}
.site-header .menu-right .apply-coupan-btn a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 30px;
  background: var(--theme-color);
  color: var(--white);
  height: 100%;
  width: auto;
}
.coupan_code {
  position: relative;
  margin-bottom: 15px;
}
.coupan-txt {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
  color:var(--black);
}
.coupan_code input {
  height: 45px;
  width: 100%;
  border-color: var(--border-color);
  padding: 14px 105px 14px 15px;
    color:var(--black);
}
.coupan_code input::placeholder {
    color: var(--black);
}
/*======= product notify btn custom css =======*/
.notify-sold .notify-btn {
  padding: 14px 35px;
  border: 1px solid var(--theme-color);
  background:var(--theme-color);
  color:var(--white);
  font-size: 14px;
   width:100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all ease-in-out .5s;
  -moz-transition: all ease-in-out .5s;
  -ms-transition: all ease-in-out .5s;
  -o-transition: all ease-in-out .5s;
  transition: all ease-in-out .5s;
}
.notify-sold .notify-btn:hover,
.notify-sold .notify-btn:focus {
  background-color:transparent;
  color: var(--theme-color);
  border-color: var(--theme-color);
}
.out-of-stock-form {
  position: fixed;
  top: 50%;
  padding: 50px 40px;
  left: 0;
  right: 0;
  max-width: 30%;
  max-height: calc(100% - 100px);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: var(--theme-color);
  z-index: 5;
  -webkit-transition: all ease-in-out .4s;
  -o-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: scale(.9);
  transition: all .3s ease-in-out;
}
.out-of-stock-form.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}
.notify-txt {
  line-height: 1.2;
  color: var(--white);
}
.notify-popup-close {
  width: 30px;
  height: 30px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.notify-send-btn {
  position: relative;
  margin-top: 20px;
}
.notify-send-btn input {
  height: 45px;
  width: 100%;
  padding: 15px 110px 15px 15px;
  background: transparent;
  color: var(--white);
}
.notify-send-btn input::placeholder {
  color: var(white);
}
.notify-send-btn input::-webkit-input-placeholder {
  color: var(--white);
}
.notify-send-btn input::-ms-input-placeholder {
  color: var(--white);
}
.notify-send-btn button {
  position: absolute;
  top: 0;
  right: 0;
  height: 45px;
  width: auto;
  padding: 10px 35px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
}
/* ========quick-view===== */
.quickview-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: var(--second-color);
    z-index: 4;
    -webkit-transition: all ease-in-out .5s;
    -o-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
}
.quickview_popup_data .row {
    align-items: center;
}
.quickview_popup_data .product-page-first-section {
    background: none;
}
.quickview-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
  cursor:pointer;
}
.quickview_popup_data .pdp-right-column .section-title {
    max-width: 100%;
    text-align: left;
    color: var(--black);
  margin-bottom:20px;
}
.quickview_popup_data .pdp-right-column p {
    color: var(--black);
    margin-bottom: 15px;
}
.quickview_popup_data .pdp-right-column {
    text-align: left;
    width: auto;
}
.quickview_popup_data .row {
    align-items: center;
}
.quickview_popup_data {
    padding: 40px 0px;
}
.qv-price {
    margin-top: 15px;
    display: flex;
    align-items: center;
  gap:10px;
}
.qv-price .price-item--sale {
    margin: 0;
}
.qv_select__select {
    margin-top: 10px;
    border: solid 1px var(--theme-color);
    width: 70%;
    background: url(arrow-acc-dark.svg) no-repeat;
    background-size: 10px;
    background-position: calc(100% - 15px) 50%;
    color: var(--black);
}
.qv-pro-slider-img{
  display: flex !important;
  justify-content: center;
}
.qv-pro-slider-img img{
  width:100%;
  height:100%;
}
.quickview_popup_data select:focus {
    margin-top: 10px;
}
.quickview_popup_data .pdp-right-column .qnty-btn-wrp {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 0;
    gap: 15px;
}
.quickview_popup_data .pdp-right-column .qty-spinner button,
.qty-spinner input {
    width: 100%;
    max-width: 100px;
}
.quickview_popup_data .qty-spinner {
    border: 1px solid var(--theme-color);
    height: 37px;
}
.quickview_popup_data .qty-spinner button svg path {
    fill: var(--black);
}
.quickview_popup_data .qty-spinner input {
    color: var(--black);
}
.qnty-btn-wrp .btn {
    border: 1px solid var(--black);
}
.qnty-btn-wrp .btn:hover,
.qnty-btn-wrp .btn:focus
{
  color:var(--black);
}
.loading-overlay__spinner svg{
  margin-left:8px !important;
}

.qnty-btn-wrp .btn:hover svg path,
.qnty-btn-wrp .btn:focus svg path{
  fill:var(--black);
}
.qv_slider{
  border:1px solid var(--black); 
}
.qv_slider .slide-arrow{
  background-color:var(--white);
}
.qv-price ins {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}
.quickview_popup_data .pdp-top-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}
.product-detail-center .pdp-itm{
    background: white;
    padding: 15px;
}
.product-detail-center .pdp-itm{
  margin: 0 10px;
}
.pdp-main-slider .slick-list{
   margin: 0 -15px;
}
#predictive-search-results #predictive-search-results-list li .search-inner{
  border:1px solid var(--border-color);
  padding:15px;
  height:100%;
}
#predictive-search-results #predictive-search-results-list li .search-inner .predictive-search__item-content{
  float:none;
}
.product-heading-row .row{
  border-bottom:1px solid var(--border-color);
}
/* =========compare and wishlist======== */
.compare-prod-remove svg, .wishlist-prod-remove svg {
    margin: 0 auto;
}
.pro-compare.active svg path,.pro-wishlist.active svg path {
    fill:var(--white) !important;
}

.pro-compare.active,.pro-wishlist.active{
  background:var(--grey-color);
}
.compare-head .section-title, .wishlist-head .section-title {
    text-align: center;
}
.pro-compare-wrap .pro-compare-left, .pro-wishlist-wrap .pro-wishlist-left {
    display: flex;
    align-items: center;
}
.pro-compare-wrap .pro-compare-left .compare-title, .pro-wishlist-wrap .pro-wishlist-left .wishlist-title {
    max-width: 25%;
    flex: 0 0 25%;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--second-color);
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
}
.pro-compare-scroll .compare-wrap .compare-val-prod, .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod {
    display: flex;
    align-items: center;
    width: 100%;
}
.pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label, .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label {
    max-width: 25%;
    width: 100%;
    flex: 0 0 25%;
    text-align: center;
    padding: 15px;
}
.compare-pro-detail .compare-val-prod .product-form .cart-form, .wishlist-pro-detail .wishlist-val-prod .product-form .cart-form {
    justify-content: center;
    margin-right: 0px;
}
.compare-pro-detail .compare-val-prod .prod-title, .wishlist-pro-detail .wishlist-val-prod .prod-title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
}
.prod-price del {
    margin-left: 5px;
}
.prod-price del ins {
    text-decoration: line-through;
    font-size: 16px;
    opacity: .7;
}
.compare-pro-detail .compare-val-prod .prod-price, .wishlist-pro-detail .wishlist-val-prod .prod-price {
    margin: 15px 0
}
.compare-pro-detail .prod-img a, .wishlist-pro-detail .prod-img a {
    position: relative;
    padding-top: 80%;
    display: block;
}
.compare-pro-detail .prod-img a img, .wishlist-pro-detail .prod-img a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.compare-wrap, .wishlist-wrap {
    border-bottom: 1px solid var(--border-color);
}
.pro-compare-section .pro-compare-wrap, .pro-wishlist-section .pro-wishlist-wrap {
    margin-bottom: 40px;
}
.pro-compare-section .compare-bottom-btn, .pro-wishlist-section .wishlist-bottom-btn {
    display: flex;
    justify-content: center;
}
.pro-compare-section .compare-bottom-btn a, .pro-wishlist-section .wishlist-bottom-btn a {
    min-width: 170px;
}
/*===========================feature-CSS end=======================*/
/*===========================SHF-CSS=======================*/
.input-wrapper {
    position: relative;
}
button {
    border: none;
    box-shadow: none;
    cursor: pointer;
}
.no-js:not(html) {
    display: none !important;
}
.search-form-wrapper form {
    position: relative
}
.search-popup .close-search {
    background: none;
    border: none;
    padding: 0;
}
#predictive-search-results ins {
    font-size: 15px;
}
.addresses.customer select{
    background: url(menu-dropdown.png);
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) 50%;
    appearance: none;
    background-size: 10px;
  padding-right:40px;
}
.main-btn {
    display: flex;
    width: 100%;
    column-gap: 20px;
    flex-wrap: wrap;
}
.product-page-first-section .variant-webi .size-select {
    border: none;
}
.product-page-first-section .variant-webi .size-select span {
    margin: 0 10px 0 0;
}
.product-form__input input {
    display: none;
}
label.color-swatch {
    border: 1px solid var(--white);
    padding: 5px;
}
.pdp-right-column-inner .review-wrap {
    justify-content: space-between;
}
.pdp-right-column-inner .product-write-review {
    column-gap: 10px;
}
.cart-button span {
    display: none;
}
.grecaptcha-badge {
    z-index: 2;
}
.shopify-challenge__container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
/*------------------- SHF countdown ---------------------------*/
.flip-countdown.simple-countdown {
    background: var(--grey-color);
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    padding: 5px 5px;
    justify-content: center;
    gap: 7px;
}
.flip-countdown.simple-countdown svg {
    width: 18px;
    height: 18px;
}
.countdown-container.flip-countdown.countdown-block span {
    margin: 0;
    color: var(--white);
    font-size: 13px;
}
.countdown-container.flip-countdown.countdown-block span.dots {
    margin: 0;
}
.pdp-timer .flip-countdown.simple-countdown {
    position: static;
    display: flex;
}
.pdp-timer .countdown-container.flip-countdown.countdown-block span {
    display: inline-block;
}
.bestpro-itm .countdown-container.flip-countdown.countdown-block span {
    font-size: 13px;
    margin: 0 2px 0 0;
}
.bestpro-itm .flip-countdown.simple-countdown svg {
    display: none;
}

/***** SHF LANGUAGE CSS (SIMPLIFIED) *****/
.lang-dropdown{
  display:flex;
  align-items:center;
  gap:5px;
  position:relative;
  margin-left:20px;
}
.lang-dropdown svg{ width:20px; height:20px; }
.lang-dropdown svg path{ fill:var(--black); }
.index .lang-dropdown svg path{ fill:var(--white); }

.lang-dropdown .nice-select{
  border:0;
  font-family:var(--first-font);
  font-size:14px;
  font-weight:500;
  line-height:1;
  background:none;
}

/* dropdown */
.disclosure__list-wrapper{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  z-index:2;
  margin:4px 0 0;
  overflow:hidden;
  opacity:1;
  pointer-events:auto;
  background:var(--white);
  box-shadow:0 0 0 1px #4444441c;
  transition:all .4s ease-in-out;
  transform:scaleY(1);
}
.disclosure__list-wrapper.hide{
  transform:scaleY(0);
  transform-origin:top;
}

.disclosure__list-wrapper .disclosure__item{ margin:0; display:block; background:none; }

.disclosure__list-wrapper .disclosure__item a{
  display:block;
  width:100%;
  padding:10px;
  font-size:14px;
  letter-spacing:.5px;
  text-align:left;
  color:var(--black) !important;
  font-weight:500 !important;
}
.disclosure__list-wrapper .disclosure__item a.disclosure__link--active{
  font-weight:700 !important;
}
.disclosure__list-wrapper .disclosure__item a:hover:after{
  border:none !important;
  width:0 !important;
}

/***** SHF - SIZE POPUP (SIMPLIFIED) *****/
.size-popup{ display:table; }
.size-close-btn{ text-align:end; }
.size-close-btn svg{ margin:0 5px 0 0; }
.size-popup table tr td{ padding:10px; }

.size-table-wrapper{
  position:fixed;
  top:50%;
  left:0;
  right:0;
  max-width:60%;
  width:100%;
  margin:0 auto;
  z-index:5;
  transition:all .5s ease-in-out;
  transform:translateY(-50%);
}

.size-popup .size-form{
  background:var(--white);
  color:var(--black);
  padding:20px;
  max-height:80vh;
  overflow:auto;
}
.size-popup .size-form h4{ text-align:center; margin-bottom:20px; }

.size-popup .btn-white{ margin-bottom:20px; }
.size-popup .btn-white:hover,
.size-popup .btn-white:focus{
  color:var(--black);
  background:var(--white);
}
.size-popup .btn-white:hover svg path,
.size-popup .btn-white:focus svg path{ fill:var(--black); }

.size-btn{ gap:10px; justify-content:end; }

.see-size,
.size-share-wrap .share-button__button{ margin:15px 0 0; }

.see-size .size-btn svg,
.size-share-wrap .share-button__button svg{ width:16px; height:16px; }

.see-size .size-btn svg path,
.size-share-wrap .share-button__button svg path{ fill:var(--black); }

.size-share-wrap{ gap:40px; justify-content:end; }
.size-share-wrap .share-button__button{ gap:5px; }


/*=================shf - recommendations ================*/
.product-notification {
    background: var(--theme-color);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 0px 10px 0px;
    width: 350px;
    position: fixed;
    bottom: 10px;
    left: 30px;
    padding: 10px;
    z-index: 2;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    visibility: hidden;
    color: var(--white);
  border:1px solid var(--white);
}
.product-notification.active {
    bottom: 30px;
    opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}
.product-notification .product-suggest {
    display: flex;
    align-items: center;
    gap: 25px;
}
.product-notification .product-suggest .product-image {
    display: block;
    max-width: unset;
    width: auto;
    padding: 0;
}
.product-notification .closeNotify {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.product-notification .closeNotify svg {
    width: 16px;
    height: 16px;
}
.product-suggest .product-image img {
    border-radius: 5px;
}
.product-notification .product-suggest .product-label {
    margin: 0 0 5px;
    position: static;
}
.product-notification .product-suggest .product-name {
    font: var(--h6);
    margin: 0 0 15px;
}
.view-product-sec h3 {
    text-align: center;
    margin: 0 0 25px;
}
/*------------------- SHF msg ---------------------------*/
.newsletter-form__message {
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    right: 0;
    display: flex;
    column-gap: 10px;
    margin: 10px 0 0;
    font: var(--common-text);
}
.newsletter-form__message--success {
    color: #0a942a;
    border-color: #0a942a;
}
.newsletter-form__message--error {
    color: #dc0000;
}
.form-error .form__message,
.form-error .errors,
.form__message {
    display: flex;
    column-gap: 10px;
    color: #ff0000;
    outline: none;
    align-items: center;
    margin: 0 0 10px;
}
.form-message-success {
    color: #428445;
}
/*------------------- SHF dropdown ---------------------------*/
.dropdown,
.dropleft,
.dropright,
.dropup {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
    margin-left: 0;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    -webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    -ms-border-radius: 0.25rem;
    -o-border-radius: 0.25rem;
}
.dropdown-menu-left {
    right: auto;
    left: 0;
}
.dropdown-menu-right {
    right: 0;
    left: auto;
}
.dropdown-menu {
    min-width: 210px;
    margin: -1px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.dropdown-menu li a {
    display: block;
    padding: 4px 15px;
    font-weight: 400;
}
.dropdown-menu .localization-selector+.disclosure__list#FooterCountryList li a {
    font-size: 14px;
    letter-spacing: 0;
}
.header-style-one .menu-right li .dropdown-menu {
    padding: 15px;
}
.header-style-one .menu-right li .customer_account a,
.header-style-one .menu-right li .customer_account .wishlist {
    padding: 5px;
    background: none;
    font: var(--common-text);
    justify-content: left;
}
.header-style-one .menu-right .customer_account li {
    justify-content: left;
    max-width: 100%;
}
.header-style-one .menu-right li .customer_account .wishlist span {
    margin: 0;
    line-height: 1;
}
/****** SHF CART DRAWER CSS ********/
.header-style-one .menu-right .cartDrawer {
    padding: 0px;
}
.mini-cart-footer .js-contents {
    display: none;
}
.cartDrawer .cart__warnings,
.cartDrawer .cart__empty-text,
.cartDrawer.is-empty .cart__contents,
.cartDrawer.is-empty .cart__footer,
.cartDrawer cart-items.is-empty .title-wrapper-with-link,
#main-cart-footer.is-empty {
    display: none;
}
.cartDrawer.is-empty .cart__empty-text,
.cartDrawer.is-empty .cart__warnings {
    display: block;
    color: var(--black);
    margin: 15px 0;
}
.cartDrawer.is-empty .cart__warnings {
  
    margin: 0% 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.cartDrawer.is-empty .btn-transparent:hover{
  background-color:var(--black);
}
.subscribe-overlay {
    transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 1;
}
.subscribe-overlay.open {
    opacity: 1;
    visibility: visible;
}
.header-style-one .menu-right .cartDrawer svg#icon-cart-emty,
.header-style-one .cartDrawer svg#icon-cart-emty {
    width: 55px;
    height: auto;
    fill: currentColor;
    margin: 0 auto 10px auto;
}
.header-style-one .menu-right .webi-mini-cart-footer .link-btn {
    background: none;
    padding: 0;
    border: none;
    width: 100%;
    align-items: center;
    color: var(--black) !important;
    column-gap: 10px;
}
.header-style-one .menu-right li a.mini-cart-title {
    text-align: left;
    line-height: 1.2;
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}
.header-style-one .menu-right li a.closecart svg path {
    fill: var(--white) !important;
}

.active-menu header{
  border-bottom:none !important;
}
.mobile-menu-bar .fea-coll-img a img {
    transform: rotateZ(20deg);
    -webkit-transform: rotateZ(20deg);
    -moz-transform: rotateZ(20deg);
    -ms-transform: rotateZ(20deg);
    -o-transform: rotateZ(20deg);
}
.mobile-menu-wrapper .mobile-menu-bar>ul>li:not(.has-children) a svg,
.product-card .product__media-item:not(:first-child) {
    display: none
}
.size-variant-swatch,
.color-variant-swatch {
    border: none;
}
/*============SHF blog comment =============*/
.article-comment {
    border: 1px solid var(--border-color);
    padding: 15px;
    margin: 30px 0 0;
}
#comments .errors {
    border: 1px solid #ff0000;
    padding: 15px;
    margin: 30px 0 0;
}
#comments .errors li {
    color: #ff0000;
    margin: 0 0 5px;
}
#comments .errors li:last-child {
    margin: 0;
}
.article-comment h3 {
    margin: 0 0 10px;
}
.article-comment .grid-item {
    margin: 0 0 15px;
}
.article-comment .grid-item input {
    padding: 12px 15px;
}
.article-comment .grid-item .btn {
    width: 100%;
}
.blog-grid-section .card-inner {
    border: 1px solid var(--border-color);
    margin: 0 0 30px;
    padding: 15px;
}
.blog-grid-section .card-inner>a {
    margin: 0 0 15px;
}
.blog-grid-section .card-inner h5,
.blog-grid-section .card-inner .time,
.blog-grid-section .card-inner p {
    margin: 0 0 12px;
    display: block;
}
/*=================SHF address page =============*/
#recover,
#recover+.recover-password,
#recover:target~.back-toshop,
#recover:target~.section-title,
#recover:target~.form-wrapper {
    display: none;
}
#recover:target+.recover-password,
#recover:target {
    display: block;
}
.acc-order-history {
    margin: 0 0 20px;
}
.acc-order-history h5 {
    margin: 0 0 20px;
}
.acc-order-button {
    column-gap: 15px;
}
.addresses [aria-expanded=false]~div[id] {
    display: none;
}
.addresses [aria-expanded=true]~div[id] {
    display: block;
    margin: 30px 0 0;
}
.rtn-to-acc {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}
.newadd {
    text-align: center;
    margin: 0 0 40px;
}
.add-default {
    margin: 30px 0 0;
    padding: 20px;
    border: 1px solid var(--border-color);
}
.add-default .btn {
    padding: 12px 30px;
}
.back-btn-acc svg {
    transform: scale(-1);
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    margin: 0 6px 0 0;
}
.acc-back-btn-wrp button {
    text-transform: capitalize;
    font-size: 14px;
}
.back-btn-acc {
    background: transparent;
    /*   margin-right: 12px; */
}
.acc-back-btn-wrp button svg {
    width: 16px;
    margin-left: 6px;
}

/*============SHF order =============*/
.order h2 {
    margin: 0 0 30px;
}
.order h4 {
    margin: 0 0 20px;
}
.order-detail {
    margin: 0 0 30px;
}
.order-detail>p {
    margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
}
.order-details ins {
    font-size: 15px;
}
/*==================== SHF Cart Page ====================*/
.cart-item__error {
    display: flex;
    align-items: flex-start;
}
.cart-item__error-text:empty+svg {
    display: none;
}

cart-note.cart__note.field {
    margin: 0 0 30px;
    display: block;
}
cart-note.cart__note.field label {
    margin: 0 0 15px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}
.cart__footer .cart__note #Cart-note {
    min-height: 100px;
    padding: 10px;
}
.cart__footer-wrapper .cart__blocks {
    border: 1px solid var(--border-color);
    padding: 30px 15px;
    text-align: center;
}
.cart__blocks .totals__subtotal {
    margin: 0 0 15px;
    line-height: 1;
}
.cart__footer ins {
    font-size: 20px;
}
.cart__blocks .totals__subtotal-value {
    font: var(--h5);
    margin: 0 0 20px;
}
small.tax-note.caption-large.rte {
    margin: 0 0 10px;
    display: block;
    font-size: 14px;
}
.facets__item {
    display: flex;
    flex: 1;
    justify-content: space-between;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
}
.product-widget .acnav-list .facets__item {
    margin-top: 8px;
}
.card-wrapper {
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 30px;
    margin: 0 0 30px;
}
.prorow-lbl-qntty {
    display: flex;
    align-items: center;
    margin: 0 0 15px;
  gap:10px;
}
.prorow-lbl-qntty .qty-spinner {
    background: var(--black);
    border: none;
    box-shadow: none;
}
/*======================= SHF buy-now-btn =====================*/
.buy-now-btn {
    margin: 15px 0 0;
}
button.shopify-payment-button__more-options.shopify-payment-button__button--hidden {
    display: none;
}
.shopify-challenge__button.btn {
    margin-top: 50px;
}
.shopify-challenge__container #g-recaptcha {
    margin-top: 20px;
}
.shopify-payment-button__button--unbranded {
    background-color: var(--black) !important;
    width: 100%;
    color: var(--white) !important;
    padding: 13px 35px;
    font-family: var(--first-font) !important;
    text-transform: uppercase;
    border-radius: 0px;
    font-weight: 600;
}
/*===================== SHF search page ======================*/
.search__button {
    position: absolute;
    top: 5px;
    left: auto;
    right: 5px;
    bottom: 5px;
    padding: 0 10px !important;
    border-radius: 0px;
}
.template-search p.search-msg {
    padding: 20px 0 20px;
    font-size: 20px;
    line-height: 1;
}
.search__button svg {
    margin: 0;
}
.template-search__search .field {
    position: relative;
}
.template-search__results .grid__item {
    margin: 0 0 30px;
}
.template-search__results .product-card .product-card-inner {
    border: 1px solid var(--border-color);
}
.template-search__results .product-card .link-btn {
    display: none;
}
#customer_login_link,
#customer_register_link {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    color: var(--white);
    background: transparent;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    transition: all ease-in-out .4s;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    text-transform: uppercase;
}
#customer_login_link:hover,
#customer_register_link:hover {
    background: var(--theme-color);
    color: var(--white);
}
.card__media {
    position: relative;
}
.product-image .hover-img {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.product-image:hover .hover-img {
    opacity: 1;
    visibility: visible;
}
.product-image:hover img.default-img {
    opacity: 0;
    visibility: hidden;
}
.product-type {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 10px;
}
.acc-order-button .btn svg {
    margin: 0 5px 0 0;
    width:15px;
  height:15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 100px transparent inset;
    transition: background-color 5000s;
    -webkit-text-fill-color: #fff !important;
}
.acc-order-history ins {
    font-size: 14px;
    line-height: 1;
}
/************** video product page css *************/
deferred-media.deferred-media {
    position: relative;
    display: block;
}
.media>*:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.deferred-media[loaded]>.deferred-media__poster {
    display: none !important;
}
.product__modal-opener:not(.product__modal-opener--image) {
    display: none;
}
.deferred-media__poster-button.motion-reduce {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
    padding: 10px;
    background: var(--second-color);
    border-radius: 30px;
}
.deferred-media__poster-button.motion-reduce svg {
    fill: var(--black);
    width: 20px;
    height: 20px;
}
.deferred-media:not([loaded]) template {
    z-index: -1;
}
.cart-item__price-wrapper {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
.remove-btn a {
    display: block;
}
.remove-btn a svg {
    height: 100%;
    width: 100%;
}
/* review */
.jdgm-star {
    font-weight: normal !important;
}
.product .jdgm-widget-actions-wrapper {
    margin: 0;
}
.product .jdgm-rev-widg {
    border: none;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0px 15px 40px;
}
.product .jdgm-rev-widg .jdgm-rev-widg__summary {
    align-items: start !important;
}
.product-detail-left .jdgm-prev-badge {
    display: flex !important;
    gap: 15px;
    margin: 0px 0 15px;
}
a.product-write-review.d-flex {
    gap: 5px;
}
.jdgm-widget:not(.jdgm-review-widget--small, .jdgm-review-widget--medium) .jdgm-write-rev-link {
    margin-right: 0;
}
.jdgm-widget .jdgm-btn.jdgm-btn {
    width: auto;
}
.jdgm-form__title {
    margin-top: 15px !important;
    text-align: center;
}
.jdgm-form {
    border: 1px solid var(--second-color);
    text-align: left;
}
.jdgm-row-actions {
    display: none !important;
}
.jdgm-rev-widg__body {
    position: relative;
    border: 1px solid var(--second-color);
    padding: 15px;
}
.jdgm-rev-widg__body .jdgm-rev {
    border-top: 0;
    padding: 0;
}
.jdgm-rev-widg__body .jdgm-rev:last-of-type {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}
.jdgm-paginate {
    border-top: none !important;
}
.jdgm-row-rating {
    border-bottom: 1px solid rgba(51, 153, 153, 0.1);
    border-color: var(--jdgm-secondary-color);
    padding-bottom: 10px;
    margin-bottom: 5px;
}
.collection .jdgm-star,
.main-hiro-pro-box.bg-black .jdgm-star,
.jdgm-rev-widg .jdgm-star,
.jdgm-form .jdgm-sort-dropdown,
.jdgm-sort-dropdown-wrapper .jdgm-sort-dropdown-arrow,
.bestseller-section .jdgm-star,
.video-bottom-section .jdgm-star {
    color: var(--white) !important;
}
.main-hiro-left-bottom .jdgm-star {
    color: var(--second-color) !important;
}
.collection .jdgm-prev-badge,
.product-cont-top .jdgm-prev-badge,
.main-hiro-section .jdgm-prev-badge {
    margin-bottom: 10px;
}
.jdgm-write-rev-link.jdgm-write-rev-link {
    background: var(--white) !important;
    color: var(--black) !important;
}
.jdgm-widget-actions-wrapper,
.jdgm-form input[type="text"] {
    border-color: var(--white) !important;
}
.jdgm-btn--solid,
input[type=submit].jdgm-btn--solid {
    background: var(--white) !important;
    color: var(--black) !important;
}

.shopify-app-block .jdgm-widget .jdgm-star,
.jdgm-widget .jdgm-star {
    font-size: 12px;
}
.qv_slider .slick-arrow svg path {
    fill: var(--black);
}
.collection-list .card-wrapper {
    padding: 10px;
}
.collection-list .card-wrapper .card-media {
    margin-bottom: 15px;
}
.collection-list .card-wrapper h5{
  margin-bottom:10px;
}
.quickview-popup .price-item--regular,.quickview-popup .price-item--sale{
  color:var(--black);
}
.quickview-popup .price-item--regular{
  font-size:22px;
      font-weight: 600;
}
.quickview-popup .price-item--sale INS{
  font-size:14px;
}
.webi-mini-cart-footer .checkout-btn:hover{
  color: var(--white);
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
}
.webi-mini-cart-footer .checkout-btn:hover svg path{
  fill: var(--white);
}
.predictive-search::-webkit-scrollbar,.quickview-popup::-webkit-scrollbar {
    width: 5px;
}
.predictive-search::-webkit-scrollbar-track,.quickview-popup::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.predictive-search::-webkit-scrollbar-thumb,.quickview-popup::-webkit-scrollbar-thumb {
    background-color: #888;
}
.footer-subscribe-col h3 b{
  display:inline;
}
.new-featured-section .product-card .link-btn{
  justify-content:flex-start;
}
.quickview_popup_data .pdp-right-column .section-title h2{
  font:var(--h3);
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.quickview_popup_data .pdp-right-column .section-title p{
  overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}
  .recover-password .form-container:last-of-type .btn-secondary:first-of-type{
    margin-right:10px !important;
  }
.register-page .form-message-success{
      border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
  margin-bottom:10px;
}
/*================= reset password page =============*/
.reset-password{
  color: var(--black);
    background-color: #f8f8f8;
  padding: 20px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
}
.reset-password .form-container {
  padding: 0;
  border: none;
}
.reset-password label {
  text-align: left;
  width: 100%;
}
.customer.reset-password {
  text-align: center;
}
.reset-password input{
  color: var(--black);
  border-radius:10px;
}
.reset-password input::placeholder{
    color: var(--black);
}
.reset-password h3{
  margin-bottom: 15px;
}
.my-resetpwd-sec .form__message{
  justify-content:center;
  margin-top:10px;
  margin-bottom:0;
  font-size:14px;
}
.my-resetpwd-sec .form__message_error {
    color: #ff0000;
}
.my-resetpwd-sec .reset-password-error{
  text-align:center;
  font-size:16px;
   margin-top:0px;
  margin-bottom:10px !important;
      justify-content: center;
}
.reset-password-btn:hover,
.reset-password-btn:focus{
  background:var(--theme-color);
}
.wishlist-prod-remove ,.compare-prod-remove{
  display:inline-flex;
  cursor:pointer;
}
.product-detail-right .pdp-whislist-btn{
  background:transparent !important;
}
.product-detail-right .pro-wishlist.active svg path {
    fill: var(--black) !important;
}
.jdgm-rev-widg__summary-stars{
     margin-bottom: 10px !important;
    display: block;
}
.product .bestseller-itm .product-card-inner{
  border:1px solid var(--border-color);
}
.recent-slider .slick-arrow{
    background:var(--theme-color);
  }
.recent-slider .slick-arrow svg{
  fill:var(--white);
  
}
.recent-slider .slick-list{
  margin:0 -10px;
}
.jdgm-review-widget--medium .jdgm-write-rev-link, .jdgm-review-widget--medium .jdgm-ask-question-btn{
  max-width:fit-content !important;
}
.jdgm-form textarea:focus, .jdgm-form textarea:focus-visible,
.jdgm-form input[type="email"]:focus, .jdgm-form input[type="email"]:focus-visible{
  border:1px solid #e4e4e4 !important;
}
.jdgm-notification{
  color:var(--white) !important;
   border-color: var(--border-color) !important;
}
.jdgm-notification__title:before{
  border:1px solid var(--border-color);
}
.jdgm-histogram__bar-content{
  background:var(--white) !important;
}
.template-search .template-search__search .search__input{
  padding-right:50px;
}
.template-search__results .product-card .flip-countdown.simple-countdown,
.product-filter-right-column .product-card .flip-countdown.simple-countdown{
  max-width:fit-content;
  width:100%;
  margin:0 auto;
  top:70%;
}
.cartOpen .fixed-headr-left,.cartOpen .header-style-one{
  border:none;
}
.jdgm-rev__author{
  color:var(--white) !important;
}
.jdgm-write-rev-link.jdgm-write-rev-link{
      max-width: fit-content !important;
      padding: 10px 40px;
}
/* ======comment========== */
.comment-item-wrapper .comment-item {
    border: 1px solid var(--border-color);
    padding: 20px;
}
.comments.comment-item-wrapper {
    margin: 30px auto;
}
.comment-item-wrapper .comment-item .comment-item-inner {
    gap: 20px;
}
.comment-item-wrapper .comment-item .comment-item-image {
    width: 54px;
    height: 54px;
    border: 1px solid #dddddd;
    padding: 5px;
    border-radius: 50%;
}
.comment-item-wrapper .comment-item .comment-item-image svg {
    width: 100%;
    height: 100%;
}
.comment-item-wrapper .comment-item .comment-item-image svg path {
    fill: #dddddd;
}
.comment-item-wrapper .comment-item .comment-item-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.comment-item-content .comment-top-content {
    margin-bottom: 15px;
}
.comment-item-content .comment-top-content h6 {
    font-family: var(--first-font);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 8px;
}
.comment-item-wrapper .comment-item:not(:last-of-type) {
    margin: 0 0 15px;
}
/*================= reset password page =============*/
.reset-password {
    border: 1px solid var(--border-color);
    padding: 20px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}
.reset-password .section-title h3 {
  margin: 0 0 15px;
}
.reset-password .form-container {
  padding: 0;
  border: none;
}
.reset-password label {
  text-align: right;
  width: 100%;
}
.customer.reset-password {
  text-align: center;
}
.my-resetpwd-sec .row{
  margin:0;
}
.login-page .form-message-success{
  margin-bottom:10px;
  color:#24d57a;
}
.reset-password .form-container .row {
  margin: 0;
}
.reset-password .form-container .row [class*=col-] {
  padding: 0;
}
.site-footer .payment-image-wrapper {
    gap: 5px;
}
.site-footer .payment-image-wrapper .payment-image img {
    width: 40px;
}
.nice-select.disclosure__button[aria-expanded=true]:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}
.site-header .megamenu-card .megamenu-image {
    position: relative;
    background-color: var(--second-color);
}
.site-header .megamenu-card .megamenu-content {
    margin-top: 15px;
    text-align: center;
}
.site-header .megamenu-card .megamenu-content a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  color: var(--black);
}
.site-header .megamenu-card .megamenu-image a {
    padding-top: 80%;
    position: relative;
    display: block;
}
.site-header .megamenu-card .megamenu-image a img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.site-header .megamenu-card .megamenu-content span {
    font-size: 18px;
    line-height: 1;
}
/*============ zoom  =========*/
.pdp-itm-img .zoomImg {
    background: var(--white);
    cursor: crosshair;
}
a.pdp-itm-img {
    display: block;
}
.slick-lightbox-inner .slick-prev {
    transform: translateY(-50%) scale(-1);
    -webkit-transform: translateY(-50%) scale(-1);
    -moz-transform: translateY(-50%) scale(-1);
    -ms-transform: translateY(-50%) scale(-1);
    -o-transform: translateY(-50%) scale(-1);
}
/**** products-add-cart-sticky CSS ****/
.products-add-cart-sticky {
    display: none;
    z-index: 3;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    font-size: 20px;
    width: 100%;
    max-height: 100%;
    transition: all 500ms ease-in-out 0s;
    -webkit-transform: translateY(120px);
        -ms-transform: translateY(120px);
            transform: translateY(120px);
    -webkit-transition: all 500ms ease-in-out 0s;
    -moz-transition: all 500ms ease-in-out 0s;
    -ms-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    border-top: 1px solid var(--border-color);
  background-color: var(--second-color);
}
.products-add-cart-sticky.show-btn {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.products-add-cart-sticky .sticky-pro-inner {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
    gap: 15px;
}
.products-add-cart-sticky .sticky-pro-inner .text-checkbox .checkbox input[type=checkbox]+.checkbox-label {
    padding: 8px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn {
    font-size: 14px;
}
.products-add-cart-sticky .text-checkbox .checkbox .clr {
    width: 14px;
    height: 14px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.sticky-pro-info {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-items: center;
    gap: 10px;
  max-width:250px;
  width:100%;
}
.sticky-pro-info img {
    height: 60px;
    max-width: 80px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    border: 1px solid var(--black);
}
.sticky-pro-info .sticky-data .price ins {
    font-size: 16px;
}
 .sticky-pro-info .sticky-data .price del{
   font-size:14px;
 }
.sticky-data h3 {
    font: var(--h6);
    margin-bottom: 8px;
      display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  color:var(--black);
}
.sticky-pro-info .sticky-data .price {
    margin-bottom: 0;
  color: var(--black);
  font-size:16px;
}
.products-add-cart-sticky .nice-select {
    max-width: 185px;
    padding: 10px 30px 10px 15px;
  color:var(--black);
  background-image:none;
  border:1px solid var(--black);
  background-color:transparent;
}
.products-add-cart-sticky .nice-select::after {
  border-color: var(--black);
}
.products-add-cart-sticky .nice-select.open::after{
  top:60%;
} 
.products-add-cart-sticky .nice-select .list {
  top: auto;
  bottom: 100%;
  margin: 0 0 5px;
  -webkit-transform: scale(.75) translateY(21px);
      -ms-transform: scale(.75) translateY(21px);
          transform: scale(.75) translateY(21px);
}
.products-add-cart-sticky .nice-select.open .list {
      -webkit-transform: scale(1) translateY(0);
          -ms-transform: scale(1) translateY(0);
              transform: scale(1) translateY(0);
}
.products-add-cart-sticky .prorow-lbl-qntty {
  max-width: unset;
  width: auto;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn.loading>svg {
  display: none;
}
.loading-overlay__spinner {
  width: auto !important;
}
.products-add-cart-sticky .qty-spinner button svg path {
    fill: var(--black);
}
.products-add-cart-sticky .qty-spinner input {
  color: var(--black);
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn {
  border-color: var(--black);
}

.products-add-cart-sticky .qty-spinner {
  height: 40px;
  border-color:var(--black);
}
/* ============cartdrawer============== */
.cartOpen .cartDrawer .closecart {
    opacity: 1;
    visibility: visible;
}
.cartDrawer .closecart {
    position: absolute;
    left: -38px;
    top: 20px;
    width: 20px;
    height: 20px;
    opacity: 0;
    visibility: hidden;
}
/* cart-progress-bar */
.cart-progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

progress[value] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    position: relative;
    height: 7px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

progress[value]::-webkit-progress-bar {
    position: relative;
    border-radius: 5px;
    background-color: #F2F2F2;
}

progress[value]::-webkit-progress-value {
    position: relative;
    border-radius: 5px;
    background-color: var(--theme-color);
}

progress[value]::-moz-progress-bar {
    position: relative;
    border-radius: 5px;
    background-color: var(--theme-color);
}

progress:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -o-linear-gradient(315deg,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0) 25%,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            rgba(255, 255, 255, 0) 75%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    -webkit-animation: move 5s linear infinite;
    border-radius: 5px;
    overflow: hidden;
    background-size: 45px 45px;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -60px -60px;
    }
}

@keyframes move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -60px -60px;
    }
}

.progress-icon {
    position: relative;
    top: 25px;
    width: 55px;
    height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--theme-color);
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    -webkit-animation: blinkers 1.5s infinite;
    animation: blinkers 1.5s infinite;
}

.progress-icon svg {
    height: 40px;
    width: 40px;
}

.progress-icon svg path {
    fill: var(--white);
}

@keyframes blinkers {
    0% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }

    50% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }

    100% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }
}

@-webkit-keyframes blinkers {
    0% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
    }

    50% {
        -webkit-transform: translateY(-50%) scale(0.95);
        transform: translateY(-50%) scale(0.95);
    }

    100% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }
}

/* cart-progress-bar end */
/* releted product cart popup */
.cartDrawer .related-cart-wrp{
  margin-top: 25px;
}
.cartDrawer .related-cart-wrp h3{
  margin-bottom: 15px;
  font-size: 22px;
}
.cartDrawer .related-cart-inner{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--border-color);
  padding: 10px;
}
.cartDrawer .related-cart-inner .related-image a{
  position: relative;
  padding-top: 125%;
  display: block;
}
.cartDrawer .related-cart-inner a img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.cartDrawer .related-image{
    position: relative;
    max-width: 80px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    width: 100%;
    background: whitesmoke;
    padding: 10px;
}
.cart-variable p {
    color: var(--black);
  margin-bottom:12px;
}
.cartDrawer .related-cart-text{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 15px;
}
.cartDrawer .related-cart-text h4{
  font-size: 18px;
  margin-bottom: 12px;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.cartDrawer .related-cart-text a{
  text-decoration: underline;
}
.cartDrawer .related-cart-price{
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}
.cartDrawer .pvarprice svg path{
  fill: red;
}
.cartDrawer .cart-slider{
  position: relative;
}
/* releted product cart popup  end*/
.mini-cart-footer {
    -webkit-box-shadow: 0 0 8px #0000004d;
    box-shadow: 0 0 8px #0000004d;
}
.mini-cart-top {
    padding: 20px;
}
.cartDrawer .mini-cart-footer-icons {
    margin-bottom: 15px;
}
.cartDrawer .mini-cart-footer-icons .footer-bottom-icon {
    width: auto;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    padding: 12px 35px;
    border: none;
    width: 47%;
    background-color: var(--theme-color);
    border-radius: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.cartDrawer .mini-cart-footer-icons svg {
    width: 30px;
    height: 30px;
}
.cartDrawer .mini-cart-footer-icons svg path {
    stroke: var(--white);
}
.cartDrawer .mini-cart-footer-total-row {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    margin: 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-color);
}
.cartDrawer .mini-cart-footer-total-row div {
    padding: 0 10px;
}
.mini-total-lbl {
    font-weight: 500;
    margin-bottom: 7px;
    display: block;
    line-height: 1;
}
.cartDrawer .mini-total-iteam p {
    font-size: 16px;
}
.cartDrawer .mini-cart-footer-total-row div.mini-Subtotal {
    text-align: right;
}
.mini-cart-bottom {
    width: 100%;
}
.cartDrawer .mini-cart-bottom .cart-bottom-btn {
    padding: 15px 20px;
    width: 50%;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    background-color: var(--black);
}
.cartDrawer .mini-cart-bottom .view-cart-btn {
    background-color: var(--second-color);
  color:var(--black);
  border-right: 1px solid var(--border-color);
}
/* ============cart-gift============ */
.cart-page-section #cart-gift-wrap {
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  background-color: var(--border-color);
  padding: 15px;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-align-items: center;
}
.cart-page-section #cart-gift-wrap svg path{
  fill:var(--black);
}
.cart-page-section #cart-gift-wrap .continue-btn {
  margin-right: 0;
}
.cart-page-section #cart-gift-wrap .continue-btn .gift_wrap_btn{
  border:1px solid var(--black)!important;
}
.cart-page-section #cart-gift-wrap .continue-btn .gift_wrap_btn:hover{
  background-color:var(--black) !important;
  color :var(--white);
}
.cart-page-section #cart-gift-wrap .add-gift {
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-align-items: center;
  max-width: 300px;
  width: 100%;
  color:var(--black);
}
.coupon-popup,
.gift-popup {
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 4px 8px 0 rgb(0 0 0);
          box-shadow: 0 4px 8px 0 rgb(0 0 0);
  z-index: 5;
  background: var(--white);
  color: var(--black);
  width: 100%;
  height: auto;
  -ms-transform: translateY(120%);
  -webkit-transform: translatey(120%);
  transform: translateY(120%);
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -o-transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.coupon-popup.active,
.gift-popup.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translatey(0%);
      -ms-transform: translatey(0%);
          transform: translatey(0%);
}
.coupon-popup .coupon-txt {
  gap: 10px;
  margin-bottom: 12px;
  color: var(--black);
}
.coupon-popup .common-close,
.gift-popup .common-close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
}
.coupon-popup .common-close svg,
.gift-popup .common-close svg {
  height: 18px;
  width: 18px;
}
.coupon-popup .common-close svg path,
.gift-popup .common-close svg path {
  fill: var(--black);
}
/* ****** coupon popup css **** */
.coupon-code {
  position: relative;
}
.coupon-code input {
  height: 45px;
  width: 100%;
  border-color: var(--border-color);
  padding: 14px 115px 14px 15px;
   color: var(--black);
}
.coupon-code input::-webkit-input-placeholder {
  color: var(--black);
}
.coupon-code input::-moz-placeholder {
  color: var(--black);
}
.coupon-code input:-ms-input-placeholder {
  color: var(--black);
}
.coupon-code input::-ms-input-placeholder {
  color: var(--black);
}
.coupon-code input::placeholder {
  color: var(--black);
}
.cartDrawer .mini-cart-body,
.coupon-popup .coupon-body,
.gift-popup .gift-body {
  overflow-y: auto;
  padding: 30px;
  flex: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
   color: var(--black);
}
.coupon-popup .coupon-txt svg {
  height: 30px;
  width: 30px;
}
.coupon-code .apply-coupon-btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.checkbox-custom label::before {
  border: 1px solid var(--theme-color);
}
.cart__warnings {
  display: none;
}
.cart-page-section .cart-page-section {
  padding: 0;
}
.cart-item__vendor {
  margin: 0 0 10px;
}
.cart__footer-wrapper .cart__blocks .price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 12px;
    gap: 10px;
}
.cart__ctas {
    margin-top: 10px;
}
.cart__footer-wrapper .cart__blocks .btn {
    padding: 10px 12px;
}
.cart-slider .slick-dots {
  position: unset;
  margin: 20px 0 0;
}
.cart-slider .slick-list {
  margin: 0 -10px;
}
.cartDrawer .related-cart-inner {
  margin: 0 10px;
}
.mini-cart-details .remove-item svg {
    height: 15px;
    width: 15px;
}
.is-empty #cart-gift-wrap{
  display: none;
}
.is-empty .cart__warnings{
  display: block;
}
body.account table tr td:first-child a{
  text-decoration: underline;
}
#AddAddress .form-group label {
    width: 100%;
    text-align: left;
}

.currency .nice-select .nice-select-arrow,
.languages .nice-select,
.currency .nice-select .list li,
.languages .disclosure__list-wrapper ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    line-height:1;
}

.lang-dropdown .nice-select.disclosure__button[aria-expanded=true]:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.cookiestatus .cookie-block #cookie_message {
    z-index: 3 !important;
}

.cookiestatus .cookie-block.bottom_fix #cookie_message {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
}

.cookiestatus .cookie-block #cookie_message button.btn {
    margin: 0 !important;
}


.cookiestatus .cookie-block #cookie_message>span {
    line-height: normal !important;
}

.mobile-menu-wrapper .menu-close-icon svg {
    cursor: pointer;
}

.cartDrawer.is-empty .cart__warnings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    margin: 0;
    color: var(--black);
}

.is-empty .cart__empty-text {
    margin: 15px 0;
}

.cartDrawer.is-empty .cart__warnings .btn svg {
    margin: 0 10px 0 0;
}

.mini-cart-details .remove-item svg {
    height: 15px;
    width: 15px;
}

.cartDrawer .cart-variable .swatch-lbl:not(:last-of-type) {
    margin: 0 0 5px;
}

.cart-slider .slick-list {
    margin: 0 -10px;
}

.cartDrawer .related-cart-inner {
    margin: 0 10px;
}

.slick-dots li {
    cursor: pointer;
}

.predictive-search {
    padding: 30px 0 !important;
}

.predictive-search__results-list .predictive-search__item {
    position: relative;
    display: block;
    padding-top: 84%;
}

.predictive-search__results-list .predictive-search__item img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.quickview_popup_data {
    padding: 30px 0;
    max-height: 90vh;
    overflow-y: auto;
}

.quickview-close {
    cursor: pointer;
}

.qv_slider .slick-list {
    margin: 0 -10px;
}

.qv_slider .slick-slide {
    margin: 0 10px;
}

.variant-webi .product-labl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    width: 100%;
    margin: 0 0 8px;
}

.variant-webi input {
    display: none;
}

.variant-webi label {
    display: block;
    cursor: pointer;
}

.variant-webi .var-image {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 60px !important;
    width: 60px !important;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color);
}

.variant-webi input:checked+label.var-image {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.variant-webi .varcolor:not(.var-image) {
    height: 16px;
    width: 16px;
    border: 1px solid var(--black);
    border-radius: 50%;
}

.variant-webi input:checked+label.varcolor:not(.var-image) {
    -webkit-box-shadow: 0 0 0 1px #333, inset 0 0 0 2px #fff;
    box-shadow: 0 0 0 1px #333, inset 0 0 0 2px #fff;
    border: none;
}

.variant-webi .size-select {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.variant-webi .varsize {
    padding: 5px 10px !important;
    line-height: 1;
    font-size: 14px;
    border: 1px solid var(--border-color);
}

.variant-webi input:checked+label.varsize {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}



.quickview_popup_data .pdp-right-column .section-title {
    margin-bottom: 15px;
}

.quick-active.cartOpen .overlay:after {
    z-index: 5;
}
.quickview-popup .variant-webi .size-select{
  margin:0 !important;
}
.product .site-footer{
  padding:70px 0 100px !important;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn svg {
    margin: 0 8px 0 0;
  height:16px;
  width :16px;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn:hover{
  color:var(--white) !important;
  background-color:var(--black) !important;
}
.products-add-cart-sticky .sticky-pro-inner .sticky-btn:hover svg path{
  fill:var(--white) !important;
}
.products-add-cart-sticky .qty-spinner input {
    color: var(--black);
}

.products-add-cart-sticky .qty-spinner svg path {
    fill: var(--black);
}

.loading-overlay__spinner {
    width: auto !important;
}

.product-form__input {
    border: none;
}

.product-form__input--dropdown .form__label {
    display: block;
    width: 100%;
    margin: 0 0 10px;
}

.shopify-payment-button__button--unbranded {
    height: auto !important;
    min-height: auto !important;
}

.jdgm-write-rev-link.jdgm-write-rev-link {
    max-width: -webkit-fit-content !important;
    max-width: -moz-fit-content !important;
    max-width: fit-content !important;
    width: auto !important;
}

.jdgm-cancel-rev,
.jdgm-submit-rev {
    border-radius: 10px !important;
}

.jdgm-rev-widg__body {
    margin: 20px 0 0 !important;
}

.pdp-thumb-img {
    cursor: pointer;
}



.facet-filters__sort {
    border-color: var(--white);
}

.close-filter {
    cursor: pointer;
}

table tr td {
    vertical-align: middle;
}

.cart__footer .cart__blocks .price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 15px;
}


.cart-item__vendor {
    margin: 0 0 10px;
}

.gift-cart-dtl span {
    flex: 1;
}

/***** NICE-SELECT (SIMPLIFIED) *****/
.nice-select{
  -webkit-tap-highlight-color:transparent;
  position:relative;
  display:block;
  width:100%;
  cursor:pointer;
  user-select:none;
  outline:none;
  text-align:left !important;
  font:normal 14px/1 inherit;
  padding:10px 35px 10px 15px;
  background:var(--white);
  border:1px solid var(--border-color);
  transition:all .2s ease-in-out;
  background-image:none;
}

/* arrow */
.nice-select:after{
  content:'';
  position:absolute;
  right:14px;
  top:50%;
  width:8px;
  height:8px;
  margin-top:-5px;
  pointer-events:none;
  border-right:2px solid var(--white);
  border-bottom:2px solid var(--white);
  transform:rotate(45deg);
  transform-origin:66% 66%;
  transition:transform .15s ease-in-out;
}
.index .nice-select:after{
  border-right-color:var(--black) !important;
  border-bottom-color:var(--black) !important;
}
.nice-select.open:after{ transform:rotate(-135deg); }

/* disabled */
.nice-select.disabled{
  pointer-events:none;
  color:var(--border-color);
  border-color:var(--border-color);
}
.nice-select.disabled:after{ border-color:#ccc; }

/* dropdown list */
.nice-select .list{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  margin-top:4px;
  padding:0;
  overflow:hidden;
  background:var(--white);
  box-sizing:border-box;
  box-shadow:0 0 0 1px rgba(68,68,68,.11);
  opacity:0;
  pointer-events:none;
  transform:scale(.75) translateY(-21px);
  transform-origin:50% 0;
  transition:all .2s cubic-bezier(.5,0,0,1.25), opacity .15s ease-out;
  z-index:2;
}
.nice-select.open .list{
  opacity:1;
  pointer-events:auto;
  transform:scale(1) translateY(0);
}

/* options */
.nice-select .option{
  list-style:none;
  cursor:pointer;
  outline:none;
  padding:10px 15px;
  font-size:13px;
  line-height:1;
  color:var(--black);
  font-weight:400;
  transition:all .2s;
}


/* selected + disabled */
.nice-select .option.selected{ font-weight:700; }
.nice-select .option.disabled{
  background:transparent;
  color:#999;
  cursor:default;
}

/* helpers */
.nice-select.wide .list{ left:0 !important; right:0 !important; }
.nice-select.right{ float:right; }
.nice-select.right .list{ left:auto; right:0; }
.nice-select.small{ font-size:12px; height:36px; line-height:34px; }
.nice-select.small:after{ width:4px; height:4px; }
.nice-select.small .option{ min-height:34px; line-height:34px; }
.nice-select .list:hover .option:not(:hover){ background:transparent !important; }
.index .site-header .nice-select{
  color:var(--black) !important;
  background-color :transparent !important;
}

.site-header .nice-select{
  color:var(--white) !important;
  background-color :transparent !important;
}

/* .site-header .announcebar-right ul{
  gap:15px;
} */
.quickview-popup .quickview_popup_data::-webkit-scrollbar {
    width: 5px;
}
.quickview-popup .quickview_popup_data::-webkit-scrollbar-thumb {
    background-color: #888;
}
.quickview-popup .quickview_popup_data::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.size-popup .size-form::-webkit-scrollbar {
    width: 5px;
}
.size-popup .size-form::-webkit-scrollbar-thumb {
    background-color: #888;
}
.size-popup .size-form::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.product-detail-left .size-selectors{
  display:flex;
  flex-direction:column;
  align-items:start;
}
.site-header .menu-dropdown .mega-menu-container .row [class*="col-"]{
  padding:0 15px;
}
 .cart-table .name{
   max-width :36% !important;
   width :100% !important;
 }
.site-header .nice-select{
  border :1px solid var(--black);
}
/* =============== RESPONSIVE CSS =============== */
@media (min-width:768px) {
    .header-style-one .main-navigationbar .menu-items-col .main-nav {
        display: flex;
        align-items: center;
    }
    .desk-only {
        display: block !important;
    }
    .mobile-only {
        display: none !important;
    }
  .sticky-pro-info {
        max-width: 250px;
        width: 100%;
    }
  .product-filter-right-column,.product-heading-row .product-heading-right-column {
  border-left:1px solid var(--white);
}
}
@media screen and (max-width:1800px) {
  .fixed-headr-left {
    display: none;
  }

   .show-on-tblt { display: flex; 
align-items: center;}
  .hide-on-tblt{display: none};
}
@media screen and (max-width:1360px) {

    .main-hiro-left {
        padding: 30px 0 0 0;
    }
    .show-on-tblt {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }
}
@media screen and (max-width:1260px) {
    /* .header-style-one .announcebar-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    
    .header-style-one .announcebar #announceclose {
        position: relative;
        right: unset;
        top: unset;
        transform: unset;
        margin-left: 15px;
    } */
    .footer-col:not(:last-of-type) {
        padding-right: 30px;
    }
    .footer-bottom {
        padding-top: 30px;
    }
    .footer-link .contactlink {
        font-size: 18px;
    }
    .site-footer {
        padding: 40px 0;
    }
    .offset-left {
        margin-left: 0;
        padding: 0 15px;
    }
    .offset-right {
        margin-right: 0;
        padding: 0 15px;
    }
    .section-title .subtitle {
        line-height: 1;
    }
    /***  MAIN HIRO SECTION CSS ***/
    .product-card-reverse .slick-dots {
        left: 15px;
        right: auto;
    }
    .main-hiro-right .product-content {
        padding: 15px 15px 40px;
    }
    .main-hiro-right .link-btn {
        justify-content: flex-start;
    }
    .profile-header .menu-dropdown {
        right: 20px;
    }
    .shopify-app-block .jdgm-review-widget--small .jdgm-rev-widg {
        padding: 16px 15px;
    }
}
@media screen and (max-width:1199px) {
    .out-of-stock-form {
   max-width: 45%;
  }
    .header-style-one .main-navigationbar .menu-items-col .main-nav {
        padding-left: 15px;
    }
  footer .footer-bottom-row div p{
  font-size:13px;
}
    /******** NEW FEATURED SECTION start ********/
      .feature-verticle h2 {
        font-size: 36px;
    }
  .feature-verticle .subheading{
    font-size:18px;
  }
    .feature-verticle h2,
    .feature-verticle .subheading {
        margin: 0px 10px 0px;
    }
    /******** PDP PAGE CSS start *********/
  
    .pdp-swtch-lbl {
        margin-bottom: 20px;
    }
    .product-detail-left .review-stars {
        margin: 20px 0;
    }
    .acc-order-button .btn {
        padding: 10px 15px;
    }
  .border-left-btn {
    margin-top: 50px;
}
  .slick-dots {
    bottom: 15px;
}
   .feature-pro-itm{
    height:100%;
  }
   .feature-pro-itm:not(:last-of-type){
     margin-bottom:15px;
  }
    .template-search__results .product-card .countdown-container.flip-countdown.countdown-block span {
    font-size: 10px;
}
   .cart-tble tr th:nth-child(2),
    .cart-tble tr td:nth-child(2) {
        width: 233px;
    }
}
@media screen and (max-width:991px) {
    .out-of-stock-form {
   max-width: 50%;
   padding: 50px 30px;
}
  .size-share-wrap{
    gap:10px;
  }
    :root {
        --h1: normal 600 32px/1.2 var(--first-font);
        --h2: normal 600 26px/1.2 var(--first-font);
        --h3: normal 600 20px/1.2 var(--first-font);
        --h4: normal 600 18px/1.2 var(--first-font);
        --h5: normal 600 16px/1.2 var(--first-font);
        --h6: normal 600 14px/1.2 var(--first-font);
    }

    .header-style-one .main-navigationbar .menu-items-col .main-nav {
        padding-left: 20px;
    }
    .header-style-one .main-navigationbar .menu-items-col .main-nav>li:not(:last-of-type) {
        padding-right: 15px;
    }
    /* .header-style-one .announcebar p {
        display: none;
    } */
    .header-style-one .main-navigationbar .menu-items-col .main-nav>li {
        padding: 20px 0;
    }
    .header-style-one .main-navigationbar .logo-col {
        max-width: 80px;
    }
    .header-style-one .main-navigationbar .menu-items-col .main-nav>li.has-item>a {
        padding-right: 15px;
    }
    .header-style-one .menu-right li a span {
        margin: 0 0 0 5px;
      font-size:13px;
    }
    .header-style-one .menu-right li a svg {
    width: 14px;
    height: 14px;
  }
   .lang-dropdown svg{
    width:17px;
    height:17px;
  }
  footer .footer-bottom-row ul{
  justify-content:start !important;
    display:flex;
}
   footer .footer-bottom-row {
     gap:10px;
   }
  .site-footer .payment-image-wrapper{
    justify-content:start !important;
  }

  .header-style-one .main-navigationbar .menu-items-col .main-nav>li>a{
    font-size:13px;
  }
    .header-style-one .menu-right li a span .wishcount {
        line-height: 1;
    }
    .footer-col:not(:last-of-type) {
        padding-right: 10px;
    }
    .pro-swatch {
        font-size: 10px;
    }
    .footer-subscribe-col {
        max-width: 260px;
        flex: 0 0 260px;
    }
    .footer-widget h4 {
        font-size: 16px;
        font-weight: 700;
    }
    .padding-top {
        padding-top: 40px;
    }
    .padding-bottom,
    .product .bestseller-section {
        padding-bottom: 40px;
    }
    .video-lbl {
        font-size: 11px;
    }
    .poster-button {
        width: 30px;
        height: 30px;
    }
    .video-play-colum {
        max-width: 112px;
    }
    /***  MAIN HIRO SECTION CSS ***/
    .main-hiro-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    .main-hiro-col:last-of-type {
        display: none;
    }
    .banner-labl {
        right: auto;
    }
    /******** NEW FEATURED SECTION start ********/
    .feature-pro {
        flex-direction: row;
        width: 100%;
    }
    .feature-pro-itm {
        height: auto;
        margin-top: 30px;
        max-width: calc(50% - 10px);
        width: 100%;
    }
    /********* BLOG PAGE CSS start  **********/
    .blog-widget-inner {
        padding: 25px 15px;
    }
    .blog-widget-inner.big-blog-widget {
        padding: 35px 15px 25px;
    }
    .blog-widget-inner p {
        margin: 12px 0;
    }
    .blog-grid-section .blog-cat li {
        padding: 10px 10px;
        font-size: 10px;
    }
    /********** CART PAGE CSS starts **********/
    .cart-summery {
        margin-top: 30px;
    }
    .cart-summery .btn {
        max-width: 300px;
        margin-left: auto;
    }
    /********** CART PAGE CSS end **********/
    .submit-btn {
        max-width: 200px;
        margin: 20px 0 0;
    }
    .article-banner .blog-cat {
        margin: 20px 0;
    }
    .art-auther {
        margin-bottom: 15px;
    }
    .quote-box {
        padding: 15px 0 25px 60px;
    }
    .quote-box h3 {
        font-size: 15px;
    }
    .latest-article-slider-section .section-title {
        padding-top: 40px;
        margin-bottom: 26px;
    }
    .my-acc-right-content .qty-spinner input,
    .my-acc-right-content table tr th,
    .my-acc-right-content table tr td {
        font-size: 12px;
    }
    .ttl-pric {
        font-size: 20px;
    }
/****  VIDEO BOTTOM CSS *****/
.video-bottom-section .container {
    margin-top: 30px;
}

.video-bottom-section .bg-black .product-card .product-card-inner{
    background: var(--border-color);
    border-radius: 0px;
    padding: 0px !important;
}

.video-bottom-section .bg-black .product-card .product-image{
    padding: 0px;
}

.video-bottom-section .slick-slider .slick-arrow{
    display: none !important;
}

.video-bottom-section .product-image:hover img.default-img{
    display: none !important;
}

/* ── WISH / ICON STACK ── */
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp{
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    position: absolute !important;
    top: 2px !important;
    right: 3px !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp > div{
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp label,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp a{
    display: grid !important;
    place-items: center !important;
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    background: rgba(255,255,255,.95) !important;
    border: 1px solid rgba(0,0,0,.14) !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.10) !important;
    outline: none !important;
    text-decoration: none !important;
    line-height: 0 !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp label:hover,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp label:focus,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp label:focus-within,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp a:hover,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp a:focus{
    background: rgba(255,255,255,.95) !important;
    border-color: rgba(0,0,0,.22) !important;
    outline: none !important;
    box-shadow: 0 6px 14px rgba(0,0,0,.12) !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp .checkmark{
    display: none !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp svg{
    width: 14px !important;
    height: 14px !important;
    display: block !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp svg,
.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp svg *{
    fill: #111 !important;
    stroke: #111 !important;
}

.video-bottom-section .bestseller-itm .product-image.card__media .wish-lbl-wrp .compare-now{
    display: none !important;
}

/* ── PRECIO SIN FONDO ── */
.video-bottom-section .bestseller-itm .product-content .product-cont-bottom .price-btn{
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.video-bottom-section .bestseller-itm .price,
.video-bottom-section .bestseller-itm .price-item--regular{
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-align: left !important;
}

/* ── ELEMENTOS OCULTOS ── */
.video-bottom-section .bestseller-itm .price-item--sale,
.video-bottom-section .bestseller-itm .price__compare,
.video-bottom-section .bestseller-itm .price-item--compare,
.video-bottom-section .bestseller-itm .product-content .link-btn,
.video-bottom-section .bestseller-itm .size-selectors,
.video-bottom-section .bestseller-itm .variant,
.video-bottom-section .bestseller-itm .product-form__input,
.video-bottom-section .bestseller-itm .product-card__swatches,
.video-bottom-section .bestseller-itm .swatch,
.video-bottom-section .bestseller-itm .rating,
.video-bottom-section .bestseller-itm .spr-badge,
.video-bottom-section .bestseller-itm .review,
.video-bottom-section .bestseller-itm .product-description,
.video-bottom-section .bestseller-itm .read-more,
.video-bottom-section .bestseller-itm .btn,
.video-bottom-section .bestseller-itm .quick-add,
.video-bottom-section .bestseller-itm .product-content .product-cont-bottom .price-btn product-form,
.video-bottom-section .bestseller-itm .product-content .product-cont-bottom .price-btn product-form .cart-btn,
.video-bottom-section .bestseller-itm .product-content .product-cont-bottom .price-btn product-form .product-form__submit{
    display: none !important;
}

    /**** NEW FEATURED REVERSE  CSS start*****/
    .feature-title {
        order: 1;
    }
    .feature-img {
        order: 2;
    }
    .feature-pro {
        order: 3;
    }
    /****  VIDEO TOP CSS *****/
    .vedio-top-left-contnt {
        padding-left: 0;
    }
    .vedio-top-right a {
        min-height: 233px;
    }
    .vedio-top-section .row {
        margin-bottom: 40px;
        align-items: center;
    }
    .vedio-top-left-inner {
        padding-top: 0;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    /****  TESTIMONIAL SECTION CSS start *****/
    .testimonial-section .section-title {
        margin-bottom: 26px;
    }
    /*========= SHF PRODUCT REVIEW =========*/
    .product-detail-left .review-wrap .product-write-review {
        column-gap: 5px;
    }
    .product-detail-left .review-wrap .product-write-review svg {
        width: 12px;
        height: 12px;
    }
    .product-detail-left .review-stars {
        font-size: 12px;
    }
    .main-detail {
        margin: 0 0 30px;
    }
    .jdgm-widget .jdgm-temp-hidden {
        display: none !important;
    }
    .jdgm-row-stars {
        margin-bottom: 15px !important;
    }
    .product-first-section {
        padding: 35px 0 40px;
    }
  .quickview-close{
      width: 35px;
      height: 35px;
        right: 5px;
  }
    .cart-page-section{
    padding-bottom: 0px;
  }
  .register-form .submit-btn{
    margin-top:0 ;
  }
  .quickview-popup{
    max-width:calc(100% - 30px);
  }
  .home-cat-right .home-cat-right-inner p {
    margin-bottom: 20px;
    font-size: 16px;
}
  .feature-pro-itm:not(:last-of-type){
    margin-bottom:0;
  }
 .product-card .flip-countdown.simple-countdown{
      max-width: fit-content;
    width: 100%;
    margin: 0 auto;
 }
    .compare-pro-detail .compare-val-prod .prod-title, .wishlist-pro-detail .wishlist-val-prod .prod-title{
    font-size:16px;
  }
      .compare-pro-detail .prod-price ins,
  .wishlist-pro-detail .prod-price ins{
    font-size:16px;
  }
   .compare-pro-detail .prod-price del ins,  .wishlist-pro-detail .prod-price del ins{
     font-size:14px;
   }
  .size-table-wrapper {
    max-width: 80%;
  }
   .product-detail-left .section-title{
    margin-bottom:15px;
  }
  .cart__footer {
    margin: 30px 0 0;
}
  .aboutpage-btm-sec .about-us-box {
    padding: 15px;
}
  .about-us-section .about-us-box img{
    top:15px;
  }
  .blog-page-banner .common-banner-content p {
    margin-bottom: 20px;
}
  .blog-page-banner .section-title {
    margin-bottom: 20px;
}
   .contact-right-inner .contact-form .submit-btn{
    margin-top:0;
  }
}

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


/* =========================================================
            HEADER & NAVBAR 
========================================================= */
    /* .header-style-one .announcebar { display: none; } */
    /* Hide right side on mobile */

   .hide-on-tblt {
        display: none;
    }
    .main-hiro-left {
        padding: 30px 0 0 0;
    }
    .show-on-tblt {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }

  .header-style-one .main-navigationbar {
    padding: 14px 0 !important;
    min-height: 64px;
    box-shadow: 0 4px 55px rgba(24,58,64,.12);
  }
  .header-style-one .main-navigationbar .menu-items-col { justify-content: flex-end; }
  .header-style-one .main-navigationbar .logo-col { max-width: 130px !important; width: auto; }
  .header-style-one .main-navigationbar .logo-col img { max-height: 34px !important; width: auto; }

  .header-style-one .menu-right {
    padding-left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .header-style-one .menu-right li { flex: unset; position: relative; }
  .header-style-one .menu-right li,
  .header-style-one.dark-header .menu-right li,
  .index .header-style-one.dark-header .menu-right li { padding: 0; }
  .header-style-one .menu-right li:not(:first-of-type) { margin-left: 0 !important; }
  .header-style-one .menu-right li a .icon-lable { display: none !important; }

  .header-style-one .menu-right > li > a,
  .header-style-one .menu-right > li > button {
    padding: 6px !important;
    background: transparent;
    border: none;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }
  .header-style-one .menu-right li:last-of-type { width: auto; max-width: initial; }
  .header-style-one .menu-right li:last-of-type button { padding: 0 !important; background: transparent; border: none; }
  .header-style-one .menu-right li:last-of-type svg { width: 28px !important; }

  .header-style-one .menu-right li a svg,
  .header-style-one .menu-right li.cart-header a svg { height: 22px !important; width: 22px !important; }
  .header-style-one .menu-right li.cart-header .remove_item svg { height: 20px !important; width: 20px !important; }
  .header-style-one .menu-right li.headwish a span.wishcount { line-height: inherit; }

  .header-style-one .count {
    border: 0;
    background: var(--theme-color);
    height: 18px !important;
    width: 18px !important;
    line-height: 18px !important;
    position: absolute;
    top: 10px !important;
    right:10px !important;
    border-radius: 999px;
    color: var(--second-color);
    font-size: 11px !important;
  }
  .index .header-style-one.dark-header .count { background: red; color: var(--theme-color); }
  .index .header-style-one.dark-header .menu-right li .wishlist a { column-gap: 3px; align-items: center; }

  /* Profile dropdown */
  .profile-header .menu-dropdown { padding: 10px !important; min-width: 150px; left: -43px; margin: 18px 0 0; z-index: 9999; }
  .profile-header .menu-dropdown ul li { margin: 0; }

  /* Cart icon close */
  .cart-header .closecart,
  .header-style-one .menu-right .cart-header .closecart { left: 15px; right: auto; top: 15px; }

  /* =========================================================
     MOBILE MENU DRAWER
  ========================================================= */
  .mobile-menu-bar { padding: 0; }
  .mobile-menu-wrapper .mobile-menu-bar > ul > li a { color: var(--theme-color); }
  .mobile-menu-wrapper .mobile-menu-bar > ul > li a svg path { fill: var(--theme-color); }
  .mobile-menu-wrapper .menu-close-icon svg { width: 25px; height: 25px; }
  .mobile-menu-wrapper .menu-close-icon {
    height: auto;
    position: relative;
    right: 0; top: 0;
    justify-content: flex-start;
    text-align: right;
    padding: 10px 20px;
    background: var(--theme-color);
    width: 100%;
  }

  /* Language / Currency selects */
  .lang-dropdown .nice-select .icon-lable { margin-top: 0; font-weight: 400; font-size: 14px; }
  .lang-dropdown .localization-form__select svg { display: none; }
  .lang-dropdown .nice-select:after { display: block; border-bottom: 1px solid var(--black); border-right: 1px solid var(--black); }
  .lang-dropdown, .index .lang-dropdown { padding: 0; }
  .languages .localization-form__select span { display: block; }
  .mobile-lag .lang-dropdown { margin: 0; padding: 0; }
  .mobile-lag .nice-select { border: none; background: transparent; color: var(--black) !important; width: 100%; }
  .mobile-lag .nice-select .current, .nice-select .list { width: 100%; }
  .mobile-lag .currency .nice-select:after { border-color: var(--black); }
  .mobile-lag .languages,
  .mobile-lag .currency { flex: 1; box-shadow: 0 1px 2px 1px #00000029; }
  .mobile-lag .disclosure__list-wrapper { right: 0; margin-top: 10px; }
  .mobile-lag ul.list { margin-top: 11px; }
  .mobile-menu-wrapper .mobile-lag { padding: 15px 10px; gap: 20px; border-bottom: 1px solid var(--black); }
  .menu-right .disclosure__list-wrapper { margin: 18px 0 0; }
  .menu-right .disclosure__list-wrapper .disclosure__item a { font-size: 13px; }

  /* =========================================================
     CART DRAWER
  ========================================================= */
  .cartDrawer { width: 100%; }
  .cartDrawer .mini-cart-body,
  .webi-mini-cart-footer { padding: 20px 15px; }
  .cartDrawer .mini-cart-header { padding: 16px 20px 16px 50px; }
  .cartDrawer .mini-cart-bottom .cart-bottom-btn { padding: 12px 8px; font-size: 14px; }
  .cartDrawer .mini-cart-footer-total-row { font-size: 18px; }
  .cartDrawer .closecart { left: 19px; top: 50%; transform: translateY(-50%); }
  .cartDrawer .closecart svg path { fill: var(--white); }
  .cartDrawer .price ins { font-size: 14px; }
  .mini-cart-item:not(:last-of-type) { margin-bottom: 15px; }
  .mini-cart-footer-total-row { font-size: 18px; margin: 0 -10px 12px; }
  .mini-cart-footer .checkout-btn { max-width: 100%; padding: 12px 14px; }
  .mini-cart-footer .u-save { font-size: 15px; margin-bottom: 15px; }
  .webi-mini-cart-footer .checkout-btn { margin-bottom: 15px; }
  .mini-cart-top,
  .coupon-popup .coupon-body { padding: 15px; }
  .mini-cart-footer-total-row div ins { font-size: 18px; }

  /* =========================================================
     HERO SECTION
  ========================================================= */
  .main-hiro-section { padding: 0; }
  .main-hiro-left { justify-content: center; height: 100%; text-align: center; padding: 0; }
  .main-hiro-left .size-selectors { justify-content: center; margin: 15px auto 20px; }
  .main-hiro-left p { font-size: 14px; margin: 20px auto; max-width: 300px; }
  .main-hiro-left-bottom { padding: 30px 0 20px; }
  .main-hiro-left-bottom .price-btn { display: flex; flex-wrap: wrap; max-width: 200px; justify-content: center; margin: 0 auto 20px; }
  .main-hiro-center { max-width: 300px; margin: 0 auto; padding-bottom: 20px; }
  .col-lg-4.col-md-6.col-12.main-hiro-col:nth-child(1) { order: 2; }
  .col-lg-4.col-md-6.col-12.main-hiro-col:nth-child(2) { order: 1; }
  .banner-labl { left: 0; right: 0; text-align: center; }
  .banner-labl span { font-size: 42px; text-align: center; }
  .banner-labl.bottom-bnr-lbl { bottom: 0; right: 0; }

  /* ========================================================
        CATEGORY HOME SECTION
     ========================================================*/

    .home-cat-section .home-cat-left-inner.home-cat-slider{
    display: flex !important;
    flex-wrap: nowrap !important;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    gap: 14px !important;

    padding: 0 16px 14px !important;
    margin: 0 -16px !important;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-cat-section .home-cat-left-inner.home-cat-slider::-webkit-scrollbar{
    display: none;
  }

  .home-cat-section .home-cat-left-inner.home-cat-slider > .home-cat-slide{
    flex: 0 0 88% !important;      /* 1 slide + peek */
    max-width: 88% !important;
    scroll-snap-align: start;
  }

  .home-cat-section .home-cat-left-inner.home-cat-slider .home-cat-box,
  .home-cat-section .home-cat-left-inner.home-cat-slider .home-cat-box > a{
    width: 100%;
  }

  /* =========================================================
     PRODUCT CARDS & FEATURED
  ========================================================= */
  .product-image { max-width: 100%; padding-bottom: 0; }
  .product-image a { height: auto; padding-top: 100%; }
  .product-card .link-btn { margin-left: 0; justify-content: flex-start; margin-top: 15px; }
  .border-left-btn { margin-top: 44px; }
  .feature-verticle { display: block; margin-bottom: 30px; }
  .feature-verticle h2 { margin-top: 10px; font-size: 30px; writing-mode: unset; text-orientation: unset; transform: unset; max-height: unset; margin: 0; }
  .feature-verticle .subheading { font-size: 14px; font-weight: 500; writing-mode: unset; text-orientation: unset; transform: unset; }
  .product-cont-top .jdgm-prev-badge,
  .product-cont-top .subtitle,
  .product-cont-top .size-selectors { margin-bottom: 15px; }

  /* =========================================================
     PRODUCT DETAIL PAGE (PDP)
  ========================================================= */
  .product-first-section { padding: 35px 0 30px; }
  .product-first-section .row .col-md-4:nth-child(1) { order: 2; }
  .product-first-section .row .col-md-4:nth-child(2) { order: 1; }
  .product-first-section .row .col-md-4:nth-child(3) { order: 3; }
  .product-detail-right { text-align: left; margin-top: 30px; }
  .product-detail-center { margin-bottom: 30px; }
  .product-detail-center .pdp-main-slider .slick-arrow { background: var(--theme-color); }
  .product-detail-center .pdp-main-slider .slick-arrow svg { fill: var(--white); }
  .product-heading-right-column { padding: 20px 0 20px 22px !important; border-left: 0; }
  .product-detail-right p b { margin-bottom: 9px; }
  .pdp-swtch-lbl { margin-bottom: 0; }
  .pdp-itm-img { padding-top: 50%; }
  .pdp-itm-img img { object-fit: scale-down; }
  .pdp-skincare-box { height: auto; }
  .pdp-skincare-box img { margin-top: 30px; }
  .pdp-skincare-box p { margin-bottom: 15px; }
  .wsh-wrp { justify-content: flex-start; }
  .size-share-wrap { justify-content: start; }
  .size-btn { justify-content: flex-start; }
  .shopify-payment-button__button--unbranded { width: auto; }

  /* Sticky add to cart */
  .sticky-pro-info,
  .products-add-cart-sticky .qty-spinner { display: none; }
  .products-add-cart-sticky .sticky-pro-inner { justify-content: center; }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn { padding: 10px; min-width: auto; }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn svg { margin: 0; }
  .products-add-cart-sticky .sticky-pro-inner .sticky-btn span { display: none; }
  .products-add-cart-sticky .nice-select { max-width: 60%; }

  /* =========================================================
     SIZE POPUP
  ========================================================= */
  .size-popup { padding: 0; }
  .size-popup .size-form h4 { margin-bottom: 10px; }
  .size-popup table tr { padding: 5px 0; }
  .size-popup table tr td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: end;
    gap: 10px;
    padding: 7px 0;
  }
  .size-popup table tr td::before { content: attr(data-label) ":"; float: left; font-weight: 600; color: var(--black); text-transform: capitalize; padding-bottom: 0; }
  .size-table-wrapper { max-width: calc(100% - 30px); }
  .search-popup, .size-popup { padding: 0 15px; }

  /* =========================================================
     FILTERS
  ========================================================= */
  .mobile-facets {
    position: fixed;
    inset: 0 auto 0 0;
    max-width: 315px;
    width: 100%;
    background: var(--white);
    z-index: 4;
    overflow: hidden;
    transition: transform .5s ease-in-out;
    transform: translateX(-100%);
  }
  .mobile-open .mobile-facets { transform: translateX(0); }
  .product-filter-body { padding: 40px 15px; overflow: auto; height: 100%; background: var(--theme-color); }
  .product-filter-right-column { border-left: 0; padding-left: 0 !important; }
  .close-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 101;
    width: 30px;
    height: 30px;
    padding: 7px;
    opacity: 0;
    transition: opacity .4s ease;
    background: var(--second-color);
    pointer-events: none;
    cursor: pointer;
  }
  .mobile-open .close-filter { opacity: 1; pointer-events: visible; }
  .close-filter svg { height: 100%; width: 100%; }
  .close-filter svg path { fill: var(--theme-color); }
  .icon-filter { max-width: 22px; margin: 0 auto; }
  .mobile-facets__open { max-width: 28px; border: 1px solid var(--second-color); padding: 2px; }
  .mobile-facets__summary { cursor: pointer; }
  .mobile-facets__clear-wrapper a { transition: none; }
  .mobile-facets__open-wrapper div { max-width: 30px; }
  .mobile-facets__summary,
  .mobile-facets__close-button { padding: 10px 0 !important; }
  .mobile-facets__info,
  .mobile-facets__wrapper .facets__price { padding: 0 !important; }
  .mobile-facets__item { padding: 0 10px 0 0 !important; }
  .mobile-facets__label .feather-check { left: 3px !important; }
  .product-filter-body { overflow: hidden auto; }

  /* =========================================================
     CART PAGE
  ========================================================= */
  .cart-table .name { max-width: 100%; margin: 0 auto; width: 100%; }
  .cart-page-section .section-title { margin-bottom: 26px; }
  .cart-tble tr th:nth-child(2),
  .cart-tble tr td:nth-child(2) { width: 100%; }
  .cart-tble tr td::before { display: none; }
  .cart-tble tr td { padding: 0 0 12px; }
  .cart-tble .remove-btn { height: 16px; width: 16px; }
  .cart__footer-wrapper .cart__blocks { padding: 20px 15px; }
  .cart-item__totals { display: block; text-align: center; }
  .cart-item__price-wrapper { display: inline-block; vertical-align: bottom; }

  /* =========================================================
     POPUPS & OVERLAYS
  ========================================================= */
  .coupon-popup,
  .gift-popup { width: 100%; }
  .gift-popup .gift-body { padding: 30px 15px 20px; }
  .quickview_popup_data { padding: 30px 0 20px; }
  .quickview_popup_data .pdp-right-column { margin-top: 20px; }
  .subscribe-popup { padding: 40px 30px; }
  .subscribe-popup h2 { font-size: 17px; }
  .popup-inner { max-width: 90%; }
  .search-popup { padding: 0 15px; }
  .search-popup .close-search { right: 15px; top: 15px; width: 22px; height: 22px; }

  /* Progress icons */
  .progress-icon { width: 45px; height: 45px; }
  .progress-icon svg { height: 30px; width: 30px; }

  /* Cookie */
  .cookiestatus .cookie-block.bottom_fix #cookie_message { flex-direction: column; }

  /* =========================================================
     COMPARE & WISHLIST
  ========================================================= */
  .compare-wrap, .wishlist-wrap { padding: 20px 15px 0; }
  .compare-wrap:last-of-type, .wishlist-wrap:last-of-type { border-bottom: 0; }
  .compare-data-label, .wishlist-data-label { margin-bottom: 15px; }
  .pro-compare-right, .pro-wishlist-right { border: 1px solid var(--border-color); }
  .pro-compare-left, .pro-wishlist-left { border: none; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; display: none; }
  .pro-compare-section .pro-compare-wrap,
  .pro-wishlist-section .pro-wishlist-wrap { margin-bottom: 30px; }
  .pro-compare-scroll .compare-wrap .compare-val-prod,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod { display: block; }
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label,
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-data-label.compare-pro-detail,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-data-label.wishlist-pro-detail { max-width: 100%; padding: 0; }
  .pro-compare-scroll .compare-wrap .compare-val-prod .prod-img,
  .pro-compare-scroll .compare-wrap .compare-val-prod .pro_detail-inner,
  .pro-compare-scroll .compare-wrap .compare-val-prod .product-form,
  .pro-compare-scroll .compare-wrap .compare-val-prod .compare-prod-remove,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .prod-img,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .pro_detail-inner,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .product-form,
  .pro-wishlist-scroll .wishlist-wrap .wishlist-val-prod .wishlist-prod-remove { max-width: 100%; padding: 0; }
  .compare-pro-detail .prod-img a,
  .wishlist-pro-detail .prod-img a { padding-top: 30%; }

  /* =========================================================
     HOME SECTIONS
  ========================================================= */
  .home-cat-left-inner { display: flex; flex-wrap: wrap; margin: 0 -10px; }
  .home-cat-left-inner .home-cat-box { max-width: 50%; width: 100%; margin-bottom: 20px; padding: 0 10px; }
  .home-cat-box a { padding: 30px 13px; }
  .home-cat-right .home-cat-right-inner p { font-size: 16px; }
  .home-cat-right-inner .section-title { margin-bottom: 24px; }
  .home-cat-text h5 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

  /* Skincare */
  .skincare-pro { display: flex; flex-wrap: wrap; justify-content: space-between; margin-bottom: 30px; }
  .skincare-pro-full { width: calc(50% - 10px); }
  .skincare-pro .skincare-pro-full:not(:last-of-type) { margin-bottom: 0; }
  .skincare-pro-full .main-hiro-pro-slider .slick-dots { position: relative; left: auto; right: 0; justify-content: flex-start; margin: 20px 20px 0; }

  /* Video */
  .vedio-top-left-inner .section-title { max-width: 100%; width: 100%; }
  .vedio-top-left-contnt { margin-bottom: 30px; }
  .video-right-wrap .play-vid svg { width: 43px; height: 43px; margin-right: 12px; }
  .play-vid span { font-size: 13px; max-width: 84px; }
  .vedio-tp-right-contn .section-title .subtitle { font-size: 15px; }
  .video-right-wrap {
    position: relative;
    padding-top: 80%;
}

  /* =========================================================
     BLOG
  ========================================================= */
  .blog-widget { flex: 0 0 100%; }
  .blog-widget-inner { margin-bottom: 15px; }
  .blog-col-right .nice-select { flex: 0 0 120px; }
  .blog-col-right { width: 100%; justify-content: center; margin-top: 20px; }
  .blog-col-left ul { flex-direction: column; align-items: center; }
  .blog-head-row { border: 0; }
  .blog-grid-section .section-title { text-align: center; }
  .blog-grid-row .blog-itm { margin-bottom: 20px; }
  .articlerightbar { padding-top: 40px; }
  .aticleleftbar h5 { margin: 0 0 20px; }
  .aticleleftbar p { margin-bottom: 15px; }
  .articlerightbar .blog-grid .blog-widget:last-of-type { margin-bottom: 0; }
  .latest-article-slider-section .section-title { padding-top: 40px; }
  .post-lbl { margin: 0 0 0 12px; }
  .article-section .abt-user-img { margin-right: 5px; }
  .quote-box { padding: 15px 0 25px 35px; }
  .quote-box svg { height: 20px; width: 20px; }
  .article-socials li span { font-size: 16px; margin-right: 0; }
  .blog-page-banner .section-title { margin-bottom: 20px; }
  .blog-page-banner::before { content: ''; position: absolute; inset: 0; background: #725f47a6; z-index: -1; }
  .our-blog-section .section-title { margin-bottom: 26px; }

  /* =========================================================
     ABOUT & CONTACT
  ========================================================= */
  .about-us-section .about-us-box:not(:last-child) { margin-bottom: 20px; }
  .about-us-section .section-title { margin-bottom: 26px; }
  .abt-shp-column-left, .about-us-page { text-align: center; }
  .abt-shp-column-right, .about-our-shop-section .row { margin-top: 30px; }
  .aboutpage-btm-sec .about-us-box { margin-bottom: 20px; padding: 15px; }
  .contact-right-column { margin-top: 0; }
  .contact-right-inner h2 { color: var(--second-color); }
  .contact-left-inner ul li { margin-bottom: 20px; }
  .contact-left-inner ul li h4 { margin-bottom: 10px; }
  .contact-form { padding: 20px 15px; }
  .set { margin-bottom: 20px; }

  /* =========================================================
     ACCOUNT & ORDERS
  ========================================================= */
  .my-acc-head { margin-bottom: 26px; }
  .my-acc-rightbar { margin-top: 40px; }
  .my-acc-right-content { padding-bottom: 30px; }
  .my-acc-right-content .qty-spinner input,
  .my-acc-right-content table tr th,
  .my-acc-right-content table tr td { font-size: 14px; }
  .my-acc-leftbar { border-top: 0 !important; }
  .my-acc-leftbar li:not(:last-of-type) { border-bottom: 0; }
  .my-acc-leftbar h4 { padding: 15px; color: var(--black); }
  .customer.account { text-align: center; }
  .acc-order-button { justify-content: center; }
  .acc-order-button .btn { padding: 11px 14px; }
  .acc-order-button .btn svg { margin: 0 8px 0 0; }
  .recover-password h4 { font-size: 16px; }
  .reset-password { padding: 20px 15px; }
  .order h2 { margin: 0 0 10px; }
  .order-detail { text-align: center; }
  .order-summery-page .section-title p { font-size: 14px; }
  .order-summery-page .section-title h2 { margin-bottom: 30px; }
  .register-page .section-title { margin-bottom: 30px; }

  #scroll { background: var(--white); top: 53px; padding: 0; }
  #account-nav { display: flex; justify-content: space-between; }
  #account-nav li { flex: 1; display: flex; align-items: center; justify-content: center; }
  #account-nav li a { display: flex; align-items: center; flex-wrap: wrap; justify-content: center; padding: 5px; width: 100%; height: 40px; background: var(--theme-color); }
  #account-nav li a svg { margin-right: 0; height: 15px; width: 15px; }
  #account-nav li a svg path { fill: var(--white); }
  #account-nav li a span { display: none; }

  /* Form */
  .form-container, .order-confirmation-body { padding: 20px 15px; }
  .offset-container { padding: 0 15px; }
  .out-of-stock-form { max-width: 75%; }

  /* =========================================================
     COMMON / MISC
  ========================================================= */
  .small-hide, .medium-hide { display: none !important; }
  .common-banner-section { padding: 40px 0; }
  .common-banner-content .back-btn { margin-bottom: 15px; }
  .common-banner-content .section-title h2 span { font-size: 12px; }
  .cat-tab { width: 100%; margin-top: 20px; }
  .testimonial-section .section-title, .section-title { margin-bottom: 20px; }
  .testimonial-itm-inner .testm-top .review-title-wrp { flex-direction: column; align-items: flex-start; gap: 7px; }
  .testm-top p { margin-top: 10px; }
  .slick-arrow { width: 36px; height: 36px; }
  .slick-slider .slick-arrow { opacity: 1; }
  ins { font-size: 16px; }
  .pagination-wrapper { padding-bottom: 2px; }
  .pagination__list > li { width: 30px !important; height: 30px !important; line-height: 30px !important; }
  .input-wrapper input { padding: 12.5px 55px 12.5px 20px; }
  .input-wrapper .btn-subscibe { height: 35px; width: 35px; }

  /* =========================================================
     FOOTER
  ========================================================= */
  .site-footer { padding: 40px 0 10px; }
  .product .site-footer { padding: 70px 0 90px; }
  .footer-col:not(:last-of-type) { padding: 0; }
  .footer-subscribe-col { flex: 0 0 100%; max-width: 100%; padding: 0; margin-top: 40px; }
  .footer-bottom { padding-top: 0; }
  .footer-bottom-row { padding: 25px 0 0; }
  .footer-bottom-row ul { justify-content: flex-start; }
  .policy-links { justify-content: flex-start; margin-top: 16px; }
  .emaillink.contactlink { margin: 0; }

  /* =========================================================
     REVIEWS (Judge.me)
  ========================================================= */
  .product .jdgm-rev-widg { padding: 16px 15px !important; }
  .jdgm-rev-widg__summary { margin-bottom: 10px !important; }
  .jdgm-form__fieldset-actions .jdgm-cancel-rev { border-color: var(--white) !important; text-align: center; }
  .jdgm-widget:not(.jdgm-review-widget--small, .jdgm-review-widget--medium) .jdgm-write-rev-link { width: fit-content; margin: 0 auto; }

  /* =========================================================
     COUNTDOWN / MISC PRODUCT
  ========================================================= */
  .template-search__results .product-card .flip-countdown.simple-countdown,
  .product-filter-right-column .product-card .flip-countdown.simple-countdown { top: 50%; }

}

@media screen and (max-width:575px) {
    .out-of-stock-form {
    max-width: calc(100% - 30px);
    padding: 50px 20px;
}



   .subscribe-popup {
        max-width: calc(100% - 30px);
        width: 100%;
    }
  .rtn-to-acc {
    margin-bottom: 15px;
  }
  .cookiestatus .cookie-block.bottom_fix #cookie_message{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .cookiestatus .cookie-block #cookie_message button.btn{
    margin-top: 10px !important;
    margin-left:0 !important;
  }
  .cookiestatus .cookie-block #cookie_message > span {
    line-height: 24px;
  }
  
    .add-details div:last-child {
        margin: 30px 0 0;
    }
    .add-details div {
        text-align: center;
    }

    .wishpg ins {
        font-size: 16px;
    }
    .subscribe-popup h2 {
        margin-bottom: 15px;
    }
    .subscribe-popup .close-sub-btn {
        top: 10px;
        right: 10px;
    }
    .subscribe-popup .form-row .btn-svg {
        right: 10px;
        height: 20px;
        width: 20px;
    }
    .subscribe-popup .form-row input {
        padding: 13px 40px 13px 15px;
    }
    .footer-col {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .footer-bottom-row {
        padding: 5px 0 0 0;
    }
    .footer-subscribe-col {
        margin-top: 0;
    }
  .footer-widget h3, .footer-widget h4 {
    margin-bottom: 12px;
  }
    /*** HOME CAT SECTION CSS  start ***/
    .home-cat-left-inner .home-cat-box {
        max-width: 100%;
    }
    /*** HOME CAT SECTION CSS  end ***/
    .section-title-left {
        width: 100%;
        margin-bottom: 20px;
    }
    .blog-cat li:not(:last-of-type) {
        margin-right: 0;
    }
   .blog-cat{
    flex-direction: column;
        align-items: flex-start;
  }
    .reg-lbl {
        width: 100%;
        margin: 0 0 10px;
        text-align: center;
    }
    .login-form .submit-btn {
        max-width: 170px;
        margin: 15px 0 0 0;
    }
    .mobile-direction-column {
        flex-direction: column;
    }
    .dated {
        width: 100%;
        margin-top: 12px;
    }
    .two-coll-media .tool-content {
        display: none;
    }
    /********* BLOG PAGE CSS start  **********/
    .blog-cat li:first-of-type {
        padding: 10px 8px;
    }
    .blog-widget-inner h3 {
        max-width: 100%;
        flex: 0 0 100%;
        margin: 0 0 15px;
        padding: 0;
    }
    .blog-widget-inner p {
        margin: 12px 0 15px;
    }
    .blog-grid-section .blog-cat li {
        padding: 10px 5px;
    }
    .blog-cat {
        margin-bottom: 14px;
    }
    .blog-page-banner .common-banner-content p,
    .blog-page-banner .section-title {
        margin-bottom: 15px;
    }
    /********* BLOG PAGE CSS end  **********/
    .input-wrapper input {
        padding: 14.5px 50px 14.5px 15px;
    }
    .input-wrapper .btn-subscibe {
        height: 35px;
        width: 35px;
    }
    .articlerightbar .blog-cat li {
        padding: 10px 5px;
    }
    /******** NEW FEATURED SECTION start ********/
    .feature-pro {
        flex-wrap: wrap;
    }
    .feature-pro-itm {
        max-width: 100%;
    }
    /******** NEW FEATURED SECTION end ********/
    .cat-tab li a {
        letter-spacing: 0;
        padding: 5px 7px;
    }
    .price-btn ins {
        font-size: 12px;
    }
    .produdt-filter-cat {
        display: none;
    }
    .btn {
        padding: 11px 18px;
    }
    .addresses select {
        padding: 10px;
    }
    .product-notification {
        width: 300px;
        left: 10px;
    }
    .subscribe-popup {
        padding: 35px 15px 30px;
        max-width: calc(100% - 30px);
        width: 100%;
    }
    .home-cat-text {
        max-width: 100%;
    }
    .wishlist-page .wish-btn {
        margin: 10px 0;
    }
    .round {
        left: 53px;
    }
    .tooltip-txt {
        left: -29px;
        font-size: 12px;
    }
    .banner-labl span {
        font-size: 34px;
    }
     .predictive-search--header #predictive-search-results #predictive-search-results-list li {
      width: 100%;
    }
  .quickview_popup_data .pdp-right-column .qnty-btn-wrp {
    gap: 10px;
}
  .qnty-btn-wrp .btn{
     padding: 10px 15px;
  }
  .qv_select__select{
    width:100%;
  }
  .quickview_popup_data .pdp-right-column .qnty-btn-wrp{
    margin-top:15px;
  }
  .skincare-left-box .section-title {
    max-width: 100%;
}
  .subscribe-popup p{
    margin-bottom:15px;
  }
  .main-hiro-left-bottom h2 {
    font: var(--h3);
}
   .recentlyview .section-title h2{
    font-size:18px;
  }
  .template-search__results .grid__item {
    margin: 0px 0 20px;
}
    .template-search p.search-msg {
    font-size: 16px;
  }
  .collection-list .card-wrapper{
    margin-bottom:20px;
  }
  .aboutpage-btm-sec .col-12:last-of-type .about-us-box{
    margin-bottom:0;
  }
  .aboutpage-btm-sec .section-title p {
    margin-top: 15px;
}
     .post-lbl {
        margin: 10px 0 0;
        width: 100%;
    }
}
@media screen and (max-width:420px) {
    .skincare-pro-full {
        width: 100%;
    }
  .skincare-pro{
    row-gap:20px;
  }
}
@media screen and (max-width:370px) {
    :root {
        --h1: normal 600 28px/1.2 var(--first-font);
        --h2: normal 600 24px/1.2 var(--first-font);
        --h3: normal 600 18px/1.2 var(--first-font);
        --h4: normal 600 16px/1.2 var(--first-font);
        --h5: normal 600 14px/1.2 var(--first-font);
    }
    .stp-menu-widget {
        padding: 24px 0 0 0;
        margin-top: 24px;
    }
    .mobile-menu-bar .stp-navlink:not(:last-of-type) {
        margin-right: 15px;
    }
    .fea-coll-contnt-left {
        width: 100%;
        margin-bottom: 10px;
    }
    .column-positive-us-right .col-sm-4.col-4 {
        width: 100%;
        margin-bottom: 20px;
    }
 
    .acc-back-btn-wrp button {
        padding: 10px 15px;
        min-width: 90px;
    }
    .btn-flex a {
        padding: 10px 14px !important;
        min-width: 113px;
    }
    .center-descrp {
        display: none;
    }
    .add-default {
        padding: 10px;
    }
  .feature-verticle h2 {
        font-size: 24px;
    }
   .add-default .btn {
    padding: 12px 15px;
}
}
.product-form__error-message-wrapper {
    display: flex;
    color: #E90022;
    position: absolute;
    z-index: 1;
    background: yellow;
    padding: 10px;
    font-size: 12px;
    line-height: 1;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
}