/* 
--------------------------------------------------------
reset css to define common configurations
--------------------------------------------------------
 */

@charset "utf-8";

/* --------------------------------------------------------
1. Fonts
-----------------------------------------------------------*/

/* --------------------------------------------------------
2. Root Variables
-----------------------------------------------------------*/

:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #212529;
    --secondary: #1abc9c;
    --danger: #c50000;
    --success: #177317;
    --warning: #ff8800;
    /*--gray: #adb5bd;*/
    --gray: #bec1c3;
    --lightgray: #f8f9fa;
    --darkgray: #6c757d;
    --textcolor: #212529;
    --link: #212529;
    --link-hover: #1abc9c;
    --header-background: #ffffff;
    --body-background: #ffffff;
    --menu-hover-bg: #212529;
    --menu-hover-text: #ffffff;
    --menu-text: #212529;
    --title-color: #212529;
    --base-font-size: 16px;
    --base-line-height: 1.6em;
    --base-font: 'Inter', sans-serif;
    --title-font: 'Inter', sans-serif;
    --menu-font: 'Inter', sans-serif;
    --banner-font: 'Inter', sans-serif;
}

:root {
    /*font-family: Inter, sans-serif;*/
    font-family: var(--base-font);
    font-feature-settings: 'liga' 1, 'calt' 1;
    /* fix for Chrome */
    word-spacing: normal;
    line-height: var(--base-line-height);
    font-size: var(--base-font-size);
    color: var(--textcolor);
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: var(--base-font);
    }
}

/*@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}*/

/* --------------------------------------------------------
3. Base or Reset or common CSS
-----------------------------------------------------------*/

/* html tags */
* {
    position: relative;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    /*height: 100%;*/
    width: 100%;
    background-color: var(--body-background);
    color: var(--textcolor);
}

hr {
    border: 0;
    border-top: 1px solid var(--darkgray);
    width: 100%;
}

ol li,
ul li {
    line-height: 1.5em;
    padding: 0;
    margin: 0;
}

nav ol,
nav ul,
ol,
li {
    list-style: none;
    line-height: inherit;
    padding: 0;
    margin: 0;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

p,
.p {
    padding-bottom: 20px;
}

small,
.small {
    font-size: 0.8rem;
}

figure {
    margin: 0;
    padding: 0;
}

svg {
    vertical-align: middle;
}

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

::-moz-selection {
    color: var(--white);
    background: var(--dark);
}

::selection {
    color: var(--white);
    background: var(--dark);
}

button {
    -webkit-tap-highlight-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    background-color: inherit;
}

a:empty,
ul:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
    display: none;
}

/* html tags end */

/* ------------------------------------
        start heading styles
---------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    color: var(--title-color);
    padding-bottom: 20px;
    font-weight: 600;
    line-height: 1.3em;
    font-family: var(--title-font);
}

h1,
.h1 {
    font-size: 32px;
}

h2,
.h2 {
    font-size: 30px;
}

h3,
.h3 {
    font-size: 26px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

h1.normal,
.h1.normal,
h2.normal,
.h2.normal,
h3.normal,
.h3.normal,
h4.normal,
.h4.normal,
h5.normal,
.h5.normal,
h6.normal,
.h6.normal {
    font-weight: normal;
}

/* ------------------------------------
      end heading styles
---------------------------------------*/

/* standard classes */
.float-left {
    float: left;
}

.float-right {
    float: right;
}

.align-left {
    float: left;
    margin-right: 15px;
}

.align-right {
    float: right;
    margin-left: 15px;
}

.block-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.clear {
    clear: both;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

.lh-0 {
    line-height: 0;
}

.lh-normal {
    line-height: normal;
}

.no_bg {
    background: none;
}

.border-bottom {
    border-bottom: 1px solid var(--gray);
}

.border-top {
    border-top: 1px solid var(--gray);
}

.img-wrap {
    line-height: 0;
}

/* standard classes end */

.font-more-1 {
    font-size: 1.1em;
}

.font-more-2 {
    font-size: 1.2em;
}

.font-more-3 {
    font-size: 1.3em;
}

.font-more-4 {
    font-size: 1.4em;
}

.font-more-5 {
    font-size: 1.5em;
}

/* ------------------------------------
        start anchor & button styles
---------------------------------------*/

a:focus {
    outline: 0px solid;
}

a {
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
    color: var(--link);
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

a.active {
    color: var(--link-hover);
    text-decoration: none;
}

a.white {
    color: var(--white);
}

a.white:hover,
a.white:active {
    color: var(--white);
}

a.underline {
    transition: text-decoration .1s ease;
    top: 0px;
    text-decoration: underline;
}

a.underline:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--link);
    left: 0;
    bottom: 2px;
    display: block;
    position: relative;
}

a.underline:hover:after {
    -webkit-transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
    width: 100%;
    background-color: var(--link-hover);
}

a.btn {
    line-height: normal;
    width: auto;
    display: inline-block;
    text-align: center;
}

.btn {
    border: 1px solid transparent;
    background-color: var(--primary);
    border-radius: 5px;
    color: var(--white);
    padding: 12px 20px;
    letter-spacing: 0px;
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    vertical-align: middle;
    transition: all 300ms ease 0ms;
    width: auto;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    max-width: 100%;
    /*min-height: 46px;*/
}

.btn.btn-secondary {
    color: var(--white);
    background-color: var(--secondary);
}

.btn.btn-danger {
    color: var(--white);
    background-color: var(--danger)
}

.btn.btn-success {
    color: var(--white);
    background-color: var(--success);
}

.btn.btn-warning {
    color: var(--white);
    background-color: var(--warning);
}

.btn:hover,
.btn.active {
    transition: all 300ms ease 0ms;
    background-color: var(--black);
    color: var(--white);
}

.btn.btn-outline {
    background-color: transparent;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn.btn-outline:hover,
.btn.btn-outline.active {
    background-color: var(--primary);
    color: var(--white);
}

.btn.btn-rounded {
    border-radius: 50px;
}

.btn.btn-sm {
    padding: 11px 15px;
    font-size: 14px;
    letter-spacing: 0;
    min-height: auto;
    line-height: normal;
}

.btn.btn-smx {
    padding: 9px 12px;
    font-size: 12px;
    letter-spacing: 0;
    min-height: auto;
    line-height: normal;
}

.btn.btn-big {
    padding: 33px 35px;
    font-size: 24px;
}

.btn.auto-width {
    width: auto;
    display: inline-block;
}

.btn.btn-smx.fa-icon {
    font-size: 1.1em;
    padding: 4px 5px;
}

.btn.btn-facebook {
    color: var(--white);
    background-color: #4267B2;
}

.btn.btn-instagram {
    color: var(--white);
    background-color: #e1306c;
}

.btn.btn-youtube {
    color: var(--white);
    background-color: #ff0000;
}

.btn.btn-whatsapp {
    color: var(--white);
    background-color: #00cc3a;
}

.btn.btn-facebook i,
.btn.btn-instagram i,
.btn.btn-youtube i,
.btn.btn-whatsapp i {
    color: #fff !important;
}

/* ------------------------------------
        end anchor & button styles
---------------------------------------*/


/* ------------------------------------
        start margin & padding styles
---------------------------------------*/

.section-padding {
    padding: 60px 0;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}

.no-top-margin {
    margin-top: 0 !important;
}

.no-left-margin {
    margin-left: 0 !important;
}

.no-right-margin {
    margin-right: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0 !important;
}

.no-top-padding {
    padding-top: 0 !important;
}

.no-left-padding {
    padding-left: 0 !important;
}

.no-right-padding {
    padding-right: 0 !important;
}

/* ------------------------------------
        end margin & padding styles
---------------------------------------*/


/* ------------------------------------
            start margin styles
---------------------------------------*/


.margin-bottom-0 {
    margin-bottom: 0;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

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

.margin-bottom-45 {
    margin-bottom: 45px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-65 {
    margin-bottom: 65px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-bottom-75 {
    margin-bottom: 75px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-bottom-84 {
    margin-bottom: 84px;
}

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-35 {
    margin-top: 35px;
}

.margin-top-40 {
    margin-top: 35px;
}

.margin-top-45 {
    margin-top: 45px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-65 {
    margin-top: 65px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-tb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.margin-tb-50 {
    margin-top: 50px;
    margin-bottom: 50px;
}

.margin-tb-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.margin-tb-70 {
    margin-top: 70px;
    margin-bottom: 70px;
}

.margin-tb-80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.margin-left-0 {
    margin-left: 0;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-left-15 {
    margin-left: 15px;
}

.margin-left-20 {
    margin-left: 20px;
}

.margin-right-0 {
    margin-right: 0;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-right-10 {
    margin-right: 10px;
}

.margin-right-15 {
    margin-right: 15px;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-rl-0 {
    margin-left: 0px;
    margin-right: 0px;
}

.margin-rl-5 {
    margin-left: 5px;
    margin-right: 5px;
}

.margin-rl-10 {
    margin-left: 10px;
    margin-right: 10px;
}

/* ------------------------------------
            end margin styles
---------------------------------------*/

/* ------------------------------------
            start padding styles
---------------------------------------*/

.no-padding {
    padding: 0 !important;
}

.no-bottom-padding {
    padding-bottom: 0;
}

.no-top-padding {
    padding-top: 0;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-35 {
    padding-top: 35px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-45 {
    padding-top: 45px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-left-0 {
    padding-left: 0;
}

.padding-left-10 {
    padding-left: 10px;
}

.padding-left-15 {
    padding-left: 15px;
}

.padding-left-20 {
    padding-left: 20px;
}

.padding-left-30 {
    padding-left: 30px;
}

.padding-left-40 {
    padding-left: 40px;
}

.padding-left-50 {
    padding-left: 50px;
}

.padding-right-0 {
    padding-right: 0;
}

.padding-right-10 {
    padding-right: 10px;
}

.padding-right-15 {
    padding-right: 15px;
}

.padding-right-20 {
    padding-right: 20px;
}

.padding-right-30 {
    padding-right: 30px;
}

.padding-right-40 {
    padding-right: 40px;
}

.padding-right-50 {
    padding-right: 50px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}


/* ------------------------------------
               end padding styles
---------------------------------------*/

/* form element */

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--darkgray);
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--darkgray);
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--darkgray);
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--darkgray);
}

::selection {
    background: var(--black);
    /* WebKit/Blink Browsers */
    color: var(--white);
}

::-moz-selection {
    background: var(--black);
    /* Gecko Browsers */
    color: var(--white);
}

label {
    color: var(--textcolor);
}

form {
    /*overflow-x: hidden;*/
}

.form-row {
    width: calc(100% + 10px);
    padding: 20px 0 0 0;
    clear: both;
    overflow: auto;
    margin-left: -5px;
}

.form-item {
    float: left;
    padding: 0 5px;
}

input,
textarea,
select,
.fakebox {
    border: 0;
    font-size: var(--base-font-size);
    line-height: normal;
    width: 100%;
    padding: 12px 15px;
    font-family: var(--base-font);
    background-color: var(--body-background);
    resize: vertical;
    margin-top: 5px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    min-height: 46px;
    color: var(--textcolor);
}

.fakebox span {
    line-height: var(--base-font-size);
}

input.slim,
select.slim,
.fakebox.slim {
    padding: 14px 25px;
}

select option {
    padding: 4px 0px;
    position: relative;
}

select[multiple] {
    min-height: 200px;
}

select[multiple] option {
    padding: 4px 10px;
    position: relative;
}

select[multiple] option:before {
    /*content: "\27A4";
  position: absolute;
  left: -5px;
  top: 3px;*/
}

select:invalid {
    color: var(--gray);
}

select[disabled] {
    color: var(--gray);
}

select option {
    color: var(--black);
}

select option:disabled {
    color: var(--gray);
}

select:focus {
    color: var(--black);
}

input[type='range']+span {
    position: absolute;
    top: 50%;
    left: 4px;
    right: 4px;
    height: 6px;
    background: var(--gray);
    border-radius: 3px;
    transform: translateY(-50%);
    pointer-events: none;
}

input[type='range']+span>span {
    position: absolute;
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    pointer-events: none;
}

input[type='range'] {
    font-size: var(--base-font-size);
    line-height: inherit;
    width: 100%;
    padding: 0;
    resize: vertical;
    margin-top: 0;
    border: 0px;
    border-radius: 3px;
    -webkit-appearance: none;
    height: 6px;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    min-height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background-color: transparent;
    z-index: 1;
}

input[type='range']:hover {
    opacity: 1;
    z-index: 2;
}

input[type='range']:active,
input[type='range']:focus {
    z-index: 2;
}

input[type='range']::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
}

input[type='range']::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    pointer-events: auto;
}


input[type='radio'],
input[type='checkbox'] {
    width: auto;
    height: 20px;
}

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -50px;
    display: inline;
    width: auto;
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label,
[type="radio"]:not(:checked)+label,
[type="radio"]:checked+label {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    top: 8px;
    left: 30px;
    padding: 0;
    -webkit-user-select: none;
    /* webkit (safari, chrome) browsers */
    -moz-user-select: none;
    /* mozilla browsers */
    -khtml-user-select: none;
    /* webkit (konqueror) browsers */
    -ms-user-select: none;
    /* IE10+ */
}

.dynamic [type="checkbox"]:not(:checked)+label,
.dynamic [type="checkbox"]:checked+label,
.dynamic [type="radio"]:not(:checked)+label,
.dynamic [type="radio"]:checked+label {
    font-size: 1em;
}

input[type=checkbox]:before,
input[type=radio]:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50px;
    background-color: #fff;
    border: 1px solid var(--primary);
    border-radius: 5px;
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
}

input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    /*top: -8px;*/
    top: 2px;
    left: 56px;
}

input[type=radio]:checked:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 7px;
    left: 55px;
}

input[type=radio]:checked:before,
input[type=radio]:before {
    border-radius: 50%;
}

input[type="date"] {
    padding: 8px 10px;
}

.label-wrap {
    position: relative;
}

.label-wrap label {
    font-size: 0.9rem;
    position: absolute;
    left: 0px;
    color: var(--darkgray);
    top: 0px;
    transition: 0.2s;
    opacity: 0;
    line-height: 0;
}

.label-wrap>input:not(:placeholder-shown)+label,
.label-wrap>select:valid+label,
.label-wrap>textarea:not(:placeholder-shown)+label,
.label-wrap>.select2-container--below+label,
.label-wrap.active label {
    opacity: 1;
    /* To visually hide the label's pseudoelement */
    top: -12px;
    font-size: 0.85rem;
    margin: 0;
    line-height: normal;
    color: var(--textcolor);
}

.form-wrap.single .form-row {
    padding-bottom: 0;
}

.form-wrap.single input,
.form-row.single select,
.form-wrap.single textarea {
    margin-bottom: 25px;
}

.input-image-wrap {
    width: 100%;
    background-color: #fff;
    height: 110px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
}

.input-image-wrap img {
    max-width: 100%;
    max-height: 100%;
}

/* end form elements */

/* grid */
.fluid-container {
    width: 88%;
    margin: 0 auto;
    padding-bottom: 40px;
}

.container {
    width: 1280px;
    max-width: 96%;
    margin: 0 auto;
}

.container.w-1080 {
    width: 1080px;
    max-width: 96%;
}

.container.w-1500 {
    width: 1500px;
    max-width: 96%;
}

.one-whole,
.w-100,
.full {
    width: 100% !important;
}

.one-half,
.w-50,
.half {
    width: 50%;
}

.one-third {
    width: 33.333%;
}

.one-fourth {
    width: 25%;
}

.one-fifth {
    width: 20%;
}

.one-sixth {
    width: 16.666%;
}

.one-eight {
    width: 12.5%;
}

.one-tenth {
    width: 10%;
}

.two-thirds {
    width: 66.666%;
}

.two-fifths {
    width: 40%;
}

.three-fourths {
    width: 75%;
}

.three-fifths {
    width: 60%;
}

.three-eights {
    width: 37.5%
}

.four-fifths {
    width: 80%;
}

.five-sixths {
    width: 83.333%
}

.seven-eights {
    width: 87.5%;
}

.nine-tenths {
    width: 90%;
}

.h-100 {
    height: 100%;
}

.hide,
.d-none {
    display: none;
}

.show,
.display-block,
.block {
    display: block;
}

.show-inline,
.display-inline-block {
    display: inline-block;
}

.display-inline {
    display: inline;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hide {
    overflow: hidden;
}

.relative {
    position: relative !important;
}

.absolute {
    position: absolute !important;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.fixed {
    position: fixed;
}

.align-center {
    margin: 0 auto;
    display: block;
}

section,
.section {
    width: 100%;
    margin: 30px 0;
}

.wrapper {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.z-index-10 {
    z-index: 10;
}

.z-index-20 {
    z-index: 20;
}

.z-index-30 {
    z-index: 30;
}

.z-index-40 {
    z-index: 40;
}

.z-index-highest {
    z-index: 999999;
}


/* text styling */

.text-center,
.center {
    text-align: center;
}

.text-justify,
.justify {
    text-align: justify;
}

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

.text-right {
    text-align: right;
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.text-lightgray {
    color: var(--lightgray);
}

.text-gray {
    color: var(--gray);
}

.text-dark-gray {
    color: var(--darkgray);
}

.text-success {
    color: var(--success);
}

.text-danger {
    color: var(--danger);
}

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

.text-secondary {
    color: var(--secondary);
}

.text-warning {
    color: var(--warning);
}

.text-light {
    font-weight: 100;
}

.text-normal {
    font-weight: normal;
}

.text-bold {
    font-weight: bold;
}

/* end text styling */

/* Flex */
.flex {
    display: flex !important;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-align-top,
.flex-align-left {
    align-items: flex-start;
}

.flex-align-bottom {
    align-items: flex-end;
}

.flex-align-right {
    justify-content: end;
}

.flex-align-self {
    align-self: stretch;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-center,
.flex-justify-content {
    justify-content: center;
}

.flex-space-between {
    justify-content: space-between;
}

.flex-space-around {
    justify-content: space-around;
}

.flex-space-evenly {
    justify-content: space-evenly;
}

.no-shrink {
    flex-shrink: 0;
}

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

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

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

.flex-gap-25 {
    gap: 25px;
}

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

.flex.align-top-left {
    align-items: start;
    justify-content: start;
}

.flex.align-top-center {
    align-items: start;
    justify-content: center;
}

.flex.align-top-right {
    align-items: start;
    justify-content: end;
}

.flex.align-middle-left {
    align-items: center;
    justify-content: start;
}

.flex.align-middle-center {
    align-items: center;
    justify-content: center;
}

.flex.align-middle-right {
    align-items: center;
    justify-content: end;
}

.flex.align-bottom-left {
    align-items: end;
    justify-content: start;
}

.flex.align-bottom-center {
    align-items: end;
    justify-content: center;
}

.flex.align-bottom-right {
    align-items: end;
    justify-content: end;
}

.editorflex.flex {
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 20px;
}

.editorflex.flex .editorflex {
    margin-bottom: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    border: 1px solid var(--lightgray);
    background-color: var(--lightgray);
}

.editorflex.flex .editorflex .editorflex {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.editorflex.flex>*:not(hr, .btn) {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 23%;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 5px;
}

.editorflex.flex>* *:not(hr, .btn) {
    border: 0;
}

.editorflex.flex .flex .inner-flex,
.editorflex.flex .flex .inner-flex .flex {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 20px;
    flex-basis: 23%;
    flex-grow: 1;
}

.editorflex.flex .flex .inner-flex * {
    padding-bottom: 0;
}

.editorflex.flex .full {
    width: auto !important;
}

.editorflex.flex .page-image {
    margin-bottom: 0;
    line-height: 0px;
}

.editorflex.flex .editorflex>* {
    padding: 0px;
    padding-bottom: 20px;
    border-radius: 0px;
    flex-basis: unset;
    flex-grow: unset;
    width: 100%;
}

.editorflex.flex .editorflex .page-image {
    padding: 0;
    text-align: center;
    width: 100% !important;
}

.editorflex.flex .editorflex>div {
    padding-bottom: 0;
}

.editorflex.flex p:empty,
.editorflex.flex p br,
.editorflex .page-image+br,
.editorflex .page-image~br {
    display: none;
}

.editorflex.flex p:last-of-type {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .editorflex.flex {
        gap: 10px;
        align-items: flex-start;
    }

    .editorflex.flex>* {
        flex-basis: 100%
    }

    .editorflex.flex {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .editorflex.flex>* {
        flex-basis: 100% !important;
    }

    .btn {
        white-space: normal;
    }

    .form-item.half,
    .form-item.one-third,
    .form-item.two-thirds,
    .form-item.one-fourth,
    .form-item.three-fourths,
    .form-item.one-fifth,
    .form-item.two-fifths,
    .form-item.three-fifths,
    .form-item.four-fifths {
        width: 100%;
    }

    .btn.btn-big {
        padding: 20px 32px;
        font-size: 20px;
    }
}


/* table */
table {
    width: 100%;
    /*border-collapse: collapse;*/
    border-spacing: 1px;
}

table th,
table td {
    padding: 0px;
}

table tr {
    background-color: #fff;
}

table tr:hover {
    background-color: #fff1b1;
}

table th {
    border: 1px solid var(--darkgray);
    padding: 10px;
    background-color: var(--gray);
    text-align: left;
}

table td {
    border: 1px solid var(--darkgray);
    padding: 5px 10px;
    line-height: inherit;
    background-color: transparent;
    vertical-align: middle;
}

table.no-wrap td,
table.no-wrap th {
    white-space: nowrap;
}

.data-table {
    overflow-x: auto;
}

.select2-container--default .select2-selection--single {
    height: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 9px 10px 9px 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 25%;
}

.select2-container .select2-selection--multiple {
    min-height: 41px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding: 5px 5px 3px 5px;
}

[aria-disabled="true"] {
    color: var(--gray) !important;
}

[aria-readonly="true"] {
    /*color: #aeaeae !important;*/
}

table form ul.form-row {
    background-color: var(--lightgray);
    padding: 5px 5px 10px 5px;
    width: 100%;
    border: 1px solid var(--gray);
}

table form ul li {
    list-style: none;
    padding: 0;
}

table form .form-row,
table form .form-item {
    padding: 0;
    margin: 0;
}

.facebook,
.fa-facebook-f,
.fa-facebook,
.fa-square-facebook {
    color: #3b5998;
}

.x-twitter,
.fa-x-twitter {
    color: #000000
}

.twitter,
.fa-twitter {
    color: #1da1f2;
}

.youtube,
.fa-youtube,
.fa-square-youtube {
    color: #ff0000;
}

.linkedin,
.fa-linkedin,
.fa-linkedin-in {
    color: #0a66c2;
}

.instagram,
.fa-instagram,
.fa-square-instagram {
    color: #c32aa3;
}

.threads,
.fa-threads,
.fa-square-threads {
    color: #000000;
}

.pinterest,
.fa-pinterest,
.fa-pinterest-p {
    color: #bd081c;
}

.whatsapp,
.fa-whatsapp,
.fa-square-whatsapp {
    color: #25d366;
}

.playstore,
.fa-google-play {
    color: #34A853;
}

.appstore,
.fa-app-store-ios {
    color: #0D96F6;
}

.btn .whatsapp,
.btn .fa-whatsapp,
.btn .fa-square-whatsapp {
    color: inherit;
}

.tumblr,
.fa-tumblr,
.fa-square-tumblr {
    color: #35465d;
}

.amazon,
.fa-amazon {
    color: #ff9900;
}

.telegram,
.fa-telegram {
    color: #0088cc;
}

/*material icons*/
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24
}

/* ------------------------------------
         start responsive styles
---------------------------------------*/



/* 
--------------------------------------------------------
reset css to define common configurations end
--------------------------------------------------------
 */


/* theme specific css starts here*/
/* Body Fonts */

body {
    font-optical-sizing: auto;
    font-weight: 400;
    background-color: var(--body-background);
}

:root {
    /*--primary: #800000;
    --secondary: #008080;*/
}

h1,
h2,
h3,
h4 {
    /*color: var(--textcolor);*/
}

/* Header */
#header {
    background-color: var(--header-background);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    box-shadow: 0px 2px 5px -2px #333;
    z-index: 101;
    position: fixed;
    width: 100%;
}

/*body.scrolled #header{
    max-height: 70px;
}*/
#header .cart-icon {
    width: 25px;
    height: 27px;
}

#header .cart-icon a {
    width: 100%;
    height: 100%;
    display: block;
}

#header .search-icon {
    width: 23px;
    height: 27px;
}

.text-logo {
    line-height: normal;
    font-size: 1.6em;
    background-color: #000;
    color: #fff;
    padding: 10px;
}


.main {
    padding-top: 90px;
    display: flex;
    flex-direction: column;
    /*overflow-y: hidden;*/
}

.active-announcement .main {
    padding-top: 120px;
}

body.scrolled .main {
    padding-top: 70px;
}

body.has-ad {
    padding-bottom: 80px;
}

.justify-space-evenly {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

section,
.section {
    padding: 80px 0;
    margin: 0 auto;
    order: 100;
}

.animation-active section,
.animation-active .section {
    overflow-x: hidden;
}

section.banner-section,
.single-product section.slider-section,
.category-page section.category-title-section,
.pages section.page-title {
    /*order: 0 !important;*/
}

section.title-section {
    order: 0;
}

section.fill-bg,
.section.fill-bg {
    background-color: var(--lightgray);
}

section.no-fill-bg {
    background-color: transparent !important;
}

section.map-container.fill-bg,
.single-product section.slider-section,
section.placeholder,
body.checkout-result .main section {
    background-color: transparent;
}

section.map-container>.full {
    background-image: url('../images/maps-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    background-color: #000;
}

section.map-container .view-map {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d7;
    color: #fff;
    z-index: 2;
}

section.map-container .view-map .view-map-button {
    color: #fff;
    border: 1px solid #fff;
    background: transparent;
}

section.map-container .view-map .view-map-button:hover {
    color: #000;
    background: #fff;
}

/*section table td {
    border: 0;
    font-weight: bold;
    padding: 10px 0;
}*/
.title-section.stripe .highlighter {
    /*background: repeating-linear-gradient(60deg, var(--gray) 0%, var(--gray) 10%, var(--lightgray) 10%, var(--lightgray) 20%);*/
    background: var(--lightgray);
}

.title-section .section-title span {
    display: none;
}

.company-logo {
    width: 250px;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 5px 0;
    transition: all 0.5s ease-in-out;
    max-height: 100%;
}

body.scrolled .company-logo {
    height: 50px;
}

.company-logo a {
    display: flex;
    width: 100%;
    height: 100%;
    text-align: left;
    line-height: 0;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.company-logo a img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    transition: all 0.5s ease-in-out;
}

.maintenance .company-logo {
    width: auto;
}

.section-to-show .container {
    /*display: none;*/
    opacity: 0;
    transition: opacity 0.5s;
}

.section-to-show .container.fade-in {
    opacity: 1;
}

.section-to-show {
    /*opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;*/
}

.section-to-show.visible {
    /*opacity: 1;
    transform: translateY(0);*/
}

.hide,
.scroll-to-show {
    display: none;
}

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

.menu-btn,
.cart-btn,
.search-btn {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

.menu-btn i,
.cart-btn i,
.search-btn i {
    color: var(--menu-text);
}

.menu-btn:hover i,
.cart-btn:hover i,
.search-btn:hover i {
    color: var(--secondary);
}

/* Desktop Menu */
.desktop-menu-wrap {
    /*height: 90px;*/
    padding-right: 15px;
}

body.checkout .desktop-menu-wrap {
    padding-right: 0px;
}

.desktop-menu * {
    font-family: var(--menu-font);
}

.desktop-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.desktop-menu>ul>li {
    /*padding: 32px 8px;*/
}

.desktop-menu>ul>li:hover {
    background-color: var(--menu-hover-bg);
    color: var(--menu-hover-text);
}

.desktop-menu>ul>li:hover>a {
    color: var(--menu-hover-text);
}

/*.desktop-menu > ul > li.active > a{
    color: var(--secondary);
}
.desktop-menu > ul > li.active:hover > a{
    color: #fff;
}*/

.desktop-menu a {
    text-decoration: none;
    color: var(--menu-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
    display: block;
    width: 100%;
}

.desktop-menu>ul>li>a {
    padding: 33px 8px;
    display: block;
}

body.scrolled .desktop-menu>ul>li>a {
    padding: 23px 8px;
}

.desktop-menu a:hover {
    color: var(--menu-hover-text);
}

.desktop-menu ul li.parent {
    padding-right: 20px !important;
}

.desktop-menu ul li.parent:after {
    content: "";
    display: inline-block;
    width: 6px;
    /* Adjust width */
    height: 6px;
    /* Adjust height */
    border-bottom: 1px solid var(--menu-text);
    /* Bottom part of chevron */
    border-right: 1px solid var(--menu-text);
    /* Right part of chevron */
    transform: rotate(50deg) skewX(10deg);
    /* Rotates to form ▼ */
    position: absolute;
    top: 43%;
    right: 15px;
}

.desktop-menu ul li.parent li.parent:after {
    transform: rotate(-48deg);
    right: 10px;
    top: 19px;
}

.desktop-menu ul li.parent ul {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 0.1s ease, opacity 0.1s ease;
    top: 90px;
    left: 0px;
    background: var(--menu-hover-bg);
    box-shadow: 1px 2px 3px 2px #00000030;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    z-index: 99;
}

body.scrolled .desktop-menu ul li.parent ul {
    top: 70px;
}

.desktop-menu ul li.parent:hover>ul {
    background-color: var(--header-background);
    display: flex !important;
    flex-direction: column;
    width: max-content;
    padding: 0px;
    top: 90px;
    left: 0px;
    box-shadow: 1px 2px 3px 2px #00000030;
    /*height: auto;*/
    opacity: 1;
    overflow: unset;
    transform: translateY(0px);
    visibility: visible;

}

.desktop-menu>ul>li.parent:hover>ul {
    min-width: 100%;
}

.desktop-menu ul li.parent>ul li {
    border-bottom: 1px solid var(--gray);
    padding: 10px 15px;
    color: var(--textcolor);
    transition: all 0.2s linear;
}

.desktop-menu ul li.parent ul li:hover {
    background-color: var(--menu-hover-bg);
    color: var(--menu-hover-text);
}

.desktop-menu ul li.parent ul li:hover>a {
    color: var(--menu-hover-text);
}

.desktop-menu ul li.parent:hover::after {
    border-bottom: 1px solid var(--menu-hover-text);
    /* Bottom part of chevron */
    border-right: 1px solid var(--menu-hover-text);
    /* Right part of chevron */
}

/*.desktop-menu ul li.parent.active::after{
    border-bottom: 1px solid var(--secondary);
    border-right: 1px solid var(--secondary);
}*/
.desktop-menu ul li.parent>ul li:last-child {
    border-bottom: 0px;
    padding-bottom: 10px;
}

.desktop-menu ul li.parent>ul li:first-child {
    padding-top: 10px;
}

.desktop-menu ul li.parent:hover>ul>li ul {
    left: 100%;
    top: 0px;
}


.menu-active {
    color: var(--menu-hover-text);
}

.search-box-wrap button.btn {
    position: absolute;
    right: 1px;
    top: 6px;
    font-size: 17px;
}

/* Starts */
/* Drawer Base Styles */
.drawer {
    position: fixed;
    top: 0;
    height: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    padding: 20px;
    z-index: 1111;
    transition: transform 0.3s ease-in-out;
}

/* Left Drawer (Menu) */
#menu {
    left: 0;
    width: 300px;
    transform: translateX(-100%);
    max-width: 85%
}

/* Right Drawer (Cart) */
#cart {
    right: 0;
    width: 300px;
    transform: translateX(100%);
    max-width: 85%;
}

/* Responsive Drawer Width */
/*@media (max-width: 480px) {
    #menu, #cart {
        width: 85%;
    }
}*/

/* Show Drawer When Targeted */
/*#menu:target,
#cart:target {
    transform: translateX(0);
    opacity: 1;
}*/

/* Close Button */
.close-btn {
    position: absolute;
    border: none;
    cursor: pointer;
    z-index: 2;
}

/* Menu Button */
.menu-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #007BFF;
    top: 2px;
}

#menu.drawer-menu.open {
    left: 0;
    opacity: 1;
    transform: translateX(0);
}

#menu.drawer-menu {
    padding: 25px 10px 0px 10px;
}

.drawer-menu nav {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 40px;
}

.drawer-menu a {
    font-family: var(--menu-font);
}

.drawer-menu nav ul li a {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray);
    width: 100%;
    position: relative;
    display: block;
}

.drawer-menu nav ul li a:hover {
    color: var(--menu-hover-text);
}

.drawer-menu nav ul li:last-child a {
    border-bottom: 0;
}

.drawer-menu .menu-title .close-menu {
    cursor: pointer;
    font-size: 1.2em;
}

.drawer-menu .drawer-title {
    padding: 0;
}

.drawer-menu .menu-title {
    padding-bottom: 20px;
}

.drawer-menu nav ul li>div {
    display: flex;
    justify-content: space-between;
}

.drawer-menu nav ul li>div>span {
    position: absolute;
    right: -5px;
    font-size: 34px;
    top: 4px;
}

.drawer-menu nav ul li .open-child-menu {
    background-color: var(--lightgray);
    right: 0;
    width: 60px;
    text-align: right;
    display: block;
    z-index: 2;
    cursor: pointer;
    border-radius: 5px;
}

.drawer-menu nav ul li .open-child-menu:hover {
    background-color: var(--menu-hover-bg);
    color: var(--menu-hover-text);
}

.drawer-menu nav ul li ul li .open-child-menu {
    width: 50px;
    font-size: 30px;
    top: 6px;
}

.drawer-menu nav ul li.parent ul {
    padding-left: 10px;
}

.drawer-menu nav ul li.parent ul li a {
    padding: 8px 0 8px 8px;
    font-size: 0.9em;
    border-bottom-left-radius: 10px;
}

.drawer-menu nav ul li.parent ul li:first-child a {
    margin: 7px 0;
}

.drawer-menu nav ul li.parent ul li:last-child a {
    border-bottom: 1px solid var(--gray);
}

.drawer-menu .logged-in-parent {
    display: none;
}

body.logged-in .drawer-menu .logged-in-parent {
    display: block;
}

body.logged-in .drawer-menu .login-parent {
    display: none;
}

/* Menu Links */
.drawer a.close-btn {
    display: block;
    text-decoration: none;
    font-size: 22px;
    width: 30px;
    height: 30px;
    line-height: 34px;
    top: auto;
    right: 0px;
    padding: 0px;
    text-align: center;
}


/* Cart Items */
.drawer-cart {
    position: fixed;
    width: 280px;
    background-color: #fff;
    box-shadow: 0px -2px 6px 0px #666;
    height: 100%;
    z-index: 1111;
    top: 0;
    opacity: 0;
    right: -2000px;
    padding: 25px 10px 0px 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

#cart.drawer-cart.open {
    right: 0;
    opacity: 1;
    transform: translateX(0);
}

.drawer-cart .drawer-title {
    padding: 0;
}

.drawer-cart .menu-title {
    padding-bottom: 20px;
}

.drawer-cart .menu-title .close-cart {
    cursor: pointer;
    font-size: 1.2em;
}

.drawer-cart .cart-holder {
    padding-bottom: 0px;
    height: calc(100% - 220px) !important;
}

body.has-ad .drawer-cart .cart-holder {
    height: calc(100% - 300px) !important;
}

.drawer-cart nav {
    height: calc(100% - 60px);
    overflow: auto;
}

.drawer-cart .cart-items {
    height: 100% !important;
    overflow: auto;
    padding-bottom: 15px;
}

.drawer-cart .cart-item-image {
    box-shadow: 0px 0px 5px -2px #aaa;
    margin-left: 3px;
    line-height: 0;
    max-width: 70px;
}

.drawer-cart .cart-item-image img {
    width: 70px;
    height: auto;
}

.drawer-cart .cart-item {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid var(--gray);
}

.drawer-cart .cart-item:last-of-type {
    border-bottom: 0;
}

.drawer-cart .cart-item-title {
    font-size: 12px;
    font-weight: 500;
    padding-bottom: 5px;
}

.drawer-cart .cart-item-title small {
    font-weight: 400;
    font-style: italic;
    font-size: 11px;
}

.drawer-cart .remove-cart-item {
    color: var(--danger);
    font-size: 16px;
    position: absolute;
    top: -5px;
    left: 0;
    display: block;
    border: 1px solid var(--danger);
    padding: 0px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    z-index: 5;
    background-color: var(--white);
    cursor: pointer;
    line-height: 24px !important;
}

.drawer-cart .remove-cart-item form {
    display: block;
    height: 100%;
    width: 100%;
}

.drawer-cart .remove-cart-item button {
    cursor: pointer;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    display: block;
    background-color: transparent;
}

.drawer-cart .cart-update {
    display: flex;
    justify-content: start;
}

.drawer-cart .cart-update form {
    padding-top: 10px;
}

.empty-cart .material-symbols-outlined {
    font-size: 100px;
    font-variation-settings: 'FILL' 0, 'wght' 100, 'GRAD' 0, 'opsz' 24;
    padding-top: 30px;
}

.drawer-cart .empty-cart {
    position: absolute;
    top: 80px;
    margin: 0 auto;
    width: 100%;
    z-index: 5
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.cart-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item div {
    flex-grow: 1;
}

.cart-total {
    font-size: 18px;
    font-weight: 500;
    text-align: right;
    margin-top: 10px;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #ffffff !important;
    text-align: center;
    font-size: 16px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: var(--secondary);
}

/* Ensure overlay covers the full screen and is clickable */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none;
}

/* Show overlay when a drawer is open */
/*#menu:target ~ .overlay,
#cart:target ~ .overlay {
    display: block;
}*/

.overlay.show {
    opacity: 1;
    display: block;
    animation: showoverlay 0.5s;
}

@keyframes showoverlay {
    from {
        opacity: 0;
        display: none;
    }

    to {
        opacity: 1;
        display: block;
    }
}

@keyframes hideoverlay {
    from {
        opacity: 1;
        display: block;
    }

    to {
        opacity: 0;
        display: none;
    }
}


.cart-item p {
    padding-bottom: 0px !important;
}

/* Ends*/

/* Cart Button Styling */
.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Cart Badge Styling */
.cart-badge {
    position: absolute;
    top: -11px;
    right: -15px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    padding: 0px;
    line-height: 23px;
    min-width: 23px;
}


/* Custom Box for distinction */
.custom-box {
    border: 1px solid #d3d3d3;
    padding: 20px;
}

/*.home-products{
    background-color: var(--lightgray);
}*/
.home-products {
    overflow-x: hidden;
}

/* Image Title */
.category-banner {
    background-color: var(--lightgray);
    background-size: cover;
    background-repeat: no-repeat;
    line-height: 0;
}

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

.category-banner .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.category-banner .heading {
    padding: 20px 0;
    line-height: normal;
    font-weight: bold;
    font-size: 42px;
    /* color: white; */
    /* text-shadow: 1px 0px 1px #212529, -1px 0px 1px #212529, 0px 1px 1px #212529, 0px -1px 1px #212529; */
}

.category-banner .align-bottom-center .flex,
.category-banner .align-middle-center .flex,
.category-banner .align-top-center .flex {
    justify-content: center;
}

.category-banner .align-bottom-center .heading,
.category-banner .align-middle-center .heading,
.category-banner .align-top-center .heading {
    text-align: center;
}

.dark-text {
    color: #000;
    text-shadow: 1px 0px 1px #fff, -1px 0px 1px #fff, 0px 1px 1px #fff, 0px -1px 1px #fff;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-item .accordion-header {
    font-weight: bold;
    background-color: var(--lightgray);
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-weight: bold;
    top: 9px;
}

.accordion-header:hover {
    background: var(--gray);
}

.accordion-item .accordion-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0px 10px;
    background-color: #fdfdfd;
    font-size: 0.9em;
}

.accordion-item .accordion-text ul {
    padding-top: 10px;
}

.accordion-item.active .accordion-header::after {
    content: '–';
    right: 13px;
}

.accordion-item.active .accordion-text {
    padding: 10px;
}

.accordion-item .accordion-header p,
.accordion-item .accordion-text p {
    padding-bottom: 0;
}

.tabs-wrapper {
    margin-bottom: 20px;
}

.tabs-nav {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    color: var(--textcolor);
    /*border-bottom: 1px solid var(--gray);*/
    -webkit-overflow-scrolling: touch;
    /*scrollbar-width: none;*/
    /*to hide the scrollbar*/
}

/*.tabs-nav::-webkit-scrollbar {
    display: none;
}*/
/*to hide the scrollbar in chrome safari*/
.tab-name {
    flex: 0 0 auto;
    padding: 10px 20px;
    background: var(--lightgray);
    border: 1px solid var(--gray);
    /*border-bottom: 0;
    border-bottom: none;*/
    margin-right: 4px;
    cursor: pointer;
    /*border-top-left-radius: 5px;
    border-top-right-radius: 5px;*/
    border-radius: 5px;
    text-align: center;
}

.tab-name.active {
    background: var(--secondary);
    font-weight: 600;
    color: #fff;
}

.tabs-contents {
    border: 1px solid var(--gray);
    padding: 25px 15px;
    border-top: 0;
    background-color: #fff;
    margin-top: 5px;
    border-radius: 5px;
    color: var(--textcolor);
}

.tab-content {
    display: none;
    text-wrap: auto;
}

.tab-content.active {
    display: block;
}

.tab-name p:last-of-type,
.tab-content p:last-of-type {
    padding-bottom: 0;
}


.announcements {
    background-color: var(--primary);
    color: #fff;
    font-size: 0.85em;
    text-align: center;
    padding: 1px 10px;
    height: 32px;
    line-height: 15px;
    /*display: flex;
    align-items: center;*/
    transition: all 0.3s ease;
    overflow: hidden;
}

body.scrolled .announcements {
    height: 0;
    padding: 0;
}

.announcements>div {
    /*display: inline-block;*/
    opacity: 0;
    height: 100%;
}

.announcements>div:first-of-type {
    /*display: block;*/
}

.announcements .slick-track {
    /*display: flex;
    align-items: center;
    justify-content: center;*/
    height: 100%;
}

.announcements.slick-initialized .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.announcements .slick-prev:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border: 2px solid #fff;
    clip-path: polygon(0% 0%, -100% 240%, 100% 100%);
    opacity: 0;
}

.announcements .slick-next:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    border: 2px solid #fff;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
    opacity: 0;
}


.banners297242342.slick-slider .slick-track {
    display: flex !important;
    background: var(--lightgray);
    align-items: center;
}

.banners297242342.slick-initialized .slick-slide {
    background: var(--lightgray);
    line-height: 0px;
    height: auto !important;
}

.banners297242342 .slick-slide img {
    object-fit: cover;
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    object-position: center center;
    line-height: 0px;
    margin-top: -1px;
    margin-left: -1px;
}

.banners297242342 .slick-prev:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    border: 2px solid var(--primary);
    clip-path: polygon(0% 0%, -100% 240%, 100% 100%);
    outline: 4px solid white;
    outline-offset: -6px;
}

.banners297242342 .slick-next:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    transform: rotate(-45deg);
    border: 2px solid var(--primary);
    outline: 4px solid white;
    outline-offset: -6px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

.banners297242342 .banner-text {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 3vw;
    /*text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;*/
    /*pointer-events: none;*/
    flex-direction: column;
    line-height: normal;
    font-family: var(--banner-font);
    width: 97%;
    margin: 0 auto;
}

.banners297242342 a:not(.btn):hover {
    color: initial;
}

.banners297242342 .banner-text div {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    color: #fff;
}

.banners297242342 .banner-text>div span {
    display: block;
    text-align: center;
    line-height: 1.3em;
}

/*
.banners297242342 .banner-text{
  font-size:3vw;
}
.banners297242342 .banner-text > div{
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    width: 96%;
    height: 100%;
    padding: 5vh 0;
}
.banners297242342 .banner-text > div span{
    width: 30%; height: 100%; display: flex; align-items: center;
}
.banners297242342 .banner-text > div span.top{
  align-items: start;
}
.banners297242342 .banner-text > div span.bottom{
  align-items: end; text-align: right;
}

*/

.special-banner .special-banner-image {
    padding: 0;
    width: calc(33.33% - 15px);
    float: left;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #00000030;
    padding: 5px;
    background: #fff;
}

.special-banner .special-banner-image.featured-count-10 {
    width: calc(10% - 15px);
}

.special-banner .special-banner-image.featured-count-9 {
    width: calc(11.11% - 15px);
}

.special-banner .special-banner-image.featured-count-8 {
    width: calc(12.5% - 15px);
}

.special-banner .special-banner-image.featured-count-7 {
    width: calc(14.28% - 15px);
}

.special-banner .special-banner-image.featured-count-6 {
    width: calc(16.66% - 15px);
}

.special-banner .special-banner-image.featured-count-5 {
    width: calc(20% - 15px);
}

.special-banner .special-banner-image.featured-count-4 {
    width: calc(25% - 15px);
}

.special-banner .special-banner-image.featured-count-3 {
    width: calc(33.33% - 15px);
}

.special-banner .special-banner-image.two-featured-block,
.special-banner .special-banner-image.featured-count-2 {
    width: calc(50% - 15px);
}

.special-banner .special-banner-image.one-featured-block,
.special-banner .special-banner-image.featured-count-1 {
    width: 100%;
}

.special-banner .promo-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--lightgray);
    line-height: 0px;
    width: 100%;
}

.special-banner .promo-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.special-banner .special-banner-image img {
    line-height: 0px;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.special-banner .special-banner-image .block-text {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--textcolor);
    text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
}

.special-banner.text-below-image .special-banner-image {
    margin-bottom: 50px;
}

.special-banner.text-below-image .special-banner-image .block-text {
    position: relative;
    display: block;
    text-align: center;
    height: auto;
    margin-top: 15px;
    font-size: 1.5em;
}

/* Slick Slider */
.slick-prev {
    left: 25px !important;
    z-index: 100 !important;
    overflow: visible !important;
}

.slick-prev,
.slick-next {
    width: 32px;
    height: 32px;
    z-index: 2;
    top: 49%;
}

.slick-prev:before,
.slick-next:before {
    font-size: 36px;
    color: #fff;
}

.slick-next {
    right: 35px !important;
}

.banner-section .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.banner-section .slick-dots {
    bottom: 5px;
}

.slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0 3px;
}

.slick-dots li button::before {
    font-size: 10px;
    line-height: 16px;
    width: 16px;
    height: 16px;
    z-index: 1;
}

.slick-dots li button::after {
    font-family: slick;
    font-size: 12px;
    line-height: 16px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    content: "•";
    text-align: center;
    opacity: 0.25;
    color: white;
    -webkit-font-smoothing: antialiased;
}

.slick-dots li.slick-active button:before {
    opacity: .9;
    font-size: 14px;
}

.slick-dots li.slick-active button:after {
    opacity: .9;
    font-size: 16px;
}



.head-image {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.featured-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1%;
}

/*.category-display {
    position: relative;
    width: calc(33.33% - 7px);
    height: 100px;
    border: 1px solid var(--darkgray);
    padding: 0;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--textcolor);
    overflow: hidden;
    font-size: 24px;
    font-weight: 500;
    text-shadow: 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
    margin: 10px 0;
}

.category-display img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}*/

.category-display {
    position: relative;
    padding: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--textcolor);
    font-size: 1.2em;
    font-weight: 500;
    margin: 5px 0;
    width: 19%;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    border: 1px transparent;
}

.category-display img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    /*new*/
}

.category-display>div {
    border: 1px solid var(--gray);
    /*new*/
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}

.category-display span {
    position: absolute;
}

.category-display:hover {
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.3);
    text-shadow: 1px 0px 1px transparent, -1px 0px 1px transparent, 0px 1px 1px transparent, 0px -1px 1px transparent;
    color: var(--textcolor);
    border-radius: 10px;
}

.category-display:hover span {
    border-bottom: 1px solid var(--textcolor);
}


.stripe .breadcrumbs {
    text-align: center;
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 300;
    padding-bottom: 20px;
}

.title-section .section-title {
    justify-content: center;
    text-align: center;
}

.special-banner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.section-title span {
    flex-grow: 1;
    height: 2px;
    background-color: var(--gray);
    margin-left: 10px;
}

.section-content {
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: var(--body-background);
}

.section-content hr {
    margin-bottom: 20px;
}

.brand-slider .slide {
    padding: 20px;
}

.brand-slider .slide .brand-name {
    font-size: 15px;
    text-align: center;
}

.section-content>p:last-of-type,
.page-content>p:last-of-type {
    padding-bottom: 0px;
}

.section-content>p:last-of-type>br,
.page-content>p:last-of-type>br {
    display: none;
}

.section-content>.editorflex:last-of-type {
    margin-bottom: 0;
}

/* Product Page and Product Card */

.product-card-shop {
    width: 100%;
    background: var(--body-background);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    justify-items: center;
    display: flex;
    flex-direction: column;
}

.product-card-shop .other-variants small span {
    display: block;
}

.product-card-shop .other-variants a {
    border: 1px solid var(--secondary);
    padding: 0px 4px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 5px;
}

.product-image-shop img {
    width: 100%;
    height: auto;
    display: inline-block;
    border-radius: 5px;
}

.product-image-shop a {
    display: block;
    overflow: hidden;
    text-align: center;
}

.product-title-shop {
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding-bottom: 0;
    line-height: 20px;
}

.product-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0px;
    border-bottom: 1px solid #ddd;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

.product-card:last-of-type {
    border-bottom: 0px;
}

.product-card-title {
    display: block;
    padding-bottom: 8px;
}

.product-image {
    width: 100px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f8f8;
    position: relative;
}

.product-image img,
.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-image {
    width: 70px;
    height: auto;
    background: #f8f8f8;
    position: relative;
    padding: 0;
    line-height: 0;
    box-shadow: 0px 0px 3px 0px #00000030;
    top: 6px;
}

.cart-products .product.details {
    width: calc(100% - 90px);
    line-height: normal;
}

.cart-holder .cart-item-price {
    font-size: 14px;
    padding-top: 5px;
}

.cart-footer {
    position: absolute;
    bottom: 0px;
    background-color: #fff;
    z-index: 10;
    margin-right: 10px;
    width: calc(100% - 20px);
}

body.has-ad .cart-footer {
    bottom: 80px;
}

.checkout-page .cart-item-price small {
    font-size: 0.8em;
}

.pay-now {
    border-radius: 10px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 5px 10px;
    display: inline;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 10px 0;
}

.sale-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
    border: 1px solid #fff;
}

.no-image .sale-badge {
    top: 40px;
    left: auto;
    right: 2px;
    font-size: 10px;
    font-weight: normal;
    padding: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: normal;
    border-radius: 50%;
    z-index: 2;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.wishlist-icon {
    position: absolute;
    top: 8px;
    right: 4px;
    cursor: pointer;
    font-size: 26px;
    color: var(--danger);
    z-index: 2;
}

.wishlist-icon .btn {
    background: transparent;
    color: var(--danger);
    padding: 0;
    font-size: 26px;
    min-height: auto;
}

.product-details {
    width: 100%;
    padding: 10px 0 5px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.no-image .product-details {
    width: calc(100% - 40px);
}

.product-title {
    /*font-size: 16px;*/
    font-weight: 500;
    display: block;
}

.price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.regular-price {
    color: var(--secondary);
    font-weight: 700;
}

.sale-price {
    text-decoration: line-through;
    color: var(--darkgray);
    font-size: 14px;
}

.final-price {
    font-size: 14px;
}

.col-lg-5 .price,
.col-lg-6 .price {
    font-size: 14px;
}

.col-lg-5 .sale-price,
.col-lg-6 .sale-price {
    font-size: 12px;
}

/*.regular-price::before, .sale-price::before, .final-price::before {
    content: "\20B9"; 
    margin-right: 4px;
    font-weight: 600;
}*/

.stars {
    padding-bottom: 0px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}

.ratings {
    color: #ffd700;
}

.no-ratings {
    color: var(--darkgray);
}

.quantity-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.quantity button {
    padding: 4px 8px;
    border-left: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    background: var(--lightgray);
    cursor: pointer;
}

.product-quantity-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.product-quantity button {
    padding: 4px 8px;
    border-left: 1px solid var(--gray);
    border-right: 1px solid var(--gray);
    background: var(--lightgray);
    cursor: pointer;
}

.read-reviews {
    text-decoration: underline;
}

.read-reviews:hover {
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #ffffff;
}

.read-reviews:hover i {
    color: #ffffff;
}

.aggregate-review {
    cursor: pointer;
}

.add-to-cart {
    padding-top: 20px;
    color: #ffffff;
    font-weight: 600;
}

.highlights {
    color: var(--textcolor);
}

/*.has-bg-color{
    background-color: var(--lightgray);
}*/

.highlights-wrap {
    display: flex;
    position: relative;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px;
}

.highlight-card {
    width: calc(25% - 15px);
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: var(--lightgray);
    padding: 10px;
    overflow: hidden;
}

.highlight-card .content {
    width: 100%;
}

.highlight-card .content p {
    font-size: 0.9em;
    line-height: 1.5em;
    padding-bottom: 0;
}

.icon-box i,
.icon-box .material-symbols-outlined {
    font-size: 40px;
    padding-top: 0px;
}

.material-symbols-outlined {
    visibility: hidden;
    display: none;
}

.material-symbols-outlined.loaded {
    visibility: visible;
    /* Or display: inline; */
    display: inline-block;
    ;
}

.content h5 {
    padding-bottom: 10px;
}

.content p {
    padding-bottom: 10px;
}

.product-list-star-rating i {
    color: #FFD700;
}

.cart-item-counter>div {
    border: 1px solid var(--gray);
    width: 34px;
    height: 34px;
    text-align: center;
}

.cart-item-counter {
    margin-top: 20px;
}

.cart-item-counter>div.counter {
    /*width: 60px;*/
}

.cart-update .cart-item-counter>div {
    width: 28px;
    height: 28px;
    line-height: 24px;
    border-radius: 0;
}

.cart-item-counter .plus,
.cart-item-counter .minus,
.cart-item-counter .cplus,
.cart-item-counter .cminus {
    font-weight: 300;
    line-height: 30px;
    font-size: 26px;
    background-color: var(--lightgray);
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--textcolor);
}

.cart-item-counter .minus,
.cart-item-counter .cminus {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.cart-item-counter .plus,
.cart-item-counter .cplus {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.cart-item-counter .cart-item-count {
    width: 100%;
    height: 100%;
    border: 0px;
    outline: none;
    text-align: center;
    padding: 0;
    margin: 0;
    border-radius: 0;
    position: relative;
    text-align: center;
    min-height: auto;
}

.single-product .product-info .cart-item-counter {
    margin-top: 0;
}

.single-product .product-info .cart-item-counter>div {
    width: 46px;
    height: 46px;
    text-align: center;
}

.single-product .product-info .cart-item-counter .plus,
.single-product .product-info .cart-item-counter .minus {
    line-height: 40px;
    font-size: 30px;
}

.cart-item-counter input::-webkit-outer-spin-button,
.cart-item-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.cart-item-counter input[type=number] {
    -moz-appearance: textfield;
}

.product-list-item .cart-item-counter>div {
    width: 50%;
    height: 34px;
}

.product-list-item .cart-item-counter>div.counter {
    width: 45px;
}

.product-list-item .cart-item-counter .plus,
.product_list_item .cart-item-counter .minus {
    line-height: 30px;
}

.cart-item-price s {
    color: var(--gray);
}

.single-product .product-wrapper {
    display: flex;
    gap: 60px;
}

.single-product .product-slider-wrap {
    width: 40%;
    /*height: 100%;*/
    /*position sticky will not work with height here*/
}

/* Sticky product images on product details page */
/*.single-product .product-slider-inner-wrap {
    position: sticky;
    top: 120px;
}*/
.zoom-container {
    background-color: var(--lightgray);
    cursor: crosshair;
    width: 100%;
    line-height: 0px;
    overflow: hidden;
}

.zoom-target {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
}

.single-product .product-info {
    width: 60%;
}

.single-product .product-wrapper.full-width-image-layout {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-top: 0 !important;
}

.single-product .full-width-image-section {
    padding-top: 0 !important;
}

.single-product .product-wrapper.full-width-image-layout .product-slider-wrap {
    width: 100%;
}

.single-product .product-wrapper.full-width-image-layout .product-slider {
    padding: 0 !important;
}

.single-product .product-wrapper.full-width-image-layout .product-info {
    width: 100%;
    margin-top: 30px;
}

.single-product .product-wrapper.full-width-image-layout .product-info.container {
    width: 1280px;
    max-width: 96%;
    margin: 0 auto;
    padding-top: 30px;
}

.single-product .product-slider .slick-prev:before,
.product-slider .slick-next:before {
    color: black;
}

.single-product .slick-next {
    right: 13px !important;
}

.single-product .slick-prev {
    left: 10px !important;
}

.single-product .slick-dots {
    bottom: -30px;
    width: calc(100% - 22px);
}

.single-product .slick-dots li {
    margin: 0;
}

.single-product .slick-dots li button:before {
    font-size: 10px;
    transition: all 300ms ease 0ms;
    color: var(--gray);
    opacity: 0.8;
}

.single-product .slick-dots li.slick-active button:before {
    opacity: .85;
    color: black;
    font-size: 16px;
}

.single-product .product-slider {
    background-color: var(--lightgray);
    padding: 10px;
}

.single-product .product-slider-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 3px;
}

.single-product .product-slider-nav div {
    width: calc(20% - 8px);
    background-color: #fff;
    padding: 5px;
    border-radius: 5px;
    line-height: 0;
    box-shadow: 0px 0px 5px -1px #00000030;
    text-align: center;
}

.single-product .product-slider-nav div img {
    width: 100%;
    height: auto;
}

.single-product .slider-section hr {
    border-color: var(--gray);
}

.single-product .heart-wrap .material-symbols-outlined {
    top: 2px;
    font-size: 30px;
}

.single-product .heart-wrap.active .material-symbols-outlined {
    color: var(--danger);
}

.single-product .product-title small {
    font-size: 0.5em;
    position: relative;
    top: -8px;
}

.single-product .product-title small span {
    top: 0px;
}

.single-product .product-title small cite {
    font-style: normal;
    font-weight: normal;
}

.single-product .product-description {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 5px #00000030;
    border-radius: 5px;
}

.single-product .product-description ul {
    padding-bottom: 20px
}

.single-product .product-description li {
    list-style: circle;
    margin-left: 19px;
}

.single-product .product-list-price s {
    color: var(--gray);
    font-size: 0.9em;
}

.single-product .sale-info {
    background-color: var(--secondary);
    padding: 10px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
}

.single-product .product-info .cart-item-counter {
    margin-top: 0;
}

.single-product .product-info .cart-item-counter>div {
    width: 46px;
    height: 46px;
    text-align: center;
}

.single-product .product-info .cart-item-counter .plus,
.single-product .product-info .cart-item-counter .minus {
    line-height: 40px;
    font-size: 30px;
}

.active .material-symbols-outlined {
    font-variation-settings: 'FILL' 1;
}

.single-product .page-product-title span.title-span {
    padding-right: 40px;
}

.single-product .page-product-title .heart .material-symbols-outlined {
    font-size: 36px;
    cursor: pointer;
}

.single-product .page-product-title.active .heart .material-symbols-outlined {
    color: var(--danger);
}

.single-product .alternate-description {
    display: none;
    margin-top: 30px;
}

.single-product .alternate-description .product-description {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
}

.variant-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-tabs li .variant-capsule {
    padding: 8px 15px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-weight: 400;
    line-height: normal;
    display: block;
    font-size: 12px;
    min-width: 90px;
    text-align: center;
}

.variant-tabs li {
    line-height: normal !important;
}

.variant-tabs li.active .variant-capsule {
    border: 1px solid var(--secondary);
    font-weight: bold;
    color: var(--secondary);
}

.variant-tabs li:hover a {
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.variant-tabs li span.variant-capsule {
    border: 1px solid var(--gray);
    color: var(--gray);
}

.variant-tabs .offer-badge {
    font-size: 9px;
    font-weight: 500;
    background-color: var(--primary);
    color: #fff;
    padding: 3px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    left: 15px;
    width: calc(100% - 30px);
    text-align: center;
}

.review-blocks {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 0px;
}

.review-blocks.logged-in {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
}

.all-reviews .review {
    padding: 10px 20px;
    background-color: var(--body-background);
    border-radius: 5px;
    border: 1px solid var(--lightgray);
    box-shadow: 0px 0px 3px #00000030;
    margin-bottom: 10px;
}

.add-review {
    padding: 10px 20px;
    background-color: var(--body-background);
    border-radius: 5px;
    border: 1px solid var(--lightgray);
    box-shadow: 0px 0px 3px #00000030;
    height: 100%;
}

.add-review form {
    height: 100%;
    display: block;
}

.add-review form>.flex {
    justify-content: space-between;
    height: 100%;
}

.add-review .form-row {
    overflow: unset;
}

.add-review .form-row.text-area,
.add-review .form-row.text-area .form-item,
.add-review .form-row.text-area .label-wrap {
    height: 100%;
}

.review-blocks textarea {
    height: 90%;
}

.wishlist-button {
    background: none;
}

.product-page .page-product-title .wishlist-button {
    font-size: 30px;
}

.brands4673453523 {
    padding: 0 0px;
    font-size: 1em;
}

.brands4673453523 .brand-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brands4673453523 .brand-image {
    /*border: 1px solid var(--darkgray); */
    border-radius: 5px;
    padding: 7px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #00000030;
    margin-top: 3px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands4673453523 .brand-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.brands4673453523.slick-slider .slick-track {
    display: flex !important;
}

.brands4673453523 .slick-list {
    /*margin: 0 -10px;*/
}

.brands4673453523 .slick-slide {
    padding: 0 10px;
    height: inherit !important;
}

.brands4673453523 .slick-prev,
.brands4673453523 .slick-next {
    top: 45%;
    background-color: #00000050;
    padding: 5px;
    color: #fff;
    bottom: auto;
    border-radius: 4px;
}

.brands4673453523 .slick-prev:before,
.brands4673453523 .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}

.brands4673453523 .slick-prev {
    left: 0px !important;
}

.brands4673453523 .slick-next {
    right: 0px !important;
}

.brands4673453523 .slick-prev:before {
    content: "\f053";
}

.brands4673453523 .slick-next:before {
    content: "\f054";
}

.brands4673453523 .brand-text {
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
}

.search-page section.product-list {
    background-color: transparent !important;
}


.contact-page .contact-info i.fa {
    border: 1px solid var(--primary);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
    flex: 0 0 auto;
}

.contact-page .contact-info>div {
    margin-bottom: 7px;
    font-weight: 500;
    align-items: start;
}

form .merge-with-left {
    margin-left: -5px;
}

form .merge-with-left .right-item {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: calc(100% + 5px);
}

.cost-breakup cite {
    font-size: 0.8em;
}

.extra-content {
    padding-bottom: 0;
}

/* Footer */
footer {
    /*background: #1d1f22;*/
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 40px 0;
}

footer .section-title {
    color: #fff;
}

.footer-wrap {
    display: flex;
    padding: 40px 0px 20px 0px;
    border-bottom: 1px solid var(--gray);
    gap: 5%;
    font-weight: 200;
}

.footer-card {
    width: 33.33%;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.footer-card .footer-social li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}

.footer-card .footer-social li::before {
    content: "";
    display: none;
}

.footer-card .footer-social li a.btn {
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 46px;
    text-align: center;
    background-color: #fff;
}

.footer-card .footer-social li a:hover i {
    color: #fff;
}

.footer-social i {
    font-size: 22px;
}

.footer-card ul {
    list-style: none;
    padding-left: 0;
}

.footer-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.footer-card li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.5s;
}

.footer-card li a {
    color: #fff;
}

.footer-card li a:hover {
    color: var(--secondary);
    text-decoration: none;
}

.footer-card li a.btn:hover {
    background-color: var(--secondary);
}

.footer-card li:hover::before {
    color: var(--secondary);
}

.newsletter-box-wrap button {
    position: absolute;
    right: 1px;
    top: 1px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.newsletter-wrap .newsletter-box-wrap button {
    font-size: 32px;
    padding: 3px 6px 2px 6px;
}

.footer-icons i {
    color: #fff;
}

.footer-logo {
    width: 220px;
    height: auto;
    line-height: 0;
}

.footer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left;
}

footer .contact-info>div {
    padding-bottom: 7px;
}

footer .contact-info a {
    color: #fff;
}

footer .contact-info a:hover {
    text-decoration: underline;
    color: var(--secondary);
    text-underline-offset: 4px;
}

footer .contact-info i {
    width: 20px;
}

.footer-card .custom-title {
    font-family: var(--title-font);
}

.footer-card .custom-title-parent {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 300;
    padding-bottom: 20px;
    padding-left: 0;
    margin-bottom: 0;
    pointer-events: none;
    line-height: normal;
}

.footer-card .custom-title-parent a:hover {
    color: inherit;
    cursor: default;
}

.footer-card .custom-title-parent:before {
    content: unset;
}

.language-selector {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    cursor: pointer;
    width: auto;
    text-align: center;
}

.dynamic-form-wrap {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.dynamic-form-inner-wrap {
    padding: 20px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    background-color: #fff;
}

.dynamic-form-wrap .button-row {
    text-align: right;
}

.dynamic-form-wrap .button-row .half .btn {
    width: 100%;
}

.dynamic-form-title {
    text-align: center;
}

.dynamic-form-title h3 {
    font-weight: 400;
}

.dynamic-form-description {
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.4em;
    padding-bottom: 20px;
}

.dynamic-form-description:empty {
    display: none;
}

.dynamic-form-wrap input[type='checkbox'],
.dynamic-form-wrap input[type=radio] {
    width: 35px;
    height: 25px;
    min-height: auto;
}

.dynamic-form-wrap .form-item.checkbox,
.dynamic-form-wrap .form-item.radio {
    margin-top: -20px;
}

.dynamic-form-wrap .checkboxes-wrap,
.dynamic-form-wrap .radio-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border: 1px solid var(--gray);
    padding: 10px;
    border-radius: 5px;
}

.dynamic-form-wrap .form-item.checkbox .checkbox-label,
.dynamic-form-wrap .form-item.radio .radio-label {
    opacity: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dynamic-form-wrap span.label-text {
    font-size: 0.85rem;
}

.dynamic-form-wrap .captcha-row img {
    max-height: 50px;
    width: auto;
    border-radius: 5px;
    max-width: 100%;
}

body.product .dynamic-form-title {
    text-align: left;
}

body.product .product-info .dynamic-form-wrap {
    width: 100%;
}

.enquiry-box-wrap .dynamic-form-inner-wrap {
    padding: 0px;
    border: 0;
    border-radius: 0px;
    background-color: transparent;
}

.enquiry-box-wrap .dynamic-form-description {
    padding-bottom: 10px;
}

.enquiry-box-wrap .dynamic-form-wrap .one-third,
.enquiry-box-wrap .dynamic-form-wrap .two-thirds,
.enquiry-box-wrap .dynamic-form-wrap .one-fourth,
.enquiry-box-wrap .dynamic-form-wrap .three-fourths {
    width: 50%;
}

.enquiry-box-wrap .dynamic-form-wrap .button-row .btn {
    width: 100%;
}

.enquiry-box-wrap .dynamic-form-wrap .captcha-row label {
    display: none;
}

.floating-wa {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 15px;
    bottom: 45px;
    z-index: 99999;
}

.floating-wa a img {
    max-width: 100%;
    height: auto;
}

/* Scroll to Top */

#scrollTopBtn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    background-color: var(--body-background);
    color: var(--textcolor);
    border: 1px solid var(--darkgray);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
    width: 30px;
    height: 30px;
}

#scrollTopBtn:hover {
    background-color: var(--secondary);
    color: var(--primary);
    border: 2px solid var(--primary);
}

/* Checkout Page*/
.remove {
    border-radius: 10px;
    background-color: #f8f9fa;
    padding: 5px 10px;
    display: inline;
    cursor: pointer;
}

.checkout-form {
    display: flex;
    gap: 60px;
}

.cart-products {
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 5px;
    border: 1px solid var(--gray);
}

.checkout-form .cart-products {
    background-color: #fff;
}

.totals {
    padding: 10px 20px;
    font-size: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

.cart-subtotal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tax {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/*.tax span::before {
    content: "\20B9 ";
    font-weight: 600; 
}*/

.total {
    border-top: 1px solid #333333;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 20px;
}

/* Product Page */
.thumbnail-slider {
    max-width: 100%;
    margin: 10px auto;
    overflow: hidden;
}

.thumbnail-slider img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.page-product-container {
    width: 96%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
}

.full.lg-sticky {
    position: sticky;
    top: 20px;
    max-height: 90vh;
    /* Ensures it doesn’t take the whole screen */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    /* Enables scrolling if content exceeds viewport height */
    gap: 10px;
}

.page-product-images {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-product-images img {
    object-fit: contain;
    width: 400px;
    height: 500px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
}

.page-product-thumbnails {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 5px;
    max-width: 100%;
    overflow-x: auto;
    /* Enables horizontal scrolling if there are too many thumbnails */
    margin: 60px 0 20px 0;
}

.page-product-thumbnails img {
    max-width: 80px;
    max-height: 80px;
    cursor: pointer;
    object-fit: cover;
}

.page-product-thumbnails .slick-slide {
    margin: 0 5px;
    /* Adjust the value to control the spacing */
}

.page-product-thumbnails .slick-list {
    margin: 0 -5px;
    /* Negative margin to prevent layout shift */
}

.page-product-details {
    flex: 1;
    padding: 20px !important;
}

.p-section {
    border: 2px solid #d3d3d3;
    border-radius: 15px;
}

.page-product-details .page-product-title {
    padding-bottom: 10px;
}

.brand-name {
    border-bottom: 1px solid #959595;
    padding-bottom: 10px;
    font-weight: 500;
}

.divider {
    padding: 10px;
}

.variation-section {
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.variation-single {
    border-radius: 5px;
    padding: 0 10px;
    background-color: #000000;
    color: #ffffff;
    font-weight: 400;
}

.variation-single:hover {
    background-color: var(--secondary);
}

.variation-selected {
    border-radius: 5px;
    padding: 2px 10px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
}

.variation-selected:hover {
    background-color: #000000;
    font-weight: 600;
}

.message-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;

    @starting-style {
        opacity: 0;
    }

    animation: hidemessage 0.5s;
    animation-fill-mode: forwards
}

.message-box.show {
    opacity: 1;
    display: flex;
    animation: showmessage 0.5s;
}

.enquiry-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;

    @starting-style {
        opacity: 0;
    }

    animation: hidemessage 0.5s;
    animation-fill-mode: forwards
}

.enquiry-box.show {
    opacity: 1;
    display: flex;
    animation: showmessage 0.5s;
}

@keyframes showmessage {
    from {
        opacity: 0;
        display: none;
    }

    to {
        opacity: 1;
        display: flex;
    }
}

@keyframes hidemessage {
    from {
        opacity: 1;
        display: flex;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.message-box-wrap {
    background-color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 0px 3px #fff;
    max-width: 90%;
}

.enquiry-box-wrap {
    background-color: #fff;
    border: 1px solid var(--secondary);
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0px 0px 0px 3px #fff;
    max-width: 300px;
}

.close-message-box,
.close-enquiry-box {
    z-index: 100;
    position: absolute;
    right: -13px;
    top: -13px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px !important;
    background-color: var(--danger);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.enquiry-box .form-row {
    padding-top: 15px;
    margin-left: 0;
    width: 100%;
}

.enquiry-box .label-wrap>input:not(:placeholder-shown)+label,
.enquiry-box .label-wrap>select:valid+label,
.enquiry-box .label-wrap>textarea:not(:placeholder-shown)+label,
.enquiry-box .label-wrap>.select2-container--below+label,
.enquiry-box .label-wrap.active label {
    opacity: 1;
    top: -9px;
    font-size: 0.7rem;
}

.enquiry-box input,
.enquiry-box textarea,
.enquiry-box select,
.enquiry-box .fakebox {
    padding: 8px 15px;
    min-height: 36px;
    font-size: 0.9em;
}

.enquiry-box .enquiry-text {
    font-size: 0.8em;
    line-height: normal;
}

.page-content {
    font-size: 1.2em;
    line-height: 1.6em;
}

.page-content ul,
.featured-text ul {
    padding-bottom: 20px;
}

.page-content ul li,
.featured-text ul li {
    list-style: circle;
    margin-left: 20px;
    margin-bottom: 5px;
}

.page-image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-image-gallery li {
    width: calc(25% - 15px);
    border: 1px solid var(--gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin: 0 !important;
    list-style: none !important;
    overflow: hidden;
}

.page-image-gallery li img {
    cursor: zoom-in;
    max-width: 100%;
    height: auto;
    width: auto;
}

.page-youtube {
    height: 0px;
    overflow: hidden;
    padding-bottom: 56.25%;
    margin-bottom: 40px;
    pointer-events: none;
    background-color: #000;
}

.featured-text .page-youtube {
    margin-bottom: 20px;
}

.page-youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-youtube .yt-loader {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-youtube .yt-loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid #fff;
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: ytspin 1s linear infinite;
}

@keyframes ytspin {
    to {
        transform: rotate(360deg);
    }
}

.page-image {
    /*margin-bottom: 40px;*/
    line-height: 0;
}

.page-image-gallery {
    margin: 40px 0;
    overflow-x: hidden;
}

.home-page .page-image-gallery {
    margin: 0;
}

.aligncheckbox input[type='checkbox'],
.aligncheckbox input[type=radio] {
    width: 40px;
    height: 25px;
    min-height: auto;
}

.label-wrap.aligncheckbox input:not(:placeholder-shown)+label {
    top: 0px;
    left: 0px;
    width: 100%;
}

.user-profile .user-email .btn {
    padding: 10px 9px 6px 9px;
    position: absolute;
    top: 0;
    right: 0;
}

.user-profile .user-email .btn.edit-mail-btn {
    top: 5px;
}

.label-wrap.active .fakebox+label {
    top: -16px;
}

.user-links nav ul li {
    display: flex;
    border-bottom: 1px solid var(--gray);
    width: 100%;
    position: relative;
    align-items: center;
}

.user-links nav ul li a {
    width: 100%;
    padding: 10px 0;
    display: block;
}

.user-links nav ul li:hover {
    background-color: var(--lightgray);
}

.fakebox {
    padding: 14px 15px;
}

/*.label-wrap .select2+label {
    top: -16px;
}*/

.select2-label-wrap .select2-container,
.label-wrap .select2-container {
    vertical-align: unset;
    margin-top: 5px;
}

.select2-hidden-accessible {
    min-height: unset;
    margin-top: 0;
}

.select2-container--default .select2-selection--single,
.select2-dropdown {
    background-color: var(--body-background);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 8px 10px 8px 10px;
    color: var(--textcolor);
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--gray);
    border-radius: 6px;
}

.label-wrap.select2-label-wrap {
    display: flex;
}

select option,
select:focus {
    color: var(--textcolor);
}

.span-button {
    padding-top: 20px;
}


#notification {
    background-color: #f1f1f1;
    color: var(--textcolor);
    width: 90%;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #000;
    padding: 15px 10px 20px 10px;
    z-index: 9999999;
    top: -1000px;
    position: absolute;
    left: 5%;
    box-sizing: border-box;
    display: none;
    transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
}

#notification.show {
    display: block;
    top: 10px;
}

.search-wrap {
    padding: 10px 10px 15px 10px;
    background: var(--lightgray);
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0px 0px 5px 2px #00000030;
}

header .search-wrap {
    position: fixed;
    width: 1280px;
}

.login-box {
    width: 500px;
    max-width: 90%;
}

.login-shop form img {
    border-radius: 5px;
    top: 1px;
}

.payment-guide small {
    font-size: 0.85em;
    display: block;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0px 0px 5px #00000030;
    margin-bottom: 5px;
    margin-top: 8px;
    padding: 10px 15px;
}

#qrcode img {
    width: auto;
    max-width: 90%;
}

body.checkout-result .main section {
    padding: 40px 0;
}

.order-complete {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    border-radius: 5px;
}

.order-complete .icon {
    font-size: 180px;
    color: #fff;
    display: block;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-complete .icon .fa {
    display: block;
    border: 5px solid #fff;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    line-height: 220px !important;
}

.order-complete h4 {
    font-weight: 400;
}

.order-complete.success h1,
.order-complete.success h4 {
    color: var(--success);
}

.order-complete.success .icon {
    background-color: var(--success);
}

.order-complete.failed h1,
.order-complete.failed h4 {
    color: var(--danger);
}

.order-complete.failed .icon {
    background-color: var(--danger);
}

.order-complete.success h1 {
    font-size: 50px;
}

.grid-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
}

.grid-item {
    padding: 10px;
    width: 100%;
}

.grid-container>.grid-item:nth-last-child(2),
.grid-container>.grid-item:last-child {
    grid-column: span 2;
}

/* Special rules starting from the 5th item */
.grid-container>.grid-item:nth-child(5):nth-last-child(1) {
    grid-column: span 4;
    /* If 5th is the last, make it full width */
}

.grid-container>.grid-item:nth-child(5):nth-last-child(2),
.grid-container>.grid-item:nth-child(6):nth-last-child(1) {
    grid-column: span 2;
    /* 5th and 6th if only 2 on last row */
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-container .box {
    box-sizing: border-box;
    padding: 10px;
    /*width: calc(25% - 15px);*/
    flex: 1 0 calc(25% - 20px);
}



.blog-grid .blog-grid-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0px;
    flex: 0 0 33.33%;
    background-color: #fff;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-grid .blog-image {
    width: 100%;
    height: auto;
    text-align: center;
    line-height: 0;
    margin-bottom: 10px;
}

.blog-grid .blog-image img {
    width: 100%;
    height: auto;
    display: inline-block;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-grid .blog-author {
    font-style: normal;
}

.blog-grid .blog-title {
    font-weight: normal;
    padding-bottom: 0;
    padding-top: 20px;
}

.blog-grid .blog-snippet {
    padding-top: 10px;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


.testimonials-wrap {
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
}

.single-testimonial {
    text-align: center;
    padding-bottom: 20px;
}

.testimonial-grid .single-testimonial {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    justify-content: center;
    flex: 0 0 33.33%;
    background-color: #fff;
}

.stars.testimonial-rating {
    justify-content: center;
}

/*.testimonial-content p:before{
    content: '“';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 72px;
    font-family: auto;
}
.testimonial-content p:after{
    content: '”';
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 72px;
    font-family: auto;
}*/
.testimonial-image {
    width: 100%;
    height: 100px;
    text-align: center;
    line-height: 0;
    margin-bottom: 10px;
}

.testimonial-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-by {
    font-style: italic;
}

.testimonial-rating i {
    color: #FFD700;
}

.testimonials .slick-prev {
    left: -40px !important;
}

.testimonials .slick-next {
    right: -30px !important;
}

.testimonials .slick-prev:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    border: 2px solid var(--secondary);
    clip-path: polygon(0% 0%, -100% 240%, 100% 100%);
    outline-offset: -6px;
}

.testimonials .slick-next:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    transform: rotate(-45deg);
    border: 2px solid var(--secondary);
    outline-offset: -6px;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}

.testimonials .slick-dots {
    padding-top: 20px;
}

.testimonials .slick-dots li,
.testimonials .slick-dots li button,
.testimonials .slick-dots li button:before {
    width: 40px;
}

.testimonials .slick-dots li button:before {
    background-color: var(--secondary);
    font-size: 0px;
    height: 4px;
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: stretch;
}

.blogs .snippet-image {
    width: 20%;
    background-color: var(--lightgray);
    border-radius: 5px;
    padding: 10px;
    line-height: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blogs .snippet-content {
    width: calc(80% - 20px);
}


.blog-post-list.grid-style .container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.blog-post-list.grid-style .container>a {
    flex: 0 0 calc(33.33% - 10px);
    display: flex;
}

.blog-post-list.grid-style .blog-posts {
    flex-direction: column;
    width: 100%;
}

.blog-post-list.grid-style .snippet-image {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.blog-post-list.grid-style .snippet-content {
    width: 100%;
    text-align: center;
    font-size: 0.9em;
}

.blog-post-list.grid-style .container h5 {
    line-height: 1.5em;
}

.blog-post-list.grid-style .container .page-content {
    font-size: 1.1em;
    line-height: 1.3em;
}

#spinner-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-spin {
    width: 28px;
    height: 28px;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .svg-spin path animateTransform {
        display: none;
    }
}


.zoom-hint-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 7px 7px;
    font-size: 14px;
    border-radius: 4px;
    z-index: 5;
}

.zoom-hint-icon.zoom-icon {
    display: none;
}

.zoom-hint-icon.mouse-icon {
    display: block;
}

@media (hover: none) and (pointer: coarse) {
    .zoom-hint-icon.zoom-icon {
        display: block;
    }

    .zoom-hint-icon.mouse-icon {
        display: none;
    }
}

/*.sortable-placeholder {
    border: 2px dashed #000000;
    background: #efff62;
    height: 50px;
    margin: 5px 0;
}*/

.product-card-slider {
    /*width: calc(100% + 30px);
    margin-left: -15px;*/
}

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

.product-card-slider .slick-track {
    display: flex !important;
    align-items: stretch !important;
    padding: 10px 0;
}

.product-card-slider .slick-slide {
    height: auto !important;
    display: flex;
    margin: 0 15px;
}

.product-card-slider .slick-slide>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-card-slider .slick-slide>div.product-card-details {
    justify-content: flex-start;
}

.product-card-slider .slick-prev,
.product-card-slider .slick-next {
    top: 45%;
    background-color: #00000050;
    padding: 5px;
    color: #fff;
    bottom: auto;
    border-radius: 4px;
    height: 60px;
}

.product-card-slider .slick-prev:before,
.product-card-slider .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
    font-size: 20px;
    opacity: 1;
}

.product-card-slider .slick-prev {
    left: 0px !important;
}

.product-card-slider .slick-next {
    right: 0px !important;
}

.product-card-slider .slick-prev:before {
    content: "\f053";
}

.product-card-slider .slick-next:before {
    content: "\f054";
}

.social-share {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
}

.ss-btn {
    padding: 5px 0px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-size: 12px;
    width: 26px;
    text-align: center;
}

.ss-btn:focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
}

.ss-feedback {
    margin-left: 8px;
    font-size: 13px;
    color: #2b7a0b;
}

.header-info {
    display: none;
    z-index: 99;
    left: 0;
    right: 0;
    top: 10px;
    color: #fff;
}

.header-info a {
    color: #fff;
}

.header-info .fa-brands {
    color: #fff !important;
    font-size: 1.2em;
}

/*.draggable-section {
  touch-action: none; 
}
.draggable-section:hover {
  cursor: grab;
}
.drag-over {
  border: 2px dashed #007bff;
}*/

/* Default: Single Column */
.columns:not(.product-card-slider) {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
}

.columns.row:not(.product-card-slider) {
    display: flex;
    flex-direction: column;
}

.row .product-card-shop {
    display: block;
}

.row .product-card-shop .product-card-image {
    float: left;
    width: 250px;
    max-width: 40%;
    margin-right: 40px;
}

.row .product-card-shop .product-details {
    width: 60%;
    float: left;
    padding-bottom: 20px;
}

.row .product-card-shop .product-card-buttons {
    float: left;
    /*position: absolute;
    left: 350px;*/
    bottom: 20px;
    width: 25%;
    padding-top: 10px;
}


section.has-background-image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

section.has-background-image .section-content {
    background-color: transparent;
    padding: 0;
}

section.has-background-image .container>*,
section.has-background-image .section-content>* {
    color: #fff;
    ;
}


/* Small devices (≥576px) */
@media (min-width: 100px) {
    .columns.col-sm-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-sm-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-sm-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-sm-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Medium devices (≥768px) */
@media (min-width: 576px) {
    .columns.col-md-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-md-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-md-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-md-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Large devices (≥1024px) */
@media (min-width: 1024px) {
    .columns.col-lg-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-lg-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-lg-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-lg-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-lg-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-lg-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Extra Large devices (≥1440px) */
@media (min-width: 1440px) {
    .columns.col-xl-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-xl-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-xl-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-xl-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-xl-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 30px;
    }

    .columns.col-xl-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 30px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1340px) {

    /*.lg-sticky {
        position: sticky;
    }*/
    .container {
        width: 1000px;
    }

    header .container {
        width: 96%;
        height: 60px;
    }

    header .container .header-top {
        height: 100%;
        justify-content: space-between;
    }

    body.maintenance header .container .header-top {
        justify-content: center;
    }

    body.maintenance .company-logo,
    header .container .company-logo {
        width: auto;
    }

    body.scrolled .company-logo {
        height: 60px;
    }

    header .container .company-logo a {
        height: 100%;
        padding: 10px 0;
    }

    .desktop-menu>ul>li>a {
        padding: 18px 8px;
    }

    .desktop-menu ul li.parent:hover>ul {
        top: 60px;
    }

    .main {
        padding-top: 60px;
    }

    .active-announcement .main {
        padding-top: 90px;
    }

    .single-product .product-wrapper {
        gap: 30px;
    }

    .cart-item-counter>div {
        width: 30px;
    }

    header .search-wrap {
        width: 96%;
    }

    .featured-blog .blog-grid,
    .testimonials .testimonial-grid {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .featured-blog .blog-grid .blog-grid-item,
    .testimonials .testimonial-grid .single-testimonial {
        flex: 1 1 calc(50% - 10px);
        background-color: transparent;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .desktop-menu-wrap {
        width: 20% !important;
        padding-right: 10px;
    }

    .desktop-menu>ul>li {
        padding: 32px 5px;
        text-align: center;
        line-height: 16px;
    }

    .desktop-menu a {
        font-size: 0.8rem;
    }

    .checkout-form {
        gap: 20px;
    }

    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-container>.grid-item:nth-child(4):nth-last-child(1) {
        grid-column: span 2;
        /* If 5th is the last, make it full width */
    }

    .grid-container>.grid-item:nth-child(4):nth-last-child(2),
    .grid-container>.grid-item:nth-child(5):nth-last-child(1) {
        grid-column: span 2;
        /* 5th and 6th if only 2 on last row */
    }

    .grid-container>.grid-item:nth-child(n+4):nth-last-child(n+2) {
        grid-column: span 1;
        /* Generic rule: items 5+ when more than 2 in last row */
    }

    .flex-container .box {
        flex: 1 0 calc(33.3333% - 20px);
    }

    .row .product-card-shop .product-card-image {
        margin-right: 30px;
    }

    .row .product-card-shop .product-details {
        width: 50%;
    }
}

@media (max-width: 768px) {

    .company-logo {
        width: 220px;
    }

    .page-product-container {
        flex-direction: column;
    }

    section .editorflex.flex>*:not(hr, .btn) {
        text-align: center;
    }

    .full.lg-sticky {
        position: relative;
        /* Remove stickiness on smaller screens */
        max-height: unset;
    }

    .page-product-images img {
        width: 100%;
        height: auto;
    }

    .page-product-thumbnails {
        overflow-x: auto;
    }

    .divider {
        padding: 5px;
        /* Fixed Typo */
    }

    .checkout-form {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        gap: 40px;
    }

    .checkout-form .two-thirds {
        width: 100%;
    }

    .checkout-form .one-third {
        width: 100%;
    }

    .cart-products {
        height: auto;
        max-height: none;
    }

    .col-md-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-container>.grid-item:nth-child(4):nth-last-child(1) {
        grid-column: span 1;
        /* If 5th is the last, make it full width */
    }

    .grid-container>.grid-item:nth-child(4):nth-last-child(2),
    .grid-container>.grid-item:nth-child(5):nth-last-child(1) {
        grid-column: span 1;
        /* 5th and 6th if only 2 on last row */
    }

    .grid-container>.grid-item:nth-child(n+4):nth-last-child(n+2) {
        grid-column: span 1;
        /* Generic rule: items 5+ when more than 2 in last row */
    }

    .special-banner .special-banner-image .block-text {
        font-size: 24px;
        line-height: normal;
        text-align: center;
    }

    .special-banner .special-banner-image.two-featured-block .block-text,
    .special-banner .special-banner-image.featured-count-2 .block-text {
        font-size: 20px;
    }

    .banners297242342 .slick-prev:before {
        width: 25px;
        height: 25px;
    }

    .banners297242342 .slick-next:before {
        width: 25px;
        height: 25px;
    }

    .blog-posts {
        flex-direction: column;
    }

    .blogs .snippet-image {
        width: 100%;
    }

    .blogs .snippet-content {
        width: 100%;
    }

    .page-image-gallery {
        gap: 10px;
        justify-content: center;
    }

    .page-image-gallery li {
        width: calc(50% - 5px);
    }

    .testimonials .slick-next {
        right: -25px !important;
    }

    .testimonials .slick-prev {
        left: -25px !important;
    }

    .testimonials-wrap {
        max-width: 85%
    }

    .testimonials .slick-next:before,
    .testimonials .slick-prev:before {
        width: 25px;
        height: 25px;
    }

    .footer-card {
        margin: 0 0 40px 0;
        width: 100%;
    }

    .footer-wrap {
        flex-wrap: wrap;
    }

    .flex-container .box {
        flex: 1 0 calc(50% - 20px);
    }

    .row .product-card-shop .product-card-image {
        margin-right: 20px;
    }

    .row .product-card-shop .product-details {
        width: 50%;
    }

    .row .product-card-shop .product-card-buttons {
        position: relative;
        left: auto;
        bottom: 0;
        width: 50%;
    }

    .profile-section {
        padding-top: 40px;
    }

    .profile-section .container .full.flex {
        flex-direction: column
    }

    .profile-section .user-links.one-fourth,
    .profile-section .user-profile.three-fourths {
        width: 100%;
        padding: 0
    }

    .profile-section .user-links .title,
    .profile-section .user-links hr {
        display: none;
    }

    .profile-section .user-links nav ul {
        display: flex;
        gap: 10px;
        text-align: center;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--gray);
        margin-bottom: 10px;
    }

    .profile-section .user-links nav ul li {
        border: 1px solid var(--gray);
        border-radius: 5px;
        line-height: normal
    }

    .profile-section .user-links nav ul li a {
        padding: 15px 0;
        font-size: 0.9em;
    }

    .profile-section .user-links nav ul li span {
        display: none;
    }

    .title-section .section-title {
        line-height: 1.2em;
        font-size: 3em;
    }

    .special-banner .special-banner-image.featured-count-8,
    .special-banner .special-banner-image.featured-count-9,
    .special-banner .special-banner-image.featured-count-10 {
        width: calc(25% - 15px);
    }


    .special-banner .special-banner-image.featured-count-5,
    .special-banner .special-banner-image.featured-count-6,
    .special-banner .special-banner-image.featured-count-7 {
        width: calc(33.33% - 15px);
    }

    .special-banner .special-banner-image.featured-count-3,
    .special-banner .special-banner-image.featured-count-4 {
        width: calc(50% - 15px);
    }


}

@media (max-width: 480px) {
    :root {
        --base-font-size: 14px;
    }

    #header {
        padding: 0;
        /*height: 70px;*/
    }

    .desktop-menu-wrap {
        height: 60px;
    }

    .company-logo {
        margin: 0px;
    }

    #header .flex-gap-20 {
        gap: 10px;
    }

    #header .search-icon,
    #header .cart-icon {
        top: 2px;
        text-align: center;
    }

    #menu.drawer-menu {
        padding: 17px 10px 0px 10px;
    }

    #menu.drawer-menu h2 {
        padding-bottom: 17px;
        font-size: 22px;
    }

    #cart.drawer-cart {
        padding: 17px 10px 0px 10px;
    }

    #cart.drawer-cart h2 {
        padding-bottom: 17px;
        font-size: 22px;
    }

    .main {
        padding-top: 60px;
    }

    .active-announcement .main {
        padding-top: 95px;
    }

    .announcements {
        line-height: 12px;
        height: 36px;
    }

    section,
    .section {
        padding: 40px 0;
    }

    .container {
        max-width: 90%;
    }

    .section-title {
        font-size: 20px;
        padding-bottom: 25px;
    }

    h1.section-title {
        padding: 0;
    }

    .section-content {
        padding: 20px;
        border-radius: 10px;
    }

    .category-display {
        width: calc(50% - 7px);
        font-size: 12px;
        line-height: normal;
    }

    .company-logo {
        width: 100%;
        max-width: 160px;
        padding: 0 15px;
        max-height: 100%;
    }

    .company-logo a {
        height: auto;
    }

    .head-image {
        flex-wrap: wrap;
    }

    .quantity-cart {
        flex-wrap: wrap;
    }

    .product-quantity-cart {
        flex-wrap: wrap;
    }

    .highlights-wrap {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .highlight-card {
        width: 100% !important;
    }

    .footer-card {
        margin: 0 0 40px 0;
        width: 100%;
    }

    .footer-wrap {
        flex-wrap: wrap;
    }

    .page-product-details {
        margin-top: 20px;
    }

    .custom-box {
        margin-bottom: 20px;
    }

    .slick-prev,
    .slick-next {
        width: 30px;
        height: 30px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 30px;
    }

    .special-banner .special-banner-image {
        width: 100%;
    }

    .brands4673453523 .slick-prev,
    .brands4673453523 .slick-next {
        display: none !important;
    }

    .search-box-wrap {
        padding-bottom: 10px;
    }

    .category-banner .heading {
        font-size: 24px;
        padding: 10px 0;
    }

    .breadcrumbs {
        padding-top: 5px !important;
        line-height: 0.8em;
    }

    table {
        word-break: break-all;
    }

    .page-content {
        font-size: 1em;
    }

    .one-half,
    .w-50,
    .half {
        width: 100%;
    }

    .form-row .form-item+.form-item {
        padding-top: 20px;
    }

    h1,
    .h1 {
        font-size: 30px;
    }

    h2,
    .h2 {
        font-size: 26px;
    }

    h3,
    .h3 {
        font-size: 22px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }

    h6,
    .h6 {
        font-size: 16px;
    }

    .single-product .product-wrapper {
        display: block;
        padding-top: 0px;
        width: 100%;
        max-width: 100%;
    }

    .single-product .product-slider-wrap {
        width: 100%;
    }

    .single-product .product-slider {
        padding: 0px;
    }

    .single-product .product-info {
        width: 100%;
        padding-top: 30px;
        max-width: 90%;
        margin: 0 auto;
    }

    .page-product-thumbnails {
        max-width: 90%;
        margin: 60px auto 20px auto
    }

    .search-wrap {
        padding: 10px 10px 5px 10px;
    }

    header .search-wrap {
        width: 90%;
    }

    .order-complete .icon {
        font-size: 120px;
        width: 200px;
        height: 200px;
    }

    .order-complete .icon .fa {
        display: block;
        border: 5px solid #fff;
        border-radius: 50%;
        width: 150px;
        height: 150px;
        line-height: 150px !important;
    }

    .order-complete.success h1 {
        font-size: 30px;
    }

    .totals {
        font-size: 0.95em;
    }

    .total {
        font-size: 18px;
    }

    section.single-product.slider-section.padding-top-10 {
        padding-top: 0px;
    }

    .col-md-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 30px;
    }

    .social-share {
        gap: .3rem;
    }

    .social-share span.share-title {
        display: none;
    }

    .footer-card .empty {
        display: none;
    }

    .text-logo {
        font-size: 1.3em;
    }

    .row .price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .row .sale-badge {
        top: 0px;
        left: 0px;
    }

    .row .wishlist-icon {
        top: -3px;
        right: 0px;
    }

    .row .wishlist-icon .btn {
        font-size: 20px;
    }

    .single-product .slider-section {
        padding-top: 0px;
    }

    .featured-blog .blog-grid .blog-grid-item,
    .testimonials .testimonial-grid .single-testimonial {
        flex: 1 1 100%;
    }

    .profile-contact-numbers {
        flex-wrap: wrap;
    }

    .country-code.one-fifth {
        width: 25%;
    }

    .mobile-number.two-fifths {
        width: 75%;
        padding-top: 0 !important;
    }

    .whatsapp-number.two-fifths {
        padding-top: 40px !important;
    }

    .city-selector,
    .pin-zip-code {
        padding-top: 30px !important;
    }

    .title-section .section-title {
        line-height: 1.2em;
        font-size: 2em;
    }

    .special-banner .special-banner-image.featured-count-3,
    .special-banner .special-banner-image.featured-count-4,
    .special-banner .special-banner-image.featured-count-5,
    .special-banner .special-banner-image.featured-count-6,
    .special-banner .special-banner-image.featured-count-7,
    .special-banner .special-banner-image.featured-count-8,
    .special-banner .special-banner-image.featured-count-9,
    .special-banner .special-banner-image.featured-count-10 {
        width: 100%;
    }

    .sort-by-label {
        display: none;
    }

    .sort-by-label+select {
        width: 100% !important;
    }


}

/* Optional: make last row items stretch evenly */
.last-row-1 {
    flex: 1 0 100%;
}

.last-row-2 {
    flex: 1 0 calc(50% - 20px);
}

.last-row-3 {
    flex: 1 0 calc(33.3333% - 20px);
}


.animation-active .fly-in-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.5s ease-out;
}

.animation-active .fly-in-from-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animation-active .fly-in-from-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease-out;
}

.animation-active .fly-in-from-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animation-active .fly-in-from-top {
    opacity: 0;
    transform: translateY(-150px);
    transition: all 0.8s ease-out;
}

.animation-active .fly-in-from-top.animate {
    opacity: 1;
    transform: translateY(0);
}

.animation-active .fly-in-from-bottom {
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.8s ease-out;
}

.animation-active .fly-in-from-bottom.animate {
    opacity: 1;
    transform: translateY(0);
}

.animation-active .zoom-in-center {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease-out;
}

.animation-active .zoom-in-center.animate {
    opacity: 1;
    transform: scale(1);
}

.animation-active .section-content.can-animate {
    opacity: 0.4;
    transition: all 1s ease-in-out;
}

.animation-active .section-content.can-animate.animate {
    opacity: 1;
}

.animation-active .section-content.can-animate>.editorflex.flex>.editorflex {
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease-out;
}

.animation-active .section-content.can-animate.animate>.editorflex.flex>.editorflex {
    opacity: 1;
    transform: scale(1);
}

.animation-active .section-content.can-animate>.editorflex.flex>.editorflex:first-of-type {
    opacity: 0;
    transform: translate(-200px, -20px);
    transition: all 1s ease-in-out;
}

.animation-active .section-content.can-animate.animate>.editorflex.flex>.editorflex:first-of-type {
    opacity: 1;
    transform: translate(0, 0);
}

.animation-active .section-content.can-animate>.editorflex.flex>.editorflex:last-of-type {
    opacity: 0;
    transform: translate(200px, -20px);
    transition: all 1s ease-in-out;
}

.animation-active .section-content.can-animate.animate>.editorflex.flex>.editorflex:last-of-type {
    opacity: 1;
    transform: translate(0, 0);
}

/* Section Popup Styles */

.section-popup .section-content {
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
}

.section-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.section-popup.active {
    display: flex;
}

.section-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.section-popup .popup-wrapper {
    position: relative;
    background-color: var(--body-background, #fff);
    border-radius: 12px;
    padding: 30px 24px;
    width: 600px;
    max-width: 96%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: popupFadeIn 0.3s ease-out;
}

.section-popup .popup-close-btn {
    position: absolute;
    top: 5px;
    right: 6px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    user-select: none;
}

.section-popup .popup-close-btn:hover {
    color: #000;
}



@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --------------------------------------------------------
   Advertisement Module
-------------------------------------------------------- */

/* --- Popup Overlay --- */
.ad-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.ad-popup-content {
    position: relative;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: center;
    height: auto;
}

.ad-popup-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background: var(--danger);
    color: #fff;
    font-size: 20px;
    cursor: not-allowed;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100001;
    transition: opacity 0.2s ease, cursor 0.2s ease;
}

.ad-popup-close-btn.enabled {
    cursor: pointer;
    opacity: 1;
}

.ad-popup-image-wrap {
    display: flex;
    overflow: hidden;
    border-radius: 4px;
    line-height: 0;
    height: 100%;
    width: 100%;
    max-height: calc(90vh - 20px);
}

.ad-popup-image-wrap.has-link {
    cursor: pointer;
}

.ad-popup-image-wrap img {
    width: 100%;
    display: block;
    object-fit: contain;
    height: auto;
}

/* --- Footer Banner --- */
.ad-footer-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    max-height: 90px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.07);
    z-index: 99999;
    padding: 5px 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.ad-footer-banner.has-link {
    cursor: pointer;
}

.ad-banner-info-wrap {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
    font-size: 13px;
    color: var(--textcolor);
    line-height: 1.4;
    text-align: center;
}

.ad-banner-business-name {
    font-weight: bold;
    font-size: 18px;
    color: var(--title-color);
    font-family: var(--title-font);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-banner-description {
    font-size: 14px;
    color: var(--textcolor);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ad-banner-contact-details {
    font-size: 13px;
    display: flex;
    gap: 15px;
    color: var(--textcolor);
    margin-top: 3px;
    flex-wrap: wrap;
    justify-content: center;
}

.ad-banner-address {
    font-size: 12px;
    color: var(--textcolor);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-banner-ad-close {
    position: absolute;
    right: 8px;
    bottom: 5px;
    font-size: 12px;
    z-index: 100000;
    padding: 6px 10px;
}

@media (max-width: 768px) {
    .ad-banner-business-name {
        font-size: 16px;
    }

    .ad-banner-info-wrap {
        text-align: left;
        padding-right: 60px;
    }

    .ad-banner-contact-details {
        justify-content: start;
        font-size: 12px;
    }

    .ad-banner-description {
        font-size: 12px;
        white-space: normal;
        text-overflow: ellipsis;
    }

    .ad-footer-banner {
        max-height: fit-content;
    }
}