@import url(./bootstrap-select.min.css);
@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans+Arabic:wght@100..800&display=swap');

:root {
  --main: #000000;
  --white: #ffffff;
  --primary: #db1215;
  --red_1: #db1215;
  --backdrop: rgba(0, 0, 0, 0.5);
  --yellow: #ffb321;
  --main-rgba-1: rgba(0, 0, 0, 0.16);
  --main-rgba-2: rgba(0, 0, 0, 0.15);
  --text: #545454;
  --text-2:#909090;
  --text-3:#868686;
  --line: #ebebeb;
  --line-2: #ececec;
  --bg-1: #fcfbf9;
  --bg-2: #f6f6f6;
  --bg-3: #fcffb2;
  --bg-4: #c9f4aa;
  --bg-5: #ff7b54;
  --bg-6: #8054ff;
  --bg-7: #f1f0ed;
  --bg-8: #f0edf1;
  --bg-9: #edeef1;
  --bg-10: #fcfbf9;
  --bg-11: #f2f2f2;
  --success: #31A56D;
  --bg-load: #d9d9d9;
  --bg-scrollbar-track: #f1f1f1;
  --bg-scrollbar-thumb: #c1c1c1;
  --font-family-base: "Playpen Sans Arabic", sans-serif;
}

/*---------- Reset css styles ----------- */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
address,
code,
img,
q,
s,
small,
strong,
var,
b,
u,
i,
center,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
aside,
canvas,
details,
figure,
footer,
header,
menu,
nav,
output,
section,
summary,
time,
mark,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: var(--font-family-base);
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}


aside,
details,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* Elements
-------------------------------------------------------------- */
html {
  margin-right: 0 !important;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family-base);
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--main);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1540px;
}

.container {
  width: 100%;
  margin: auto;
}

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

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

textarea,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: var(--font-family-base);
  border: 1px solid var(--line);
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 12px 18px;
  width: 100%;
  background: var(--white);
  color: var(--text-2);
  font-weight: 400;
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: var(--line);
}

textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: var(--text-2);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

textarea {
  height: 112px;
  resize: none;
}

/* Placeholder color */
::-webkit-input-placeholder {
  color: var(--text-2);
}

::-moz-placeholder {
  color: var(--text-2);
  opacity: 1;
}

/* Since FF19 lowers the opacity of the placeholder by default */

/* Typography
-------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  text-rendering: optimizeLegibility;
  color: var(--main);
  font-weight: 400;
}

h1 {
  font-size: 80px;
  line-height: 96px;
}

h2 {
  font-size: 68px;
  line-height: 81.6px;
}

h3 {
  font-size: 56px;
  line-height: 67.2px;
}

h4 {
  font-size: 42px;
  line-height: 50.4px;
}

h5 {
  font-size: 28px;
  line-height: 33.6px;
}

h6 {
  font-size: 20px;
  line-height: 30px;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-14 {
  font-size: 14px !important;
}

.fs-14 {
  font-size: 14px !important;
  line-height: 22.4px !important;
}

.fs-16 {
  font-size: 16px !important;
}

 .text-22 {
  font-size: 22px !important;
}

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

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

.bg_white {
  background-color: var(--white) !important;
}

.bg-dark-green-2 {
  background-color: #6a7369 !important;
}

.bg-yellow-8 {
  background-color: #fcf151;
}

.bg-yellow-9 {
  background-color: #fbf24a !important;
}

.bg-yellow-10 {
  background-color: #fff6c6;
}

.bg-gradient-1 {
  background: linear-gradient(102deg, rgb(159, 111, 189) 8%, rgb(168, 125, 196) 47%, rgb(180, 140, 203) 83%);
}

.bg-gradient-2 {
  background: linear-gradient(104deg, rgb(61, 53, 75) 0.54%, rgba(61, 53, 75, 0.56) 100%);
}

.bg-gradient-3 {
  background: linear-gradient(270deg, rgba(31, 31, 40, 0.8) 10%, rgb(30, 32, 40) 100%, rgb(30, 32, 40) 100%);
}

.text_black-2 {
  color: var(--text) !important;
}

.text-paragraph {
  color: #868686;
}

.text-sale {
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5490196078);
}

.text-1 {
  font-size: 18px !important;
  line-height: 28.8px !important;
}

.text-2 {
  font-size: 16px;
  line-height: 24px;
}

.text-3 {
  font-size: 16px;
  line-height: 19.2px;
}

.text-stroke-white {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: var(--main);
}
a:focus, a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  outline: 0;
}

label {
  font-weight: 600;
}

.link {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.link:hover {
  color: var(--primary) !important;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

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

.radius-3 {
  border-radius: 3px !important;
}

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

.tf-md-hidden {
  display: none;
}

.pt_0 {
  padding-top: 0px !important;
}

.pb_20 {
  padding-bottom: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.flat-spacing-1 {
  padding: 70px 0;
}

.flat-spacing-4 {
  padding-top: 55px;
  padding-bottom: 100px;
}

.flat-spacing-17 {
  padding-top: 100px;
  padding-bottom: 80px;
}

[data-grid=grid-3] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

[data-grid=grid-4] {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.tf-grid-layout {
  display: grid;
  gap: 15px;
}
.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}
.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}
.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.sticky-top {
  z-index: 50;
  top: 15px;
}

.text-highlight {
  -webkit-text-stroke: 1px #000;
  color: transparent !important;
  flex-direction: row-reverse;
}

.text-line-clamp-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-truncate {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  overflow: hidden;
}

.text-start {
  text-align: start !important;
}

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

.bottom {
  bottom: 0 !important;
}

.top {
  top: 0 !important;
}

.bg-color-unset {
  background-color: unset !important;
}

/*------------ Components ---------------- */
/*------------ header ---------------- */

@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.header-default .wrapper-header {
  min-height: 64px;
}
.header-default .wrapper-header .nav-icon li:last-child .nav-icon-item {
  margin-right: 10px;
}
.header-default .box-nav-ul {
  gap: 22px;
}

.header-style-2 .wrapper-header {
  min-height: 60px;
}

#header .box-nav-ul .item-link {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#header .box-nav-ul .item-link .icon {
  font-size: 7px;
}
#header .box-nav-ul .item-link::before {
  content: "";
  width: 0;
  height: 1px;
  top: 99%;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 1;
  -webkit-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  -o-transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: var(--main);
}
#header .box-nav-ul li:hover .item-link::before {
  width: 100%;
  left: 0;
  right: auto;
}
#header .nav-icon .icon {
  font-size: 18px;
  font-weight: 500;
}
#header .nav-icon li {
  display: inline-flex;
}
#header .nav-icon .nav-icon-item {
  position: relative;
  display: inline-flex;
}
#header .nav-icon .nav-icon-item:hover {
  color: var(--primary);
}
#header .nav-icon .nav-icon-item .text {
  font-size: 16px;
  line-height: 25.6px;
  font-weight: 500;
  display: inline-block;
}
#header .nav-icon .count-box {
  position: absolute;
  line-height: 18px;
  height: 18px;
  min-width: 18px;
  text-align: center;
  padding: 0 3px;
  font-size: 10px;
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  z-index: 2;
  top: -8px;
  right: -10px;
  color: var(--white);
  background-color: var(--primary);
}
#header .sub-menu .hover-sw-nav .nav-sw {
  width: 36px;
  height: 36px;
  top: 38%;
}

.logo-header img {
  width: 110px;
}

.box-nav-ul .menu-item {
  padding: 36px 0px;
}
.box-nav-ul .menu-item:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}
.box-nav-ul .menu-item:hover > a::after {
  display: block;
}
.box-nav-ul .menu-item > a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: calc(100% + 44px);
  height: 94px;
  display: none;
}
.box-nav-ul .menu-item-2 {
  position: relative;
  cursor: pointer;
}
.box-nav-ul .menu-item-2::after {
  position: absolute;
  content: "\e906";
  font-family: "icomoon";
  font-size: 11px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.box-nav-ul .menu-item-2 .sub-menu {
  top: -22px;
  left: calc(100% + 23px);
  min-width: 200px;
}
.box-nav-ul .menu-item-2 .sub-menu::after {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 45px;
  background-color: transparent;
  left: -18%;
  top: 3px;
}
.box-nav-ul .menu-item-2:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) translateY(0px);
}
.box-nav-ul .sub-menu {
  pointer-events: none;
  position: absolute;
  background-color: var(--white);
  min-width: 268px;
  z-index: 999;
  visibility: hidden;
  text-align: left;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-inline-end: 20px;
  padding-inline-start: 19px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0px) translateY(15px);
  box-shadow: 0 4px 8px rgb(235, 235, 235);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.box-nav-ul .menu-list .menu-link-text {
  color: var(--text);
}
.box-nav-ul .menu-list li {
  text-align: start;
}
.box-nav-ul .menu-list li:not(:last-child) {
  margin-bottom: 14px;
}
.box-nav-ul .menu-list .demo-label {
  top: -14px;
  right: -35px;
}
.box-nav-ul .submenu-default {
  left: -110px;
}

.demo-label {
  position: absolute;
  top: 9px;
  right: 7px;
  gap: 5px;
  display: flex;
}
.demo-label span {
  font-size: 10px;
  line-height: 19px;
  padding: 0 8px;
  background-color: rgb(131, 183, 53);
  color: var(--white);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-label .demo-new {
  background-color: rgb(72, 212, 187);
}

.canvas-mb {
  width: 100% !important;
  max-width: min(90%, 320px);
  border-right: 0 !important;
}
.canvas-mb .mb-canvas-content {
  padding-top: 60px;
  padding-bottom: 0;
  padding-inline-end: 0;
  padding-inline-start: 20px;
  min-width: 100%;
  max-width: min(90%, 320px);
  grid-auto-rows: minmax(0, 1fr) auto;
  isolation: isolate;
  height: 100%;
  width: 100%;
  display: grid;
  align-content: start;
}
.canvas-mb .mb-body {
  padding-right: 15px;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
.canvas-mb .icon-close-popup {
  position: absolute;
  font-size: 16px;
  z-index: 3;
  top: 20px;
  left: 15px;
  background-color: transparent;
  border: none;
  height: 30px;
  width: 30px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--main);
}
.canvas-mb .mb-bottom {
  padding-top: 15px;
}

.nav-ul-mb .nav-mb-item {
  padding: 2px 0px;
}
.nav-ul-mb .nav-mb-item:not(:last-child) {
  border-bottom: 1px solid rgb(238, 238, 238);
}
.nav-ul-mb .nav-mb-item .mb-menu-link {
  min-height: 40px;
  font-weight: 500;
  font-size: 14px;
  color: var(--main);
  display: flex;
  align-items: center;
  justify-content: space-between;
    width: 210px !important;
}
.nav-ul-mb .nav-mb-item .mb-menu-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}
.nav-ul-mb .btn-open-sub {
  position: relative;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-ul-mb .btn-open-sub:after, .nav-ul-mb .btn-open-sub::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--main);
  transition: 0.4s ease 0.1s;
  margin: auto;
}
.nav-ul-mb .btn-open-sub::before {
  width: 2px;
  height: 12px;
}
.nav-ul-mb .btn-open-sub::after {
  width: 12px;
  height: 2px;
}
.nav-ul-mb .sub-nav-menu {
  margin-left: 10px;
  padding-left: 19px;
  margin-bottom: 26px;
  border-left: 1px solid rgb(236, 236, 236);
}
.nav-ul-mb .sub-menu-level-2 {
  margin-bottom: 5px;
}
.nav-ul-mb .sub-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  text-transform: capitalize;
}
.nav-ul-mb .sub-nav-link:not(.collapsed) .btn-open-sub::before {
  transform: rotate(90deg);
}

.header-style-2 .header-bottom .wrapper-header {
  min-height: 60px;
}

.header-bottom .box-nav-ul .menu-item {
  padding: 20px 0px;
}
.header-bottom .box-nav-ul .menu-item > a::after {
  height: 64px;
}

header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  z-index: 888;
  background-color: var(--white);
}

/*------------ footer ---------------- */
.footer .footer-wrap .footer-body {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.footer .footer-wrap .footer-body::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  background-color: var(--line);
  height: 1px;
  width: 100%;
  max-width: 1440px;
  transform: translateX(-50%);
}
.footer .footer-wrap .footer-bottom .footer-bottom-wrap {
  padding-top: 21px;
  border-top: 1px solid var(--line);
  padding-bottom: 20px;
}
.footer .footer-wrap .footer-bottom .footer-bottom-wrap .footer-menu_item {
  color: rgb(84, 84, 84);
}
.footer .footer-menu_item {
  line-height: 30px;
}

.tf-payment {
  display: flex;
  gap: 10px;
}

.tf-toolbar-bottom {
  display: none;
  padding: 0 5px;
  overflow-x: auto;
  overflow-y: hidden;
  position: fixed;
  z-index: 200;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 10px 0 rgba(0, 0, 0, 0.08);
}
.tf-toolbar-bottom .toolbar-item {
  flex: 1 0 20%;
  position: relative;
}
.tf-toolbar-bottom .toolbar-item a {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  height: 67px;
  gap: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.tf-toolbar-bottom .toolbar-item a .toolbar-icon {
  width: 18px;
  height: 18px;
  position: relative;
}
.tf-toolbar-bottom .toolbar-item a .toolbar-icon i {
  font-size: 18px;
  color: var(--main);
}
.tf-toolbar-bottom .toolbar-item a .toolbar-icon .toolbar-count {
  position: absolute;
  top: -6px;
  right: -12px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
  line-height: 18px;
  color: var(--white);
}
.tf-toolbar-bottom .toolbar-item a .toolbar-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
}
.tf-toolbar-bottom .toolbar-item.active::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
}
.tf-toolbar-bottom .toolbar-item.active .toolbar-icon i {
  color: var(--primary);
}

/*------------ tabs ---------------- */
.widget-tabs .widget-menu-tab .item-title:not(.default) {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
  position: relative;
}
.widget-tabs .widget-menu-tab .item-title:not(.default)::after {
  position: absolute;
  content: "";
  background-color: var(--main);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.widget-tabs .widget-content-tab {
  position: relative;
  overflow: hidden;
}
.widget-tabs .widget-content-tab .widget-content-inner {
  padding: 35px;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}
.widget-tabs .widget-content-tab .widget-content-inner.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}
.widget-tabs.style-has-border {
  border: 1px solid var(--line);
}
.widget-tabs.style-has-border .widget-menu-tab {
  display: flex;
  gap: 10px 50px;
  margin: 0 38px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.widget-tabs.style-has-border .widget-menu-tab .item-title {
  padding: 15px 0;
  min-width: max-content;
}
.widget-tabs.style-has-border .widget-menu-tab .item-title::after {
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
}
.widget-tabs.style-has-border .widget-menu-tab .item-title.active::after {
  width: 100%;
}

/*------------ slider banner ---------------- */

.hover-sw-nav .sw-dots {
  margin-top: 15px;
  position: relative;
  z-index: 10;
  display: none;
  transform: unset !important;
  bottom: unset;
}

/*------------ button ---------------- */
.tf-btn {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  will-change: background-color, color, border;
  pointer-events: auto;
  overflow: hidden;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  box-sizing: border-box;
  padding: 14px 24px;
  display: inline-flex;
  border-radius: 3px;
  align-items: center;
  border: 1px solid transparent;
  background-color: transparent;
  cursor: pointer;
}
.tf-btn span {
  z-index: 1;
  color: inherit;
}
.tf-btn.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.tf-btn.style-2 {
  padding: 0 24px;
  line-height: 42px;
}

.btn-icon .icon {
  margin-inline-start: 8px;
  display: inline-block;
  font-size: 9px;
}

.btn-sm {
  padding-left: 18px;
  padding-right: 18px;
}

.btn-fill {
  background-color: var(--main);
  border: 1px solid var(--main);
  color: var(--white);
}

.btn-outline {
  background-color: var(--white);
  border: 1px solid var(--main);
}

.btn-line {
  padding: 0;
  padding-bottom: 7px;
  color: var(--main);
  position: relative;
}
.btn-line .icon {
  margin-inline-start: 8px;
  display: inline-block;
  font-size: 8px;
}
.btn-line::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  right: 0;
  height: 1px;
  background-color: var(--main);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-line:hover {
  color: var(--primary);
}
.btn-line:hover::after {
  background-color: var(--primary);
}

.animate-hover-btn {
  position: relative;
  overflow: hidden;
}

.animate-hover-btn:after {
  background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
  content: "";
  left: 150%;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skew(-20deg);
  width: 200%;
}


.animate-hover-btn.btn-primary:after,
.animate-hover-btn.btn-fill::after {
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

@keyframes shine {
  100% {
    left: -200%;
  }
}

@keyframes erFlashEffect {
  100%, 20% {
    left: -200%;
  }
}

.tf-btn-loading {
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-btn-loading.loading {
  background-color: var(--main);
}

.tf-btn-loading.loading .icon,
.tf-btn-loading.loading i {
  display: none;
}

.tf-btn-loading.loading::before {
  border: solid 2px var(--white);
  opacity: 1;
  animation-play-state: running;
}

.tf-btn-loading::before {
  width: 18px;
  height: 18px;
  border: solid 2px transparent;
  border-top-color: transparent !important;
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  animation: tf_rotator 0.6s linear infinite paused;
  opacity: 0;
}

@keyframes tf_rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tf-btn-filter {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  color: var(--main);
  border: solid 1px var(--line-2);
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 22px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*------------ form ---------------- */

.tf-field {
  position: relative;
}
.tf-field .tf-input {
  padding: 13px 10px;
}
.tf-field .tf-input:focus {
  border-color: rgb(134, 134, 134);
}
.tf-field .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field .tf-input:focus ~ .tf-field-label {
  border-radius: 3px;
  background-color: rgb(242, 242, 242);
  font-size: 12px;
  top: 0;
  letter-spacing: 0.4px;
  padding: 0 8px;
}

.tf-field .tf-field-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  transition: all 0.1s ease;
  cursor: text;
}
.tf-field.style-1 .tf-input {
  padding: 25px 18px 6px;
  height: 50px;
  border: 1px solid var(--line) !important;
}
.tf-field.style-1 .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field.style-1 .tf-input:focus ~ .tf-field-label {
  top: 4px;
  left: 14px;
  transform: scale(0.8);
  background-color: transparent;
  padding: 0;
  font-size: 14px;
}
.tf-field.style-1 .tf-field-label {
  font-weight: 400;
  color: var(--text-2);
  left: 18px;
}

.tf-check {
  position: relative;
  background: transparent;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1px solid var(--line);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tf-check:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.tf-check:checked::before {
  opacity: 1;
  transform: scale(1);
}
.tf-check::before {
  font-family: "icomoon";
  content: "\e911";
  position: absolute;
  color: var(--white);
  opacity: 0;
  font-size: 8px;
  transform: scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.tf-dropdown-sort {
  border-radius: 3px;
  padding: 6px 8px;
  min-width: 100px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-dropdown-sort .btn-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tf-dropdown-sort .btn-select .icon {
  font-size: 7px;
}
.tf-dropdown-sort .text-sort-value {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 22px;
}
.tf-dropdown-sort .dropdown-menu {
  margin: 6px !important;
  margin-top: 10px !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1019607843);
  min-width: 180px;
  border: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 0;
  max-height: 68vh;
  isolation: isolate;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}
.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}
.tf-dropdown-sort .select-item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 0 20px;
  line-height: 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-dropdown-sort .select-item::after {
  height: 100%;
  content: "";
  width: 6px;
  position: absolute;
  z-index: 2;
  left: 3px;
  top: 0;
  background-color: var(--white);
}
.tf-dropdown-sort .select-item::before {
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  background-color: var(--white);
  border-radius: 0 3px 3px 0;
}
.tf-dropdown-sort .select-item.active {
  background-color: var(--bg-11);
  color: var(--main);
}
.tf-dropdown-sort .select-item.active::before {
  background-color: var(--main);
}
.tf-dropdown-sort .select-item:hover {
  background-color: var(--bg-11);
  color: var(--main);
}
.tf-dropdown-sort:hover {
  border-color: var(--main);
}
.tf-dropdown-sort.full .dropdown-menu {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.tf-dropdown-sort.full .select-item {
  line-height: 40px;
}

.badge {
  padding: 5px 10px;
  font-weight: 500;
  background-color: var(--primary);
  color: white;
  border-radius: 4px;
  font-size: 12px;
  min-width: 22px;
  min-height: 22px;
  text-transform: uppercase;
  text-align: center;
}

/* custom rating */

/*------------ nice select ---------------- */
.dropdown .dropdown-item {
  color: var(--main);
}

/*------------ carousel ---------------- */

.sw-dots {
  display: flex;
  gap: 8px;
}
.sw-dots.style-2 span::before {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.16);
}
.sw-dots:not(.swiper-pagination-lock) {
  margin-top: 15px;
}
.sw-dots.small span {
  width: 16px;
  height: 16px;
  border-width: 1px !important;
}
.sw-dots.small span::before {
  width: 6px;
  height: 6px;
}

.nav-sw {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--main);
  border: 1px solid var(--main);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  cursor: pointer;
}
.nav-sw:hover:not(.swiper-button-disabled) {
  background-color: var(--main);
  color: var(--white);
}
.nav-sw.lg {
  width: 46px;
  height: 46px;
  font-size: 12px;
}
.nav-sw.square {
  width: 30px;
  height: 30px;
  border-radius: 3px;
}
.nav-sw.round {
  border-radius: 999px;
}

.hover-sw-nav {
  position: relative;
}
.hover-sw-nav .nav-sw {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  visibility: hidden;
  background-color: var(--white);
  border-color: transparent;
}
.hover-sw-nav .nav-sw.nav-next-slider {
  margin-left: 20px;
  left: 13px;
}
.hover-sw-nav .nav-sw.nav-prev-slider {
  right: 13px;
  margin-right: 20px;
}
.hover-sw-nav .nav-sw.w_46 .icon {
  font-size: 12px;
}
.hover-sw-nav .nav-sw:hover:not(.swiper-button-disabled) {
  background-color: var(--main);
  color: var(--white);
}
 .hover-sw-nav:hover .nav-sw {
  margin: 0;
  visibility: visible;
}
.hover-sw-nav.hover-sw-2 .nav-sw {
  top: 37%;
}

.button-style-arrow {
  width: 46px;
  height: 46px;
  background-color: var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button-style-arrow::after {
  font-size: 11px;
  color: var(--main);
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.button-style-arrow:hover {
  background-color: var(--primary);
}
.button-style-arrow:hover::after {
  color: var(--white);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple_black {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*------------ avatar ---------------- */
.avatar.round {
  border-radius: 50%;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/*------------ pop up ---------------- */
.offcanvas {
  z-index: 3000;
  border: none !important;
}

.modal {
  cursor: url("../cursor-close.svg"), auto;
}
.modal.show .modal-dialog {
  transform: none;
  transition: transform 0.3s ease-out !important;
}
.modal.fullRight .modal-dialog {
  transform: translate(100%, 0);
  min-width: 100%;
  height: 100%;
  margin: 0;
  transition: transform 1s ease-out;
}
.modal.fullRight .modal-dialog .modal-content {
  border-radius: 0;
  border: 0;
  margin: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 0;
}
.modal.fullRight .modal-dialog .modal-content .modal-body {
  overflow: auto;
  padding: 0;
  padding-bottom: 30px;
}
.modal.fullRight.show .modal-dialog {
  transform: translate(0, 0);
}
.modal.modalCentered .modal-dialog {
  transform: translate(0, 0) !important;
}
.modal .modal-content {
  cursor: default !important;
}
.modal.fade:not(.show) {
  opacity: 0;
}

.modalDemo .demo-title {
  margin-top: 50px;
  margin-bottom: 44px;
  font-weight: 500;
  text-align: center;
}
.modalDemo .modal-dialog {
  max-width: 1540px;
  margin-top: 8px;
  margin-bottom: 8px;
  height: calc(100vh - 16px);
}
.modalDemo .modal-content {
  padding: 0 50px 40px;
  background-color: var(--white);
  width: 100%;
  border-radius: 10px;
  margin: 0 30px;
  max-height: calc(100vh - 60px);
  border: 0;
  cursor: default;
  overflow: hidden;
}
.modalDemo .header {
  position: relative;
}
.modalDemo .header .icon-close-popup {
  position: absolute;
  top: 18px;
  right: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: flex-end;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: rgb(134, 134, 134);
}

.popup-quickview .modal-dialog {
  max-width: min(1146px, 90vw);
}
.popup-quickview .modal-dialog .modal-content {
  margin: 8px;
  padding: 0;
}
.popup-quickview .modal-dialog .modal-content .icon-close-popup {
  top: 20px;
  right: 20px;
  font-size: 16px;
  z-index: 5;
}
.popup-quickview .modal-dialog .modal-content > .wrap {
  display: flex;
}
.popup-quickview .tf-product-media-wrap {
  flex: 0 0 auto;
  max-width: 100%;
  width: min(50%, 68vh) !important;
}
.popup-quickview .tf-product-info-wrap {
  flex: 0 0 auto;
  max-width: 100%;
  flex-grow: 1;
}
.popup-quickview .tf-product-info-wrap .tf-product-info-list {
  position: absolute;
  inset: 0;
  padding: 50px 40px;
  overflow-y: auto;
}
.popup-quickview .tf-product-info-wrap .tf-product-info-list::-webkit-scrollbar {
  width: 0px;
}
.popup-quickview .tf-product-info-wrap .tf-product-info-list .tf-product-info-title {
  margin-bottom: 20px;
}
.popup-quickview .tf-product-info-wrap .tf-product-info-list .tf-product-description {
  color: var(--text-3);
}

.bg-color-beige {
  background: conic-gradient(#c8ad7f 0deg 360deg);
}

.bg-color-black {
  background: conic-gradient(#000000 0deg 360deg);
}

.bg-color-blue {
  background: conic-gradient(#a8bcd4 0deg 360deg);
}

.bg-color-white {
  background: conic-gradient(#ffffff 0deg 360deg);
}

.bg-color-pink {
  background: conic-gradient(#fcc6de 0deg 360deg);
}

.bg-color-brown {
  background: conic-gradient(#977945 0deg 360deg);
}

.bg-color-light-purple {
  background: conic-gradient(#d966d9 0deg 360deg);
}

.bg-color-light-green {
  background: conic-gradient(#caffd6 0deg 360deg);
}

.bg-color-orange {
  background: conic-gradient(#ffa500 0deg 360deg);
}

.bg-color-light-blue {
  background: conic-gradient(#add8e6 0deg 360deg);
}

.canvas-wrapper {
  padding: 0;
  isolation: isolate;
  height: 100%;
  width: 100%;
  max-height: none;
  display: grid;
  grid-auto-rows: auto minmax(0, 1fr) auto;
  align-content: start;
}

.modal-shopping-cart .modal-content {
  max-width: 477px !important;
  cursor: default !important;
}
.modal-shopping-cart .header {
  margin: 0 36px;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  height: 60px;
}
.modal-shopping-cart .header .title {
  font-size: 20px;
}
.modal-shopping-cart .header .icon-close-popup {
  font-size: 16px;
  padding: 0 6px;
}
.modal-shopping-cart .wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.modal-shopping-cart .tf-mini-cart-threshold {
  margin: 0 36px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
}
.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-bar {
  margin-top: 14px;
  margin-bottom: 10px;
  height: 4px;
}
.modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
  margin-top: 18px;
  font-size: 16px;
  line-height: 26px;
}
.modal-shopping-cart .tf-mini-cart-wrap {
  flex: 1 1 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main {
  flex: 1 1 auto;
  position: relative;
}
.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main .tf-mini-cart-sroll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
}
.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main .tf-mini-cart-sroll::-webkit-scrollbar {
  width: 6px;
}
.modal-shopping-cart .tf-mini-cart-wrap .tf-mini-cart-main .tf-mini-cart-sroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 6px;
}
.modal-shopping-cart .tf-mini-cart-item {
  margin: 0 36px;
  padding: 20px 0;
  display: flex;
  gap: 24px;
}
.modal-shopping-cart .tf-mini-cart-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-image a {
  width: 80px;
  height: 110px;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-image a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info a {
  font-size: 16px;
  line-height: 16px;
  display: block;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .price {
   line-height: 16px;
  margin-top: 6px;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .tf-mini-cart-btns {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .tf-mini-cart-btns .wg-quantity {
  width: 86px;
}
.modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info .tf-mini-cart-btns .tf-mini-cart-remove {
  font-size: 12px;
  line-height: 19px;
  color: var(--text);
  text-decoration: underline;
}
.modal-shopping-cart .tf-minicart-recommendations {
  margin: 15px 36px;
  padding: 18px;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.0784313725);
}
.modal-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading .tf-minicart-recommendations-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
}
.modal-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading .sw-dots {
  width: unset;
}
.modal-shopping-cart .tf-minicart-recommendations-item {
  display: flex;
  align-items: center;
}
.modal-shopping-cart .tf-minicart-recommendations-item .tf-minicart-recommendations-item-image a {
  width: 80px;
  height: 110px;
  margin-right: 18px;
}
.modal-shopping-cart .tf-minicart-recommendations-item .tf-minicart-recommendations-item-infos a {
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  white-space: nowrap;
}
.modal-shopping-cart .tf-minicart-recommendations-item .tf-minicart-recommendations-item-infos .price {
  margin-top: 4px;
   line-height: 16px;
  font-weight: 600;
}
.modal-shopping-cart .tf-minicart-recommendations-item .tf-minicart-recommendations-item-quickview .quickview {
  margin-left: 15px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--main);
  font-size: 16px;
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal-shopping-cart .tf-minicart-recommendations-item .tf-minicart-recommendations-item-quickview .quickview:hover {
  background-color: var(--primary);
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap {
  padding: 20px 36px 30px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts .tf-cart-total {
  font-size: 20px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts .tf-totals-total-value {
  font-size: 20px;
  line-height: 32px;
  margin-left: 15px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax {
  margin-top: 10px;
  color: var(--text);
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-line {
  border: 1px solid var(--line);
  margin-top: 14px;
  margin-bottom: 14px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-checkbox {
  margin-top: 10px;
}
.modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
  margin-top: 20px;
  display: flex;
  gap: 14px;
}

.tf-cart-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.tf-cart-checkbox .tf-checkbox-wrapp {
  min-width: 1.6rem;
  place-items: center;
  position: relative;
  overflow: hidden;
  display: flex;
}
.tf-cart-checkbox .tf-checkbox-wrapp input {
  cursor: pointer;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50% !important;
  transition: 0.2s ease-in-out;
  background-color: var(--white);
  opacity: 0;
}
.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div {
  background-color: var(--primary);
}
.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div i {
  transform: scale(1);
}
.tf-cart-checkbox .tf-checkbox-wrapp div {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: 0.25s ease-in-out;
  z-index: 5;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-color: var(--white);
  color: var(--white);
  pointer-events: none;
}
.tf-cart-checkbox .tf-checkbox-wrapp div i {
  font-size: 6px;
  transform: scale(0);
}
.tf-cart-checkbox label {
  font-weight: 400;
  cursor: pointer;
}
.tf-cart-checkbox label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.canvas-search {
  width: 100% !important;
  max-width: 463px;
  padding-top: 55px;
  border: 0 !important;
}
.canvas-search .tf-search-head {
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  box-shadow: unset;
}
.canvas-search .tf-search-head .title {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.canvas-search .tf-search-head .close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.canvas-search .tf-search-head .tf-search-sticky {
  margin-bottom: 30px;
}
.canvas-search .tf-loop-item {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}
.canvas-search .tf-loop-item:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.canvas-search .tf-loop-item .image {
  width: 68px;
  max-height: 95px;
}
.canvas-search .tf-loop-item .tf-product-info-price > div {
  font-size: 14px;
}

.tf-mini-search-frm {
  position: relative;
}
.tf-mini-search-frm input {
  height: 42px;
  padding: 12px 20px 12px 44px;
  font-size: 16px;
  line-height: 26px;
  color: var(--main);
}
.tf-mini-search-frm input::placeholder {
  font-size: 16px;
  line-height: 26px;
  color: var(--main);
}
.tf-mini-search-frm button {
  position: absolute;
  left: 14px;
  top: 0;
  font-size: 16px;
  margin: 13px 0;
  background-color: transparent;
  border: 0;
  outline: none;
}

.form-sign-in .modal-dialog {
  max-width: 640px;
}
.form-sign-in .modal-dialog .modal-content {
  border: 0;
  padding: 37px 35px;
  border-radius: 3px;
}
.form-sign-in .header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-sign-in .header .demo-title {
  font-size: 28px;
  line-height: 33.6px;
}
.form-sign-in .header .icon-close-popup {
  padding: 0 6px;
  font-size: 16px;
  cursor: pointer;
}
.form-sign-in .tf-login-form form > div {
  margin-top: 15px;
}
.form-sign-in .tf-login-form form .btn-link {
  margin: 10px 0;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  color: var(--text);
}
.form-sign-in .tf-login-form form .btn-link .icon {
  font-size: 8px;
}
.form-sign-in .tf-login-form form .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.form-sign-in .tf-login-form form .bottom .btn-link {
  color: var(--main);
}

.toolbar-shop-mobile {
  max-width: min(90%, 430px) !important;
}
.toolbar-shop-mobile .mb-canvas-content {
  max-width: 100%;
  padding-top: 70px;
  padding-left: 0;
}
.toolbar-shop-mobile .mb-body {
  padding: 0 20px 0 21px;
}
.toolbar-shop-mobile ul.nav-ul-mb > li {
  padding: 0 !important;
  border: 0 !important;
}
.toolbar-shop-mobile .tf-category-link {
  gap: 16px;
  min-height: 50px !important;
  padding: 4px 0 6px;
  position: relative;
}
.toolbar-shop-mobile .tf-category-link .image {
  width: 34px;
  height: 34px;
  position: relative;
}
.toolbar-shop-mobile .tf-category-link .image::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: solid 1px var(--line);
  margin: auto;
  pointer-events: none;
  border-radius: 50%;
}
.toolbar-shop-mobile .tf-category-link .image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.toolbar-shop-mobile .tf-category-link > span:nth-child(2) {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex-grow: 1;
}
.toolbar-shop-mobile .tf-category-link::after {
  position: absolute;
  bottom: 0;
  content: "";
  height: 1px;
  width: calc(100% - 53px);
  right: 0;
  left: 53px;
  background-color: rgba(0, 0, 0, 0.12);
}
.toolbar-shop-mobile .tf-category-link .btn-open-sub {
  width: 40px;
  height: 40px;
  border-left: 1px solid var(--line);
}
.toolbar-shop-mobile .tf-category-link.current::after {
  display: none;
}
.toolbar-shop-mobile .tf-category-link.has-children:not(.collapsed)::after {
  display: none;
}
.toolbar-shop-mobile .sub-nav-menu {
  margin: 0px 0 17px 50px !important;
  padding: 0 !important;
}
.toolbar-shop-mobile .sub-nav-menu .tf-category-link {
  padding: 4px 0 4px 15px;
  margin-bottom: 1px;
  min-height: 30px !important;
}
.toolbar-shop-mobile .sub-nav-menu .tf-category-link::after {
  display: none;
}
.toolbar-shop-mobile .sub-menu-level-2 {
  margin-left: 65px !important;
}
.toolbar-shop-mobile .mb-bottom {
  min-height: 50px;
  clear: both;
  padding: 15px 26px;
  background-color: rgba(0, 0, 0, 0.05);
}
.toolbar-shop-mobile .mb-bottom a {
  line-height: 13px;
}
.toolbar-shop-mobile .list-cate {
  position: relative;
}
.toolbar-shop-mobile .list-cate.show::after {
  position: absolute;
  bottom: -17px;
  content: "";
  height: 1px;
  width: calc(100% - 53px);
  right: 0;
  left: 53px;
  background-color: rgba(0, 0, 0, 0.12);
}

/*------------ box icon ---------------- */
.box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.box-icon.w_46 {
  width: 46px;
  height: 46px;
}
.box-icon.round {
  border-radius: 50% !important;
}

/*------------ hover ---------------- */

/*------------ collection ---------------- */

/*------------ product ---------------- */

.thumbs-slider {
  display: flex;
  gap: 10px;
}

.tf-product-media-thumbs {
  width: calc(14% - 10px);
  max-height: 846px;
}
.tf-product-media-thumbs .swiper-slide {
  height: max-content;
}
.tf-product-media-thumbs .swiper-slide .item {
  position: relative;
  height: 100%;
}
.tf-product-media-thumbs .swiper-slide .item img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tf-product-media-thumbs .swiper-slide .item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}

.thumbs-bottom .thumbs-slider {
  flex-direction: column;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}
.thumbs-bottom .thumbs-slider .tf-product-media-thumbs .swiper-slide {
  width: 119px;
}
.thumbs-bottom .thumbs-slider .tf-product-media-main {
  width: 100%;
}


.tf-product-media-main {
  width: 86%;
  border-radius: 10px;
}

.tf-product-media-main .item {
  width: 100%;
  height: 100%;
  max-height: 846px;
}

.tf-product-media-main .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-info-list {
  padding-left: 25px;
}
.tf-product-info-list > div:not(:last-child) {
  margin-bottom: 30px;
}

.tf-product-info-title {
  margin-bottom: 20px !important;
}

.tf-product-info-price {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-product-info-price .price {
  color: var(--main);
  font-size: 28px;
  line-height: 28px;
}
.tf-product-info-price .price-on-sale {
  color: var(--primary);
  font-size: 28px;
  line-height: 28px;
}
.tf-product-info-price .compare-at-price {
  color: rgba(0, 0, 0, 0.55);
  font-size: 20px;
  line-height: 20px;
  text-decoration: line-through;
}
.tf-product-info-price .badges-on-sale {
  background-color: rgb(252, 87, 50);
  border-radius: 28px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
  color: var(--white);
}

.tf-product-info-liveview {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tf-product-info-liveview .liveview-count {
  display: flex;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  line-height: 24px;
  color: var(--white);
  background-color: var(--main);
  border-radius: 3px;
  font-weight: 600;
}

@-webkit-keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}
@keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
}

.tf-product-info-quantity .quantity-title {
  margin-bottom: 5px;
}

.tf-product-info-buy-button form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tf-progress-bar {
  height: 4px;
  width: 100%;
  background-color: var(--line);
  position: relative;
}
.tf-progress-bar span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #eb001b;
  border-radius: 3px;
}
.tf-progress-bar .progress-car {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 26px;
  color: #eb001b;
  border: 1px solid #eb001b;
  border-radius: 2.5px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon-action > *:last-child {
  display: none;
}
.btn-icon-action.active > *:first-child {
  display: none;
}
.btn-icon-action.active > *:last-child {
  display: block;
}

.wg-quantity {
  display: flex;
  justify-content: space-evenly;
  background-color: rgb(242, 242, 242);
  border-radius: 3px;
  overflow: hidden;
}
.wg-quantity input {
  width: 51px;
  height: 46px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--main);
}
.wg-quantity .btn-quantity {
  width: 38px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--main);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wg-quantity .btn-quantity:hover {
  color: var(--primary);
}
.wg-quantity.small {
  width: 109px;
  height: 30px;
}
.wg-quantity.small .btn-quantity {
  width: 27px;
  height: 30px;
  font-size: 20px;
}
.wg-quantity.small input {
  width: 30px;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
}

@keyframes tf-ani-flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.stagger-wrap .stagger-item {
  transition: 0.3s ease-in-out;
  transform: scale(0.5) rotate(90deg) skew(15deg);
  opacity: 0;
}

.card-product {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: start;
}
.card-product .product-img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  align-items: stretch;
}
.card-product .card-product-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 20;
}
.card-product .card-product-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}



.card-product .card-product-wrapper .list-product-btn {
  z-index: 10;
  position: absolute;
  bottom: 48px;
  left: 15px;
  right: 15px;
}
.card-product .card-product-wrapper .list-product-btn.absolute-2 {
  bottom: 25px;
}
.card-product .btn-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  z-index: 12;
  height: 32px;
  background-color: var(--main);
  color: var(--white);
  font-size: 12px;
  line-height: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-product .card-product-info {
  padding-top: 10px;
  gap: 8px;
  display: grid;
}
.card-product .card-product-info .title {
  font-size: 16px;
  line-height: 19.2px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  max-width: 90%;
  justify-self: center;
}
.card-product .card-product-info .price {
  font-size: 14px;
   line-height: 16px;
  font-weight: 600;
}
.card-product .card-product-info .old-price {
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}
.card-product .description {
  display: none;
  font-size: 14px;
  line-height: 22.4px;
  margin-top: 2px;
}
.card-product.style-6 .btn-quick-add {
  background-color: var(--white);
  color: var(--main);
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  height: 46px;
  border: 0px;
  border-top: 1px solid #f3ecec;
}
.card-product.style-6 .btn-quick-add:hover {
  background-color: var(--main);
  color: var(--white);
}
.card-product.lg .card-product-info {
  margin: auto;
  max-width: 277px;
}
.card-product.list-layout {
  display: flex;
  gap: 15px;
}
.card-product.list-layout .card-product-wrapper {
  max-width: 338px;
  width: 35%;
}
.card-product.list-layout .card-product-info {
  flex: 1 1 auto;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: self-start;
  max-width: 60%;
}
.card-product.list-layout .list-product-btn {
  margin-top: 10px;
}
.card-product.list-layout:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line-2);
}

.bg-multiple-color {
  background-repeat: no-repeat;
  background-size: calc(100% + 10px) calc(100% + 10px) !important;
  transition: border 0.25s ease;
  transform: rotateZ(45deg);
  border: solid 1px transparent;
  background: none;
  background-position: center !important;
}

.tooltip {
  z-index: 202;
  opacity: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: 100%;
  margin-top: 8px;
  border-radius: 2px;
  white-space: nowrap;
  background-color: var(--main);
  color: var(--white);
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  padding: 7px 10px 9px;
  max-width: 250px;
  width: max-content;
  transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;
}
.tooltip::before {
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: -4px;
  position: absolute;
  background: var(--main);
  width: 8px;
  height: 8px;
  z-index: 100;
}

.hover-tooltip {
  position: relative;
}
.hover-tooltip:hover .tooltip {
  opacity: 0.9;
  visibility: visible;
}
.hover-tooltip.center .tooltip {
  left: 50%;
  transform: translateX(-50%);
}

.list-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.list-product-btn .box-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  background-color: rgb(242, 242, 242);
  position: relative;
}
.list-product-btn .box-icon .icon {
  font-size: 14px;
  font-weight: 500;
  height: 13px;
}
.list-product-btn .box-icon .text {
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: auto;
  line-height: 32px;
}
.list-product-btn .box-icon .tooltip {
  top: -100%;
  margin-top: 5px;
}
.list-product-btn .box-icon .tooltip::before {
  top: unset;
  bottom: -4px;
}
.list-product-btn .box-icon.style-2 {
  gap: 8px;
  width: auto;
  padding: 0 10px;
  background-color: var(--white);
}
.list-product-btn .box-icon:hover {
  background-color: var(--main) !important;
  color: var(--white);
}
.list-product-btn .box-icon:hover .tooltip {
  opacity: 0.9;
  visibility: visible;
}

.tf-sticky-btn-atc {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 70;
  box-shadow: 4px -4px 5px rgba(0, 0, 0, 0.03);
  background-color: var(--white);
  transition: all 0.3s linear;
  transform: translateY(100%);
}
.tf-sticky-btn-atc .tf-height-observer {
  padding: 10px 0;
  column-gap: 5px;
}
.tf-sticky-btn-atc .tf-sticky-atc-product {
  gap: 15px;
}
.tf-sticky-btn-atc .tf-sticky-atc-img {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}
.tf-sticky-btn-atc .tf-sticky-atc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.tf-sticky-btn-atc .tf-sticky-atc-title {
  font-size: 16px;
  line-height: 19px;
}
.tf-sticky-btn-atc .tf-sticky-atc-btns,
.tf-sticky-btn-atc .tf-sticky-atc-infos form {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tf-sticky-btn-atc .tf-btn {
  min-width: 190px;
}
.tf-sticky-btn-atc.show {
  transform: translateY(0);
}

@keyframes showProduct {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*------------ blog ---------------- */

.tf-page-title {
  padding: 69px 0 65px;
  background-image: url(../page-title-blog.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tf-page-title .heading {
  font-size: 42px;
  font-weight: 400;
  line-height: 50px;
}
.tf-page-title .breadcrumbs {
  gap: 14px;
  margin-top: 5px;
}
.tf-page-title .breadcrumbs li {
  color: rgb(84, 84, 84);
}
.tf-page-title .breadcrumbs i {
  font-size: 10px;
}
.tf-page-title.style-1 {
  padding: 88px 0;
}
.tf-page-title.style-2 {
  padding: 80px 0 86px;
}

/*------------ testimonial ---------------- */

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
}
.rating i {
  font-size: 16px;
  color: var(--bg-5);
}

/*------------ lookbook ---------------- */

/*------------ featured ---------------- */

/*------------ accordion ---------------- */

/*------------ zoom ---------------- */

.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 50;
}

.section-image-zoom .other-image-zoom {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/*------------ shop ---------------- */

.tf-shop-control {
  margin-bottom: 30px;
  gap: 5px;
}

.tf-control-layout {
  display: flex;
  gap: 12px;
}
.tf-control-layout .tf-view-layout-switch .item {
  color: var(--main);
  opacity: 0.4;
  padding: 0 5px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tf-control-layout .tf-view-layout-switch:hover .item, .tf-control-layout .tf-view-layout-switch.active .item {
  opacity: 1;
}

.wrapper-shop {
  transition: all 0.3s ease-in-out;
  animation: fadeShop 0.5s ease-in-out;
}

@keyframes fadeShop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.meta-filter-shop {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.meta-filter-shop .count-text {
  font-size: 14px;
  line-height: 22px;
  color: var(--secondary);
  padding-right: 12px;
  position: relative;
}
.meta-filter-shop .count-text::after {
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  display: block;
  content: "";
  background-color: var(--line);
}
.meta-filter-shop .count-text .count {
  color: var(--main);
  display: inline-block;
  margin-right: 2px;
}
.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-filter-shop .remove-all-filters {
  padding: 4px 12px;
  border: 1px solid var(--main);
  background-color: var(--main);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
}
.meta-filter-shop .remove-all-filters .icon {
  font-size: 10px;
}
.meta-filter-shop .remove-all-filters:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

/*------------ sections ---------------- */

.flat-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.flat-title .title {
  font-size: 22px;
  line-height: 26.4px;
}
.flat-title .sub-title {
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.flat-title .sw-dots {
  margin-top: 0;
}

.wrap-sw-over {
  padding-bottom: 40px;
  margin-bottom: -40px;
  padding-left: 30px;
  margin-left: -30px;
}

.tf-breadcrumb-wrap {
  padding: 22.5px 0;
  gap: 15px;
}
.tf-breadcrumb-wrap .tf-breadcrumb-list {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.tf-breadcrumb-wrap .tf-breadcrumb-list .icon {
  font-size: 8px;
  font-weight: 700;
}
.tf-breadcrumb-wrap .tf-breadcrumb-list span {
  color: var(--text);
}
.tf-breadcrumb-wrap .tf-breadcrumb-prev-next {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 17px;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes tf-ani-flash {
  50%, from, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.tf-page-cart-checkout {
  padding: 30px;
  background-color: var(--bg-11);
  border-radius: 2.5px;
}
.tf-page-cart-checkout .tf-cart-totals-discounts {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tf-page-cart-checkout .tf-cart-totals-discounts h3 {
  font-size: 20px;
  line-height: 24px;
}
.tf-page-cart-checkout .tf-cart-tax {
  margin-top: 18px;
  color: var(--text);
}
.tf-page-cart-checkout .tf-cart-tax a {
  color: rgba(0, 0, 0, 0.85);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-line: underline;
  transition: text-decoration-thickness 1s ease;
}
.tf-page-cart-checkout .tf-cart-tax a:hover {
  color: var(--main);
  text-decoration-thickness: 2px;
}

/* Preload
------------------------------------------- */
.preload-wrapper .preload-container {
  display: flex;
}

.preload-container {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999999999;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top: 3px solid var(--line);
  border-radius: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  animation: spin 1s infinite linear;
}

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

.widget-wrap-checkout {
  display: grid;
  gap: 20px;
  background-color: #fbfbfc;
  border: 10px;
}
.widget-wrap-checkout .checkout-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.widget-wrap-checkout .checkout-product-item:not(:last-child) {
  margin-bottom: 15px;
}
.widget-wrap-checkout .checkout-product-item .img-product {
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 3px;
  position: relative;
}
.widget-wrap-checkout .checkout-product-item .img-product .quantity {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background-color: #666;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.widget-wrap-checkout .checkout-product-item .img-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.widget-wrap-checkout .checkout-product-item .content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-wrap-checkout .coupon-box {
  display: flex;
  gap: 10px;
}
.widget-wrap-checkout .coupon-box .tf-btn {
  flex-shrink: 0;
}
.widget-wrap-checkout .wd-check-payment .fieldset-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-wrap-checkout .wd-check-payment .fieldset-radio label {
  margin-top: 2px;
  font-weight: 400;
  color: var(--text);
}
.widget-wrap-checkout .wd-check-payment input {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.widget-wrap-checkout .wd-check-payment input:checked ~ label {
  color: var(--main);
}

/* sib-form */

/* /sib-form */
/*-------------- Responsive ----------------- */
/* Media Queries
-------------------------------------------------------------- */
@media (min-width: 576px) {
  .card-product .description {
    display: block;
  }
  .card-product .btn-quick-add {
    height: 36px;
    line-height: 36px;
  }

  .list-product-btn .box-icon {
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 768px) {

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

  .text-base {
    font-size: 16px !important;
    line-height: 19.2px !important;
  }

  .text-base2 {
    font-size: 16px !important;
    line-height: 25.6px !important;
  }

  .text-lg {
    font-size: 18px !important;
    line-height: 21.6px !important;
  }

  .text-lg2 {
    font-size: 18px !important;
    line-height: 28.8px !important;
  }

  .text-md-start {
    text-align: start !important;
  }

  .tf-breadcrumb-wrap {
    padding: 25.5px 0;
  }
  .tf-breadcrumb-wrap .tf-breadcrumb-list .icon {
    margin: 0 10px;
  }

  .logo-header img {
    width: 90px;
  }

  .canvas-mb {
    width: 100% !important;
    max-width: 367px;
  }

  .container-full,
.container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hover-sw-nav .sw-dots {
    margin-top: 30px;
  }

  .card-product .card-product-info {
    padding-top: 15px;
    gap: 10px;
  }
  .card-product.list-layout {
    gap: 30px;
  }
  .card-product.list-layout:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .card-product .card-product-wrapper .list-product-btn {
    bottom: 40px;
  }
  .card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 10px;
  }

  .wrapper-shop .card-product {
    margin-bottom: 30px;
  }

  .tf-btn-filter {
    padding: 8px 12px;
  }

  .flat-title {
    margin-bottom: 50px;
  }
  .flat-title .title {
    font-size: 32px;
    line-height: 38.4px;
  }
  .flat-title .sub-title {
    font-size: 16px;
    line-height: 22px;
  }

  .canvas-mb .mb-canvas-content {
    min-width: 367px;
  }
}
@media (min-width: 992px) {

  .list-product-btn .box-icon {
    width: 40px;
    height: 40px;
  }
  .card-product .btn-quick-add {
    height: 40px;
    line-height: 40px;
  }
}
@media (min-width: 1025px) {

  .tf-sticky-btn-atc .tf-sticky-atc-img {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1150px) {

  .tf-breadcrumb-wrap {
    padding: 30px 0;
  }

  .animate-hover-btn:hover:after {
    animation: shine 0.75s cubic-bezier(0.01, 0.56, 1, 1);
  }

  .lg-px_40 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .tf-md-hidden {
    display: block;
  }

  .tf-lg-hidden {
    display: none;
  }

  .header-default .wrapper-header {
    min-height: 94px;
  }

  .header-style-2 .wrapper-header {
    min-height: 68px;
  }

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

  .container-full {
    padding-left: 40px;
    padding-right: 40px;
  }
  .card-product .card-product-info {
    padding-top: 20px;
    gap: 12px;
  }

  .card-product .btn-quick-add:hover {
    background-color: var(--white);
    color: var(--main);
  }

  .card-product:not(.list-layout) .box-icon:nth-child(1) {
    transition: transform 0.4s ease 0s, opacity 0.4s ease 0s;
  }
  .card-product:not(.list-layout) .box-icon:nth-child(2) {
    transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0s;
  }
  .card-product:not(.list-layout) .box-icon:nth-child(3) {
    transition: transform 0.4s ease 0.3s, opacity 0.4s ease 0s;
  }
  .card-product:not(.list-layout) .box-icon:nth-child(4) {
    transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0s;
  }
  .card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 20px;
  }
  .card-product.style-6 .list-product-btn {
    gap: 10px;
  }
  .card-product .btn-quick-add,
.card-product .box-icon {
    opacity: 1;
    visibility: visible;
  }
  .card-product.lg .card-product-info .title {
    font-size: 20px;
    line-height: 24px;
  }
  .card-product.lg .card-product-info .price {
    font-size: 20px;
    line-height: 24px;
  }
  .card-product.lg .card-product-info .price .old-price {
    opacity: 0.5;
  }

  .list-product-btn {
    gap: 6px;
  }
  .list-product-btn .box-icon {
    width: 42px;
    height: 42px;
  }

  .tf-shop-control {
    margin-bottom: 40px;
  }

  .tf-btn-filter {
    padding: 10px 12px;
  }
  .tf-btn-filter:hover {
    border-color: var(--main);
  }

  .tf-dropdown-sort {
    padding: 10px 18px;
    min-width: 190px;
  }

  .flat-title {
    margin-bottom: 60px;
  }
  .flat-title .title {
    font-size: 42px;
    line-height: 50.4px;
  }
  .flat-title.lg .sub-title {
    font-size: 20px;
    line-height: 22px;
  }

  .tf-cart-footer-inner {
    position: sticky;
    top: 100px;
    transition: top 0.3s ease;
  }
}
@media (min-width: 1440px) {
  .card-product .card-product-wrapper .list-product-btn {
    bottom: 48px;
  }
  .card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 25px;
  }

  .header-default .box-nav-ul {
    gap: 30px;
  }
  .header-default .box-nav-ul .menu-item > a::after {
    width: calc(100% + 60px);
  }
}
@media only screen and (max-width: 1470px) {
  .footer .footer-wrap .footer-body::before {
    left: 15px;
    right: 15px;
    transform: unset;
    width: unset;
  }
}
@media only screen and (max-width: 1399px) {
  .tf-control-layout .sw-layout-5,
.tf-control-layout .sw-layout-6 {
    display: none;
  }
}
@media only screen and (max-width: 1200px) {

  .wrapper-header .nav-icon {
    gap: 14px;
  }
}
@media only screen and (max-width: 1149px) {

  .tf-control-layout .sw-layout-5,
.tf-control-layout .sw-layout-4 {
    display: none;
  }

  .header-style-2 .header-bottom .box-navigation {
    display: none;
  }

  .logo-header {
    display: flex;
    justify-content: center;
    margin: 10px;
  }

  .tf-sticky-btn-atc {
    bottom: 67px;
  }

  .form-sign-in .tf-login-form .bottom {
    flex-direction: column;
  }

  .canvas-search {
    max-width: 400px;
    padding-top: 10px;
  }
  .canvas-search .tf-search-head {
    padding: 0 15px;
    margin-bottom: 22px;
  }
  .canvas-search .tf-search-head .title {
    line-height: 40px;
    margin-bottom: 20px;
  }

  .modal-shopping-cart .modal-content {
    max-width: 420px !important;
  }
  .modal-shopping-cart .header {
    margin: 0 15px;
  }
  .modal-shopping-cart .tf-mini-cart-threshold {
    margin: 0 15px;
  }
  .modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
    font-size: 14px;
    line-height: 22.4px;
  }
  .modal-shopping-cart .tf-mini-cart-item {
    margin: 0 15px;
  }
  .modal-shopping-cart .tf-mini-cart-item .tf-mini-cart-info a {
    font-size: 14px;
     line-height: 16px;
  }
  .modal-shopping-cart .tf-minicart-recommendations {
    padding: 15px;
    margin: 15px;
  }
  .modal-shopping-cart .tf-mini-cart-bottom-wrap {
    padding: 10px 15px 15px;
  }
  .modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
    flex-direction: column;
  }

  .popup-quickview .tf-product-media-wrap {
    width: 50% !important;
    padding-right: 15px;
  }
  .popup-quickview .tf-product-info-wrap .tf-product-info-list {
    padding: 20px 30px 20px 15px;
  }
  .popup-quickview .modal-content {
    margin: 0 !important;
  }
  .popup-quickview .modal-content .tf-product-info-title a {
    font-size: 26px !important;
  }

  .tf-product-info-wrap .tf-product-info-title h5 {
    font-size: 26px;
    line-height: 31.2px;
  }

  .widget-tabs.style-has-border .widget-menu-tab {
    gap: 10px 25px;
    margin: 0 15px;
  }
  .widget-tabs.style-has-border .widget-menu-tab .item-title {
    padding: 12px 0;
    font-size: 14px;
    line-height: 18px;
  }
  .widget-tabs.style-has-border .widget-content-tab .widget-content-inner {
    padding: 20px 15px;
  }


.thumbs-slider {
    flex-direction: column !important;
  }

.thumbs-slider > div {
    width: 100%;
  }

.thumbs-slider .tf-product-media-thumbs {
    order: 1;
  }

.thumbs-slider .tf-product-media-thumbs .swiper-slide {
    width: auto;
    height: 107px;
  }

  .tf-product-info-list {
    padding-left: 0;
  }

  .tf-toolbar-bottom.type-1150 {
    display: flex;
  }

  .sw-dots.style-2 span::before {
    width: 6px;
    height: 6px;
  }

  .hover-sw-nav .sw-dots {
    display: flex;
  }
  .hover-sw-nav .nav-sw {
    display: none;
  }

  .tf-control-layout .sw-layout-4 {
    display: none;
  }

  [data-grid=grid-4] {
    grid-template-columns: repeat(3, 1fr);
  }

  .flat-spacing-4 {
    padding-top: 46px;
    padding-bottom: 85px;
  }

  .flat-spacing-17 {
    padding-top: 85px;
    padding-bottom: 67px;
  }

  .nav-sw.lg {
    width: 40px;
    height: 40px;
  }

  .tf-page-cart-footer {
    margin-top: 30px;
  }

  .popup-quickview .tf-btn {
    font-size: 14px !important;
  }

  .description p br {
    display: none;
  }

  .nav-sw.w_46 {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 1024px) {

  .tf-sticky-btn-atc {
    bottom: 67px;
  }

  .tf-page-title .heading {
    font-size: 32px;
    line-height: 38px;
  }

  h1 {
    font-size: 44px;
    line-height: 52.8px;
  }

  h2 {
    font-size: 50px;
    line-height: 60px;
  }

  h4 {
    font-size: 32px;
    line-height: 30.4px;
  }
}
@media only screen and (max-width: 991px) {

  .button-style-arrow {
    width: 40px;
    height: 40px;
  }

  .card-product .list-product-btn .box-icon .tooltip {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {

  .tf-sticky-btn-atc .tf-sticky-atc-product {
    display: none !important;
  }
  .tf-sticky-btn-atc .tf-sticky-atc-infos {
    width: 100%;
  }
  .tf-sticky-btn-atc .tf-sticky-atc-infos form {
    flex-direction: column;
  }

  .toolbar-shop-mobile .sub-nav-menu {
    margin-left: 17px !important;
  }
  .toolbar-shop-mobile .sub-menu-level-2 {
    margin-left: 34px !important;
  }

  .form-sign-in .modal-dialog {
    margin-top: 8px;
    margin-bottom: 8px;
    height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
  }
  .form-sign-in .modal-dialog .modal-content {
    padding: 20px;
  }
  .form-sign-in .modal-dialog .modal-content .bottom {
    gap: 15px;
  }

  .canvas-search {
    max-width: 320px;
  }
  .canvas-search .tf-search-head .title {
    font-size: 18px;
  }

  .modal-shopping-cart .modal-content {
    max-width: 90% !important;
  }
  .modal-shopping-cart .tf-mini-cart-threshold {
    padding: 10px 0;
  }
  .modal-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout a {
    height: 39px;
  }
  .modal-shopping-cart .tf-mini-cart-threshold .tf-progress-msg {
    font-size: 13px;
    line-height: 20.8px;
  }
  .modal-shopping-cart .tf-mini-cart-item {
    gap: 14px;
  }

  .popup-quickview .wrap {
    flex-direction: column;
    overflow-y: auto;
  }
  .popup-quickview .wrap .tf-product-media-wrap {
    width: 100% !important;
    padding-right: 0 !important;
  }
  .popup-quickview .wrap .tf-product-info-wrap .tf-product-info-list {
    overflow-y: unset;
    position: unset;
    padding: 20px 15px;
  }

  .modal-part-content .modal-dialog {
    min-width: unset;
    align-items: flex-end;
  }
  .modal-part-content .modal-dialog .header {
    margin-bottom: 22px;
  }

  .modal-dialog {
    max-width: 500px !important;
  }
  .modal-dialog .demo-title {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 22px !important;
  }

  .tf-product-media-wrap {
    margin-bottom: 15px;
  }

  h1 {
    font-size: 34px;
    line-height: 40.8px;
  }

  h2 {
    font-size: 32px;
    line-height: 38.4px;
  }

  h4 {
    font-size: 22px;
    line-height: 26.4px;
  }

  h5 {
    font-size: 18px;
    line-height: 21.6px;
  }

  h6 {
    font-size: 16px;
    line-height: 26px;
  }
  .footer .footer-bottom .footer-bottom-wrap {
    flex-wrap: wrap;
  }
  .footer .footer-bottom .footer-bottom-wrap > div {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

  .sw-dots {
    gap: 4px;
  }

  .tf-page-title {
    padding: 52px 0 49px;
  }
  .tf-page-title .heading {
    font-size: 22px;
    line-height: 26px;
  }


.card-product .wishlist,
.card-product .compare {
    display: none;
  }
  .card-product .card-product-wrapper .list-product-btn {
    bottom: 5px;
    left: 5px;
    right: 5px;
  }
  .card-product .card-product-wrapper .list-product-btn.absolute-2 {
    bottom: 5px;
  }
  .card-product.style-6 .list-product-btn {
    justify-content: flex-start;
  }

  .tf-control-layout .sw-layout-3 {
    display: none;
  }


[data-grid=grid-3],
[data-grid=grid-4] {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .nav-sw {
    width: 24px;
    height: 24px;
  }

  .flat-spacing-1 {
    padding: 52px 0px;
  }

  .flat-spacing-4 {
    padding-top: 33px;
    padding-bottom: 60px;
  }

  .flat-spacing-17 {
    padding-top: 30px;
    padding-bottom: 23px;
  }

   .tf-btn.style-2 {
    line-height: 38px;
  }

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

  .tf-page-cart-checkout {
    padding: 30px 15px;
  }
  .tf-page-cart-checkout .tf-btn {
    height: 38px;
  }

  .tf-btn:not(.btn-xl, .btn-md, .btn-line, .style-2, .style-3) {
    padding: 10px 24px;
  }
  .tf-btn.style-2 {
    line-height: 36px;
  }

  .coupon-box input,
.coupon-box .tf-btn {
    height: 40px;
  }

  .sw-dots.style-2 span {
    width: 16px;
    height: 16px;
    border-width: 1px !important;
  }

  .text-22 {
    font-size: 18px !important;
  }

  .tf-control-layout {
    gap: 5px;
  }
}
@media only screen and (max-width: 575px) {

  .card-product .list-product-btn .box-icon .tooltip {
    display: none;
  }
  .card-product:not(.style-3) .list-product-btn .box-icon .text {
    display: none;
  }
  .card-product:not(.style-3) .list-product-btn .box-icon.style-2 {
    width: 32px;
  }

  .tf-dropdown-sort .dropdown-menu {
    min-width: 150px;
  }
}
/*-------------- RTL ----------------- */
#toggle-rtl {
  padding: 0;
  position: fixed;
  top: 50%;
  right: 15px;
  width: 40px;
  height: 40px;
  min-width: 30px;
  text-transform: uppercase;
  z-index: 999;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rtl #toggle-rtl {
  left: 15px;
  right: auto;
}
.rtl .canvas-mb .mb-body {
  padding-right: 0;
  padding-left: 20px;
}

.rtl .card-product {
  direction: rtl;
}
.rtl .tf-breadcrumb-wrap .tf-breadcrumb-prev-next {
  direction: ltr;
}
.rtl .wrap-sw-over {
  margin-left: 0;
  padding-left: 0;
  margin-right: -30px;
  padding-right: 30px;
}
.rtl .modal.fullRight .modal-dialog {
  transform: translate(-100%, 0) !important;
  transition: all 0.3s !important;
}
.rtl .modal.fullRight .modal-dialog .modal-content {
  left: 0;
  right: unset;
}
.rtl .modal.fullRight.show .modal-dialog {
  transform: translate(0, 0) !important;
}
.rtl .offcanvas.offcanvas-end {
  left: 0;
  right: unset;
  transform: translateX(-100%);
}
.rtl .offcanvas.offcanvas-start {
  right: 0;
  left: unset;
  transform: translateX(100%);
}
.rtl .offcanvas.show:not(.hiding) {
  transform: none;
}

.rtl .offcanvas.show {
  visibility: visible;
}
.rtl .box-nav-ul .menu-item-2::after {
  left: 0;
  right: unset;
  content: "\e905";
}
.rtl .box-nav-ul .menu-item-2 .sub-menu {
  right: calc(100% + 23px);
  left: unset;
}
.rtl .box-nav-ul .menu-item-2 .sub-menu::after {
  left: 90%;
}
@keyframes slide-har-reverse {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}


.wg-quantity.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}
.wg-quantity.loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.card-product.style-6.grid {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    position: relative;
}
.card-product:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

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

.card-product .price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
    padding-inline: 10px;
}

.card-product .title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 5px;
    color: #333;
    text-align: center;
}

.card-product .btn {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    padding: 6px 12px;
    border: none;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.card-product .btn:hover {
    background-color: #e65c00;
}
.card-product img {
    transition: transform 0.3s ease;
}

.card-product:hover img {
    transform: scale(1.05);
}

.plus-icon{
    width: 100%;
    text-align: left;
}
.form-floating > label {
    right: 0;
    left: auto;
    padding-right: 1rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: right;

    content: "/";
}
input{
    color: black !important;
}
/* Main container for the button/quantity adjuster on the product card */
.add-to-cart-button-container {
    margin-top: 10px; /* Or your desired spacing */
    min-height: 38px; /* Give it a minimum height to prevent layout shifts */
}

/* Styling for the quantity adjuster when it appears on the product card */
.add-to-cart-button-container .wg-quantity.small {
    margin: 0 auto; /* Center the quantity adjuster */
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically align items */
    max-width: 150px; /* Adjust as needed */
    /* border: 1px solid #eee; /* Optional: if you want a border around it */
    /* border-radius: 3px; */
}

/* Styling for the input field within the card's quantity adjuster */
.add-to-cart-button-container .wg-quantity.small input.quantity-on-card-input {
    width: 40px; /* Adjust width as needed */
    text-align: center;
    border: 1px solid #ddd; /* Match cart style */
    border-left: none;
    border-right: none;
    padding: 8px 0; /* Adjust padding */
    font-size: 1em; /* Match cart style */
    height: auto; /* Allow padding to define height */
    box-sizing: border-box;
    line-height: normal; /* Ensure consistent line height */
}

/* Styling for the plus/minus buttons (spans) within the card's quantity adjuster */
.add-to-cart-button-container .wg-quantity.small .btn-quantity {
    padding: 8px 12px; /* Adjust padding */
    border: 1px solid #ddd; /* Match cart style */
    background-color: #f8f8f8; /* Match cart style */
    cursor: pointer;
    user-select: none; /* Prevents text selection on click */
    font-size: 1em; /* Match cart style */
    line-height: normal; /* Match input line height for alignment */
    display: inline-flex; /* For alignment if needed */
    align-items: center;
    justify-content: center;
}
.add-to-cart-button-container .wg-quantity.small .btn-quantity:first-child { /* Minus button */
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.add-to-cart-button-container .wg-quantity.small .btn-quantity:last-child { /* Plus button */
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.add-to-cart-button-container .wg-quantity.small .btn-quantity:hover {
    background-color: #f0f0f0; /* Slight hover effect */
}

/* Styling for the initial "Add to Cart" button on the product card */
.add-to-cart-button-container .btn-quick-add {
    width: 100%;
    padding: 10px 15px; /* Adjust as needed */
    /* Add other styles from your theme for buttons */
    /* e.g., background-color, color, border, border-radius */
}

/* Loading state for buttons/controls */
.loading .btn-quantity,
.loading input,
.btn-quick-add:disabled {
    opacity: 0.7;
    cursor: default;
}
.btn-quick-add span.text {
    display: inline-block; /* To prevent width collapse when text changes */
}
.add-to-cart-button-container .wg-quantity.small input.quantity-on-card-input[type="number"] {
    /* Most styles should be inherited, but you can add specifics if default browser number spinners are an issue */
    -moz-appearance: textfield; /* Firefox - hide default spinners */
}
.add-to-cart-button-container .wg-quantity.small input.quantity-on-card-input[type="number"]::-webkit-outer-spin-button,
.add-to-cart-button-container .wg-quantity.small input.quantity-on-card-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none; /* Chrome, Safari, Edge, Opera - hide default spinners */
    margin: 0;
}
.card-product-info .products-wg-quantity{
    width: 100%;
}
.sale-quantity-popover {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 8px 10px;
    margin-top: 8px;
    border-radius: 6px;
    font-size: 13px;
}
.sale-quantity-popover strong {
    display: block;
    margin-bottom: 5px;
}
.popover-list {
    padding-left: 15px;
    margin: 0;
}
.popover-list li {
    list-style: disc;
}

.popover {
    min-width: 220px;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border: none;
    border-radius: 8px;
}

.popover-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
}

.popover-body {
    padding: 12px 15px;
    font-size: 13px;
}

.popover-qty-range {
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.popover-qty-range:last-child {
    border-bottom: none;
}

.popover-qty-range.active-range {
    font-weight: bold;
    color: #0d6efd !important;
    background-color: #f8f9fa;
    padding-left: 8px;
    margin-left: -8px;
    padding-right: 8px;
    border-radius: 4px;
}


.sale-quantity-popover-trigger:hover {
    background-color: #f0f0f0;
}
.popover {
    min-width: 220px;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(0,0,0,0.15);
    border: none;
    border-radius: 8px;
    z-index: 1060; /* Ensure it appears above other elements */
}

.popover-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 15px;
}

.popover-body {
    padding: 12px 15px;
    font-size: 13px;
}

.popover-qty-range {
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.popover-qty-range:last-child {
    border-bottom: none;
}

.popover-qty-range.active-range {
    font-weight: bold;
    color: #0d6efd !important;
    background-color: #f8f9fa;
    padding-left: 8px;
    margin-left: -8px;
    padding-right: 8px;
    border-radius: 4px;
}

.sale-quantity-popover-trigger {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 14px;
    margin-left: 8px;
    transition: all 0.2s ease;
    position: relative; /* Ensure proper positioning */
    z-index: 1; /* Keep above other elements */
}

.sale-quantity-popover-trigger:hover {
    background-color: #f0f0f0;
}

/* Ensure price wrapper can contain the button */
.price-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.tf-product-info-wrap .discounted-price {
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
}
.tf-product-info-wrap .original-price{
    color: #e67e22;
    font-weight: bold;
    font-size: 1.1rem;
}
