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

@charset "utf-8";

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

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

:root {
    --white: #ffffff;
    --black: #000000;

    --gray-color: #bec1c3;
    --light-gray-color: #f8f9fa;
    --dark-gray-color: #6c757d;
    --success-color: #177317;
    --warning-color: #ff8800;
    --error-color: #c50000;

    --primary-color: #1d1f22;
    --secondary-color: #835dd5;
    --text-color: #212529;
    --link-color: var(--text-color);
    --link-hover-color: var(--secondary-color);
    --header-background-color: var(--white);
    --body-background-color: var(--white);
    --menu-hover-background: var(--text-color);
    --menu-hover-text-color: var(--white);
    --menu-text-color: var(--text-color);
    --title-text-color: var(--text-color);
    --footer-background-color: var(--primary-color);
    --footer-text-color: var(--white);
    --footer-link-hover-color: var(--secondary-color);

    --base-color: var(--white);
    --primary: var(--primary-color);
    --secondary: var(--secondary-color);
    --textcolor: var(--text-color);
    --link: var(--link-color);
    --link-hover: var(--link-hover-color);
    --header-background: var(--header-background-color);
    --body-background: var(--body-background-color);
    --menu-hover-bg: var(--menu-hover-background);
    --menu-hover-text: var(--menu-hover-text-color);
    --menu-text: var(--menu-text-color);
    --title-color: var(--title-text-color);
    --footer-background: var(--footer-background-color);
    --danger: var(--error-color);
    --success: var(--success-color);
    --warning: var(--warning-color);
    --gray: var(--gray-color);
    --lightgray: var(--light-gray-color);
    --darkgray: var(--dark-gray-color);

    --base-font-size: 16px;
    --base-line-height: 1.4;
    --base-normal-line-height: 1.13;
    --base-font: 'Inter', sans-serif;
    --title-font: 'Inter', sans-serif;
    --menu-font: 'Inter', sans-serif;
    --banner-font: 'Inter', sans-serif;

    --section-gap: 80px;
    --section-gap-half: calc(var(--section-gap)/2);

    --header-logo-width: 250px;
    --container-width: 1280px;
    --container-max-width: 92%;

    --circle-oval-radius: 50%;
    --border-radius: 10px;
    --half-border-radius: calc(var(--border-radius) * 0.5);
    --small-border-radius: calc(var(--half-border-radius) * 0.6);
    --capsule-radius: calc(var(--border-radius) * 10);
}

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

@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 {
    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.5;
    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: calc(var(--base-line-height) * 0.8);
    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: var(--base-normal-line-height);
}

.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: var(--base-normal-line-height);
    width: auto;
    display: inline-block;
    text-align: center;
}

.btn {
    border: 1px solid transparent;
    background-color: var(--primary);
    border-radius: var(--half-border-radius);
    color: var(--white);
    padding: 12px 20px;
    letter-spacing: 0px;
    font-size: 16px;
    line-height: var(--base-normal-line-height);
    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%;
    font-family: var(--base-font);
    /*min-height: 46px;*/
    max-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: var(--capsule-radius);
}

.btn.btn-sm {
    padding: 11px 15px;
    font-size: 14px;
    letter-spacing: 0;
    min-height: auto;
    line-height: var(--base-normal-line-height);
    max-height: 38px;
}

.btn.btn-smx {
    padding: 9px 12px;
    font-size: 12px;
    letter-spacing: 0;
    min-height: auto;
    line-height: var(--base-normal-line-height);
    max-height: 32px;
}

.btn.btn-large {
    padding: 16px 30px;
    font-size: 22px;
    max-height: 58px;
}

.btn.btn-big {
    padding: 34px 35px;
    font-size: 24px;
    max-height: 96px;
}

.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: var(--white) !important;
}

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


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

.section-padding {
    padding: var(--section-gap) 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-15 {
    margin-top: 15px;
}

.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: 10px 0;
    clear: both;
    overflow: auto;
    margin-left: -5px;
}

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

.form-item .form-item {
    padding: 0;
}

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

.captcha-image {
    border-radius: var(--half-border-radius);
}

.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);
}


select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;

    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

select::-ms-expand {
    display: none;
}

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

input[type='range']+span>span {
    position: absolute;
    height: 6px;
    background: var(--primary);
    border-radius: var(--small-border-radius);
    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: var(--small-border-radius);
    -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: var(--circle-oval-radius);
    pointer-events: auto;
}

input[type='range']::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: var(--circle-oval-radius);
    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: var(--white);
    border: 1px solid var(--primary);
    border-radius: var(--half-border-radius);
}

input[type=checkbox]:checked:before,
input[type=radio]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: var(--half-border-radius);
    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: var(--circle-oval-radius);
}

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

.label-wrap {
    position: relative;
    line-height: 0;
}

.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: -15px;
    font-size: 0.85rem;
    margin: 0;
    line-height: var(--base-normal-line-height);
    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: var(--white);
    height: 110px;
    border: 1px solid var(--gray);
    border-radius: var(--half-border-radius);
    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: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.container.w-1080 {
    width: 1080px;
    max-width: var(--container-max-width);
}

.container.w-1500 {
    width: 1500px;
    max-width: var(--container-max-width);
}

.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;
}

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

body .show-inline,
body .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;
}

.right-border-radius-none {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.left-border-radius-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !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%;
}

.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);
}

section.fill-bg .editorflex.flex .editorflex {
    background-color: var(--body-background-color);
}

.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: var(--half-border-radius);
}

.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:not(.form-item) {
    width: auto !important;
}

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

.editorflex.flex .page-image img {
    border-radius: var(--small-border-radius);
}

.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;
    overflow: hidden;
    border-radius: var(--half-border-radius);
}

.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: var(--white);
}

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;
}

table tr th,
table tr td {
    word-break: break-word;
}

.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);
}

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

#header.transparent-header {
    background-color: transparent;
    /*border-bottom: 1px solid #ffffff40;*/
}

#header.transparent-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--header-background-color);
    z-index: 0;
    backdrop-filter: blur(5px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
    -webkit-backdrop-filter: blur(4px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
}

#header.full-width-header .container {
    width: 96%;
    max-width: none;
}

body.non-sticky-header #header {
    position: relative;
}

#header .cart-icon {
    right: 5px;
}

.text-logo {
    line-height: var(--base-normal-line-height);
    font-size: 1.4em;
    background: linear-gradient(135deg,
            #050505,
            #1b1b1b,
            #2a2a2a,
            #121212,
            #000000);
    color: var(--white);
    padding: 10px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.text-logo.smaller {
    font-size: 1.2em;
}

.desktop-menu-removed.drawer-menu-visible .header-icons-wrap,
.desktop-menu-removed.drawer-menu-visible .drawer-menu-icon-wrap {
    width: 150px;
    max-width: 20%;
    gap: 10px;
}

.drawer-menu-visible .container .company-logo {
    margin-left: 10px;
}

.desktop-menu-removed.drawer-menu-visible .container .company-logo {
    width: auto;
}


.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.non-sticky-header .main {
    padding-top: 0 !important;
}

.main.top-spacing-none,
body.scrolled .main.top-spacing-none {
    padding-top: 0;
}

.active-announcement .main.top-spacing-none {
    padding-top: 30px;
}

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

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

section,
.section {
    padding: var(--section-gap) 0;
    margin: 0 auto;
}

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

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: var(--black);
}

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: var(--white);
    z-index: 2;
}

section.map-container .view-map .view-map-button {
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
}

section.map-container .view-map .view-map-button:hover {
    color: var(--black);
    background: var(--white);
}

.title-section .heading small {
    text-shadow: none;
}

.title-section .heading.dark-text small {
    background-color: #ffffff30;
    padding: 5px;
    border-radius: var(--small-border-radius);
}

.title-section .heading.dark-text small,
.title-section .heading.dark-text small a {
    color: #000;
}

.title-section .heading.dark-text small a:hover {
    text-decoration: underline;
}

.title-section.stripe .highlighter {
    background: var(--lightgray);
}

.title-section.stripe .highlighter .container {
    min-height: 180px;
    flex-direction: column;
}

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

.title-section:not(.banner-title-section) .banner-subtitle {
    text-align: center;
    padding-top: 5px;
}

.title-section .align-top-left .section-title,
.title-section .align-top-right .section-title,
.title-section .align-top-center .section-title,
.title-section .align-top-left .heading,
.title-section .align-top-right .heading,
.title-section .align-top-center .heading {
    padding-top: 20px;
}

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

body.scrolled:not(.non-sticky-header) .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;
    object-fit: contain;
}

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

.section-to-show .container {
    opacity: 0;
    transition: opacity 0.5s;
}

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


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

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}


.menu-btn,
.cart-btn,
.search-btn,
.header-profile,
.header-wishlist {
    position: relative;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: inline-flex;
}

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

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

.header-icons-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.center-align-desktop-menu .header-icons-wrap,
.left-align-desktop-menu .header-icons-wrap {
    width: var(--header-logo-width);
}

.drawer-menu-visible.center-align-desktop-menu .header-icons-wrap {
    width: calc(var(--header-logo-width) + 30px);
}

/* Desktop Menu */
.desktop-menu-wrap {
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.center-align-desktop-menu .desktop-menu-wrap {
    justify-content: center;
    padding-right: 0;
}

.left-align-desktop-menu .desktop-menu-wrap {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 15px;
}

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

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

.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 a {
    text-decoration: none;
    color: var(--menu-text);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0;
    display: block;
    width: 100%;
}

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

body.scrolled:not(.non-sticky-header) .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: calc(50% - 6px);
    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;
    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;
}

.desktop-menu ul li.parent:hover>ul {
    background-color: var(--header-background);
    display: flex !important;
    flex-direction: column;
    width: max-content;
    padding: 0px;
    left: 0px;
    box-shadow: 1px 2px 3px 2px #00000030;
    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>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;
}

.transparent-header .desktop-menu ul li.parent:hover>ul {
    background-color: transparent !important;
}

.transparent-header .desktop-menu ul li.parent:hover>ul::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--header-background-color);
    z-index: 0;
    backdrop-filter: blur(5px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
    -webkit-backdrop-filter: blur(4px) brightness(1) contrast(1) grayscale(0) hue-rotate(0deg) invert(0) opacity(1) saturate(1) sepia(0);
}




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

.search-box-wrap input {
    margin-top: 0;
}

.search-box-wrap button.btn {
    position: absolute;
    font-size: 16px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--secondary-color);
    color: var(--white);
    line-height: normal;
    padding: 0 15px;
    height: calc(100% - 2px);
    right: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1px;
    max-height: unset;
}

/* Starts */
/* Drawer Base Styles */
.drawer {
    position: fixed;
    top: 0;
    height: 100%;
    background: var(--body-background-color);
    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%;
}

/* 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);
    color: var(--text-color);
}

.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,
.drawer-menu nav ul li a:hover+span {
    color: var(--link-color);
}

.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: var(--half-border-radius);
}

.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: var(--border-radius);
}

.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: var(--body-background-color);
    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: var(--circle-oval-radius);
    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: var(--circle-oval-radius);
    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: var(--half-border-radius);
}

.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: var(--half-border-radius);
    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 */
.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 Badge Styling */
.cart-badge {
    position: absolute;
    top: -13px;
    right: -13px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--circle-oval-radius);
    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;
    border-radius: var(--border-radius);
}

.section-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 {
    line-height: var(--base-normal-line-height);
    font-weight: bold;
    font-size: 42px;
}

.category-banner .heading .banner-subtitle {
    font-size: 0.6em;
    font-weight: normal;
}

.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: 20px;
    cursor: pointer;
    position: relative;
}

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

.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: var(--light-gray-color);
    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: 0 20px 20px 20px;
}

.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);
    -webkit-overflow-scrolling: touch;
    /*scrollbar-width: none;*/
    /*to hide the scrollbar*/
    gap: 5px;
}

/*to hide the scrollbar in chrome safari*/
.tab-name {
    flex: 0 0 auto;
    padding: 10px 20px;
    background: var(--lightgray);
    border: 1px solid var(--gray);
    cursor: pointer;
    border-radius: var(--half-border-radius);
    text-align: center;
}

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

.tabs-contents {
    border: 1px solid var(--gray);
    padding: 25px 15px;
    background-color: var(--white);
    margin-top: 5px;
    border-radius: var(--half-border-radius);
    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;
}

/* Slick Slider */
.slick-list {
    margin-left: -1px;
}

.product-slider-wrap .slick-list {
    margin: 0;
}

.slick-prev {
    left: 25px;
    z-index: 100;
}

.slick-prev,
.slick-next {
    width: 32px;
    height: 32px;
    z-index: 2;
    /*top: calc(50% - 16px);*/
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slick-prev:before,
.slick-next:before {
    font-size: 36px;
    color: var(--white);
}

.slick-next {
    right: 35px;
}


.announcements {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85em;
    text-align: center;
    padding: 1px 10px;
    height: 32px;
    line-height: var(--base-normal-line-height);
    transition: all 0.3s ease;
    overflow: hidden;
}

body.scrolled:not(.non-sticky-header) .announcements {
    height: 0;
    padding: 0;
}

.announcements>div {
    opacity: 0;
    height: 100%;
}

.announcements .slick-track {
    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 var(--white);
    ;
    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 var(--white);
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
    opacity: 0;
}


.banners297242342 {
    margin-bottom: -1px;
}

.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;
}

/* Base styling for both arrows */
.banners297242342 .slick-prev,
.banners297242342 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--circle-oval-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
    /* Hides the default "Previous" / "Next" text */
    line-height: 0;
    outline: none;
}

/* Position adjustments for Hero layout */
.banners297242342 .slick-prev {
    left: 15px;
}

.banners297242342 .slick-next {
    right: 15px;
}

/* Creating the modern chevron arrows using pseudo-elements */
.banners297242342 .slick-prev::before,
.banners297242342 .slick-next::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transition: all 0.3s ease;
}

/* Point the chevrons left and right */
.banners297242342 .slick-prev::before {
    left: 58%;
    transform: translate(-55%, -50%) rotate(-135deg);
}

.banners297242342 .slick-next::before {
    left: 40%;
    transform: translate(-43%, -50%) rotate(45deg);
}

/* Elegant Hover Effects */
.banners297242342 .slick-prev:hover,
.banners297242342 .slick-next:hover {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Turn the arrow color to dark gray/black on hover so it pops against the white background */
.banners297242342 .slick-prev:hover::before,
.banners297242342 .slick-next:hover::before {
    border-color: #1a1a1a;
}

/* Slight micro-interaction shift on hover */
.banners297242342 .slick-prev:hover::before {
    transform: translate(-55%, -50%) rotate(-135deg);
}

.banners297242342 .slick-next:hover::before {
    transform: translate(-43%, -50%) rotate(45deg);
}

.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: var(--base-normal-line-height);
    font-family: var(--banner-font);
    padding: 0 2%;
    margin: 0 auto;
    background-color: #00000020;
}

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

.banners297242342 .banner-text div {
    /*background-color: rgba(0, 0, 0, 0.6);*/
    padding: 10px;
    color: var(--white);
}

.banners297242342 a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.banners297242342 .banner-text>div span {
    display: block;
    text-align: center;
    line-height: var(--base-line-height);
}

.banners297242342.slick-slider.slide-transition .slick-track {
    top: -2px;
    margin-bottom: -4px;
}

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

.special-banner.block-count-4,
.special-banner.block-count-5,
.special-banner.block-count-6,
.special-banner.block-count-7 {
    gap: 10px;
}

.special-banner.block-count-8,
.special-banner.block-count-9,
.special-banner.block-count-10 {
    gap: 8px;
}

.special-banner .special-banner-image {
    padding: 0;
    width: calc(33.33% - 15px);
}

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

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

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

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

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

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

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

.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% - 10px);
}

.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;
    border-radius: var(--border-radius);
    background-color: var(--body-background);
    width: 100%;
}

.special-banner .promo-image .promo-image-container {
    line-height: 0px;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.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%;
    border-radius: var(--border-radius);
}

.special-banner .special-banner-image {
    display: flex;
    flex-direction: column;
}

.special-banner .special-banner-image .block-text {
    pointer-events: none;
    line-height: var(--base-normal-line-height);
    display: flex;
}

.special-banner.text-below-image .special-banner-image .block-text {
    width: 100%;
    pointer-events: none;
    display: flex;
    position: relative;
    height: auto;
    padding: 15px 0;
    font-size: 1.5em;
    gap: 2px;
    border-radius: 0;
    color: var(--textcolor);
    flex-direction: column;
}

.special-banner.text-over-image .special-banner-image .block-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.8em;
    color: var(--white);
    gap: 15px;
    border-radius: var(--border-radius);
}

.banner-section .slick-dotted.slick-slider,
.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;
    display: none;
}

.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%;
    align-items: stretch;
    width: 100%;
}

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

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

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

.category-display span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    padding-bottom: 10px;
}

.category-display span.no-image {
    padding: 20px;
}

.category-display:hover {
    color: var(--textcolor);
}


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

.title-section .breadcrumbs {
    padding-bottom: 0;
}

.title-section .align-bottom-left .breadcrumbs,
.title-section .align-bottom-right .breadcrumbs,
.title-section .align-bottom-center .breadcrumbs {
    padding-bottom: 20px;
}

.section-title-wrap {
    padding-bottom: 26px;
    display: flex;
    flex-direction: column;
}

.section-title-wrap.hide-title {
    display: none;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    flex-direction: column;
    padding-bottom: 26px;
}

.section-content .section-title {
    align-items: flex-start;
    text-align: left;
}

.section-title-wrap .section-title {
    padding-bottom: 0;
}

section.has-background-image .section-title {
    color: var(--white);
}

section.has-background-image *:not(.btn) {
    color: var(--white);
}

section.has-background-image .section-title span {
    background-color: var(--white);
}

.section-subtitle {
    font-style: normal;
    display: block;
    text-align: center;
    padding-top: 25px;
}

.section-content .section-subtitle {
    text-align: left;
}

.title-section .section-title {
    justify-content: center;
    text-align: center;
    font-size: 32px;
}

.section-title span {
    flex-grow: 1;
    height: 1px;
    background-color: var(--textcolor);
    width: 100px;
    top: 10px;
}

.section-content {
    border-radius: var(--half-border-radius);
}

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

.featured-text .section-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.featured-text .section-content>* {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    width: 100%;
}

.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 */

.products.col-lg-6 .product-card-shop .cart-item-counter>div {
    width: 25px;
}

.products.col-lg-6 .product-card-shop .btn.btn-smx {
    padding: 9px 10px;
}

.products.col-lg-6 .product-card-shop .product-add-to-cart.flex-gap-10 {
    gap: 5px;
}

.products.col-lg-7 .product-card-shop .product-add-to-cart,
.products.col-lg-7 .product-card-shop .price {
    flex-direction: column;
    align-items: flex-start;
}

.products.col-lg-7 .product-card-shop .price {
    gap: 0;
}

.products.col-lg-7 .product-card-buttons .counter {
    width: calc(100% - 60px);
}


.product-card-shop {
    width: 100%;
    background: var(--body-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 1px 5px 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: var(--half-border-radius);
    margin-right: 5px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 5px;
}

.product-card-image img {
    width: 100%;
    height: auto;
    display: inline-block;
}

.product-card-image a {
    display: block;
    overflow: hidden;
    text-align: center;
    line-height: 0;
    border-radius: var(--half-border-radius);
}

.row .product-card-image a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-details .product-title-shop {
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding-bottom: 0;
    line-height: var(--base-normal-line-height);
}

.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: var(--white);
}

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

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

.product-card-shop .product-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-title-shop .product-card-vendor {
    display: block;
    font-family: var(--base-font);
}

.product-title-shop .product-card-tagline {
    display: block;
    font-family: var(--base-font);
}

.product-title-shop .product-card-vendor-tagline {
    margin-bottom: 5px;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.product-image {
    width: 100px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--light-gray-color);
    position: relative;
}

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

.cart-product-image {
    width: 70px;
    height: auto;
    background: var(--light-gray-color);
    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: var(--base-normal-line-height);
}

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

.cart-footer {
    position: absolute;
    bottom: 0px;
    background-color: var(--white);
    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: var(--border-radius);
    background-color: var(--primary);
    color: var(--white);
    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: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: var(--half-border-radius);
    z-index: 2;
    border: 1px solid var(--white);
}

.badge-primary {
    background: var(--primary-color);
    color: var(--white);
}

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

.badge-black {
    background: var(--black);
    color: var(--white);
}

.badge-lightgray {
    background: var(--light-gray-color);
    color: var(--black);
}

.badge-gray {
    background: var(--gray-color);
    color: var(--white);
}

.badge-darkgray {
    background: var(--darkgray-color);
    color: var(--white);
}

.badge-link {
    background: var(--link-color);
    color: var(--white);
}

.badge-link-hover {
    background: var(--link-hover-color);
    color: var(--white);
}

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

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

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

.badge-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.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: var(--base-normal-line-height);
    border-radius: var(--circle-oval-radius);
    z-index: 2;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.wishlist-icon {
    position: absolute;
    top: 3px;
    right: 4px;
    cursor: pointer;
    z-index: 2;
}

.single-product .product-info .wishlist-icon {
    top: unset;
    line-height: var(--base-normal-line-height);
    height: 100%;
    display: flex;
    align-items: center;
}

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

.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,
.col-lg-7 .price {
    font-size: 14px;
}

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

.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: var(--half-border-radius);
    font-weight: 500;
    color: var(--white);
}

.read-reviews:hover i {
    color: var(--white);
}

.aggregate-review {
    cursor: pointer;
}

.add-to-cart {
    padding-top: 20px;
    color: var(--white);
    font-weight: 600;
}

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

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

.highlight-card {
    width: calc(25% - 15px);
    flex: 1 0 calc(25% - 15px);
    border-radius: var(--border-radius);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: var(--light-gray-color);
    padding: 20px;
    overflow: hidden;
    flex-direction: column;
    margin: 0 auto;
}

section.fill-bg .highlight-card {
    background-color: var(--body-background-color);
}

.info-highlights-icon {
    display: none;
}

.highlight-card .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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


/*widget content alignments*/
.highlight-card.widget-card-content-center .content,
.contact-widget-block.widget-card-content-center,
.contact-widget-block.widget-card-content-center .content,
.footer-card.widget-card.widget-card-content-center .section-title,
.footer-card.widget-card.widget-card-content-center .content {
    text-align: center;
    align-items: center;
}

.contact-widget-block.widget-card-content-center .social-list-inner,
.footer-card.widget-card.widget-card-content-center .social-list-inner {
    text-align: center;
    justify-content: center;
}

.highlight-card.widget-card-content-right .content,
.contact-widget-block.widget-card-content-right,
.contact-widget-block.widget-card-content-right .content,
.footer-card.widget-card.widget-card-content-right .section-title,
.footer-card.widget-card.widget-card-content-right .content {
    text-align: right;
    align-items: flex-end;
}

.contact-widget-block.widget-card-content-right .social-list-inner,
.footer-card.widget-card.widget-card-content-right .social-list-inner {
    text-align: right;
    justify-content: right;
}

.contact-widget-block .logo-wrap {
    width: 300px;
    max-width: 100%;
    padding-bottom: 20px;
    display: inline-block;
}

.footer-card.social-card .newsletter-wrap,
.contact-widget-block .newsletter-wrap,
.footer-card.widget-card .newsletter-wrap {
    width: 100%;
    max-width: 400px;
    display: inline-block;
}

.footer-card .newsletter-wrap .newsletter-box-wrap {
    width: 100%;
}

.footer-card.social-card .newsletter-wrap .newsletter-box-wrap {
    width: 90%;
}

.section-content .newsletter-box-wrap {
    width: 100%;
}


.menu-widget.widget-card-content-center ul li {
    padding-left: 0;
}

.menu-widget.widget-card-content-center ul li::before {
    display: none;
}

.menu-widget.widget-card-content-right ul li {
    padding-left: 0;
    padding-right: 25px;
}

.menu-widget.widget-card-content-right ul li::before {
    left: unset;
    right: 0;
}

/*widget content alignments*/

.highlight-title {
    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: 32px;
    height: 32px;
    text-align: center;
}

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

.cart-update .cart-item-counter>div {
    width: 28px;
    height: 28px;
    line-height: 24px;
    font-size: 20px;
}

.cart-item-counter .plus,
.cart-item-counter .minus,
.cart-item-counter .cplus,
.cart-item-counter .cminus {
    font-weight: 300;
    line-height: 30px;
    font-size: 24px;
    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: var(--half-border-radius);
    border-bottom-left-radius: var(--half-border-radius);
}

.cart-item-counter .plus,
.cart-item-counter .cplus {
    border-top-right-radius: var(--half-border-radius);
    border-bottom-right-radius: var(--half-border-radius);
}

.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: 42px;
    height: 42px;
    text-align: center;
}

.single-product .cartbutton-wrap {
    flex: 1 1 50%;
}

.single-product .cartbutton-wrap .cartbutton {
    width: 100%;
}

.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*/
}


.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: var(--container-width);
    max-width: var(--container-max-width);
    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: var(--white);
    padding: 5px;
    border-radius: var(--half-border-radius);
    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 {
    padding: 20px 0;
}

.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: var(--white);
    font-weight: 500;
    display: inline-block;
    border-radius: var(--half-border-radius);
}

.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;
}

.single-product .dynamic-form-section {
    background-color: var(--lightgray);
    border-radius: var(--half-border-radius);
    margin-bottom: 20px;
    border: 1px solid var(--gray);
}

.product-variants select,
.product-card-buttons select {
    width: auto;
    padding-right: 30px;
}

.product-card-buttons select {
    padding: 10px 20px 10px 10px;
    min-height: unset;
    font-size: 0.8em;
    background-position: right 5px center;
}

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

.product-card-buttons .variant-tabs {
    gap: 0px;
}

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

.variant-tabs li {
    line-height: var(--base-normal-line-height) !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: var(--white);
    padding: 3px 0;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    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: var(--half-border-radius);
    border: 1px solid #e0e0e0;
    /*box-shadow: 0px 0px 3px #00000030;*/
    margin-bottom: 10px;
}

.add-review {
    padding: 10px 20px;
    background-color: #fdfdfd;
    border-radius: var(--half-border-radius);
    border: 1px solid #e0e0e0;
    /*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;
    color: var(--title-color);
}

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

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

.brands4673453523 .brand-image {
    background-color: var(--body-background);
    box-shadow: 0px 0px 5px #00000030;
    border-radius: var(--half-border-radius);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 7px solid var(--body-background);
}

.brands4673453523 .brand-image a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.brands4673453523 .brand-image img {
    border-radius: var(--half-border-radius);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brands4673453523.slick-slider .slick-track {
    display: flex !important;
    margin-left: -1px;
}


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

.brands4673453523 .slick-prev,
.brands4673453523 .slick-next {
    background-color: #00000050;
    padding: 5px;
    color: var(--white);
    bottom: auto;
    border-radius: var(--half-border-radius);
}

.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";
}

.multi-slider-image .brand-text {
    font-size: 1em;
    font-weight: 400;
    padding: 15px 0;
    pointer-events: none;
    line-height: var(--base-normal-line-height);
    display: flex;
}

.multi-slider-image.text-below-image .brand-text {
    width: 100%;
    position: relative;
    height: auto;
    gap: 2px;
    border-radius: 0;
    color: var(--textcolor);
    text-align: center;
    justify-content: center;
}

.multi-slider-image.text-over-image .brand-text {
    position: absolute;
    top: 7px;
    left: 7px;
    bottom: 0;
    right: 0;
    height: calc(100% - 14px);
    width: calc(100% - 14px) !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5em;
    color: var(--white);
    gap: 15px;
    border-radius: var(--half-border-radius);
}

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


.contact-page .contact-info i.fa {
    border: 1px solid var(--primary);
    width: 26px;
    height: 26px;
    line-height: normal;
    text-align: center;
    border-radius: var(--half-border-radius);
    margin-right: 10px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.contact-form-box img {
    top: -2px;
    border-radius: var(--half-border-radius);
}

.contact-form-box .one-fifth select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

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;
}


body.image-zoom-active .special-banner .special-banner-image img,
body.image-zoom-active .multi-slider-image .brand-image img,
body.image-zoom-active .product-image-shop img,
body.image-zoom-active .featured-category a img,
body.image-zoom-active .editorflex.flex .editorflex .page-image img,
body.image-zoom-active .blog-grid .blog-image img {
    transition: all 0.5s ease-in-out;
}

body.image-zoom-active .special-banner .special-banner-image:hover img,
body.image-zoom-active .multi-slider-image .brand-image:hover img,
body.image-zoom-active .product-image-shop:hover img,
body.image-zoom-active .featured-category a:hover img,
body.image-zoom-active .editorflex.flex .editorflex .page-image:hover img,
body.image-zoom-active .blog-grid .blog-image:hover img {
    transform: scale(1.2);
}

/* ── MARQUEE ── */
section .section-content .marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

section .section-content .marquee>* {
    display: inline-block;
    animation: marquee 28s linear infinite;
    padding: 5px 0;
    margin: 0;
}

section .section-content .marquee>*>* {
    padding: 0 2rem;
    margin: 0;
    list-style: none;
    display: inline-block;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── MARQUEE ── */

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

footer .section-title {
    color: var(--footer-text-color);
    align-items: unset;
    padding-bottom: 25px;
    font-size: 24px;
    text-align: left;
}

footer .section-title span {
    background-color: var(--footer-text-color);
    margin: 0;
}

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

.footer-wrap.custom-width-applied {
    flex-wrap: wrap;
    padding: 0;
}

.footer-wrap.custom-width-applied .widget-row-wrap {
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--light-gray-color);
}

.footer-wrap.custom-width-applied .widget-row-wrap:last-child {
    border-bottom: 0;
}

.footer-card {
    width: 100%;
}

.footer-card a {
    color: var(--footer-text-color);
}

.footer-card.widget-card {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-card .contact-info {
    margin-top: 7px;
}

.social-list-inner {
    justify-content: flex-start;
}

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

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

.footer-card .social-list-inner li a.btn,
.social-list-inner li a.btn {
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 46px;
    text-align: center;
    background-color: var(--footer-text-color);
    max-height: unset;
}

.footer-card .social-list-inner li a:hover i,
.social-list-inner li a:hover i {
    color: var(--footer-text-color);
}

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

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

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

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

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

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

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

.newsletter-box-wrap button {
    position: absolute;
    right: 1px;
    top: 1px;
    border-top-right-radius: var(--half-border-radius);
    border-bottom-right-radius: var(--half-border-radius);
}

.newsletter-wrap .newsletter-box-wrap button {
    font-size: 32px;
    padding: 0px 7px;
    line-height: normal;
    display: flex;
    height: calc(100% - 2px);
    align-items: center;
    justify-content: center;
    max-height: unset;
}

.newsletter-wrap .btn i.fa {
    overflow: hidden;
}


.footer-card.widget-card .social-list {
    padding-bottom: 0px;
}

.footer-card.widget-card .newsletter-box-wrap {
    padding-top: 0;
}

.footer-icons i {
    color: var(--footer-text-color);
}

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

.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: var(--footer-text-color);
}

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

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

.footer-card .footer-links-wrap {
    gap: 20px;
}

.footer-card .footer-links-wrap>div {
    width: 100%;
}

.footer-card .footer-links-wrap .custom-menu {
    width: 100%;
}

footer .contact-menu-social .info-card,
footer .contact-social-menu .info-card {
    order: 1;
}

footer .menu-contact-social .info-card,
footer .social-contact-menu .info-card {
    order: 2;
}

footer .social-menu-contact .info-card,
footer .menu-social-contact .info-card {
    order: 3;
    text-align: right;
}

footer .menu-contact-social .links-card,
footer .menu-social-contact .links-card {
    order: 1;
}

footer .contact-menu-social .links-card,
footer .social-menu-contact .links-card {
    order: 2;
}

footer .contact-social-menu .links-card,
footer .social-contact-menu .links-card {
    order: 3;
}

footer .social-menu-contact .social-card,
footer .social-contact-menu .social-card {
    order: 1;
}

footer .contact-social-menu .social-card,
footer .menu-social-contact .social-card {
    order: 2;
}

footer .menu-contact-social .social-card,
footer .contact-menu-social .social-card {
    order: 3;
}

.full-width-layout footer .menu-contact-social .social-card,
.full-width-layout footer .contact-menu-social .social-card {
    text-align: right;
}

footer .social-menu-contact .info-card .section-title,
footer .menu-social-contact .info-card .section-title,
footer .menu-contact-social .social-card .section-title {
    align-items: flex-end;
}

footer .social-menu-contact .info-card .contact-info>div,
footer .menu-social-contact .info-card .contact-info>div {
    justify-content: flex-end;
}

footer .menu-contact-social .info-card .section-title,
footer .social-contact-menu .info-card .section-title,
footer .contact-social-menu .social-card .section-title,
footer .menu-social-contact .social-card .section-title {
    align-items: center;
}

footer .menu-contact-social .info-card .contact-info>div,
footer .social-contact-menu .info-card .contact-info>div,
footer .contact-social-menu .social-card .social-list-inner,
footer .menu-social-contact .social-card .social-list-inner {
    justify-content: center;
}

footer .contact-social-menu .social-card .newsletter-box-wrap,
footer .menu-social-contact .social-card .newsletter-box-wrap {
    text-align: center;
}

footer .menu-contact-social .social-card .social-list-inner {
    justify-content: flex-end;
}

footer .menu-contact-social .social-card .newsletter-wrap>.flex {
    justify-content: flex-end;
}

footer .contact-menu-social .social-card .newsletter-wrap .newsletter-box-wrap {
    width: 100%;
}

footer .menu-social-contact .social-card .newsletter-wrap>.flex,
footer .contact-social-menu .social-card .newsletter-wrap>.flex {
    justify-content: center;
}

.full-width-layout footer .contact-menu-social .social-list-inner,
.full-width-layout footer .menu-contact-social .social-list-inner {
    justify-content: flex-end;
}

.full-width-layout footer .contact-menu-social .social-card .section-title,
.full-width-layout footer .menu-contact-social .social-card .section-title {
    align-items: flex-end;
    text-align: right;
}



.language-selector {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 4px 8px;
    border-radius: var(--half-border-radius);
    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-wrap .message {
    text-align: center;
}

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

.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: var(--base-line-height);
    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: var(--half-border-radius);
}

.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: var(--half-border-radius);
    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 {
    --wa-size: 56px;
    --wa-bg-color: #35bd48;
    --wa-border-color: #fff;
    --wa-arrow-rotation: -134deg;
    --circle-border-width: calc(var(--wa-size) / 10);
    --arrow-border-width: calc(var(--circle-border-width) + 2px);
    position: fixed;
    right: 15px;
    bottom: 60px;
    z-index: 999;
}

.floating-wa.placement-bottom-left {
    left: 15px;
    right: auto;
    bottom: 40px;
}

.floating-wa .whatsapp-icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.whatsapp-icon {
    position: relative;
    width: var(--wa-size);
    height: var(--wa-size);
    background-color: var(--wa-bg-color);
    border-radius: 50%;
    border: var(--circle-border-width) solid var(--wa-border-color);
    box-sizing: border-box;
    display: block;
    padding: calc(var(--wa-size) / 6);
    box-shadow: 0px 0px 10px 0px #bfbfbf;
}

.whatsapp-icon::before {
    content: "";
    position: absolute;
    bottom: calc(var(--wa-size) / -6.5);
    left: calc(var(--wa-size) / -6.5);
    width: 0px;
    height: 0;
    border-left: calc(var(--arrow-border-width) * 1.2) solid transparent;
    border-right: calc(var(--arrow-border-width) * 1.2) solid transparent;
    border-bottom: calc(var(--arrow-border-width) * 2.5) solid var(--wa-border-color);
    transform: rotate(var(--wa-arrow-rotation));
    filter: drop-shadow(0px calc(var(--circle-border-width) * -0.5) calc(var(--circle-border-width) * 0.5) #dddddd);
}

.whatsapp-icon::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 0px;
    height: 0;
    border-left: var(--circle-border-width) solid transparent;
    border-right: var(--circle-border-width) solid transparent;
    border-bottom: calc(var(--circle-border-width) * 2.2) solid var(--wa-bg-color);
    transform: rotate(var(--wa-arrow-rotation));
    z-index: 2;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}


/* 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: var(--circle-oval-radius);
    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: var(--border-radius);
    background-color: var(--light-gray-color);
    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: var(--half-border-radius);
    border: 1px solid var(--gray);
}

.checkout-form .cart-products {
    background-color: var(--white);
}

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

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

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

.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: var(--half-border-radius);
}

.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: var(--border-radius);
}

.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;
}

.order-details .order-product-image img {
    border-radius: var(--small-border-radius);
}

.order-details .section-content .section-title {
    justify-content: flex-start;
}

.order-details .section-content .section-title span {
    display: none;
}

.p-section {
    border: 2px solid #d3d3d3;
    border-radius: var(--border-radius);
}

.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: var(--border-radius);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.variation-single {
    border-radius: var(--half-border-radius);
    padding: 0 10px;
    background-color: var(--black);
    color: var(--white);
    font-weight: 400;
}

.variation-single:hover {
    background-color: var(--secondary);
}

.variation-selected {
    border-radius: var(--half-border-radius);
    padding: 2px 10px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.variation-selected:hover {
    background-color: var(--black);
    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: var(--white);
    border: 1px solid var(--secondary);
    border-radius: var(--half-border-radius);
    padding: 20px;
    box-shadow: 0px 0px 0px 3px #fff;
    max-width: 90%;
}

.enquiry-box-wrap {
    background-color: var(--white);
    border: 1px solid var(--secondary);
    border-radius: var(--half-border-radius);
    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: var(--white);
    border-radius: var(--circle-oval-radius);
    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: var(--base-normal-line-height);
}

.page-content {
    line-height: var(--base-line-height);
}

.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: var(--half-border-radius);
    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: var(--black);
}

.featured-text .page-youtube {
    margin-bottom: 20px !important;
    padding-bottom: 56.25% !important;
}

.page-youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.page-youtube .yt-loader {
    position: absolute;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-youtube .yt-loader::after {
    content: "";
    width: 40px;
    height: 40px;
    border: 4px solid var(--white);
    border-top: 4px solid transparent;
    border-radius: var(--circle-oval-radius);
    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 {
    position: absolute;
    top: 1px;
    right: 1px;
    height: calc(100% - 2px);
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 44px;
    max-height: unset;
}

.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;
}

.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: var(--half-border-radius);
}

.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: var(--border-radius);
    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: 8px;
    background: var(--lightgray);
    border-radius: var(--half-border-radius);
    margin-top: 10px;
    box-shadow: 0px 0px 5px 2px #00000030;
}

header .search-wrap {
    position: fixed;
    width: 600px;
    max-width: 100%;
    margin: 10px auto;
    left: 0;
    right: 0;
}

header.search-box-visible .search-wrap {
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: block;
    margin: unset;
    margin-bottom: 10px;
    margin-left: auto;
}

header.search-box-visible.right-align-desktop-menu:not(.header-info-visible) .search-wrap {
    margin-left: auto;
}

header.search-box-visible.left-align-desktop-menu:not(.header-info-visible) .search-wrap {
    margin-right: auto;
}

header.search-box-visible.center-align-desktop-menu:not(.header-info-visible) .search-wrap,
header.search-box-visible.drawer-menu-visible:not(.header-info-visible) .search-wrap {
    margin-left: auto;
    margin-right: auto;
}

header.search-box-visible .search-box-wrap input {
    padding: 8px 15px;
    min-height: unset;
}

header.search-box-visible .search-box-wrap button.btn {
    font-size: 16px;
    padding: 0 7px;
    line-height: 32px;
}

body.scrolled header.search-box-visible .search-wrap {
    display: none;
}

@media (min-width: 769px) {
    header.search-box-visible.header-info-visible .search-wrap {
        left: 0;
        right: 0;
        top: 5px;
        padding-bottom: 0px;
        position: absolute;
        z-index: 100;
        margin: 0px auto;
    }

    header.search-box-visible.header-info-visible .header-info {
        padding: 15px 0;
    }
}

.login-box {
    width: 500px;
    max-width: 90%;
}

.login-shop form img {
    border-radius: var(--half-border-radius);
    top: 1px;
}

.payment-guide small {
    font-size: 0.85em;
    display: block;
    background-color: var(--white);
    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: var(--half-border-radius);
}

.order-complete .icon {
    font-size: 180px;
    color: var(--white);
    display: block;
    border-radius: var(--circle-oval-radius);
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-complete .icon .fa {
    display: block;
    border: 5px solid var(--white);
    border-radius: var(--circle-oval-radius);
    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;
}

.blog-grid .blog-grid-item {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    flex: 0 0 33.33%;
    background-color: var(--white);
    text-align: center;
    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: 20px;
    border-top-left-radius: var(--half-border-radius);
    border-top-right-radius: var(--half-border-radius);
    overflow: hidden;
}

.blog-grid .blog-image img {
    width: 100%;
    height: auto;
    display: inline-block;
    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;
}

.blog-grid .blog-snippet {
    padding-top: 10px;
    line-height: var(--base-line-height);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.featured-blog .blog-view-more {
    width: 100%;
    text-align: center;
    padding-top: 40px;
}

.testimonials-wrap {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}

.testimonials-wrap .slick-list {
    margin-left: -1px;
}

.testimonials-wrap .slick-track {
    display: flex;
}

.testimonial-grid {
    margin: 0 auto;
}

.single-testimonial {
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    background-color: var(--body-background-color);
    margin: 4px 10px;
    height: auto;
}

.testimonial-grid .single-testimonial {
    margin: 0px;
}

.stars.testimonial-rating {
    justify-content: center;
}

.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: var(--half-border-radius);
    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: -20px !important;
}

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

/* Creating the modern chevron arrows using pseudo-elements */
.testimonials .slick-prev::before,
.testimonials .slick-next::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

/* Point the chevrons left and right */
.testimonials .slick-prev::before {
    left: 64%;
    transform: translate(-55%, -50%) rotate(-135deg);
}

.testimonials .slick-next::before {
    left: 38%;
    transform: translate(-43%, -50%) rotate(45deg);
}

.testimonials .slick-dots {
    bottom: -35px;
}

.testimonials .slick-dots li.slick-active button:before {
    color: var(--secondary-color);
}

.blog-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.blogs .snippet-image {
    width: 20%;
    background-color: var(--lightgray);
    border-radius: var(--half-border-radius);
    padding: 10px;
    line-height: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blogs .snippet-content {
    width: calc(80% - 20px);
}

.blog-post-list .blog-date {
    color: var(--textcolor);
}

.blog-post-list.grid-style .blog-date {
    margin-top: -10px;
}

.blog-post-list.grid-style .container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
}

.blog-post-list.grid-style .container>a {
    flex: 0 0 calc(33.33% - 14px);
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}

.blog-post-list.grid-style .blog-posts {
    flex-direction: column;
    width: 100%;
    border-radius: var(--half-border-radius);
    border: 1px solid var(--gray);
    gap: 0;
}

.blog-post-list.grid-style .snippet-image {
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.blog-post-list.grid-style .snippet-image picture {
    width: 100%;
}

.blog-post-list.grid-style .snippet-content {
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    padding: 20px;
}

.blog-post-list.grid-style .container h5 {
    line-height: var(--base-normal-line-height);
}

.blog-post-list.grid-style .container .page-content {
    line-height: var(--base-line-height);
    padding-bottom: 20px;
}

.main.blog-post .dynamic-form-wrap {
    margin: unset;
    width: 100%;
    border-bottom: 1px solid var(--gray);
}

.main.blog-post .dynamic-form-title {
    text-align: left;
}

.main.blog-post .dynamic-form-inner-wrap {
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
}

#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: var(--half-border-radius);
    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;
    }
}

.product-card-slider .slick-list {
    margin: 0 0 0 -5px;
}

.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: 5px 12.5px;
}

.product-card-slider.col-lg-7 .slick-slide {
    margin: 5px 5px;
}

.product-card-slider.col-lg-6 .slick-slide {
    margin: 5px 7.5px;
}

.product-card-slider.col-lg-5 .slick-slide {
    margin: 5px 10px;
}

.product-card-slider.col-lg-3 .slick-slide {
    margin: 5px 15px;
}

.product-card-slider .slick-slide .product-card-buttons {
    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 {
    background-color: #00000050;
    padding: 5px;
    color: var(--white);
    bottom: auto;
    border-radius: var(--half-border-radius);
    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: var(--white);
    cursor: pointer;
    border-radius: var(--half-border-radius);
    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 {
    z-index: 99;
    left: 0;
    right: 0;
    color: var(--text-color);
    padding: 10px 0;
}

.header-info::before {
    content: "";
    display: block;
    background-color: #00000010;
    height: 100%;
    width: 100vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
}

.header-info * {
    line-height: 1;
    font-size: 13px;
}

#header .header-info * {
    color: var(--menu-text-color) !important;
}

#header .header-info .flex:not(.full)>*:hover * {
    color: var(--secondary) !important;
}

.header-info .fa-brands {
    font-size: 1.2em;
}

.scrolled .header-info {
    display: none;
}

/* 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: var(--white);
}

section.has-background-image .section-content .editorflex *:not(a, button .btn) {
    color: var(--text-color);
}

section.has-background-image .section-content .editorflex :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    color: var(--title-text-color);
}


/*mega menu*/
.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul {
    width: 100%;
    position: fixed;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 40px 5%;
    height: 0;
    overflow: hidden;
    background-color: var(--header-background);
}

.active-announcement .desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul {
    top: 122px;
}

body.scrolled.active-announcement:not(.non-sticky-header) .desktop-menu ul li.mega-menu-parent>ul {
    top: 70px;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent:hover>ul {
    height: auto;
    overflow: unset;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>a {
    pointer-events: none;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent ul li {
    text-align: left;
    border: 0;
    background-color: var(--header-background);
    flex: 0 1 100%;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul>li>a {
    border-bottom: 1px solid var(--gray);
    padding-bottom: 15px;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul>li:hover>a {
    border-bottom: 1px solid var(--menu-text);
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent ul li a {
    color: var(--menu-text);
    transition: all 0.3s ease;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul li:hover>a {
    font-weight: bold;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul>li ul {
    display: block !important;
    opacity: 1;
    visibility: visible;
    position: relative;
    left: 0;
    padding: 0;
    top: 10px;
    transform: unset;
    box-shadow: none;
    background-color: var(--header-background);
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul>li ul li {
    padding: 1px 0;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent>ul>li ul li a {
    font-size: 0.75em;
    padding: 5px 0;
}

.desktop-menu-wrap .desktop-menu ul li.mega-menu-parent li.parent:after {
    content: unset
}

/*mega menu*/


/* 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: 15px;
    }

    .columns.col-sm-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .columns.col-sm-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }
}

/* 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: 25px;
    }

    .columns.col-md-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

/* 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: 25px;
    }

    .columns.col-lg-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 20px;
    }

    .columns.col-lg-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 15px;
    }

    .columns.col-lg-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 10px;
    }
}

/* 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: 25px;
    }

    .columns.col-xl-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 20px;
    }

    .columns.col-xl-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 15px;
    }

    .columns.col-xl-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 10px;
    }
}

/* Responsive Adjustments */
@media (max-width: 1340px) {

    /*.lg-sticky {
        position: sticky;
    }*/
    /*.container {
        width: calc(var(--container-width) * 0.8);
    }*/

    :root {
        --container-width: 96%;
    }

    .text-logo {
        font-size: 1.3em;
    }

    .text-logo.smaller {
        font-size: 1.1em;
    }

    header .container {
        width: var(--container-max-width);
    }

    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:not(.non-sticky-header) .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;
    }

    body.scrolled:not(.non-sticky-header) .desktop-menu>ul>li>a {
        padding: 16px 8px;
    }

    .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: 400px;
    }

    header.search-box-visible .header-info {
        padding: 10px 0;
    }

    .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%;
    }

    #section-category-products.filter-active .columns.col-lg-4 .product-card-buttons .product-add-to-cart,
    #section-category-products.filter-active .columns.col-lg-5 .product-card-buttons .product-add-to-cart {
        flex-direction: column;
        align-items: flex-start;
    }

    #section-category-products.filter-active .columns.col-lg-4 .product-card-info .price,
    #section-category-products.filter-active .columns.col-lg-5 .product-card-info .price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

}

@media (max-width: 1200px) {
    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .company-logo a {
        justify-content: center;
    }

    .desktop-menu-wrap {
        /*width: 20% !important;*/
        /*padding-right: 10px;*/
        display: none;
    }

    .desktop-menu>ul>li {
        padding: 32px 5px;
        text-align: center;
        line-height: 16px;
    }

    .desktop-menu a {
        font-size: 0.8rem;
    }

    .header-info .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .header-icons-wrap,
    .drawer-menu-icon-wrap {
        width: 150px !important;
        max-width: 20%;
        gap: 10px;
    }

    header .container .company-logo a {
        text-align: center;
    }

    .drawer-menu-visible .container .company-logo {
        margin-left: 0px;
    }


    .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%;
    }

    .category-display {
        width: calc(25% - 7.5px);
        font-size: 1em;
        line-height: calc(1em + 4px);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {

    .company-logo {
        width: 220px;
    }

    #header.transparent-header {
        background-color: var(--header-background-color);
    }

    #header.transparent-header::before {
        opacity: 1 !important;
        content: "";
        position: absolute;
        inset: 0;
        background: var(--header-background-color);
        z-index: 0;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
    }

    .header-info {
        display: none;
    }

    header.search-box-visible .search-wrap {
        top: 0;
        margin: 0px auto 10px auto;
    }

    header.search-box-visible .search-box-wrap input {
        padding: 8px 15px;
        min-height: unset;
    }

    header.search-box-visible .search-box-wrap button.btn {
        font-size: 16px;
        padding: 0 6px;
        line-height: 32px;
    }

    header.search-box-visible .header-info {
        padding: 15px 0;
    }

    body.scrolled header.search-box-visible .search-wrap {
        display: none;
    }

    .page-product-container {
        flex-direction: column;
    }

    section .editorflex.flex>*:not(hr, .btn) {
        text-align: center;
        padding: 10px;
    }

    .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: var(--base-normal-line-height);
        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,
    .banners297242342 .slick-next {
        width: 34px;
        height: 34px;
    }

    .banners297242342 .slick-prev::before,
    .banners297242342 .slick-next::before {
        width: 10px;
        height: 10px;
    }

    .banners297242342 .slick-prev {
        left: 5px;
    }

    .banners297242342 .slick-next {
        right: 5px;
    }

    .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-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;
    }

    .footer-card .footer-links-wrap {
        flex-wrap: wrap;
    }

    .footer-card .footer-links-wrap>div {
        flex: 1 0 calc(50% - 10px);
    }

    .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: var(--half-border-radius);
        line-height: var(--base-normal-line-height)
    }

    .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: var(--base-normal-line-height);
        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);
    }

    .category-display {
        width: calc(33% - 7.5px);
        line-height: var(--base-normal-line-height);
    }

    .blog-post-list.grid-style .container {
        gap: 10px;
    }

    .blog-post-list.grid-style .container>a {
        flex: 0 0 100%;
    }

    .review-blocks.logged-in {
        grid-template-columns: repeat(1, 1fr);
    }

    .review-blocks.logged-in .reviews {
        padding-bottom: 20px;
    }

    .review-blocks.logged-in .reviews .btn {
        width: auto !important;
        float: right;
    }

    .custom-width-applied .footer-card.widget-card {
        flex: 1 0 calc(50% - 15px);
        max-width: 50%;
    }

    footer .social-menu-contact .info-card .section-title,
    footer .menu-social-contact .info-card .section-title,
    footer .menu-contact-social .social-card .section-title,
    footer .contact-menu-social .social-card .section-title {
        align-items: flex-start;
    }

    .full-width-layout footer .contact-menu-social .social-card .section-title,
    .full-width-layout footer .menu-contact-social .social-card .section-title {
        align-items: flex-start;
        text-align: left;
    }

    footer .social-menu-contact .info-card .contact-info>div,
    footer .menu-social-contact .info-card .contact-info>div,
    footer .menu-contact-social .social-card .social-list-inner,
    footer .contact-menu-social .social-card .social-list-inner {
        justify-content: flex-start;
    }

    footer .menu-contact-social .info-card .section-title,
    footer .social-contact-menu .info-card .section-title,
    footer .contact-social-menu .social-card .section-title,
    footer .menu-social-contact .social-card .section-title {
        align-items: flex-start;
    }

    footer .menu-contact-social .info-card .contact-info>div,
    footer .social-contact-menu .info-card .contact-info>div,
    footer .contact-social-menu .social-card .social-list-inner,
    footer .menu-social-contact .social-card .social-list-inner {
        justify-content: flex-start;
    }

    footer .contact-social-menu .social-card .newsletter-box-wrap,
    footer .menu-social-contact .social-card .newsletter-box-wrap {
        text-align: left;
    }

    .full-width-layout footer .menu-contact-social .social-card,
    .full-width-layout footer .contact-menu-social .social-card {
        text-align: left;
    }

    .footer-card.social-card .newsletter-wrap .newsletter-box-wrap {
        width: 100%;
    }

}

@media (max-width: 480px) {
    :root {
        --base-font-size: 14px;
    }

    #header {
        padding: 0;
        /*height: 70px;*/
    }

    #header .header-wishlist-icon {
        display: none;
    }

    .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 {
        height: 36px;
    }

    section,
    .section {
        padding: 40px 0;
    }

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

    h1.section-title {
        padding: 0;
    }

    .special-banner .special-banner-image.two-featured-block .block-text,
    .special-banner .special-banner-image.featured-count-2 .block-text {
        font-size: 1.2rem;
    }

    .featured-category {
        gap: 1.3vw;
        justify-content: space-around;
    }

    .category-display {
        width: calc(50% - 5px);
        font-size: 12px;
        line-height: var(--base-normal-line-height);
        margin: 0;
        margin-bottom: 10px;
    }

    .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%;
    }

    .category-banner .heading {
        font-size: 24px;
        padding: 10px 0;
    }

    .breadcrumbs {
        padding-top: 5px !important;
        line-height: var(--base-normal-line-height);
    }

    .mobile-two-product .columns.col-sm-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mobile-two-product .product-card-buttons .counter {
        width: 100%;
    }

    .mobile-two-product .product-card-buttons .plus,
    .mobile-two-product .product-card-buttons .minus {
        width: 30%;
        flex: 1 0 30%;
    }

    .mobile-two-product .cart-item-counter {
        width: 100%;
    }

    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;
    }

    .mobile-two-product .product-card-shop {
        padding: 5px;
    }

    section .editorflex.flex>*:not(hr, .btn) {
        text-align: center;
        padding: 5px;
    }

    .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: 5px;
    }

    .search-box-wrap button.btn {
        line-height: 30px;
    }

    header .search-wrap {
        width: 90%;
    }

    .order-complete .icon {
        font-size: 120px;
        width: 200px;
        height: 200px;
    }

    .order-complete .icon .fa {
        display: block;
        border: 5px solid var(--white);
        border-radius: var(--circle-oval-radius);
        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: 1em;
        border-radius: var(--border-radius);
    }

    .text-logo.smaller {
        font-size: 0.9em;
    }

    .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 {
        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%;
    }

    .special-banner {
        gap: 10px;
    }

    .price {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .sort-by-label {
        display: none;
    }

    .sort-by-label+select {
        width: 100% !important;
    }

    .tab-name {
        padding: 6px 14px;
        font-size: 0.9em;
    }

    .floating-wa {
        --wa-size: 46px;
        right: 5px;
    }

    .floating-wa.placement-bottom-left {
        left: 8px;
        bottom: 30px;
    }

    .mobile-two-product .product-card-slider .slick-slide {
        margin: 0 5px;
    }

    .mobile-two-product .product-add-to-cart {
        flex-direction: column;
        align-items: center;
    }

    .brands4673453523 .slick-slide {
        padding: 0 5px;
    }

    .product-card-slider .slick-list {
        margin: 0 0 0 -1px;
    }


}

/* 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: var(--border-radius);
    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: var(--black);
}



@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: var(--body-background-color);
    padding: 10px;
    border-radius: var(--border-radius);
    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: var(--circle-oval-radius);
    border: none;
    background: var(--danger);
    color: var(--white);
    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: var(--half-border-radius);
    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: var(--base-line-height);
    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;
    }
}

/* ── App Download Banner ──────────────────────────────────────────────────*/
#app-download-banner {
    display: none;
    /* JS reveals it only for matched mobile OS */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: var(--header-background);
    color: var(--menu-text);
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
}

#app-download-banner.visible {
    transform: translateY(0);
    opacity: 1;
}

#app-download-banner .adb-text {
    flex: 1;
    font-size: 13px;
    line-height: var(--base-line-height)
}

#app-download-banner .adb-text strong {
    display: block;
    font-size: 14px;
}

#app-download-banner .adb-btn {
    white-space: nowrap;
    background: var(--black);
    color: var(--white);
    box-shadow: 0 0 2px #eeeeee;
    border: none;
    border-radius: var(--capsule-radius);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

#app-download-banner .adb-close {
    background: none;
    border: none;
    color: var(--menu-text);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0 0 0 8px;
    flex-shrink: 0;
}

@media (min-width: 481px) {
    #app-download-banner {
        display: none !important;
    }
}

/* --------------------------------------------------------
   Pagination & Infinite Scroll Loader
-------------------------------------------------------- */

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: var(--small-border-radius);
    margin: 0;
}

.pagination .page-item {
    margin: 0 4px;
}

.pagination .page-link {
    position: relative;
    display: block;
    padding: 8px 14px;
    line-height: var(--base-normal-line-height);
    color: var(--textcolor);
    background-color: transparent;
    border: 1px solid var(--primary);
    border-radius: var(--small-border-radius);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background-color: var(--lightgray);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background-color: var(--lightgray);
    border-color: var(--primary);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--circle-oval-radius);
    border-top-color: var(--secondary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 480px) {
    .banner-title-section .container.flex.align-app-top-left {
        align-items: start !important;
        justify-content: start !important;
    }

    .banner-title-section .container.flex.align-app-top-left .heading {
        text-align: left !important;
    }

    .banner-title-section .container.flex.align-app-top-center {
        align-items: start !important;
        justify-content: center !important;
    }

    .banner-title-section .container.flex.align-app-top-center .heading {
        text-align: center !important;
    }

    .banner-title-section .container.flex.align-app-top-right {
        align-items: start !important;
        justify-content: end !important;
    }

    .banner-title-section .container.flex.align-app-top-right .heading {
        text-align: right !important;
    }

    .banner-title-section .container.flex.align-app-middle-left {
        align-items: center !important;
        justify-content: start !important;
    }

    .banner-title-section .container.flex.align-app-middle-left .heading {
        text-align: left !important;
    }

    .banner-title-section .container.flex.align-app-middle-center {
        align-items: center !important;
        justify-content: center !important;
    }

    .banner-title-section .container.flex.align-app-middle-center .heading {
        text-align: center !important;
    }

    .banner-title-section .container.flex.align-app-middle-right {
        align-items: center !important;
        justify-content: end !important;
    }

    .banner-title-section .container.flex.align-app-middle-right .heading {
        text-align: right !important;
    }

    .banner-title-section .container.flex.align-app-bottom-left {
        align-items: end !important;
        justify-content: start !important;
    }

    .banner-title-section .container.flex.align-app-bottom-left .heading {
        text-align: left !important;
    }

    .banner-title-section .container.flex.align-app-bottom-center {
        align-items: end !important;
        justify-content: center !important;
    }

    .banner-title-section .container.flex.align-app-bottom-center .heading {
        text-align: center !important;
    }

    .banner-title-section .container.flex.align-app-bottom-right {
        align-items: end !important;
        justify-content: end !important;
    }

    .banner-title-section .container.flex.align-app-bottom-right .heading {
        text-align: right !important;
    }
}

.variant-tabs li a.selected-variant,
.variant-tabs li .variant-capsule.selected-variant {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}