/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
@import url(./bootstrap-select.min.css);
:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #0B5755;
  --primary-2: #C8102E;
  --secondary: #A2F7B4;
  --text: #464545;
  --text-2: #A4A4A4;
  --line: #E9E9E9;
  --line-2: #E9E9E91A;
  --white-10: rgba(255, 255, 255, 0.10);
  --white-50: #FFFFFF80;
  /* Custom */
  --shadow-1: #A3A3A340;
  --verified: #00BF43;
  --success: #3DAB25;
  --surface: #F8F6F2;
}

/*------------ Core CSS ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
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: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--text);
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-thumb {
  cursor: grab;
  background-color: var(--primary);
}

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

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

table {
  width: 100%;
  overflow-x: auto;
  table-layout: auto;
  border-collapse: collapse;
}

td,
th {
  padding: 14px 0px 15px;
}
@media (min-width: 1200px) {
  td,
  th {
    padding: 14px 0px 25px;
  }
}

svg path {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

button {
  background: transparent;
  border: 0;
  display: inline-flex;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

select,
option {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* Since FF19 lowers the opacity of the placeholder by default */
:-ms-input-placeholder {
  color: var(--secondary-2);
}

b,
strong {
  font-weight: bolder;
}

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

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}
a:focus, a:hover {
  outline: 0;
}

p {
  display: block;
}

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

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

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

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

[data-grid=grid-1] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

[data-grid=grid-2] {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

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

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

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

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

.grid-template-columns-2 {
  grid-template-columns: 1fr 1fr;
}

.tf-row-flex {
  display: flex;
  flex-direction: row;
  column-gap: 30px;
  row-gap: 30px;
}

.overflow-unset {
  overflow: unset !important;
}

.sticky-top {
  position: sticky !important;
  z-index: 50;
  top: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.wmax {
  width: max-content !important;
}

#scroll-top {
  position: fixed;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 50px;
  border-radius: 4px;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  overflow: hidden;
  z-index: 100;
  background-color: var(--main);
  border: 0;
  bottom: 92px;
  right: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#scroll-top.show {
  opacity: 1;
  visibility: visible;
}
#scroll-top.type-1 {
  bottom: 140px;
}
#scroll-top:hover {
  transform: translateY(-5px);
  background-color: var(--primary);
}

/* Preload 
------------------------------------------- */
.preload-container {
  display: flex;
  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(--primary);
  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);
  }
}
.br-line {
  width: 100%;
  height: 1px;
  display: inline-flex;
  background-color: var(--line);
}
.br-line.type-vertical {
  width: 1px;
  height: 16px;
}
.br-line.ver-abs {
  position: absolute;
  left: 0;
  right: 0;
}

.br-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
}

.tf-swiper .swiper-slide {
  height: auto;
}
.tf-swiper .swiper-slide > * {
  height: 100%;
}

.initial-child-container {
  flex: 0 0 auto;
  display: flex;
  min-width: auto;
  flex-direction: row;
  align-items: center;
}

.marquee-wrapper {
  display: flex;
  animation: infiniteScroll 7s linear infinite;
  align-items: center;
  transition: animation-duration 300ms;
}

@media (min-width: 1200px) {
  .flex-xl-1 {
    flex: 1 !important;
  }
}

@media (min-width: 576px) {
  .flex-sm-1 {
    flex: 1 !important;
  }
}

.h-unset {
  height: unset !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}

@media (min-width: 576px) {
  .h-sm-100 {
    height: 100% !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-64 {
    gap: 64px !important;
  }
  .gap-xl-40 {
    gap: 40px !important;
  }
  .h-xl-unset {
    height: unset !important;
  }
}
@media (min-width: 1440px) {
  .text-xxl-nowrap {
    white-space: nowrap !important;
  }
}
@media (min-width: 1600px) {
  .d-xxxl-flex {
    display: flex !important;
  }
}
.w-maxcontent {
  width: max-content !important;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
/* Typography
============================================================== */
/* Heading */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Sora", sans-serif;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 0;
}

h1,
.h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: clamp(40px, 6vw, 72px);
}

h2,
.h2 {
  font-size: clamp(32px, 3vw, 44px);
  line-height: clamp(36px, 4vw, 54px);
}

h3,
.h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: clamp(32px, 3.5vw, 48px);
}

h4,
.h4 {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: clamp(28px, 3vw, 42px);
}

h5,
.h5 {
  font-size: clamp(22px, 2vw, 24px);
  line-height: clamp(28px, 2.5vw, 30px);
}

h6,
.h6 {
  font-size: 20px;
  line-height: 28px;
}

/* Font custom */
.font-main {
  font-family: "Poppins", sans-serif;
}

.font-sora {
  font-family: "Sora", sans-serif;
}

.font-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.font-pakinsans {
  font-family: "Parkinsans", sans-serif;
}

.font-outfit {
  font-family: "Outfit", sans-serif;
}

.font-mainrope {
  font-family: "Manrope", sans-serif;
}

.font-dm_sans {
  font-family: "DM Sans", sans-serif;
}

.text-display {
  font-size: clamp(36px, 6vw, 80px);
  line-height: clamp(40px, 6.5vw, 88px);
}

.text-display-2 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: clamp(40px, 6.5vw, 68px);
}

.text-main {
  font-size: 16px;
  line-height: 26px;
}

.text-body-large {
  font-size: 18px;
  line-height: 28px;
}

.text-caption-01 {
  font-size: 14px;
  line-height: 22px;
}

.text-caption-02 {
  font-size: 12px;
  line-height: 16px;
}

.text-label {
  font-size: 12px;
  line-height: 18px;
}

.text-24 {
  font-size: clamp(18px, 2vw, 24px);
  line-height: clamp(18px, 2vw, 24px);
}

.text-64 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: clamp(36px, 5vw, 64px);
}

.text-80 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: clamp(48px, 6.6vw, 88px);
}

/* Font size */
.fs-10 {
  font-size: 10px !important;
}

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

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

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

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

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

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

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

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

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

/* Line height */
.lh-8 {
  line-height: 8px !important;
}

.lh-10 {
  line-height: 10px !important;
}

.lh-11 {
  line-height: 11px !important;
}

.lh-13 {
  line-height: 13px !important;
}

.lh-19 {
  line-height: 19px !important;
}

.lh-20 {
  line-height: 20px !important;
}

.lh-24 {
  line-height: 24px !important;
}

.lh-26 {
  line-height: 26px !important;
}

.lh-28 {
  line-height: 28px !important;
}

.lh-30 {
  line-height: 30px !important;
}

.lh-32 {
  line-height: 32px !important;
}

/* Letter spacing */
.letter-space-0 {
  letter-spacing: 0px !important;
}

.letter-space--1 {
  letter-spacing: -0.01em !important;
}

.letter-space--2 {
  letter-spacing: -0.02em !important;
}

.letter-space--3 {
  letter-spacing: -0.03em !important;
}

.letter-space--4 {
  letter-spacing: -0.04em !important;
}

/* Responsive */
@media (min-width: 1440px) {
  .lh-xxl-11 {
    line-height: 11px !important;
  }
  .lh-xxl-19 {
    line-height: 19px !important;
  }
  .lh-xxl-22 {
    line-height: 22px !important;
  }
  .lh-xxl-56 {
    line-height: 56px !important;
  }
}
@media (min-width: 1200px) {
  .lh-xl-54 {
    line-height: 54px !important;
  }
  .lh-xl-36 {
    line-height: 36px !important;
  }
}
@media (min-width: 992px) {
  .lh-lg-56 {
    line-height: 56px !important;
  }
}
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
/* General
============================================================== */
/* Margin */
.mb-2 {
  margin-bottom: 2px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

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

.mb-24 {
  margin-bottom: 24px !important;
}

.mb-28 {
  margin-bottom: 28px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

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

.mb-2em {
  margin-bottom: 2em;
}

/* Padding */
.pt-30 {
  padding-top: 30px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-4_2 {
  padding-top: 4px !important;
  padding-bottom: 2px !important;
}

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

/* Gap */
.gap-2 {
  gap: 2px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-13 {
  gap: 13px !important;
}

.gap-15 {
  gap: 15px;
}

.gap-16 {
  gap: 16px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-24 {
  gap: 24px !important;
}

.gap-28 {
  gap: 28px !important;
}

.gap-30 {
  gap: 30px;
}

/* Spacing */
.flat-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1439px) {
  .flat-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .flat-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 991px) {
  .flat-spacing-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

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

/* Orther */
.text-primary {
  color: var(--primary) !important;
}

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

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

.cl-text-main {
  color: var(--text) !important;
}

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

.cl-text-3 {
  color: var(--text-3) !important;
}

.cl-text-4 {
  color: var(--text-4) !important;
}

.cl-text-5 {
  color: var(--text-5) !important;
}

.cl-text-6 {
  color: var(--text-6) !important;
}

.cl-text-7 {
  color: var(--text-7) !important;
}

.cl-text-8 {
  color: var(--text-8) !important;
}

.cl-text-9 {
  color: var(--text-9) !important;
}

.cl-text-10 {
  color: var(--text-10) !important;
}

.cl-text-11 {
  color: var(--text-11) !important;
}

.cl-text-12 {
  color: var(--text-12) !important;
}

.cl-text-13 {
  color: var(--text-13) !important;
}

.cl-text-14 {
  color: var(--text-14) !important;
}

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

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

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

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

.link-underline {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.link-underline:hover {
  text-decoration-color: var(--primary);
}

.link-underline-white {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.link-underline-white:hover {
  text-decoration-color: var(--white);
}

.text-decoration-thickness_2 {
  text-decoration-thickness: 2px;
}

.text-decoration-thickness_3 {
  text-decoration-thickness: 3px;
}

.lt-sp-nor {
  letter-spacing: -0.32px;
}

.letter-space-0 {
  letter-spacing: 0px !important;
}

.text-vertical {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.cs-pointer {
  cursor: pointer;
}

.max-width_1 {
  max-width: 1424px;
  width: 100%;
}

.gap-x-10 {
  column-gap: 10px !important;
}

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

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

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

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

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

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

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

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-white-2 {
  background-color: var(--bg-10);
}

.bg-white_10 {
  background: var(--white-10);
}

.bg-cl-text {
  background-color: var(--text) !important;
}

.bg-surface {
  background-color: var(--surface);
}

.bg-peach-blush {
  background-color: #F7E1D9 !important;
}

.bg-pale-cream {
  background-color: #FAF5D8 !important;
}

.bg-mint-whisper {
  background-color: #DBF1E0 !important;
}

.bg-ice-blue {
  background-color: #DBEEF2 !important;
}

.bg-lavender-mist {
  background-color: #E2E4F7 !important;
}

.bg-lilac-cloud {
  background-color: #F3E8FF !important;
}

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

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

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

.aspect-ratio-0 {
  aspect-ratio: 0 !important;
}

.aspect-ratio-1 {
  aspect-ratio: 1/1 !important;
}

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

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

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-auto {
  cursor: auto;
}

.min-w-unset {
  min-width: unset !important;
}

.flex-1 {
  flex: 1;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

@media (min-width: 992px) {
  .h-lg-100 {
    height: 100% !important;
  }
}
@media (min-width: 1200px) {
  .gap-xl-28 {
    gap: 28px !important;
  }
}
@media (max-width: 575px) {
  .sm-gap-16 {
    gap: 16px !important;
  }
}
/*------------ Component ---------------- */
/*------------ Layout ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-grid-layout {
  display: grid;
  column-gap: 24px;
  row-gap: 32px;
}
.tf-grid-layout.tf-col-1 {
  grid-template-columns: 1fr;
}
.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);
}
.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.tf-grid-layout .wd-full {
  grid-column: 1/-1;
}
.tf-grid-layout .wd-2-cols {
  grid-column: span 2;
}
@media (min-width: 426px) {
  .tf-grid-layout.ssm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.ssm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.ssm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.ssm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.ssm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.ssm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 576px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 768px) {
  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 992px) {
  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1200px) {
  .tf-grid-layout {
    column-gap: 30px;
    row-gap: 40px;
  }
  .tf-grid-layout.row-xl-gap-40 {
    row-gap: 40px;
  }
  .tf-grid-layout.row-xl-gap-56 {
    row-gap: 56px;
  }
  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1440px) {
  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
}

.row {
  margin-right: -16px;
  margin-left: -16px;
}
.row > * {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1200px) {
  .row {
    margin-right: -24px;
    margin-left: -24px;
  }
  .row > * {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 1320px;
  max-width: 100%;
}

.container-full {
  width: 100%;
  max-width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1439px) {
  .container-full {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container-full-2 {
  width: 100%;
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1599px) {
  .container-full-2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1439px) {
  .container-full-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*------------ Header ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
header {
  position: sticky;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.header-sticky.style-2 {
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
header.header-sticky.style-2 .header-inner {
  box-shadow: unset;
}
header.header-sticky .header-inner {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.header-abs {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: -140px;
}
.header-abs .header-inner {
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--white);
  border-radius: 100px;
}
@media (min-width: 1440px) {
  .header-abs .header-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .header-abs {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
    margin-bottom: -75px;
  }
  .header-abs .header-inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .header-inner .box-btn-menu,
  .header-inner .header-right {
    flex: 1;
  }
  .header-inner .header-right {
    justify-content: flex-end;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (min-width: 1600px) {
  .header-left {
    gap: 100px;
  }
}

.header-right {
  display: flex;
  align-items: center;
}

.menu-item {
  position: relative;
}
.menu-item:hover .item-link::before {
  display: block;
}
.menu-item:hover .item-link .text::before {
  width: 100%;
  left: 0;
  right: auto;
}
.menu-item:hover .item-link .icon {
  transform: rotate(180deg);
}
.menu-item:hover .sub-menu {
  transform: scale(1);
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.item-link {
  color: var(--primary);
  font-weight: 500;
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
}
.item-link .text {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.item-link .text::before {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.item-link::before {
  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% + 80px);
  height: 100%;
  display: none;
}
.item-link .icon {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.box-nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 1600px) {
  .box-nav-menu {
    gap: 40px;
  }
}

.box-nav-icon {
  display: flex;
  align-items: center;
  gap: 30px;
}
.box-nav-icon .br-line {
  height: 30px;
  width: 1px;
  background-color: var(--line);
}
@media (min-width: 1440px) {
  .box-nav-icon {
    padding-right: 30px;
  }
}
@media (min-width: 1600px) {
  .box-nav-icon {
    gap: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1199px) {
  .box-nav-icon {
    gap: 16px;
  }
}

.nav-icon-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon-list li {
  display: flex;
}
@media (max-width: 1199px) {
  .nav-icon-list {
    gap: 12px;
  }
}

.nav-icon-item {
  font-size: 24px;
  display: flex;
  position: relative;
}
.nav-icon-item .number-count {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
}
.nav-icon-item.has-num.text-white .number-count {
  background-color: var(--white);
  color: var(--primary);
}
.nav-icon-item.has-num .number-count {
  position: absolute;
  top: -5.75px;
  right: -8px;
}
@media (max-width: 1199px) {
  .nav-icon-item {
    font-size: 20px;
  }
  .nav-icon-item.has-num {
    margin-right: 8px;
  }
}

.box-nav-support {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--secondary);
  padding: 20px 40px;
  margin-right: -40px;
  border-radius: 0px 100px 100px 0px;
}
.box-nav-support .ic-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}
.box-nav-support .ic-wrap .icon {
  color: var(--white);
  font-size: 32px;
}
.box-nav-support .title {
  margin-bottom: 4px;
}

/* -- Button Menu Mobile -- */
.btn-mobile-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 24px;
  position: relative;
}
.btn-mobile-menu span {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}
.btn-mobile-menu::after, .btn-mobile-menu::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-mobile-menu::before {
  top: 5px;
}
.btn-mobile-menu::after {
  bottom: 5px;
}
.btn-mobile-menu.type-small {
  width: 20px;
  height: 20px;
}
.btn-mobile-menu.type-small > span {
  width: 16px;
}
.btn-mobile-menu.type-small::after, .btn-mobile-menu.type-small::before {
  width: 16px;
}
.btn-mobile-menu.style-white span, .btn-mobile-menu.style-white::after, .btn-mobile-menu.style-white::before {
  background-color: var(--white);
}

@media (max-width: 1199px) {
  .logo-site {
    max-width: 120px;
  }
}

.sub-menu {
  position: absolute;
  top: 100%;
  background-color: var(--white);
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
  min-width: 204px;
  left: -24px;
  transform: scale(0.9);
  transform-origin: top;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 0px 0px 12px 12px;
}

.sub-menu_list li:last-child .sub-menu_link {
  border-radius: 0px 0px 12px 12px;
}

.sub-menu_link {
  color: var(--black);
  padding: 16px 24px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.sub-menu_link:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
  background-color: var(--surface);
}

.has-menu_lv2 {
  position: relative;
}
.has-menu_lv2 > .sub-menu_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}
.has-menu_lv2 > .sub-menu_link .text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.has-menu_lv2:hover > .sub-menu_link {
  background-color: var(--surface);
}
.has-menu_lv2:hover > .sub-menu_link .text {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.has-menu_lv2:hover .sub-menu-lv2 {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sub-menu-lv2 {
  position: absolute;
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
  left: 100%;
  top: 5px;
  min-width: 175px;
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*-- Menu Mobile --*/
.canvas-mb {
  width: 320px !important;
}
.canvas-mb .canvas-header {
  display: grid;
  gap: 20px;
  justify-content: unset;
  padding: 20px;
}
.canvas-mb .canvas-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding-top: 0;
}
.canvas-mb .need-help-wrap {
  display: grid;
}
.canvas-mb .canvas-footer {
  display: flex;
  border-top: 1px solid var(--line);
  box-shadow: unset;
  padding: 0;
}
.canvas-mb .canvas-footer > * {
  width: 100%;
  padding: 6px 0 7px;
}

.nav-ul-mb .nav-mb-item:not(:last-child) .mb-menu-link {
  padding-bottom: 12px;
}
.nav-ul-mb .nav-mb-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.nav-ul-mb .nav-mb-item:not(:first-child) .mb-menu-link {
  padding-top: 12px;
}

.mb-menu-link {
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mb-menu-link:not(.collapsed) .ic-custom::before {
  transform: rotate(90deg);
}
.mb-menu-link:not(.collapsed) .ic-custom::after {
  transform: rotate(180deg);
}

.ic-custom {
  width: 16px;
  height: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ic-custom::after, .ic-custom::before {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 999px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ic-custom::after {
  width: 100%;
  height: 2px;
}
.ic-custom::before {
  height: 100%;
  width: 2px;
}

.sub-nav-menu {
  padding-left: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-left: 16px;
  border-left: 1px solid var(--line);
  margin-bottom: 20px;
}
.sub-nav-menu .sub-nav-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  display: flex;
  padding-top: 8px;
  padding-bottom: 8px;
  align-items: center;
  justify-content: space-between;
}
.sub-nav-menu .sub-nav-link .icon {
  font-size: 14px;
}
.sub-nav-menu .sub-nav-link.active {
  font-weight: 700;
  color: var(--black);
}
.sub-nav-menu .sub-nav-link:not(.collapsed) .ic-custom::before {
  transform: rotate(90deg);
}
.sub-nav-menu .sub-nav-link:not(.collapsed) .ic-custom::after {
  transform: rotate(180deg);
}

/* Menu Mobile */
.tf-topbar {
  padding-top: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line-2);
}
.tf-topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tf-topbar .topbar-center {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-topbar .topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.tf-topbar .topbar-right .tf-currencies {
  flex-shrink: 0;
}
.tf-topbar .topbar-left,
.tf-topbar .topbar-right {
  flex: 1;
}
.tf-topbar.style-2 {
  border-color: var(--line);
}
.tf-topbar.style-2 .topbar-right .tf-list {
  gap: 20px;
}
.tf-topbar.style-2 .topbar-right .tf-list .info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-topbar.style-2 .topbar-left,
.tf-topbar.style-2 .topbar-right {
  flex: unset;
}
@media (max-width: 767px) {
  .tf-topbar:not(.style-2) .topbar-inner {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .tf-topbar .topbar-inner {
    width: 100%;
    justify-content: center;
  }
}

.tf-header.style-2 .box-nav-support {
  margin: 0;
  border-radius: 0;
}
@media (max-width: 1199px) {
  .tf-header:not(.header-abs) {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.header-3 {
  background-color: var(--primary);
}
.header-3 .header-top_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 24px;
}
.header-3 .nav-icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-3 .header-inner {
  background-color: var(--secondary);
}
.header-3 .header-inner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-3 .header-inner_wrap .col-left {
  display: flex;
  align-items: center;
}
.header-3 .header-inner_wrap .col-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-3 .item-link {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (min-width: 1200px) {
  .header-3 .nav-icon-list {
    gap: 24px;
  }
}
@media (min-width: 1600px) {
  .header-3 .box-nav-menu {
    gap: 32px;
  }
  .header-3 .item-link::before {
    width: calc(100% + 64px);
  }
}
@media (max-width: 1199px) {
  .header-3 .box-btn-menu,
  .header-3 .inner-right {
    flex: 1;
  }
  .header-3 .header-inner {
    display: none;
  }
  .header-3 .header-top_wrap {
    padding: 0;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .header-3 .nav-icon-item .text {
    display: none;
  }
}

.nav-category-wrap {
  position: relative;
  background-color: var(--white);
  padding: 16px 24px;
  margin-right: 40px;
}

.box-nav-category {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0784313725);
  position: absolute;
  left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  top: 100%;
  min-width: 260px;
  background-color: var(--white);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.box-nav-category > .br-line {
  margin-top: 10px;
  margin-bottom: 10px;
}
.box-nav-category.active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}
.box-nav-category.type-2 {
  left: 0;
  top: 100%;
}

.nav-category_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 24px;
  padding-right: 24px;
}
.nav-category_link .icon {
  font-size: 20px;
}

.btn-nav-drop {
  display: flex;
  align-items: center;
  gap: 37px;
  cursor: pointer;
  color: var(--primary);
}
.btn-nav-drop .name-category {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/*------------ Blog ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.article-blog {
  display: grid;
  gap: 24px;
}
.article-blog .entry-image {
  display: flex;
  border-radius: 16px;
  aspect-ratio: 1.5018315018;
}
.article-blog .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-blog .entry-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.article-blog .entry_meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.article-blog .entry_meta .br-line {
  width: 1px;
  height: 16px;
  background-color: var(--line);
}
.article-blog .entry_title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.article-blog .entry_title a {
  text-decoration: underline;
  text-decoration-color: transparent;
}
.article-blog .entry_title a:hover {
  text-decoration-color: var(--primary);
}
.article-blog .entry_desc {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.article-blog.style-2 {
  background-color: var(--white);
  padding: 24px;
  border-radius: 16px;
}
.article-blog.style-2 .entry-image {
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .article-blog.style-list {
    display: flex;
    align-items: center;
  }
  .article-blog.style-list .entry-image {
    aspect-ratio: 1.3333333333;
    max-width: 400px;
  }
}
@media (min-width: 1200px) {
  .article-blog.style-large {
    gap: 32px;
  }
  .article-blog.style-large .entry-image {
    aspect-ratio: 1.7782426778;
  }
  .article-blog.style-large .entry-content {
    gap: 20px;
  }
  .article-blog.style-list {
    gap: 40px;
  }
  .article-blog.style-list .entry-image {
    aspect-ratio: 1.3333333333;
    max-width: 400px;
  }
}

.badge-tag {
  padding: 4px 12px;
  color: var(--primary);
  background-color: var(--secondary);
  border-radius: 28px;
  font-weight: 600;
}

.wg-pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wg-pagination .pagination-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--primary);
}
.wg-pagination .pagination-item:hover, .wg-pagination .pagination-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.wg-pagination .pagination-item .icon {
  font-size: 20px;
}

.blog-sidebar {
  max-width: 380px;
  width: 100%;
  padding: 23px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 32px;
}
.blog-sidebar.sidebar-mobile-append {
  border: 0;
  max-width: unset;
  padding: 10px 24px;
}

.sidebar-item .sb-title {
  margin-bottom: 16px;
}

.sb-category {
  display: grid;
  gap: 12px;
}
.sb-category a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sb-category a .text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.sb-category a:hover .text {
  text-decoration-color: var(--primary);
}

.sb-recent {
  display: grid;
  gap: 16px;
}
.sb-recent .sb-recent_item {
  display: flex;
  align-items: center;
  gap: 28px;
}
.sb-recent .cate_img {
  max-width: 90px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
.sb-recent .meta-list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}

.sb-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sb-tags a {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 15px;
}
.sb-tags a:hover {
  background-color: var(--line);
}

.btn-sidebar-mb {
  position: fixed;
  top: 30%;
  left: 0;
  z-index: 50;
}
.btn-sidebar-mb button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-sidebar-mb button i {
  font-size: 20px;
}
.btn-sidebar-mb button:hover {
  background-color: var(--white);
  color: var(--black);
}
.btn-sidebar-mb.right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

.blog-single_content .blog-name {
  margin-bottom: 24px;
}
.blog-single_content .entry-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.blog-single_content .entry-meta .meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-single_content .entry-meta .icon {
  font-size: 24px;
  aspect-ratio: 1;
}
.blog-single_content .image {
  border-radius: 12px;
  overflow: hidden;
}
.blog-single_content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single_content .box-text {
  display: grid;
  gap: 12px;
}
.blog-single_content .benefit-list li {
  position: relative;
  padding-left: 27px;
}
.blog-single_content .benefit-list li::before {
  position: absolute;
  left: 12px;
  top: 12px;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text);
}
.blog-single_content .benefit-list li.text-primary::before {
  background: var(--primary);
}
.blog-single_content .title {
  margin-bottom: 16px;
}
.blog-single_content .content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-single_content .bottom_tag {
  display: flex;
  align-items: center;
  gap: 12px;
}
.blog-single_content .bottom_tag a {
  height: 32px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-single_content .bottom_tag a:hover {
  background-color: var(--line);
}
.blog-single_content .bottom_social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .blog-single_content .image img {
    min-height: 310px;
  }
}

.block-quote {
  padding: 20px 15px;
  border-radius: 12px;
  border: 2px solid var(--line);
  display: flex;
  gap: 20px;
}
.block-quote .icon {
  font-size: 40px;
}
.block-quote .quote {
  margin-bottom: 12px;
}
.block-quote .name-quote {
  position: relative;
  padding-left: 28px;
}
.block-quote .name-quote::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary);
}
@media (min-width: 992px) {
  .block-quote {
    padding: 26px;
  }
}

.sb-author {
  display: grid;
  gap: 16px;
}
.sb-author .author_info {
  display: flex;
  gap: 20px;
}
.sb-author .info__image {
  border-radius: 50%;
  overflow: hidden;
  max-width: 100px;
}
.sb-author .info__more .name {
  margin-bottom: 4px;
}
.sb-author .info__more .follower {
  margin-bottom: 12px;
}
.sb-author .info__more .tf-btn {
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
}

.group-action-direc {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.group-action-direc .br-line {
  height: 60px;
  width: 1px;
}
.group-action-direc .action-direc {
  display: grid;
  gap: 4px;
}
.group-action-direc .action-direc.direc-next {
  text-align: end;
}
@media (min-width: 1200px) {
  .group-action-direc {
    gap: 40px;
  }
}

.blog-single_author {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 40px;
}
.blog-single_author .info_image {
  border-radius: 50%;
  overflow: hidden;
}
.blog-single_author .author-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-single_author .btn-fl {
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
}

/*------------ Element ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
@keyframes sliderShape {
  0%, 100% {
    border-radius: 42% 58% 70% 30%/45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  34% {
    border-radius: 70% 30% 46% 54%/30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateZ(0.01deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotateZ(0.01deg);
  }
  67% {
    border-radius: 100% 60% 60% 100%/100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateZ(0.01deg);
  }
}
@keyframes tf-animate-zoom-in-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ripple-line {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes shine-reverse {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}
@-webkit-keyframes spinner-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes spinner-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ani-zoom {
  animation: tf-animate-zoom-in-out 30s linear infinite;
}

@keyframes iconBounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes float1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(-5deg);
  }
}
@keyframes float2 {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(5px) rotate(10deg);
  }
}
@keyframes float3 {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(-8deg);
  }
}
@keyframes float4 {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}
@keyframes float5 {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.05);
  }
  75% {
    transform: rotate(-5deg) scale(1.05);
  }
}
@keyframes bgMove {
  from {
    background-position: 200% 0;
  }
  to {
    background-position: 0% 0;
  }
}
@keyframes effect-send {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translate3d(30px, -30px, 30px);
    opacity: 0;
  }
  50% {
    transform: translate3d(-30px, 30px, 30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes move-stripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.hover-img .img-style {
  overflow: hidden;
}
.hover-img .img-style > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.hover-img:hover .img-style > img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.hover-img .img-style2 {
  overflow: hidden;
  border-radius: 10px;
}
.hover-img .img-style2 .img-hv {
  width: 100%;
  object-fit: cover;
  -webkit-transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: all 1s cubic-bezier(0.3, 1, 0.35, 1) 0s;
  transition: transform 500ms ease;
}

.hover-img2 .img-style2 {
  overflow: hidden;
  border-radius: 8px;
}
.hover-img2 .img-style2 .img2 {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-img2:hover .img2 {
  transform: scale(1.1) rotate(3deg);
}

.hover-img3 .img-style3 {
  border-radius: 8px;
  overflow: hidden;
}
.hover-img3 .img-style3 img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-img3:hover img {
  transform: scale(1.075);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover-img4 .img-style4 {
  position: relative;
  overflow: hidden;
}
.hover-img4 .img-style4:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.hover-img4 .img-style4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}
.hover-img4:hover .img-style4:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.hover-img4:hover .img-style4 img {
  transform: scale(1.1);
}

.pagi2 .swiper-pagination2:hover .box-img .icon-practice,
.swiper-button-next2:hover .box-img .icon-practice,
.swiper-button-prev2:hover .box-img .icon-practice,
.hv-one:hover .box-img .icon-practice {
  opacity: 1;
  z-index: 99;
  top: 50%;
  transition-delay: 0.5s;
}
.pagi2 .swiper-pagination2:hover .img-style::before,
.swiper-button-next2:hover .img-style::before,
.swiper-button-prev2:hover .img-style::before,
.hv-one:hover .img-style::before {
  opacity: 1;
}
.pagi2 .swiper-pagination2 .img-style,
.swiper-button-next2 .img-style,
.swiper-button-prev2 .img-style,
.hv-one .img-style {
  border-radius: 10px;
  overflow: hidden;
}
.pagi2 .swiper-pagination2 .img-style::before,
.swiper-button-next2 .img-style::before,
.swiper-button-prev2 .img-style::before,
.hv-one .img-style::before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5019607843);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
  opacity: 0;
  border-radius: 10px;
}
.pagi2 .swiper-pagination2 .img-style.s-one::before,
.swiper-button-next2 .img-style.s-one::before,
.swiper-button-prev2 .img-style.s-one::before,
.hv-one .img-style.s-one::before {
  border-radius: 50%;
}

.hv-one2:hover .img-style2::before {
  opacity: 1;
  visibility: visible;
}
.hv-one2 .img-style2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 10px;
}

.hv-tool {
  position: relative;
  transition: all 0.3s ease;
}

.hover-tooltip {
  position: relative;
}
.hover-tooltip .tooltip {
  position: absolute;
  white-space: nowrap;
  padding: 2px 12px;
  border-radius: 2px;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: var(--white);
  background-color: var(--black);
  transition: transform 0.3s ease 0.1s, opacity 0.3s ease 0.1s;
  z-index: 5;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  border-radius: 8px;
  text-align: center;
  font-family: "Sora", sans-serif;
  display: none;
}
.hover-tooltip .tooltip::before {
  content: "";
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  top: 22px;
  position: absolute;
  background: var(--black);
  width: 9px;
  height: 9px;
  z-index: -1;
}
@media (min-width: 1200px) {
  .hover-tooltip .tooltip {
    display: block;
  }
}
.hover-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.hover-tooltip.tooltip-bot .tooltip {
  top: calc(100% + 10px);
  bottom: unset;
}
.hover-tooltip.tooltip-bot .tooltip::before {
  top: -4px;
}
.hover-tooltip.tooltip-left .tooltip {
  right: 100%;
  bottom: auto;
  transform: translateX(0px);
  left: unset;
}
.hover-tooltip.tooltip-left .tooltip::before {
  top: 50%;
  left: auto;
  transform: translateY(-50%) rotate(45deg);
  right: -4px;
}
.hover-tooltip.tooltip-left:hover .tooltip {
  transform: translateX(-12px);
}
.hover-tooltip.tooltip-right .tooltip {
  left: 100%;
  bottom: auto;
  transform: translateX(0px);
}
.hover-tooltip.tooltip-right .tooltip::before {
  top: 50%;
  right: auto;
  transform: translateY(-50%) rotate(45deg);
  left: -4px;
}
.hover-tooltip.tooltip-right:hover .tooltip {
  transform: translateX(8px);
}

.hover-overlay {
  position: relative;
}
.hover-overlay::before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: 0.4s ease 0.1s;
  opacity: 0;
  visibility: hidden;
}
.hover-overlay:hover::before {
  opacity: 1;
  visibility: visible;
}

.hover-cursor-img .hover-image {
  display: none;
}
@media (min-width: 1200px) {
  .hover-cursor-img {
    position: relative;
  }
  .hover-cursor-img .hover-image {
    position: fixed;
    display: block;
    transform: scale(0);
    pointer-events: none;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1000;
  }
  .hover-cursor-img .hover-image img {
    border-radius: 50%;
    max-width: 150px;
    box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tf-social-icon {
  display: inline-flex;
  gap: 16px;
  --facebook-cl: rgb(59, 89, 152);
  --x-cl: rgb(85, 85, 85);
  --instagram-cl: linear-gradient(#8a3ab9, #e95950, #fccc63);
  --threads-cl: rgb(224, 53, 102);
  --youtube-cl: rgb(205, 32, 31);
  --tiktok-cl: linear-gradient(#25f4ee, #000, #fe2c55);
  --tiktok-cl2: rgb(254, 44, 85);
  --pinterest-cl: rgb(203, 32, 39);
  --tumblr-cl: rgb(55, 69, 92);
  --vimeo-cl: rgb(26, 183, 234);
  --snapchat-cl: rgb(255, 221, 0);
  --whatsapp-cl: rgb(0, 230, 118);
  --linked_in-cl: rgb(23, 106, 255);
  --wechat-cl: rgb(26, 173, 24);
  --reddit-cl: rgb(255, 69, 0);
  --line-cl: rgb(0, 195, 77);
  --spotify-cl: rgb(30, 125, 96);
}
.tf-social-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid;
  border-color: var(--line);
  position: relative;
}
.tf-social-icon a .icon {
  display: inline-flex;
  position: relative;
  z-index: 1;
  font-size: 16px;
}
.tf-social-icon a::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  background: transparent;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.tf-social-icon.style-2 a {
  border-color: var(--line-3);
  color: var(--white);
}
.tf-social-icon .social-facebook::after {
  background: var(--facebook-cl);
}
.tf-social-icon .social-facebook:hover {
  color: var(--white);
}
.tf-social-icon .social-facebook:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-instagram::after {
  background: var(--instagram-cl);
}
.tf-social-icon .social-instagram:hover {
  color: var(--white);
}
.tf-social-icon .social-instagram:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-x::after {
  background: var(--x-cl);
}
.tf-social-icon .social-x:hover {
  color: var(--white);
}
.tf-social-icon .social-x:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-snapchat::after {
  background: var(--snapchat-cl);
}
.tf-social-icon .social-snapchat:hover {
  color: var(--white);
}
.tf-social-icon .social-snapchat:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-pinterest::after {
  background: var(--pinterest-cl);
}
.tf-social-icon .social-pinterest:hover {
  color: var(--white);
}
.tf-social-icon .social-pinterest:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-linkin::after {
  background: var(--linked_in-cl);
}
.tf-social-icon .social-linkin:hover {
  color: var(--white);
}
.tf-social-icon .social-linkin:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon .social-tiktok::after {
  background: var(--tiktok-cl);
}
.tf-social-icon .social-tiktok:hover {
  color: var(--white);
}
.tf-social-icon .social-tiktok:hover::after {
  opacity: 1;
  visibility: visible;
}
.tf-social-icon.style-white a {
  color: var(--white);
  border-color: var(--line);
}

.tf-social-icon-2 {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-social-icon-2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--primary);
}
.tf-social-icon-2 a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}
.tf-social-icon-2 .icon {
  font-size: 24px;
}
.tf-social-icon-2.style-2 a {
  width: 48px;
  height: 48px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.offcanvas {
  border: none !important;
  color: var(--black);
  z-index: 3000;
  width: 480px !important;
  background-color: var(--white);
}
.offcanvas .icon-close-popup {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--line);
  color: var(--primary);
  z-index: 2;
}
.offcanvas .icon-close-popup:hover {
  background-color: var(--primary);
  color: var(--secondary);
}
.offcanvas .offcanvas-content {
  height: 100%;
}
.offcanvas.offcanvas-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  opacity: 0;
  visibility: hidden;
  max-width: calc(100vw - 30px);
}
.offcanvas.offcanvas-center.show {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 575px) {
  .offcanvas {
    width: 360px !important;
  }
}

.modal-header {
  border: 0;
}

.offcanvas-backdrop {
  z-index: 2999;
  cursor: url(../images/cursor-close.svg), auto;
}

.overflow-x-auto::-webkit-scrollbar,
.overflow-y-auto::-webkit-scrollbar {
  width: 0px;
}

.modal {
  cursor: url(../images/cursor-close.svg), auto;
}
.modal .icon-close-popup {
  top: 10px;
  right: 10px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--line);
  color: var(--primary);
}
.modal .icon-close-popup:hover {
  background-color: var(--primary);
  color: var(--secondary);
}
@media (min-width: 992px) {
  .modal .icon-close-popup {
    top: 20px;
    right: 20px;
  }
}
.modal .modal-content {
  border: 0;
}
.modal .modal-body {
  padding: 0;
}
.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: none;
  transition: transform 0.4s ease-out;
}
.modal.fullLeft .modal-dialog {
  transform: translate(-100%, 0) !important;
  min-width: 100%;
  height: 100%;
  margin: 0;
  transition: all 0.3s !important;
}
.modal.fullLeft .modal-content {
  border-radius: 0;
  border: 0;
  margin: auto;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  padding: 0;
}
.modal.fullLeft .modal-body {
  overflow: auto;
  padding: 0;
  padding-bottom: 30px;
}
.modal.fullLeft.show .modal-dialog {
  transform: translate(0, 0) !important;
}
.modal.fullBottom .modal-dialog {
  transform: translate(0, 100%);
  min-width: 100%;
  height: 100%;
  max-height: unset;
  margin: 0;
  transition: transform 0.3s linear !important;
}
.modal.fullBottom .modal-content {
  border-radius: 0;
  border: 0;
  margin: auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
  max-height: max-content;
}
.modal.fullBottom .modal-body {
  overflow: auto;
  padding: 0;
  padding-bottom: 30px;
}
.modal.fullBottom.show .modal-dialog {
  transform: translate(0, 0);
}
.modal.modalCentered .modal-dialog {
  margin: 15px auto;
  padding-left: 15px;
  padding-right: 15px;
  transform: translate(0, 0) !important;
}
.modal.fade:not(.show) {
  opacity: 0;
}
.modal .modal-content {
  cursor: default !important;
  border-radius: 0px;
}

.modal-dialog {
  background-clip: var(--white);
}

.modal-heading {
  position: relative;
  margin-bottom: 30px;
}
.modal-heading .icon-close-popup {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: unset;
  font-size: 24px;
}
@media (min-width: 992px) {
  .modal-heading {
    margin-bottom: 40px;
  }
}

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

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 25px;
  position: relative;
  text-transform: capitalize;
}

.canvas-body {
  background-color: var(--white);
  padding: 24px;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  flex: 1;
}
.canvas-body::-webkit-scrollbar {
  width: 5px;
}
.canvas-body::-webkit-scrollbar-track {
  background-color: var(--white);
}
.canvas-body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.canvas-footer,
.canvas-bottom {
  padding: 20px 24px;
  box-shadow: 0px 5px 18px 5px rgba(64, 72, 87, 0.1490196078);
}

.canvas-filter .canvas-body {
  color: var(--text);
}
.canvas-filter .canvas-body > *:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .canvas-filter .canvas-body > *:not(:last-child) {
    margin-bottom: 32px;
  }
}

.sidebar-filter {
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sidebar-filter .canvas-header {
  color: var(--black);
}
.sidebar-filter .canvas-body {
  overflow-x: hidden;
}
@media (min-width: 1200px) {
  .sidebar-filter {
    max-width: 270px;
  }
  .sidebar-filter .canvas-body,
  .sidebar-filter .canvas-bottom {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  .sidebar-filter {
    position: fixed;
    bottom: 0;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    background-clip: padding-box;
    outline: 0;
  }
  .sidebar-filter.left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }
  .sidebar-filter.right {
    top: 0;
    right: 0;
    transform: translateX(100%);
  }
  .sidebar-filter.show {
    transform: none;
  }
}

.modal-log .modal-content {
  position: relative;
  max-width: 440px;
  width: 100%;
  padding: 20px 15px;
  border-radius: 20px;
  overflow: hidden;
}
.modal-log .title-pop {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .modal-log .modal-content {
    padding: 28px 24px;
  }
}

.canvas-quickview {
  width: 920px !important;
  flex-direction: row;
}
.canvas-quickview .mini-quick-image {
  display: flex;
  width: 100%;
}
.canvas-quickview .wrap-quick {
  flex-grow: 1;
  overflow-y: auto;
  display: grid;
  gap: 20px;
  padding-left: 16px;
}
.canvas-quickview .wrap-quick::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background-color: var(--line);
}
.canvas-quickview .wrap-quick::-webkit-scrollbar-thumb {
  background-color: var(--text-2);
}
.canvas-quickview .wrap-quick .image {
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
}
.canvas-quickview .wrap-quick .image img {
  border-radius: 12px;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .canvas-quickview .wrap-quick .image:first-child {
    margin-top: 16px;
  }
  .canvas-quickview .wrap-quick .image:last-child {
    margin-bottom: 16px;
  }
}
.canvas-quickview .wrap-canvas {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.canvas-quickview .canvas-body {
  display: grid;
  gap: 20px;
  flex: unset;
}
.canvas-quickview .quickview-product-info {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.canvas-quickview .quickview-product-info .product-info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.canvas-quickview .quickview-product-info .infor_rate,
.canvas-quickview .quickview-product-info .infor_sold {
  display: flex;
  align-items: center;
  gap: 4px;
}
.canvas-quickview .quickview-product-info .product-infor-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.canvas-quickview .quickview-product-info .badge-sale {
  margin-left: 8px;
  border-radius: 144px;
}
.canvas-quickview .quickview-product-info .product-infor-name {
  margin-bottom: 20px;
}
.canvas-quickview .quickview-product-info .product-infor-price {
  margin-bottom: 12px;
}
.canvas-quickview .quickview-product-variant {
  display: grid;
  gap: 28px;
}
.canvas-quickview .quickview-product-variant .variant-picker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.canvas-quickview .quickview-product-variant .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 12px;
}
.canvas-quickview .quickview-product-variant .unit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 50px;
  border: 1px solid var(--line);
  padding-left: 20px;
  padding-right: 20px;
  color: var(--text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.canvas-quickview .quickview-product-variant .unit-btn:hover {
  color: var(--primary);
}
.canvas-quickview .quickview-product-variant .unit-btn.active {
  background-color: var(--primary);
  color: var(--white);
}
.canvas-quickview .quickview-product-variant .variant-picker-label-value {
  font-weight: normal;
  font-size: 16px;
}
.canvas-quickview .quickview-product-total-btn {
  display: grid;
  gap: 10px;
}
.canvas-quickview .quickview-product-total-btn .group-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.canvas-quickview .quickview-product-total-btn .btn-add-wishlist {
  flex-shrink: 0;
}
.canvas-quickview .btn-add-wishlist {
  width: 44px;
  height: 44px;
}
@media (min-width: 992px) {
  .canvas-quickview {
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .canvas-quickview {
    gap: 24px;
  }
  .canvas-quickview .mini-quick-image {
    max-width: 364px;
    direction: rtl;
  }
}
@media (min-width: 1200px) {
  .canvas-quickview .btn-add-wishlist {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .canvas-quickview {
    flex-direction: column;
  }
  .canvas-quickview .wrap-quick {
    display: flex;
    overflow-x: auto;
    padding: 15px 24px 0px;
    gap: 8px;
  }
  .canvas-quickview .wrap-quick .image {
    max-width: 120px;
    width: 100%;
    flex-shrink: 0;
  }
  .canvas-quickview .wrap-canvas {
    overflow: auto;
  }
}
@media (max-width: 767px) {
  .canvas-quickview .canvas-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.canvas-shop-cart .canvas-header {
  margin-bottom: 24px;
}
.canvas-shop-cart .canvas-header::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background-color: var(--line);
}
.canvas-shop-cart .tf-mini-cart-threshold {
  display: grid;
  padding: 16px;
  border-radius: 12px;
  background-color: var(--surface);
  margin: 0px 24px;
}
.canvas-shop-cart .tf-progress-ship {
  width: 100%;
  background-color: var(--line);
  height: 8px;
  position: relative;
  border-radius: 100px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.canvas-shop-cart .tf-progress-ship .value {
  height: 100%;
  background: var(--primary);
  position: relative;
  transition: width 2s ease;
  border-radius: 100px;
}
.canvas-shop-cart .tf-progress-ship .icon {
  position: absolute;
  left: 95%;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
  background-color: var(--white);
}
.canvas-shop-cart .wrap {
  display: flex;
  flex-direction: column;
}
.canvas-shop-cart .tf-mini-cart-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.canvas-shop-cart .tf-mini-cart-bottom {
  box-shadow: 0px -4px 10px 0px rgba(212, 212, 212, 0.2509803922);
}
.canvas-shop-cart .tf-cart-totals-discounts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.canvas-shop-cart .canvas-footer .checkbox-wrap {
  margin-bottom: 16px;
}
.canvas-shop-cart .canvas-footer .group-btn {
  gap: 16px;
  margin-bottom: 16px;
}
.tf-mini-cart-main {
  flex: 1 1 auto;
  position: relative;
}

.tf-mini-cart-sroll {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  padding: 20px 24px;
}
.tf-mini-cart-sroll::-webkit-scrollbar {
  width: 5px;
}
.tf-mini-cart-sroll::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

.tf-mini-cart-items {
  display: flex;
  flex-direction: column;
}

.modal-quick-add .icon-close-popup {
  position: unset;
}
.modal-quick-add .modal-content {
  border-radius: 16px;
  padding: 24px;
  gap: 20px;
}
.modal-quick-add .modal-header {
  padding: 0;
}
.modal-quick-add .tf-product-info-wrap {
  padding: 0;
}
.modal-quick-add .tf-product-mini-view {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-quick-add .tf-product-mini-view .prd-image {
  max-width: 120px;
  width: 100%;
}
.modal-quick-add .tf-product-mini-view .prd-content {
  display: grid;
  gap: 8px;
}
.modal-quick-add .tf-product-info-variant {
  margin-bottom: 28px;
}
.modal-quick-add .tf-product-info-variant .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-quick-add .variant-picker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.modal-quick-add .unit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 50px;
  border: 1px solid var(--line);
  padding-left: 20px;
  padding-right: 20px;
  color: var(--text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.modal-quick-add .unit-btn:hover {
  color: var(--primary);
}
.modal-quick-add .unit-btn.active {
  background-color: var(--primary);
  color: var(--white);
}
.modal-quick-add .variant-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.modal-quick-add .action-price {
  gap: 2px !important;
}
@media (max-width: 575px) {
  .modal-quick-add .modal-content {
    padding: 20px 15px;
  }
  .modal-quick-add .wg-quantity {
    min-width: 120px;
  }
  .modal-quick-add .modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.modal-forgot .modal-content {
  padding: 28px 24px;
  border-radius: 20px;
}
.modal-forgot .modal-dialog {
  max-width: 770px;
}
.modal-forgot .title-pop {
  margin-bottom: 16px;
}
.modal-forgot .desc-pop {
  margin-bottom: 24px;
}
.modal-forgot .form-forgot {
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .modal-forgot .modal-content {
    padding: 20px 15px;
  }
}

.offcanvas-search {
  height: max-content !important;
  width: 100% !important;
}
.offcanvas-search .icon-close-popup {
  position: absolute;
  right: 10px;
  top: 10px;
}
.offcanvas-search .offcanvas-body {
  padding: 30px 0 30px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.flat-animate-tab .tab-content {
  position: relative;
}
.flat-animate-tab .tab-pane {
  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;
}
.flat-animate-tab .tab-pane.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;
}

.tab-btn-wrap-1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  overflow: auto;
  white-space: nowrap;
}
.tab-btn-wrap-1 .tf-btn-tab {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.tab-btn-wrap-1 .tf-btn-tab.active {
  border-color: var(--primary);
  color: var(--primary);
}
.tab-btn-wrap-1 .tf-btn-tab:hover {
  color: var(--primary);
}
.tab-btn-wrap-1.style-2 .tf-btn-tab {
  padding-bottom: 0px;
}
.tab-btn-wrap-1.style-2 .tf-btn-tab:hover, .tab-btn-wrap-1.style-2 .tf-btn-tab.active {
  border-color: var(--secondary);
}
@media (min-width: 992px) {
  .tab-btn-wrap-1 {
    justify-content: center;
    gap: 40px;
  }
}

.tab-btn-wrap-2 {
  display: inline-flex;
  align-items: center;
  padding: 7px;
  border-radius: 52px;
  border: 1px solid var(--line);
}
.tab-btn-wrap-2 .tf-btn-tab {
  padding: 12px 30px;
  border-radius: 44px;
  position: relative;
  z-index: 1;
}
.tab-btn-wrap-2 .tf-btn-tab.active {
  color: var(--white);
}

.indicator-main {
  position: relative;
}

.indicator-item {
  position: relative;
  z-index: 1;
}

.indicator {
  position: absolute;
  top: 8px;
  bottom: 8px;
  border-radius: 44px;
  background: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.tab-btn-wrap-3 {
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 40px;
}
.tab-btn-wrap-3 .tf-btn-tab {
  padding: 20px;
  background: var(--white);
  position: relative;
}
.tab-btn-wrap-3 .tf-btn-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary);
  transform: scaleX(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tab-btn-wrap-3 .tf-btn-tab.active::after {
  opacity: 1;
  visibility: visible;
  transform: scaleX(1);
}
.tab-btn-wrap-3.style-2 {
  margin-bottom: 0;
  width: 100%;
}
.tab-btn-wrap-3.style-2 .nav-tab-item {
  flex: 1;
  text-align: center;
}
.tab-btn-wrap-3.style-2 .tf-btn-tab {
  width: 100%;
  background: transparent;
}
@media (max-width: 991px) {
  .tab-btn-wrap-3 .tf-btn-tab {
    padding: 15px;
  }
  .tab-btn-wrap-3 .tf-btn-tab::after {
    height: 2px;
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
form {
  position: relative;
  z-index: 30;
}
form select,
form textarea,
form input[type=text],
form input[type=password],
form input[type=datetime],
form input[type=datetime-local],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=week],
form input[type=number],
form input[type=email],
form input[type=url],
form input[type=search],
form input[type=tel],
form input[type=color] {
  outline: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
form select::placeholder,
form textarea::placeholder,
form input[type=text]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=time]::placeholder,
form input[type=week]::placeholder,
form input[type=number]::placeholder,
form input[type=email]::placeholder,
form input[type=url]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=color]::placeholder {
  color: var(--text-2);
}
form select:focus,
form textarea:focus,
form input[type=text]:focus,
form input[type=password]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus {
  border-color: var(--primary);
}
form select.style-2,
form textarea.style-2,
form input[type=text].style-2,
form input[type=password].style-2,
form input[type=datetime].style-2,
form input[type=datetime-local].style-2,
form input[type=date].style-2,
form input[type=month].style-2,
form input[type=time].style-2,
form input[type=week].style-2,
form input[type=number].style-2,
form input[type=email].style-2,
form input[type=url].style-2,
form input[type=search].style-2,
form input[type=tel].style-2,
form input[type=color].style-2 {
  border-radius: 92px;
  border-color: var(--secondary);
  background-color: transparent;
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
}
form select.style-2::placeholder,
form textarea.style-2::placeholder,
form input[type=text].style-2::placeholder,
form input[type=password].style-2::placeholder,
form input[type=datetime].style-2::placeholder,
form input[type=datetime-local].style-2::placeholder,
form input[type=date].style-2::placeholder,
form input[type=month].style-2::placeholder,
form input[type=time].style-2::placeholder,
form input[type=week].style-2::placeholder,
form input[type=number].style-2::placeholder,
form input[type=email].style-2::placeholder,
form input[type=url].style-2::placeholder,
form input[type=search].style-2::placeholder,
form input[type=tel].style-2::placeholder,
form input[type=color].style-2::placeholder {
  font-size: 14px;
  line-height: 22px;
  color: var(--white);
}
form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
  background-color: transparent;
  overflow: hidden;
  padding: 0;
}
form textarea {
  height: 100px;
  resize: none;
}
form .form-content {
  display: grid;
  gap: 20px;
}
form .tf-grid-layout {
  gap: 20px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.password-wrapper {
  position: relative;
}
.password-wrapper .toggle-pass {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 20px;
}

.tf-check {
  position: relative;
  background: transparent;
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border: 1px solid var(--primary);
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  border-radius: 1px;
}
.tf-check:checked {
  background-color: var(--primary);
}
.tf-check:checked::before {
  opacity: 1;
  transform: scale(1);
}
.tf-check::before {
  font-weight: 500;
  font-family: "icomoon";
  content: "\e932";
  position: absolute;
  color: var(--white);
  opacity: 0;
  font-size: 6px;
  transform: scale(0);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-check.style-white {
  background-color: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.tf-check.style-2 {
  width: 15px;
  height: 15px;
}
.tf-check.style-3 {
  width: 24px;
  height: 24px;
  border-width: 2px;
}
.tf-check.style-3:not(:checked) {
  border-color: var(--text-2);
}
.tf-check.style-3::before {
  font-size: 12px;
}
.tf-check.style-4 {
  width: 20px;
  height: 20px;
}
.tf-check.style-4::before {
  font-size: 10px;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkbox-wrap input {
  padding: 0;
}
.checkbox-wrap label {
  cursor: pointer;
}

.tf-field {
  position: relative;
}
.tf-field .tf-lable {
  margin-bottom: 8px;
}

.form-subcribe {
  position: relative;
}
.form-subcribe .btn-submit {
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}
.form-subcribe .btn-submit .icon {
  color: var(--primary);
  font-size: 20px;
}
.form-subcribe .btn-submit:hover .icon {
  animation: effect-send 0.3s ease-in;
}

.form-search,
.form-subcribe-2 {
  position: relative;
}
.form-search input,
.form-subcribe-2 input {
  padding-right: 50px !important;
}
.form-search button,
.form-subcribe-2 button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.form-search button .icon,
.form-subcribe-2 button .icon {
  font-size: 24px;
  color: var(--primary);
}

.form-comment .tf-grid-layout {
  gap: 20px;
}
.form-comment .form-content {
  gap: 20px;
  margin-bottom: 24px;
}
.form-comment .form-content textarea {
  height: 100px;
}

.form-rating .tf-field {
  display: grid;
}
.form-rating .form-content {
  margin-bottom: 24px;
}

.ip-discount-code {
  position: relative;
}
.ip-discount-code input {
  padding: 15px 19px !important;
  padding-right: 150px !important;
}
.ip-discount-code .action {
  position: absolute;
  bottom: 8px;
  right: 8px;
  top: 8px;
}
.ip-discount-code .note {
  margin-top: 12px;
}

.tf-check-rounded {
  padding: 0 !important;
  position: relative;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  outline: 0;
  height: 14px;
  width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  -webkit-appearance: none;
}
.tf-check-rounded::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  opacity: 0;
}
.tf-check-rounded:checked {
  border-color: var(--primary);
}
.tf-check-rounded:checked::before {
  opacity: 1;
}

.form-quick-login .tf-grid-layout {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .form-quick-login .action {
    height: 48px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.tf-page-checkout {
  display: grid;
  gap: 40px;
}

.tf-select {
  position: relative;
}
.tf-select select {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: 0 !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
.tf-select select:focus {
  border-color: var(--primary);
}
.tf-select::after {
  font-family: "icomoon";
  position: absolute;
  content: "\e907";
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  z-index: 1;
  font-weight: 400;
  color: var(--primary);
}
.tf-select:hover select {
  border-color: var(--primary);
}

.form-log .check-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.form-log .log-orther {
  display: flex;
  align-items: center;
  gap: 20px;
}
.form-log .log-orther span {
  display: block;
  height: 1px;
  background-color: var(--line);
  flex: 1;
}
.form-log .group-btn {
  display: grid;
  gap: 12px;
}
@media (min-width: 1200px) {
  .form-log .dont-have {
    margin-top: -8px;
  }
}

.form_search-product {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 12px;
  background-color: var(--white);
  height: 50px;
}
.form_search-product .entry-ip {
  border: 0;
  padding: 0 16px;
  width: 374px;
}
.form_search-product .tf-select-category {
  white-space: nowrap;
}
.form_search-product .btn-submit {
  width: 98px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: var(--secondary);
  border-radius: 0px 12px 12px 0px;
}
.form_search-product .br-line {
  width: 0;
}
.form_search-product .br-line::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
@media (max-width: 1439px) {
  .form_search-product .entry-ip {
    width: 350px;
  }
}

.form-contact .form-content {
  margin-bottom: 32px;
}
.form-contact textarea {
  height: 100px;
}

.select-wrap {
  position: relative;
  display: inline-flex;
}
.select-wrap .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 20px;
}

.form-get {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.1215686275);
}
.form-get .form-title {
  padding: 20px;
  background-color: var(--primary);
}
.form-get .tf-field {
  display: grid;
}
.form-get .form-content {
  padding: 24px 28px;
}
.form-get .btn-wrap {
  padding: 0px 28px 24px;
}
.form-get textarea {
  height: 120px;
}
@media (max-width: 767px) {
  .form-get .form-content {
    padding: 20px 15px;
  }
  .form-get .btn-wrap {
    padding: 0px 15px 20px;
  }
}

.form-search-nav {
  position: relative;
  width: 100%;
}
.form-search-nav .btn-action {
  position: absolute;
  font-size: 24px;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}
.form-search-nav fieldset input {
  padding-left: 44px;
  padding-top: 11px;
  padding-bottom: 11px;
  border-radius: 12px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 44px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
}
.tf-btn.style-stroke {
  border: 1px solid var(--line);
  background-color: transparent;
  color: var(--primary);
}
.tf-btn.style-stroke:hover {
  background-color: var(--line);
}
.tf-btn.style-btn-fill-pri {
  background-color: var(--primary);
  color: var(--white);
}
.tf-btn.style-btn-fill-sec {
  background-color: var(--secondary);
  color: var(--primary);
}
.tf-btn.style-fill-white {
  background-color: var(--white);
  color: var(--primary);
}
.tf-btn.style-2 {
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  height: 42px;
}
.tf-btn.style-3 {
  padding-left: 20px;
  padding-right: 20px;
  height: 42px;
}
@media (min-width: 1200px) {
  .tf-btn {
    height: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .tf-btn.style-large {
    height: 58px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.animate-btn {
  position: relative;
  overflow: hidden;
}
.animate-btn:hover::after {
  animation: shine-reverse 1s forwards;
}

.animate-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100%;
  opacity: 0.6;
}

button.animate-btn::after,
.animate-btn.tf-btn::after {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0) 20%, rgba(255, 255, 255, 0.4), rgba(0, 0, 0, 0) 70%);
}

.animate-btn.animate-dark::after {
  background-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25), transparent);
}

.tf-loading {
  font-size: 14px;
  line-height: 20px;
  width: auto;
  height: 42px;
  min-width: 118px;
  padding: 10px;
}
.tf-loading.loadmore .spinner-circle {
  display: none;
}
.tf-loading.loadmore.loading .spinner-circle {
  display: block;
}
.tf-loading.loadmore.loading .text {
  display: none;
}
.tf-loading.loadmore:hover .spinner-child::before {
  background-color: var(--white);
}
.tf-loading.loadmore .spinner-child::before {
  background-color: var(--main);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.spinner-circle {
  width: 24px;
  height: 24px;
  position: relative;
}
.spinner-circle .spinner-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.spinner-circle .spinner-child::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 20%;
  background-color: var(--white);
  border-radius: 100%;
  -webkit-animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
  animation: spinner-circleBounceDelay 1s infinite ease-in-out both;
}
.spinner-circle .spinner-circle2 {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}
.spinner-circle .spinner-circle2::before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.spinner-circle .spinner-circle3 {
  -webkit-transform: rotate(80deg);
  -ms-transform: rotate(80deg);
  transform: rotate(80deg);
}
.spinner-circle .spinner-circle3::before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.spinner-circle .spinner-circle4 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.spinner-circle .spinner-circle4::before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.spinner-circle .spinner-circle5 {
  -webkit-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  transform: rotate(160deg);
}
.spinner-circle .spinner-circle5::before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.spinner-circle .spinner-circle6 {
  -webkit-transform: rotate(200deg);
  -ms-transform: rotate(200deg);
  transform: rotate(200deg);
}
.spinner-circle .spinner-circle6::before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.spinner-circle .spinner-circle7 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.spinner-circle .spinner-circle7::before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.spinner-circle .spinner-circle8 {
  -webkit-transform: rotate(280deg);
  -ms-transform: rotate(280deg);
  transform: rotate(280deg);
}
.spinner-circle .spinner-circle8::before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.spinner-circle .spinner-circle9 {
  -webkit-transform: rotate(320deg);
  -ms-transform: rotate(320deg);
  transform: rotate(320deg);
}
.spinner-circle .spinner-circle9::before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.tf-btn-line {
  font-weight: 600;
  color: var(--primary);
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(to right, var(--primary-2) 50%, var(--primary) 50%);
  background-size: 200% 100%;
  background-position: right;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s linear;
  cursor: pointer;
  padding-bottom: 4px;
}
.tf-btn-line::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background-color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-btn-line::before {
  position: absolute;
  content: "";
  left: 0;
  width: 0;
  bottom: 0px;
  height: 2px;
  background-color: var(--primary-2);
  transition: width 0.3s linear;
  z-index: 1;
}
.tf-btn-line.style-min::after, .tf-btn-line.style-min::before {
  height: 1px;
}
.tf-btn-line.style-white {
  color: var(--white);
  background: linear-gradient(to right, var(--primary-2) 50%, var(--white) 50%);
  background-size: 200% 100%;
  background-position: right;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s linear;
}
.tf-btn-line.style-white::after {
  background-color: var(--white);
}
.tf-btn-line:hover {
  background-position: left;
}
.tf-btn-line:hover::before {
  width: 100%;
}
.tf-btn-line.active {
  background-position: left;
}
.tf-btn-line.active::before {
  width: 100%;
}
.tf-btn-line.style-line-2::after {
  background-color: var(--secondary);
}

.tf-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--primary);
}
.tf-btn-icon .icon {
  font-size: 20px;
}
.tf-btn-icon:hover {
  background-color: var(--line);
}

select.select-2 {
  padding: 6px 65px 6px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--primary);
}

.tf-btn-text-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--secondary);
  padding-left: 28px;
  padding-right: 8px;
  height: 64px;
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary);
}
.tf-btn-text-icon .ic-wrap {
  aspect-ratio: 1;
  font-size: 24px;
  width: 48px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-btn-text-icon.style-white {
  background-color: var(--white);
}
.tf-btn-text-icon.style-white .ic-wrap {
  background-color: var(--secondary);
  color: var(--primary);
}
.tf-btn-text-icon.style-stroke {
  border: 1px solid var(--line);
  background-color: transparent;
}
.tf-btn-text-icon.style-stroke .ic-wrap {
  background-color: var(--secondary);
  color: var(--primary);
}
.tf-btn-text-icon.style-stroke:hover {
  background-color: var(--line);
}
.tf-btn-text-icon:hover .ic-wrap {
  transform: rotate(45deg);
}
@media (min-width: 1200px) {
  .tf-btn-text-icon.type-2 {
    height: 56px;
    padding-left: 24px;
  }
  .tf-btn-text-icon.type-2 .ic-wrap {
    width: 40px;
  }
}
@media (max-width: 1199px) {
  .tf-btn-text-icon {
    height: 50px;
    padding-left: 20px;
    gap: 8px;
  }
  .tf-btn-text-icon .ic-wrap {
    width: 32px;
    font-size: 20px;
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-list {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-list li {
  display: flex;
}
.tf-list.vertical {
  display: grid;
}

.breadcrums {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.breadcrums li {
  display: flex;
}
.breadcrums .icon {
  font-size: 20px;
  color: var(--text-2);
}

.s-page-title {
  position: relative;
  padding-top: 80px;
  padding-bottom: 87px;
}
.s-page-title .img-item-bg {
  position: absolute;
  inset: 0;
  top: -2px;
}
.s-page-title .img-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.s-page-title .entry-meta {
  display: flex;
  align-items: center;
  gap: 12px 20px;
  flex-wrap: wrap;
}
.s-page-title .entry-meta .meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.s-page-title .entry-meta .icon {
  font-size: 24px;
  aspect-ratio: 1;
}
.s-page-title.page-title-blog .breadcrums {
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.s-page-title.page-title-blog .page-title {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .s-page-title.page-title-blog {
    padding-top: 121px;
    padding-bottom: 100px;
  }
  .s-page-title.page-title-service {
    padding-top: 171px;
    padding-bottom: 100px;
  }
  .s-page-title.page-title-service .breadcrums {
    margin-bottom: 24px;
  }
}

.s-blog-list .article-blog {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.s-blog-post .blog-single_content,
.s-blog-post .wg-comment {
  margin-bottom: 40px;
}

.section-product-desc .desc-list {
  display: grid;
  gap: 32px;
  max-width: 548px;
  width: 100%;
}
.section-product-desc .desc-list .desc_title {
  color: var(--primary);
  margin-bottom: 12px;
}
.section-product-desc .sub-desc-list .item {
  padding: 12px 20px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.section-product-desc .sub-desc-list .item:nth-child(odd) {
  background-color: var(--surface);
}
@media (max-width: 991px) {
  .section-product-desc .desc-list {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .section-product-desc .sub-desc-list .item {
    padding: 12px 15px;
  }
}

.product-desc_review .box-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.product-desc_review .box-rating .action {
  height: 46px;
  padding-left: 24px;
  padding-right: 24px;
  min-width: 152px;
}
.product-desc_review .rating-ratio {
  display: grid;
  place-items: center;
  gap: 4px;
}
.product-desc_review .rate-list li {
  padding: 2px;
}
.product-desc_review .rating-progress-list {
  display: grid;
  gap: 4px;
}
.product-desc_review .rate-progress-star {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-desc_review .rate-progress-star .progress {
  width: 440px;
  border-radius: 1px;
}
.product-desc_review .rate-progress-star .progress .progress-bar {
  background-color: var(--primary);
}
.product-desc_review .box-comment .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.product-desc_review .comment-list {
  display: grid;
  gap: 28px;
}
.product-desc_review .comment-item .comment-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.product-desc_review .comment-item .author_image {
  border-radius: 50%;
  overflow: hidden;
}
.product-desc_review .comment-item .info__name-star {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-desc_review .comment-item .info__name-star > .br-line {
  width: 12px;
}
.product-desc_review .comment-item .author_info {
  display: grid;
  gap: 4px;
}
.product-desc_review .comment-item.child {
  margin-left: 60px;
  padding-left: 16px;
  border-left: 4px solid var(--line);
}
.product-desc_review .box-comment {
  margin-bottom: 40px;
}
.product-desc_review .box-comment .head {
  margin-bottom: 16px;
}
.product-desc_review .box-write-comment .head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .product-desc_review .comment-item.child {
    margin-left: 30px;
  }
}
@media (max-width: 575px) {
  .product-desc_review .sub-desc-list .item {
    padding: 12px 15px;
  }
  .product-desc_review .rating-progress-list {
    width: 100%;
  }
  .product-desc_review .rate-progress-star .progress {
    width: 100%;
  }
}

.product-desc_ship .ship-title {
  margin-bottom: 12px;
}

.sect-head {
  margin-bottom: 32px;
}
.sect-head.type-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.sect-head.has-action .s-desc {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .sect-head.type-3 {
    margin-bottom: 60px;
  }
  .sect-head.type-4 {
    margin-bottom: 48px;
  }
}
@media (max-width: 991px) {
  .sect-head.has-action .s-desc {
    margin-bottom: 28px;
  }
}
@media (max-width: 575px) {
  .sect-head .s-desc {
    font-size: 16px;
    line-height: 26px;
  }
}

.section-lookbook {
  display: flex;
}
.section-lookbook > * {
  width: 50%;
  flex: 1;
}
@media (max-width: 767px) {
  .section-lookbook {
    flex-wrap: wrap;
  }
  .section-lookbook > * {
    width: 100%;
    flex: unset;
  }
  .section-lookbook .swiper-lookbook {
    order: 1;
  }
  .section-lookbook .banner-image-lookbook {
    order: 0;
  }
}

.section-lookbook-2 .col-right {
  padding: 80px 75px;
  background-color: var(--primary);
}
.section-lookbook-2 .col-right .card-product {
  background-color: var(--white);
}
.section-lookbook-2 .lookbook-image {
  width: 100%;
}
@media (min-width: 1200px) {
  .section-lookbook-2 {
    display: flex;
  }
  .section-lookbook-2 .banner-image-lookbook {
    width: 42.1875%;
  }
  .section-lookbook-2 .col-right {
    width: 57.8125%;
  }
}
@media (max-width: 1599px) {
  .section-lookbook-2 .col-right {
    padding: 40px 30px;
  }
}
@media (max-width: 767px) {
  .section-lookbook-2 .col-right {
    padding: 40px 15px;
  }
}

.banner-shop-main .product-thumbs-slider .tf-product-media-thumbs .item::after {
  content: "";
  inset: 0;
  position: absolute;
  border-radius: 4px;
  border: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.banner-shop-main .product-thumbs-slider .tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item::after {
  opacity: 1;
  visibility: visible;
}
.banner-shop-main .tf-product-media-main .item {
  display: flex;
  justify-content: center;
}
.banner-shop-main .tf-product-media-wrap {
  width: 100%;
  padding-right: 0;
}
.banner-shop-main .tf-product-info-wrap {
  padding-left: 0;
  margin-top: 20px;
}
.banner-shop-main .product-thumbs-slider {
  gap: 12px;
}
@media (min-width: 992px) {
  .banner-shop-main {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .banner-shop-main .variant-picker-values .unit-btn {
    height: 48px;
  }
  .banner-shop-main .wg-quantity {
    padding: 10px;
  }
  .banner-shop-main .tf-product-total-btn .tf-btn {
    height: 58px;
  }
  .banner-shop-main .tf-product-total-btn .group-btn .btn-add-wishlist {
    width: 58px;
    height: 58px;
  }
  .banner-shop-main .tf-product-total-btn .group-btn .btn-add-wishlist .icon {
    font-size: 24px;
  }
}
@media (min-width: 1440px) {
  .banner-shop-main {
    gap: 60px;
  }
  .banner-shop-main .tf-product-media-wrap {
    max-width: 560px;
  }
}
@media (max-width: 991px) {
  .banner-shop-main .tf-product-media-wrap {
    position: unset !important;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .banner-shop-main .tf-product-media-wrap,
  .banner-shop-main .tf-product-info-wrap {
    width: calc(50% - 15px);
  }
}

.banner-organic .col-right,
.banner-organic .col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.banner-organic .certified-image {
  max-width: 582px;
  margin: 0 auto;
}
.banner-organic .certified-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .banner-organic {
    gap: 60px;
  }
  .banner-organic .col-right .certified-item {
    display: grid;
    place-items: end;
    text-align: end;
  }
}
@media (min-width: 1440px) {
  .banner-organic .col-right,
  .banner-organic .col-left {
    gap: 100px;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .banner-organic .certified-image {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .banner-organic .certified_desc {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .banner-organic .col-right,
  .banner-organic .col-left {
    flex-direction: row;
  }
  .banner-organic .certified-item:nth-child(even) {
    display: grid;
    place-items: end;
    text-align: end;
  }
}
@media (max-width: 575px) {
  .banner-organic {
    text-align: center;
  }
}

.tf-lookbook-hover .bundle-pin-item {
  cursor: pointer;
}
.tf-lookbook-hover .bundle-hover-item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-lookbook-hover .bundle-hover-item.no-hover {
  opacity: 0.3;
}

.section-contact-partner {
  position: relative;
}
.section-contact-partner .s-image {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}
.section-contact-partner .s-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-contact-partner::after {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(270deg, rgba(22, 77, 67, 0) 0%, rgba(22, 77, 67, 0.9) 53.2%, #164D43 75.71%);
  z-index: 0;
}
.section-contact-partner .title {
  margin-bottom: 16px;
}
.section-contact-partner .benefit-item .ic-wrap {
  font-size: 48px;
  margin-bottom: 16px;
}
.section-contact-partner .benefit-item .benefit-title {
  margin-bottom: 8px;
}
.section-contact-partner .col-right {
  background-color: var(--white);
  position: relative;
  padding: 40px 20px;
}
.section-contact-partner .col-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background-color: var(--secondary);
}
.section-contact-partner .col-right .contact-title {
  margin-bottom: 8px;
}
.section-contact-partner .col-right .contact-desc {
  margin-bottom: 32px;
}
.section-contact-partner .col-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.section-contact-partner .benefit-grid {
  gap: 20px;
}
@media (min-width: 1200px) {
  .section-contact-partner .benefit-grid {
    gap: 40px;
  }
  .section-contact-partner .col-left {
    max-width: 600px;
  }
  .section-contact-partner .col-right {
    max-width: 500px;
    padding: 63px 40px;
    margin-left: 20px;
  }
}

.section-intro-about .img-icon {
  margin-bottom: 40px;
}
.section-intro-about .intro-title {
  margin-bottom: 20px;
}
.section-intro-about .heading {
  margin-bottom: 60px;
}

.section-contact {
  position: relative;
}
.section-contact .bg-img-item {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-contact .title {
  margin-bottom: 12px;
}
.section-contact .col-left {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
}
.section-contact .list-contact {
  display: grid;
  gap: 28px;
}
.section-contact .list-contact .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-contact .list-contact .ic-wrap {
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
}
.section-contact .list-contact .mini-title {
  margin-bottom: 8px;
}
.section-contact .list-contact .info {
  display: grid;
}
@media (min-width: 1200px) {
  .section-contact .col-left {
    gap: 48px;
  }
}

.section-service-provide-2 .tab-pane {
  display: grid;
  gap: 100px;
}
@media (max-width: 1199px) {
  .section-service-provide-2 .tab-pane {
    display: grid;
    gap: 60px;
  }
}

.section-service-detail .detail-main {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}
.section-service-detail .detail-main .wrap-text {
  display: grid;
  gap: 12px;
}
.section-service-detail .box-text {
  display: grid;
  gap: 20px;
}
.section-service-detail .service-image {
  border-radius: 12px;
  overflow: hidden;
}
.section-service-detail .box-benefit {
  padding: 32px;
  border-radius: 20px;
  background-color: var(--surface);
}
.section-service-detail .box-benefit .title-2 {
  margin-bottom: 12px;
}
.section-service-detail .box-benefit .desc-2 {
  margin-bottom: 28px;
}
.section-service-detail .box-benefit .tf-grid-layout ul {
  display: grid;
  gap: 16px;
}
.section-service-detail .box-benefit .tf-grid-layout li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}
.section-service-detail .box-benefit .tf-grid-layout .icon {
  font-size: 20px;
}
@media (min-width: 992px) {
  .section-service-detail .detail-main {
    gap: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 992px) {
  .col-right_sidebar {
    max-width: 380px;
    margin-left: auto;
  }
}

.section-faq .faq-list {
  display: grid;
  gap: 40px;
}

.section-privacy .col-right {
  display: grid;
  gap: 32px;
}
.section-privacy .box-privacy {
  display: grid;
  gap: 12px;
}

.list-name-privacy {
  display: grid;
}
.list-name-privacy a {
  padding-left: 12px;
  border-left: 4px solid var(--line);
  font-weight: 500;
}
.list-name-privacy a.active {
  border-color: var(--primary);
  color: var(--primary);
}
.list-name-privacy .item a {
  padding-top: 14px;
  padding-bottom: 14px;
}
.list-name-privacy .item:first-child a {
  padding-top: 8px;
}
.list-name-privacy .item:last-child a {
  padding-top: 8px;
}
@media (max-width: 767px) {
  .list-name-privacy a {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-width: 2px;
  }
}

.section-break-image .image img {
  aspect-ratio: 3.6923076923;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

@media (min-width: 1200px) {
  .section-service-provide .tf-grid-layout {
    gap: 30px;
  }
}

.section-about-intro {
  position: relative;
}
.section-about-intro .bg-item-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-lookbook-2 .card-product::after {
  display: none;
}

.s-check-out .br-line.line-center {
  width: 1px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.s-check-out .br-line.line-center::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: var(--line);
  margin: 0 auto;
}

.s-bg_img_item {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.sw-dot-default {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sw-dot-default .swiper-pagination-bullet {
  width: 32px;
  height: 32px;
  background-color: transparent;
  position: relative;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  margin: 0 !important;
}
.sw-dot-default .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sw-dot-default .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--primary);
}
.sw-dot-default .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--primary);
}
@media (max-width: 1199px) {
  .sw-dot-default .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
  .sw-dot-default .swiper-pagination-bullet::before {
    width: 6px;
    height: 6px;
  }
}
.sw-dot-default.style-white .swiper-pagination-bullet::before {
  background-color: var(--white);
  border-color: var(--white);
}
.sw-dot-default.style-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: var(--white);
}
.sw-dot-default.style-white .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: var(--white);
}
.sw-dot-default.style-small .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
}
.sw-dot-default.style-small .swiper-pagination-bullet::before {
  width: 6px;
  height: 6px;
  background: var(--primary);
}
.sw-dot-default.style-small .swiper-pagination-bullet::before {
  border-width: 1px;
}
@media (min-width: 1200px) {
  .sw-dot-default {
    margin-top: 35px;
  }
  .sw-dot-default.type-space-2 {
    margin-top: 40px;
  }
}
@media (min-width: 1440px) {
  .sw-dot-default {
    margin-top: 56px;
  }
}

.tf-sw-nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 32px;
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-sw-nav:hover {
  background-color: var(--primary);
  color: var(--secondary);
}
.tf-sw-nav.style-2 {
  background-color: var(--white-10);
  color: var(--white);
}
.tf-sw-nav.style-2:hover {
  color: var(--secondary);
}
.tf-sw-nav.style-3 {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  width: 40px;
  height: 40px;
  font-size: 24px;
}
.tf-sw-nav.style-3:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.tf-sw-nav.small {
  width: 40px;
  height: 40px;
  font-size: 24px;
}
@media (max-width: 1199px) {
  .tf-sw-nav.style-3 {
    width: 32px;
    height: 32px;
  }
}

.slider_effect_fade .swiper-slide.swiper-slide-active .fade-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.slider_effect_fade .swiper-slide.swiper-slide-active .scale-item {
  transform: scale(1);
}
.slider_effect_fade .swiper-slide.swiper-slide-active .width-item {
  width: 100%;
}
.slider_effect_fade .fade-item {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slider_effect_fade .fade-item.fade-box {
  transition-delay: 0.4s;
  transform: translateY(0px);
}
.slider_effect_fade .fade-item.fade-item-1 {
  transition-delay: 0.5s;
}
.slider_effect_fade .fade-item.fade-item-2 {
  transition-delay: 0.6s;
}
.slider_effect_fade .fade-item.fade-item-3 {
  transition-delay: 0.7s;
}
.slider_effect_fade .fade-item.fade-item-4 {
  transition-delay: 0.8s;
}
.slider_effect_fade .scale-item {
  transform: scale(1.2);
  transition: all 0.5s linear;
}
.slider_effect_fade .scale-item.scale-item-1 {
  transition-delay: 0.3s;
}
.slider_effect_fade .width-item {
  width: 1%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.slider_effect_fade .width-item.width-item-3 {
  transition-delay: 0.7s;
}

@media (max-width: 767px) {
  .slider_effect_scale-md .swiper-slide {
    overflow: hidden;
  }
  .slider_effect_scale-md .swiper-slide.swiper-slide-active .scale-item {
    transform: scale(1);
  }
  .slider_effect_scale-md .scale-item {
    transform: scale(1.2);
    transition: all 1s linear;
  }
}

@media (max-width: 767px) {
  .slider_effect_fade-md .swiper-slide.swiper-slide-active .fade-item {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .slider_effect_fade-md .fade-item {
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .slider_effect_fade-md .fade-item.fade-box {
    transition-delay: 0.4s;
    transform: translateY(0px);
  }
  .slider_effect_fade-md .fade-item.fade-item-1 {
    transition-delay: 0.5s;
  }
  .slider_effect_fade-md .fade-item.fade-item-2 {
    transition-delay: 0.6s;
  }
  .slider_effect_fade-md .fade-item.fade-item-3 {
    transition-delay: 0.7s;
  }
  .slider_effect_fade-md .fade-item.fade-item-4 {
    transition-delay: 0.8s;
  }
}

.hover-sw-nav .tf-sw-nav {
  visibility: hidden;
}
.hover-sw-nav .tf-sw-nav.nav-next-swiper {
  margin-right: 20px;
}
.hover-sw-nav .tf-sw-nav.nav-prev-swiper {
  margin-left: 20px;
}
.hover-sw-nav:hover .tf-sw-nav {
  margin: 0;
  visibility: visible;
}

.tf-slideshow {
  position: relative;
}
.tf-slideshow .group-btn {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}
.tf-slideshow .group-btn .tf-sw-nav {
  pointer-events: all;
}
.tf-slideshow.type-2 .sld_image img {
  aspect-ratio: 2.9268292683;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1599px) {
  .tf-slideshow .group-btn {
    left: 15px;
    right: 15px;
  }
}
@media (max-width: 1439px) {
  .tf-slideshow .group-btn {
    display: none;
  }
  .tf-slideshow .slider-wrap {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .tf-slideshow .slider-wrap {
    height: 600px;
  }
}
@media (max-width: 575px) {
  .tf-slideshow .slider-wrap {
    height: 450px;
  }
}

.slider-wrap {
  position: relative;
}

.sld_content {
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
}
.sld_content .title_sld {
  margin-bottom: 20px;
}
.sld_content .sub-text_sld {
  margin-bottom: 32px;
}
.sld_content.pst-2 {
  top: calc(50% + 20px);
}
@media (min-width: 1200px) {
  .sld_content .action_sld {
    height: 58px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .sld_content.pst-2 {
    top: calc(50% + 47px);
  }
}
@media (max-width: 575px) {
  .sld_content .sub-text_sld {
    display: none;
  }
}

.sw-slide-show {
  position: relative;
}
.sw-slide-show .sw-dot-default {
  position: absolute;
  bottom: 20px;
  left: 15px;
  right: 15px;
  z-index: 2;
  width: auto;
}

.sld_image {
  height: 100%;
  overflow: hidden;
}
.sld_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box-swiper.sw-testimonial {
  position: relative;
}
.box-swiper.sw-testimonial .group-btn {
  position: absolute;
  justify-content: space-between;
  top: 40%;
  left: -60px;
  right: -60px;
  z-index: 2;
  pointer-events: none;
}
.box-swiper.sw-testimonial .group-btn > * {
  pointer-events: all;
}

.swiper-pagination-lock {
  margin: 0 !important;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.sw-pg-thumb {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sw-pg-thumb .swiper-pagination-bullet {
  margin: 0 !important;
  width: 40px;
  border-radius: 0;
  height: 4px;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.sw-pg-thumb .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  opacity: 0.3;
  width: 24px;
}
.sw-pg-thumb .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  height: calc(100% + 30px);
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ic-star-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00B67A;
  color: var(--white);
}
.ic-star-wrap.type-2 {
  background: linear-gradient(to right, #00B67A 50%, #E9E9E9 50%);
}

.testimonial-v01 .tes-image {
  height: 100%;
}
.testimonial-v01 .tes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 250px;
}
.testimonial-v01 .col-right {
  background-color: var(--primary);
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonial-v01 .content {
  display: grid;
  gap: 14px;
}
.testimonial-v01 .rate-list .icon {
  font-size: 20px;
}
.testimonial-v01 .sw-pg-thumb {
  position: unset;
}
.testimonial-v01 .sw-main-thumb {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .testimonial-v01 {
    display: flex;
    gap: 10px;
  }
  .testimonial-v01 > * {
    width: calc(50% - 5px);
  }
  .testimonial-v01 .rate-list .icon {
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .testimonial-v01 .col-right {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 107px;
    padding-bottom: 107px;
  }
  .testimonial-v01 .content {
    gap: 28px;
  }
  .testimonial-v01 .sw-main-thumb {
    margin-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .testimonial-v01 .col-right {
    padding: 30px 20px;
  }
}

.testimonial-v02 {
  padding: 40px;
  background-color: var(--white);
}
.testimonial-v02 .star-list {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-v02 .tes-author {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-v02 .tes-author .br-line {
  width: 8px;
}
.testimonial-v02 .tes-text {
  margin-bottom: 12px;
}

.testimonial-v03 {
  text-align: center;
}
.testimonial-v03 .star-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-v03 .ic-star-wrap {
  width: 40px;
  height: 40px;
}
.testimonial-v03 .ic-star-wrap .icon {
  font-size: 26px;
}
.testimonial-v03 .tes-text {
  margin-bottom: 35px;
}
.testimonial-v03 .author-name {
  margin-bottom: 4px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.group-btn {
  display: flex;
  align-items: center;
}

.group-btn-slider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wg-comment .title {
  margin-bottom: 20px;
}
.wg-comment .box-comment > .btn-reply {
  margin-bottom: 24px;
}
.wg-comment .box-comment:last-child > .btn-reply {
  margin-bottom: 0px;
}
.wg-comment .comment-list {
  display: grid;
  gap: 24px;
}
.wg-comment .comment_info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.wg-comment .info_image {
  border-radius: 50%;
  overflow: hidden;
}
.wg-comment .comment_text {
  margin-bottom: 12px;
}
.wg-comment .comment_reply {
  margin-left: 30px;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}
@media (min-width: 1200px) {
  .wg-comment .comment_reply {
    margin-left: 60px;
    border-left: 4px solid var(--line);
  }
}

.wg-leave-comment {
  padding: 20px 15px;
  border: 2px solid var(--line);
  border-radius: 8px;
}
.wg-leave-comment .title {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .wg-leave-comment {
    padding: 26px;
  }
}

.banner-v1 {
  position: relative;
  margin-bottom: 30px;
}
.banner-v1 .banner_image {
  border-radius: 20px;
  overflow: hidden;
}
.banner-v1 .banner_image img {
  min-height: 200px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3.6923076923;
}
.banner-v1 .banner_content {
  position: absolute;
  inset: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.banner-v1 .banner_content .tag {
  margin-bottom: 8px;
}

.wg-category {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
}
.wg-category .category-content {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 15px;
  text-align: center;
  display: grid;
  gap: 8px;
}
@media (min-width: 1200px) {
  .wg-category .category-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

.wg-category-v02 {
  position: relative;
  overflow: hidden;
}
.wg-category-v02 .cate-image {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(1.1);
  overflow: hidden;
}
.wg-category-v02 .cate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-category-v02 .cate-content {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: 20px;
  padding: 20px;
  background-color: var(--white);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-category-v02 .cate_desc,
.wg-category-v02 .action {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.wg-category-v02 .cate_desc {
  margin-top: -52px;
}
.wg-category-v02 .action {
  margin-top: -28px;
}
.wg-category-v02:hover .cate-content {
  background-color: var(--secondary);
}
.wg-category-v02:hover .cate-image {
  transform: scale(1);
}
.wg-category-v02:hover .cate_desc,
.wg-category-v02:hover .action {
  opacity: 1;
  visibility: visible;
  margin-top: 8px;
}
@media (max-width: 1199px) {
  .wg-category-v02 .cate-content {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

.wg-category-v03 .cate-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.wg-category-v03 .cate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-category-v03 .cate-content {
  text-align: center;
}
.wg-category-v03 .cate_name {
  margin-bottom: 12px;
}
.wg-category-v03.style-2 .cate-image {
  margin-bottom: 20px;
}
.wg-category-v03.style-2 .cate_name {
  margin-bottom: 8px;
}
.wg-category-v03.style-2 .cate-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wg-category-v03.style-2 .cate-image .action {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.wg-category-v03.style-2:hover .cate-image .action {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1440px) {
  .wg-category-v03.style-2 .cate_desc {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .wg-category-v03 .cate-image {
    margin-bottom: 24px;
  }
}

.wg-quantity {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 160px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.wg-quantity .icon {
  font-size: 24px;
  color: var(--primary);
}
.wg-quantity .quantity-product {
  width: 40px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  vertical-align: middle;
  color: var(--primary);
  pointer-events: none;
  font-weight: 600;
}
.wg-quantity.style-2 {
  border-radius: 100px;
}

.offer-countdown {
  max-width: 380px;
  width: 100%;
}
.offer-countdown .countdown__timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offer-countdown .countdown__item {
  display: grid;
  text-align: center;
  min-width: 60px;
}
.offer-countdown .countdown__value {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--primary);
  font-family: "Sora", sans-serif;
  margin-bottom: -4px;
}
.offer-countdown .countdown__label {
  font-size: 14px;
  line-height: 22px;
}

.category-v01 {
  background-color: var(--white);
  border-radius: 20px;
  padding: 20px 10px;
  text-align: center;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.category-v01 .cate-image {
  margin-bottom: 4px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.category-v01 .cate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-v01 .info_name {
  margin-bottom: 8px;
}
.category-v01:hover {
  border-color: var(--secondary);
}
.category-v01.style-2 {
  border: 0;
  display: grid;
  place-items: center;
}
.category-v01.style-2 .cate-image {
  max-width: 140px;
  margin-bottom: 8px;
}
@media (min-width: 1200px) {
  .category-v01 {
    padding: 20px;
  }
}

.banner-shop-detail {
  display: flex;
  align-items: start;
  gap: 20px;
  flex-wrap: wrap;
}
.banner-shop-detail .image-list {
  width: 100%;
  gap: 10px;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: 20px;
}
.banner-shop-detail .image-list .image {
  border-radius: 20px;
  overflow: hidden;
}
.banner-shop-detail .image-list .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-shop-detail .content > .br-line {
  margin-top: 16px;
  margin-bottom: 16px;
}
.banner-shop-detail .product-info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.banner-shop-detail .product-info-meta .infor_rate {
  display: flex;
  align-items: center;
  gap: 4px;
}
.banner-shop-detail .product-infor-name,
.banner-shop-detail .variant-unit {
  margin-bottom: 16px;
}
.banner-shop-detail .product-infor-price {
  margin-bottom: 8px;
}
.banner-shop-detail .variant-picker-item,
.banner-shop-detail .variant-quantity {
  display: grid;
  gap: 12px;
}
.banner-shop-detail .unit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 48px;
  border: 1px solid var(--line);
  padding-left: 20px;
  padding-right: 20px;
  color: var(--text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
  cursor: pointer;
}
.banner-shop-detail .unit-btn:hover {
  color: var(--primary);
}
.banner-shop-detail .unit-btn.active {
  background-color: var(--primary);
  color: var(--white);
}
.banner-shop-detail .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 12px;
}
.banner-shop-detail .variant-quantity {
  margin-bottom: 20px;
}
.banner-shop-detail .variant-quantity .quantity-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.banner-shop-detail .variant-quantity .wg-quantity {
  padding: 10px;
}
@media (min-width: 1200px) {
  .banner-shop-detail {
    gap: 40px;
    flex-wrap: nowrap;
  }
  .banner-shop-detail .content {
    max-width: 380px;
  }
  .banner-shop-detail .variant-quantity .tf-btn {
    height: 48px;
  }
}
@media (max-width: 1199px) {
  .banner-shop-detail {
    gap: 24px;
  }
}

.banner-v01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.banner-v01 .b-title {
  margin-bottom: 16px;
}
.banner-v01 .b-desc {
  margin-bottom: 32px;
}
.banner-v01 .banner-image {
  max-width: 794px;
}
.banner-v01 .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
  aspect-ratio: 1.6541666667;
}
@media (min-width: 768px) {
  .banner-v01 .banner-content {
    max-width: 436px;
    width: 100%;
  }
  .banner-v01 .b-desc {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .banner-v01 {
    flex-wrap: wrap-reverse;
  }
  .banner-v01 .banner-image img {
    min-height: 250px;
  }
  .banner-v01 .b-desc {
    margin-bottom: 20px;
  }
}

.banner-v02 {
  position: relative;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.banner-v02 .b-title {
  margin-bottom: 32px;
}
.banner-v02 .b-tag {
  margin-bottom: 8px;
}
.banner-v02 .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.banner-v02 .banner-content {
  position: absolute;
  inset: 20px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.banner-v02.style-2 .b-title {
  margin-bottom: 8px;
}
.banner-v02.style-2 .b-desc {
  margin-bottom: 20px;
}
.banner-v02.style-2 .banner-content {
  bottom: unset;
  right: unset;
  top: 47px;
  left: 28px;
}
.banner-v02.style-3 .banner-content {
  align-items: center;
  text-align: center;
}
.banner-v02.style-3 .b-title {
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .banner-v02 .b-title {
    margin-bottom: 24px;
  }
  .banner-v02 .banner-content {
    inset: 20px 15px;
  }
}
@media (max-width: 767px) {
  .banner-v02.style-2 .banner-image {
    width: 100%;
  }
  .banner-v02.style-2 .banner-image img {
    max-height: 300px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-v02 {
    height: 100%;
  }
}

.banner-v03 {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 1000px;
  background-color: var(--primary);
  position: relative;
}
.banner-v03 .wrap-1 {
  display: flex;
  gap: 20px;
}
.banner-v03 .wrap-1 .icon {
  font-size: 60px;
  color: var(--secondary);
}
.banner-v03 .wrap-2 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.banner-v03 .wrap-3 {
  display: grid;
}
.banner-v03 .wrap-3 .coupon-copy-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.banner-v03 .col-left,
.banner-v03 .col-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 576px) {
  .banner-v03 .wrap-1 {
    margin-right: 51px;
  }
  .banner-v03 .wrap-3 {
    margin-right: 50px;
  }
}
@media (min-width: 1200px) {
  .banner-v03 {
    margin-top: 31px;
    margin-bottom: 31px;
  }
  .banner-v03 .img-item {
    left: 37%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1440px) {
  .banner-v03 .img-item {
    left: 35%;
  }
}
@media (max-width: 1199px) {
  .banner-v03 {
    border-radius: 20px;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }
  .banner-v03 > * {
    width: 100%;
    justify-content: space-between;
  }
  .banner-v03 .img-item {
    display: flex;
    justify-content: center;
    max-width: 400px;
    width: 100%;
  }
  .banner-v03 .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .banner-v03 .col-left,
  .banner-v03 .col-right {
    justify-content: center;
    text-align: center;
  }
  .banner-v03 .coupon-copy-wrap {
    justify-content: center;
  }
  .banner-v03 .wrap-1 {
    gap: 12px;
  }
}

.box-ic-v01 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.box-ic-v01 .icon {
  font-size: 32px;
  display: flex;
  line-height: 1;
}
.box-ic-v01 .sub {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
@media (min-width: 992px) {
  .box-ic-v01 .icon {
    font-size: 40px;
  }
}
@media (min-width: 1440px) {
  .box-ic-v01 {
    max-width: 290px;
  }
}
@media (max-width: 575px) {
  .box-ic-v01 {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

.wrap-ic-list {
  gap: 15px;
}
@media (min-width: 1440px) {
  .wrap-ic-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.banner-countdown {
  display: grid;
}
.banner-countdown .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-countdown .banner-content {
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 15px;
}
.banner-countdown .sub {
  margin-bottom: 15px;
}
.banner-countdown .title,
.banner-countdown .box-countdown {
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .banner-countdown {
    display: flex;
  }
  .banner-countdown .banner-image {
    width: 31.25%;
  }
  .banner-countdown .banner-content {
    width: 37.5%;
  }
}
@media (max-width: 1199px) {
  .banner-countdown .banner-image img {
    max-height: 400px;
  }
}

.box-countdown .countdown__timer {
  display: flex;
  gap: 12px;
}
.box-countdown .countdown__item {
  display: grid;
  place-items: center;
}
.box-countdown .countdown__value {
  font-size: clamp(36px, 5vw, 56px);
  line-height: clamp(40px, 6vw, 72px);
  font-weight: 500;
  color: var(--primary);
  margin-bottom: -4px;
}
.box-countdown .countdown__custom {
  font-size: clamp(28px, 3vw, 40px);
  line-height: clamp(32px, 3.5vw, 63px);
  font-weight: 500;
  color: var(--primary);
}
.box-countdown .countdown__label {
  line-height: 28px;
}
@media (min-width: 1440px) {
  .box-countdown .countdown__timer {
    gap: 24px;
  }
}

.certified-item .certified_logo {
  margin-bottom: 24px;
}
.certified-item .certified_title {
  margin-bottom: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: flex;
}
.gallery-item .box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
}
.gallery-item .box-icon:hover {
  background-color: var(--black);
  color: var(--white);
}
.gallery-item.style-2 {
  border-radius: 16px;
}
@media (min-width: 992px) {
  .gallery-item .box-icon {
    opacity: 0;
    visibility: hidden;
  }
  .gallery-item:hover .box-icon {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .gallery-item .box-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  .gallery-item.style-2 .box-icon {
    width: 60px;
    height: 60px;
  }
  .gallery-item.style-2 .box-icon .icon {
    font-size: 32px;
  }
  .gallery-item.style-2 .box-icon:not(:hover) {
    color: var(--primary);
  }
}

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

.banner-benefit .group-image {
  gap: 8px;
}
.banner-benefit .group-image .image {
  border-radius: 16px;
  overflow: hidden;
}
.banner-benefit .group-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-benefit .title {
  margin-bottom: 16px;
}
.banner-benefit .desc {
  margin-bottom: 28px;
}
.banner-benefit .group-image {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .banner-benefit .desc {
    margin-bottom: 40px;
  }
  .banner-benefit .content {
    max-width: 460px;
    margin-left: auto;
  }
}

.wg-benefit {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.wg-benefit .ic-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-benefit .ic-wrap .icon {
  font-size: 60px;
  color: var(--primary);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.wg-benefit .benefit_name {
  margin-bottom: 8px;
}
.wg-benefit .br-line {
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-benefit:hover .ic-wrap {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.wg-benefit:hover .ic-wrap .icon {
  transform: rotateY(180deg);
}
.wg-benefit:hover .br-line {
  background-color: var(--secondary);
}

.about-video {
  position: relative;
}
.about-video .video-thumb {
  border-radius: 20px;
  overflow: hidden;
}
.about-video .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}
.about-video .btn-view-video {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  font-size: 36px;
}
.about-video .btn-view-video:hover {
  background-color: var(--secondary);
}
@media (max-width: 767px) {
  .about-video .btn-view-video {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.section-404 {
  height: 100vh;
}

.banner-404 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.banner-404 .banner-content {
  position: relative;
  margin-top: -64px;
}
.banner-404 .title {
  margin-bottom: 16px;
}
.banner-404 .desc {
  margin-bottom: 40px;
}

.wg-exper {
  padding: 39px;
  border: 1px solid var(--line);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-exper .ic-wrap {
  font-size: 80px;
  margin-bottom: 24px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: max-content;
}
.wg-exper .name {
  margin-bottom: 12px;
}
.wg-exper::before {
  content: "";
  position: absolute;
  inset: 0px;
  pointer-events: none;
  border-radius: 20px;
  border: 2px solid var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.wg-exper:hover {
  border-color: var(--primary);
}
.wg-exper:hover::before {
  opacity: 1;
  visibility: visible;
}
.wg-exper:hover .ic-wrap {
  transform: rotateY(360deg);
}

.history-timeline {
  position: relative;
}
.history-timeline > .br-line {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  background: var(--primary);
  opacity: 0.1;
  height: 4px;
}

.wg-history .his-year {
  margin-bottom: 8px;
}
.wg-history .br-dot {
  margin-top: 16px;
  margin-bottom: 16px;
}

.card-member-v01 {
  display: grid;
  gap: 20px;
}
.card-member-v01 .member-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.card-member-v01 .member-info {
  display: grid;
  gap: 4px;
}
.card-member-v01 .social-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 12px;
  border-radius: 12px;
  background-color: var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
}
.card-member-v01 .tf-social-icon-2 {
  gap: 16px;
}
.card-member-v01 .tf-social-icon-2 a {
  width: 36px;
  height: 36px;
}
.card-member-v01:hover .social-wrap {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.card-service-v01 {
  display: grid;
  place-items: start;
  gap: 20px;
  padding: 23px;
  padding-bottom: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}
.card-service-v01 .card-image {
  border-radius: 16px;
  overflow: hidden;
}
.card-service-v01 .name {
  margin-bottom: 8px;
}
.card-service-v01::before {
  content: "";
  inset: -1px;
  position: absolute;
  border: 2px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 16px;
}
.card-service-v01:hover::before {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .card-service-v01 {
    padding: 20px 15px;
  }
}

.benefit-list {
  display: grid;
  gap: 12px;
}
.benefit-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}
.benefit-list .benefit-item .icon {
  font-size: 20px;
}

.wg-plan {
  display: grid;
  gap: 24px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.wg-plan .plan-price {
  display: flex;
  align-items: end;
}
.wg-plan .plan-title {
  margin-bottom: 4px;
}
.wg-plan .plan-image {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.wg-plan .plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wg-plan .plan-badge {
  position: absolute;
  top: 34px;
  right: -1px;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}
.wg-plan.style-2 {
  background-color: var(--primary);
  border-color: var(--primary);
  position: relative;
}
.wg-plan.style-2 .benefit-item {
  color: var(--white);
}
.wg-plan.style-2 .br-line {
  background-color: var(--white-10);
}
@media (min-width: 768px) {
  .wg-plan .plan-price .per-for {
    padding-bottom: 10px;
  }
}
@media (max-width: 1199px) {
  .wg-plan {
    padding: 20px 15px;
  }
  .wg-plan .plan-badge {
    top: 10px;
  }
}

.wg-service {
  display: flex;
  gap: 30px;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  flex-direction: column;
}
.wg-service > * {
  flex: 1;
}
.wg-service .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.270661157;
}
.wg-service .content {
  display: grid;
  place-items: start;
  gap: 28px;
}
.wg-service .title {
  margin-bottom: 12px;
}
.wg-service.style-2 .title {
  margin-bottom: 0;
}
.wg-service.style-2 .image {
  border-radius: 16px;
  overflow: hidden;
}
.wg-service.style-2 .image img {
  aspect-ratio: 1;
}
@media (min-width: 992px) {
  .wg-service {
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .wg-service {
    gap: 60px;
  }
  .wg-service.style-2 {
    gap: 100px;
  }
  .wg-service.style-2 .content {
    max-width: 575px;
  }
}
@media (max-width: 991px) {
  .wg-service .image {
    order: -1;
  }
  .wg-service .image img {
    max-height: 350px;
  }
  .wg-service .content {
    gap: 20px;
  }
}

.sidebar-service {
  border: 1px solid var(--line);
  padding: 23px;
  border-radius: 16px;
}
.sidebar-service .title {
  margin-bottom: 16px;
}
.sidebar-service .list li:not(:last-child) a {
  padding-bottom: 6px;
}
.sidebar-service .list li:not(:first-child) a {
  padding-top: 6px;
}

#goTop {
  position: fixed;
  padding: 0;
  bottom: 90px;
  right: 20px;
  width: 38px;
  height: 38px;
  background: var(--white);
  color: var(--primary);
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#goTop .border-progress {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-radius: 50%;
  border: 1px solid #0B5755;
  mask-image: conic-gradient(#0B5755 var(--progress-angle, 0deg), transparent 0);
  -webkit-mask-image: conic-gradient(#0B5755 var(--progress-angle, 0deg), transparent 0);
  content: "";
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#goTop.show {
  opacity: 1;
  visibility: visible;
}
#goTop .icon {
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: iconBounce 2s linear 0s infinite;
}
#goTop .icon-arrow-right-2 {
  transform: rotate(-90deg);
}
#goTop:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  #goTop {
    right: 40px;
  }
}
@media (max-width: 1199px) {
  #goTop.pos1 {
    bottom: 200px;
  }
}
@media (max-width: 767px) {
  #goTop.pos1 {
    bottom: 230px;
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: 0;
  padding: 0;
  padding-right: 16px;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  outline: none;
  position: relative;
  transition: all linear 0.2s;
  user-select: none;
  white-space: nowrap;
  width: max-content;
  border-radius: 0;
  color: var(--main);
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
  border-color: var(--line);
}

.nice-select:after {
  border-bottom: 1.7px solid var(--main);
  border-right: 1.7px solid var(--main);
  content: "";
  height: 8px;
  width: 8px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}

.nice-select.open .list {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: 100%;
  -moz-transform: scale(1) translateY(0);
  -o-transform: scale(1) translateY(0);
}

.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select.disabled:after {
  border-color: #cccccc;
}

.nice-select.wide {
  width: 100%;
}

.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.nice-select.right {
  float: right;
}

.nice-select.right .list {
  left: auto;
  right: 0;
}

.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}

.nice-select.small:after {
  height: 4px;
  width: 4px;
}

.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}

.nice-select .list {
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
  font-size: 14px;
  max-height: 155px;
  overflow: auto;
}

.nice-select .list.style {
  max-height: unset;
}

.nice-select .list::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.nice-select .list::-webkit-scrollbar-thumb {
  background-color: #a7a7a7;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.nice-select .list::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: #f5f5f5;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}

.nice-select .option {
  cursor: pointer;
  font-weight: 500;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  font-size: 16px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: var(--main);
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: var(--white);
  color: var(--primary);
}

.nice-select .option.selected {
  font-weight: 600;
}

.nice-select .option.disabled {
  color: var(--main);
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

.tf-dropdown-select.style-default {
  width: unset !important;
  display: flex;
}
.tf-dropdown-select.style-default > select {
  display: none !important;
}
.tf-dropdown-select.style-default > .dropdown-toggle {
  padding: 0px;
  padding-right: 20px;
  background-color: transparent !important;
  border: 0;
  outline: none !important;
  color: var(--black);
}
.tf-dropdown-select.style-default > .dropdown-toggle::after {
  border: 0;
  position: absolute;
  right: 0;
  content: "\e907";
  font-family: "icomoon";
  font-size: 12px;
  line-height: 1;
  color: var(--black);
  margin-left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.tf-dropdown-select.style-default .filter-option-inner-inner {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  gap: 8px;
}
.tf-dropdown-select.style-default .filter-option-inner-inner img {
  width: 24px;
  height: 22px;
}
.tf-dropdown-select.style-default > .dropdown-menu {
  overflow: unset !important;
  margin-top: 17px !important;
  margin-bottom: 17px !important;
  padding: 15px 20px;
  border-radius: 0;
  border: 0;
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 18px 0px;
}
.tf-dropdown-select.style-default > .dropdown-menu a {
  padding: 5px 0;
}
.tf-dropdown-select.style-default > .dropdown-menu a .text {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.tf-dropdown-select.style-default > .dropdown-menu a .text img {
  width: 20px;
  height: 20px;
}
.tf-dropdown-select.style-default > .dropdown-menu a:hover, .tf-dropdown-select.style-default > .dropdown-menu a:active, .tf-dropdown-select.style-default > .dropdown-menu a.active {
  color: var(--primary) !important;
  background-color: unset !important;
}
.tf-dropdown-select.style-default > .dropdown-menu::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--white);
  top: 0;
  left: 50%;
  z-index: 2;
}
.tf-dropdown-select.style-default > .dropdown-menu[data-popper-placement=top-start]::after {
  display: none;
}
.tf-dropdown-select.style-default > .dropdown-menu[data-popper-placement=top-start]::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  transform: translate(-50%, 50%) rotate(45deg);
  background-color: var(--white);
  bottom: 0%;
  left: 50%;
  z-index: 2;
}
.tf-dropdown-select.style-default .dropdown-menu > .inner {
  overflow-y: hidden !important;
}
.tf-dropdown-select.type-currencies > .dropdown-menu {
  width: max-content;
}
.tf-dropdown-select.type-languages > .dropdown-menu {
  width: 110px !important;
}
.tf-dropdown-select.color-white > .dropdown-toggle {
  color: var(--white);
}
.tf-dropdown-select.color-white > .dropdown-toggle::after {
  color: var(--white);
}
.tf-dropdown-select.color-white-2 > .dropdown-toggle {
  color: var(--text);
}
.tf-dropdown-select.color-white-2 > .dropdown-toggle::after {
  color: var(--text);
}
.tf-dropdown-select.color-white-3 > .dropdown-toggle {
  color: var(--line-4);
}
.tf-dropdown-select.color-white-3 > .dropdown-toggle::after {
  color: var(--line-4);
}

.tf-dropdown-wrap {
  display: flex;
  gap: 20px;
}

.tf-dropdown-sort {
  padding: 6px 11px;
  min-width: 164px;
  border: 1px solid var(--line);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.tf-dropdown-sort .icon {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-bottom: 2px;
}
.tf-dropdown-sort .btn-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  gap: 12px;
  color: var(--primary);
}
.tf-dropdown-sort .btn-select .icon {
  font-size: 20px;
}
.tf-dropdown-sort.show .btn-select .icon {
  transform: rotate(180deg);
}
.tf-dropdown-sort .text-sort-value {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tf-dropdown-sort .dropdown-menu {
  min-width: 170px;
  border: 1px solid var(--line);
  padding: 10px 5px;
  border-radius: 0px;
  max-height: 68vh;
  isolation: isolate;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  z-index: 99;
}
.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar {
  width: 3px;
}
.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-thumb {
  border-radius: 4px;
}
.tf-dropdown-sort .select-item {
  position: relative;
  text-transform: capitalize;
  color: var(--black);
  padding: 0 15px;
  line-height: 30px;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-dropdown-sort .select-item:hover, .tf-dropdown-sort .select-item.active {
  background-color: #ebebeb;
}
.tf-dropdown-sort:hover {
  border-color: var(--primary);
}

.tf-select-category {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--black);
}

.dropdown-filter .dropdown-toggle {
  min-width: 91px;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dropdown-filter .dropdown-toggle::after {
  display: none;
}
.dropdown-filter .dropdown-toggle.show .icon {
  transform: rotate(180deg);
}
.dropdown-filter .dropdown-toggle:hover {
  border-color: var(--dark);
}
.dropdown-filter .icon {
  font-size: 12px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 2px;
}
.dropdown-filter .text-value {
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
}
.dropdown-filter .dropdown-menu {
  margin-top: -2px !important;
  min-width: 238px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 10px;
  max-height: 68vh;
  isolation: isolate;
  overscroll-behavior-y: contain;
  overflow-y: auto;
  z-index: 99;
  box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.1);
}
.dropdown-filter .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}
.dropdown-filter .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--line);
}
.dropdown-filter .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
.dropdown-filter .dropdown-menu.drop-menu-brand {
  max-height: 180px;
}
.dropdown-filter .filter-color-box,
.dropdown-filter .filter-size-box {
  gap: 8px;
}
@media (min-width: 1200px) {
  .dropdown-filter .dropdown-toggle {
    padding: 15px 31px;
  }
  .dropdown-filter .dropdown-menu {
    min-width: 300px;
    padding: 25px 15px;
  }
}

.select-category .dropdown_product_cat {
  display: none;
}
.select-category .close-option {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.select-category .close-option:hover {
  color: var(--primary);
}
.select-category .select-options {
  overflow-y: auto;
  display: none;
  position: absolute;
  top: -3px;
  right: -3px;
  left: -3px;
  z-index: 999;
  margin: 0;
  padding: 20px;
  list-style: none;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.05);
  min-width: 200px;
}
.select-category .select-options li {
  display: inline-block;
  width: 32.88%;
  color: var(--gray);
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 8px 10px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-category .select-options li:hover {
  color: var(--primary);
}
.select-category .header-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 8px;
  color: var(--black);
}

.tf-select-custom {
  display: block;
  cursor: pointer;
  min-width: 168px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 38px;
  padding-left: 16px;
  font-weight: 600;
  color: var(--primary);
  position: relative;
}
.tf-select-custom::after {
  content: "\e907";
  position: absolute;
  font-family: "icomoon";
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1439px) {
  .tf-select-custom {
    min-width: 120px;
    padding-right: 20px;
  }
  .tf-select-custom::after {
    right: 0;
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -17px;
  left: auto;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal {
  height: 4px;
}

.noUi-target {
  border: 0;
}

.noUi-base .noUi-connects {
  border-radius: 100px;
  background-color: var(--line);
}

.noUi-connect {
  background-color: var(--primary);
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  box-shadow: unset;
  cursor: pointer;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after,
.noUi-vertical .noUi-handle::before,
.noUi-vertical .noUi-handle::after {
  content: none;
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
  right: -8px;
}

/*-- CSS --*/
.tf-btn-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 8px 12px;
  color: var(--primary);
}
.tf-btn-filter .icon {
  font-size: 20px;
}
.tf-btn-filter:hover {
  background-color: var(--line);
}

#filterDropdown {
  min-width: 93px;
}

.tf-shop-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tf-shop-control .tf-control-sorting {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.tf-control-layout {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-control-layout .tf-view-layout-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--primary);
  font-size: 20px;
  position: relative;
}
.tf-control-layout .tf-view-layout-switch:hover i, .tf-control-layout .tf-view-layout-switch.active i {
  opacity: 0;
  visibility: hidden;
}
.tf-control-layout .tf-view-layout-switch:hover i.ic-2, .tf-control-layout .tf-view-layout-switch.active i.ic-2 {
  opacity: 1;
  visibility: visible;
}
.tf-control-layout .tf-view-layout-switch i {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-control-layout .tf-view-layout-switch .ic-2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .tf-view-layout-switch {
    font-size: 14px;
  }
}

.wrapper-shop {
  transition: all 0.3s ease-in-out;
  animation: fadeShop 0.5s ease-in-out;
  gap: 30px;
}
@media (max-width: 575px) {
  .wrapper-shop {
    column-gap: 12px;
    row-gap: 32px;
  }
}

.wrapper-control-shop {
  position: relative;
}
.wrapper-control-shop.loading-shop * {
  display: none !important;
}
.wrapper-control-shop.loading-shop::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  border-top: 2px solid var(--black);
  border-right: 2px solid var(--black);
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 10000;
}
@media (min-width: 1200px) {
  .wrapper-control-shop .tf-grid-layout .wg-pagination {
    margin-top: 16px;
    gap: 40px 20px;
  }
}

@keyframes fadeShop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.listLayout-wrapper #product-count-grid {
  display: none;
}
.listLayout-wrapper #product-count-list {
  display: block;
}

.gridLayout-wrapper #product-count-grid {
  display: block;
}
.gridLayout-wrapper #product-count-list {
  display: none;
}

.widget-facet {
  overflow: hidden;
}
.widget-facet .facet-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--primary);
}
.widget-facet .facet-title .icon {
  transform: rotate(0deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.widget-facet .facet-title.collapsed {
  margin-bottom: 0px;
}
.widget-facet .facet-title.collapsed .icon {
  transform: rotate(180deg);
}

.filter-group-check.group-category a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: var(--text);
}
.filter-group-check .rate-list li:last-child {
  margin-left: 8px;
}
.filter-group-check .list-item {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.filter-group-check .list-item:not(:last-child) {
  margin-bottom: 12px;
}
.filter-group-check .label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-group-check .tf-check {
  min-width: unset;
  aspect-ratio: 1;
}
.filter-group-check .tf-check:checked + label {
  color: var(--primary);
}

.filter-size-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-size-box .size-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background-color: var(--white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 50%;
  color: var(--text);
}
.filter-size-box .size-item.active, .filter-size-box .size-item:hover {
  background-color: var(--black);
  color: var(--white);
}
.filter-size-box .size-item.disabled {
  color: var(--black-4);
  pointer-events: none;
}
.filter-size-box .size-item.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 53.568px;
  height: 1px;
  background-color: var(--black-4);
  transform: rotate(45deg);
  transform-origin: top left;
}
.filter-size-box .size-item.over-size {
  width: 120px;
  border-radius: 999px;
}
@media (min-width: 1200px) {
  .filter-size-box .size-item {
    width: 56px;
    height: 56px;
  }
}

.filter-color-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-color-box .color-item {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--line);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--white);
  cursor: pointer;
  padding: 4px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.filter-color-box .color-item .color {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.filter-color-box .color-item.active {
  border-color: var(--dark) !important;
}
.filter-color-box .color-text {
  display: none;
}
@media (min-width: 1200px) {
  .filter-color-box .color-item {
    width: 40px;
    height: 40px;
  }
}

.meta-filter-shop {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.meta-filter-shop #applied-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-filter-shop .filter-tag,
.meta-filter-shop .remove-all-filters {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  gap: 8px;
  padding: 3px 15px;
  border-radius: 100px;
  color: var(--black);
  border: 1px solid var(--line);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.meta-filter-shop .filter-tag .icon,
.meta-filter-shop .remove-all-filters .icon {
  font-size: 8px;
  aspect-ratio: 1;
}
.meta-filter-shop .filter-tag:hover,
.meta-filter-shop .remove-all-filters:hover {
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}
@media (max-width: 575px) {
  .meta-filter-shop .filter-tag,
  .meta-filter-shop .remove-all-filters {
    gap: 6px;
    padding: 6px 12px;
  }
}
.meta-filter-shop.type-drop {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .meta-filter-shop {
    margin-bottom: 30px;
  }
}

.overlay-filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: url(../images/cursor-close.svg), auto;
}
.overlay-filter.show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .overlay-filter.type-drawer {
    display: none;
  }
}

.widget-price {
  display: grid;
  gap: 16px;
}
.widget-price .price-val-range {
  padding: 0px 8px;
  margin: 6px 0px;
}
.widget-price .price-box {
  gap: 20px;
}
.widget-price .price-val {
  font-weight: 600;
  color: var(--primary);
  position: relative;
}
.widget-price .price-val::before {
  content: attr(data-currency);
}
.widget-price .price-val_wrap {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.widget-price .box-wrap {
  display: grid;
  gap: 4px;
}

.tf-list-layout {
  display: grid;
  gap: 24px;
}
@media (min-width: 1200px) {
  .tf-list-layout {
    gap: 40px;
  }
}

.tf-grid-layout.tf-col-5 .countdown__item {
  font-size: 20px;
  line-height: 27px;
}
.tf-grid-layout.tf-col-5 .variant-box {
  right: 15px;
  left: 15px;
}
.tf-grid-layout.tf-col-5 .product-size_list {
  padding: 12px 24px;
  gap: 6px;
}
.tf-grid-layout.tf-col-5 .product-size_list .size-item:not(:last-child) {
  min-width: 32px;
  padding-right: 6px;
}
.tf-grid-layout.tf-col-5 .card-product.style-2 .hover-tooltip .tooltip, .tf-grid-layout.tf-col-5 .card-product.style-4 .hover-tooltip .tooltip {
  display: none;
}
.tf-grid-layout.tf-col-6 .product-countdown {
  transform: unset;
  left: 7px;
  right: 7px;
  bottom: 7px;
  padding: 12px 16px;
}
.tf-grid-layout.tf-col-6 .countdown__item {
  font-size: 18px;
  line-height: 24px;
}
.tf-grid-layout.tf-col-6 .variant-box:not(.bot) {
  bottom: 7px;
  right: 7px;
  left: 7px;
}
.tf-grid-layout.tf-col-6 .product-action_list,
.tf-grid-layout.tf-col-6 .product-action_bot {
  display: none;
}
.tf-grid-layout.tf-col-6 .product-size_list {
  padding: 12px 16px;
  gap: 6px;
}
.tf-grid-layout.tf-col-6 .product-size_list .size-item {
  min-width: 22px;
}
.tf-grid-layout.tf-col-6 .product-size_list .size-item:not(:last-child) {
  min-width: 28px;
  padding-right: 6px;
}
.shop-sale-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.shop-sale-text label {
  cursor: pointer;
}

.tf-filter-dropdown,
.meta-dropdown-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tf-shop-change {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media (min-width: 1200px) {
  .tf-shop-change {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .tf-shop-change {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .tf-group-filter {
    margin-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .filter-drawer-wrap {
    max-width: 100%;
    position: absolute;
    z-index: 90;
    padding: 32px;
    top: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
  }
  .filter-drawer-wrap .tf-group-filter {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .filter-drawer-wrap .collapse-body {
    padding-bottom: 0 !important;
  }
  .filter-drawer-wrap .widget-facet {
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
  }
  .filter-drawer-wrap .widget-facet .collapse:not(.show) {
    display: block;
  }
  .filter-drawer-wrap .widget-facet .collapsing {
    height: auto;
    transition: unset;
  }
  .filter-drawer-wrap .facet-title {
    padding: 0px;
    margin-bottom: 24px !important;
  }
  .filter-drawer-wrap .facet-title .icon {
    display: none;
  }
  .filter-drawer-wrap .filter-color-box {
    padding-right: 0;
  }
  .filter-drawer-wrap .canvas-body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow-y: unset;
    gap: 32px;
  }
  .filter-drawer-wrap.show {
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
  }
}

.sb-banner {
  position: relative;
}
.sb-banner .image {
  border-radius: 12px;
  overflow: hidden;
}
.sb-banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sb-banner .content {
  position: absolute;
  top: 26px;
  left: 20px;
  right: 20px;
  text-align: center;
}
.sb-banner .title {
  margin-bottom: 8px;
}
.sb-banner .sub-title {
  margin-bottom: 16px;
}
.sb-banner .btn-action {
  height: 38px;
  padding-left: 16px;
  padding-right: 16px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.card-product {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.card-product::after {
  content: "";
  position: absolute;
  inset: 0px;
  border: 2px solid var(--line);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  border-radius: 12px;
  z-index: 21;
}
.card-product::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 21;
  border: 1px solid var(--line);
}
.card-product:hover::after {
  border-color: var(--primary);
  opacity: 1;
  visibility: visible;
}
.card-product .product-img {
  overflow: hidden;
  border-radius: 12px;
}
.card-product .card-product_info {
  padding: 20px 15px;
  display: grid;
  gap: 16px;
}
.card-product .rate-product {
  display: flex;
  align-items: center;
}
.card-product .product_info_wrap {
  display: grid;
  gap: 8px;
}
.card-product .product-desc {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.card-product.style-large {
  background-color: var(--surface);
  border-radius: 0;
  border: 0;
  justify-content: space-between;
}
.card-product.style-large::after, .card-product.style-large::before {
  display: none;
}
.card-product.style-large .card-product_wrapper {
  aspect-ratio: unset;
  display: flex;
  justify-content: center;
}
.card-product.style-large .product-img {
  max-width: 526px;
  margin: 0 auto;
}
.card-product.style-large .btn-add-to-card {
  background: var(--white);
}
@media (min-width: 992px) {
  .card-product.style-large .card-product_info {
    padding: 0px 40px 40px;
  }
  .card-product.style-large .card-product_info .btn-add-to-card {
    min-width: 260px;
  }
  .card-product.style-large .product-action_list .box-icon {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 1200px) {
  .card-product.style-large .card-product_wrapper {
    padding-top: 40px;
  }
  .card-product.style-large .card-product_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-product.style-large .btn-add-to-card {
    height: 46px;
  }
  .card-product .card-product_info {
    padding: 20px;
  }
  .card-product:hover .product-action_list li {
    opacity: 1;
    visibility: visible;
  }
  .card-product:hover .product-action_list li:nth-child(1) {
    transform: translateX(0px);
  }
  .card-product:hover .product-action_list li:nth-child(2) {
    transform: translateX(0px);
    transition-delay: 0.1s;
  }
  .card-product:hover .product-action_list li:nth-child(3) {
    transform: translateX(0px);
    transition-delay: 0.2s;
  }
  .card-product:hover .product-action_list li:nth-child(4) {
    transform: translateX(0px);
    transition-delay: 0.3s;
  }
}
@media (max-width: 575px) {
  .card-product .name-product {
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
  }
}

.price-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.price-wrap .price-old {
  color: var(--text-2);
  text-decoration: line-through;
}

.rate-list {
  display: flex;
  align-items: center;
  color: var(--line);
}
.rate-list li {
  display: flex;
}
.rate-list .icon {
  font-size: 12px;
  aspect-ratio: 1;
}
.rate-list.type-2 li {
  padding: 2px;
}
.rate-list.rate-click li {
  color: var(--line);
}
.rate-list.rate-click li.hover, .rate-list.rate-click li.active {
  color: var(--primary);
}

.card-product_wrapper {
  aspect-ratio: 1;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card-product_wrapper .product-img {
  overflow: hidden;
  position: relative;
}
.card-product_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 1.5s cubic-bezier(0, 0, 0.44, 1.18);
}
.card-product_wrapper:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.product-action_list {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  top: 8px;
  right: 8px;
  z-index: 6;
}
.product-action_list .box-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--line);
  color: var(--primary);
}
.product-action_list .box-icon:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.product-action_list .icon {
  font-size: 18px;
}
@media (min-width: 1200px) {
  .product-action_list {
    top: 12px;
    right: 12px;
  }
  .product-action_list .box-icon {
    width: 40px;
    height: 40px;
  }
  .product-action_list .icon {
    font-size: 24px;
  }
  .product-action_list li {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.btn-add-to-card {
  height: 38px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 1000px;
  color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-add-to-card .text {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-add-to-card .text.text-1 {
  opacity: 1;
  visibility: visible;
}
.btn-add-to-card .text.text-2 {
  position: absolute;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}
.btn-add-to-card .list-option {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-add-to-card .list-option .item-option {
  font-weight: 500;
  border-radius: 99px;
  min-width: 58px;
  padding: 4px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.btn-add-to-card .list-option .item-option:hover {
  color: var(--white);
  background-color: var(--primary);
}
.btn-add-to-card.active {
  background-color: var(--white);
  color: var(--white);
}
.btn-add-to-card.active .list-option {
  opacity: 1;
  visibility: visible;
}
.btn-add-to-card:hover .text.text-1 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}
.btn-add-to-card:hover .text.text-2 {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.btn-add-to-card.not-size .text.text-1 {
  opacity: 1;
  visibility: visible;
  transform: unset;
}
.btn-add-to-card.not-size .text.text-2 {
  display: none;
}
.btn-add-to-card.not-size:hover {
  background-color: var(--primary);
}
.btn-add-to-card.not-size:hover .text {
  color: var(--white);
}
@media (max-width: 1199px) {
  .btn-add-to-card:not(.not-size) {
    background-color: var(--white);
    color: var(--white);
    pointer-events: none;
  }
  .btn-add-to-card .list-option {
    opacity: 1;
    visibility: visible;
    inset: 7px 8px 7px 8px;
    justify-content: space-around;
    gap: 4px;
  }
  .btn-add-to-card .list-option li {
    pointer-events: all;
  }
  .btn-add-to-card .list-option .item-option {
    min-width: unset;
    padding: 4px 8px;
  }
}
@media (max-width: 575px) {
  .btn-add-to-card .list-option li {
    display: none;
  }
  .btn-add-to-card .list-option li:last-child {
    display: block;
  }
  .btn-add-to-card .list-option li:nth-last-child(2) {
    display: block;
  }
}

.list-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-sale {
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  background-color: var(--secondary);
  color: var(--primary);
}

@media (min-width: 576px) {
  .product-list {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
  }
  .product-list .card-product_wrapper {
    max-width: 260px;
  }
  .product-list .btn-add-to-card {
    max-width: 260px;
  }
  .product-list .product_info_wrap {
    gap: 12px;
  }
  .product-list .card-product_info {
    padding: 0;
  }
}
@media (min-width: 1200px) {
  .product-list {
    gap: 40px;
    padding: 20px;
  }
}

/* Product Single */
.product-thumbs-slider {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-thumbs-slider .tf-product-media-thumbs .item {
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-thumbs-slider .tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item {
  border-color: var(--primary);
}
.product-thumbs-slider .tf-product-media-main {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.product-thumbs-slider .tf-product-media-main .item {
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .product-thumbs-slider.style-row {
    flex-direction: row;
  }
  .product-thumbs-slider.style-row .flat-wrap-media-product {
    width: calc(100% - 100px);
    aspect-ratio: 1;
  }
  .product-thumbs-slider.style-row .tf-product-media-thumbs {
    width: 80px;
  }
  .product-thumbs-slider.style-row .tf-product-media-thumbs .swiper-slide {
    max-height: 80px;
  }
  .product-thumbs-slider.style-row.row_left .flat-wrap-media-product {
    order: 1;
  }
}

@media (min-width: 1200px) {
  .tf-product-media-wrap {
    padding-right: 15px;
  }
}

.tf-product-media-thumbs {
  flex-shrink: 0;
  margin: 0;
  width: 100%;
}
.tf-product-media-thumbs .swiper-slide {
  aspect-ratio: 1;
  max-width: 80px;
}
.tf-product-media-thumbs .swiper-slide .item {
  width: 100%;
}
.tf-product-media-thumbs .swiper-slide .item img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tf-product-info-wrap {
  display: grid;
  gap: 20px;
}
.tf-product-info-wrap .tf-product-info-heading {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.tf-product-info-wrap .tf-product-info-heading .product-info-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tf-product-info-wrap .tf-product-info-heading .infor_rate,
.tf-product-info-wrap .tf-product-info-heading .infor_sold {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tf-product-info-wrap .tf-product-info-heading .product-infor-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tf-product-info-wrap .tf-product-info-heading .badge-sale {
  margin-left: 8px;
  border-radius: 144px;
}
.tf-product-info-wrap .tf-product-info-heading .product-infor-name {
  margin-bottom: 20px;
}
.tf-product-info-wrap .tf-product-info-heading .product-infor-price {
  margin-bottom: 12px;
}
.tf-product-info-wrap .tf-product-variant {
  display: grid;
  gap: 28px;
}
.tf-product-info-wrap .tf-product-variant .variant-picker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.tf-product-info-wrap .tf-product-variant .variant-picker-values {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-product-info-wrap .tf-product-variant .unit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  height: 50px;
  border: 1px solid var(--line);
  padding-left: 20px;
  padding-right: 20px;
  color: var(--text-2);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}
.tf-product-info-wrap .tf-product-variant .unit-btn:hover {
  color: var(--primary);
}
.tf-product-info-wrap .tf-product-variant .unit-btn.active {
  background-color: var(--primary);
  color: var(--white);
}
.tf-product-info-wrap .tf-product-variant .variant-picker-label-value {
  font-weight: normal;
  font-size: 16px;
}
.tf-product-info-wrap .tf-product-total-btn {
  display: grid;
  gap: 10px;
}
.tf-product-info-wrap .tf-product-total-btn .group-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf-product-info-wrap .tf-product-total-btn .btn-add-wishlist,
.tf-product-info-wrap .tf-product-total-btn .btn-action_compare {
  flex-shrink: 0;
}
.tf-product-info-wrap .tf-product-more-info {
  display: grid;
  gap: 12px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.tf-product-info-wrap .tf-product-more-info .has-icon {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tf-product-info-wrap .tf-product-more-info .has-icon .icon {
  font-size: 20px;
  color: var(--primary);
}
.tf-product-info-wrap .tf-product-more-info .tf-extra-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.tf-product-info-wrap .tf-product-additional {
  display: grid;
  gap: 4px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.tf-product-info-wrap .tf-product-additional li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tf-product-info-wrap .tf-product-how-payment {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.tf-product-info-wrap .tf-product-how-payment .payment-method-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tf-product-info-wrap .tf-product-offer-end {
  display: grid;
  gap: 16px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.tf-product-info-wrap .tf-product-offer-end .hurry-up-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tf-product-info-wrap .tf-product-offer-end .sold-progress {
  display: flex;
  justify-content: space-between;
}
.tf-product-info-wrap .tf-product-offer-end .sold-it-progress {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.tf-product-info-wrap .tf-product-offer-end .sold-it {
  padding-top: 5px;
  display: grid;
  gap: 8px;
  max-width: 380px;
  width: 100%;
}
@media (min-width: 1200px) {
  .tf-product-info-wrap {
    padding-left: 15px;
  }
  .tf-product-info-wrap .tf-product-total-btn .btn-add-wishlist,
  .tf-product-info-wrap .tf-product-total-btn .btn-action_compare {
    width: 50px;
    height: 50px;
  }
}

.sold-it .progress {
  height: 8px;
  background-color: var(--line);
  border-radius: 100px;
}
.sold-it .progress-bar {
  background-color: var(--secondary);
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0.3) 10px, transparent 10px, transparent 20px);
  animation: move-stripes 50s linear infinite;
}

.flat-single-grid {
  display: grid;
  gap: 20px;
}
.flat-single-grid .item {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.flat-single-grid .item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.tf-product-check-bundle .bundle-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tf-product-check-bundle .total-bundle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.tf-product-check-bundle .total-bundle .badge-sale {
  border-radius: 144px;
}
.tf-product-check-bundle .total-bundle .price-wrap {
  gap: 8px;
}

.bundle-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.bundle-item .wg-quantity {
  min-width: 140px;
}
.bundle-item .prd-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 100px;
}
.bundle-item .prd-info {
  flex: 1;
}
.bundle-item .prd-info .name {
  margin-bottom: 8px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
@media (max-width: 575px) {
  .bundle-item .wg-quantity {
    min-width: 110px;
  }
}

@media (max-width: 991px) {
  .section-product-single .tf-product-info-wrap {
    margin-top: 40px;
  }
}

.write-cancel-review-wrap .write-review-wrap,
.write-cancel-review-wrap .btn-cancel-review {
  display: none;
}
.write-cancel-review-wrap.write-review .cancel-review-wrap,
.write-cancel-review-wrap.write-review .btn-write-review {
  display: none;
}
.write-cancel-review-wrap.write-review .write-review-wrap,
.write-cancel-review-wrap.write-review .btn-cancel-review {
  display: block;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.drift-bounding-box.drift-open {
  background: rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
  z-index: 5000;
}

.drift-zoom-pane {
  z-index: 5000;
}

@media (min-width: 1200px) {
  .section-image-zoom .other-image-zoom {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .section-image-zoom.zoom-active .other-image-zoom {
    opacity: 0.3;
  }
}

.pswp__bg {
  background: var(--white);
}

.pswp__icn {
  fill: rgb(34, 34, 34);
  color: var(--white);
}
.pswp__icn .pswp__icn-shadow {
  stroke: var(--white);
  stroke-width: 1px;
  fill: none;
}

.pswp__counter {
  color: #222;
  text-shadow: 1px 1px 3px #ffffff;
}

.tf-model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}
.tf-model-viewer model-viewer {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.tf-model-viewer model-viewer.disabled {
  pointer-events: none;
}
.tf-model-viewer.active model-viewer {
  pointer-events: all;
}
.tf-model-viewer.active .wrap-btn-viewer {
  display: none;
}

.tf-zoom-main1,
.tf-zoom-main {
  position: sticky;
  top: 30px;
  z-index: 100;
}
.tf-zoom-main1 .drift-zoom-pane,
.tf-zoom-main .drift-zoom-pane {
  top: 0;
  left: 0;
  height: 520px;
  max-width: 520px;
  width: 100%;
  background: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px rgba(127, 127, 127, 0.0196078431), 0 5px 18px rgba(127, 127, 127, 0.2);
  z-index: 3;
}
.tf-zoom-main1 .drift-zoom-pane img,
.tf-zoom-main .drift-zoom-pane img {
  object-fit: cover;
}

.drift-bounding-box.drift-open {
  background: rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
  z-index: 5000;
}

.drift-zoom-pane {
  z-index: 5000;
}

.pswp__bg {
  background: var(--white);
}

.pswp__icn {
  fill: rgb(34, 34, 34);
  color: var(--white);
}
.pswp__icn .pswp__icn-shadow {
  stroke: var(--white);
  stroke-width: 1px;
  fill: none;
}

.pswp__counter {
  color: #222;
  text-shadow: 1px 1px 3px #ffffff;
}

.tf-model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}
.tf-model-viewer model-viewer {
  display: block;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.tf-model-viewer model-viewer.disabled {
  pointer-events: none;
}
.tf-model-viewer.active model-viewer {
  pointer-events: all;
}
.tf-model-viewer.active .wrap-btn-viewer {
  display: none;
}

.icv__label {
  border-radius: 999px;
  padding: 8px 32px;
  background-color: var(--black);
}

.icv__label {
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 14px;
  line-height: 16.8px;
  font-weight: 600;
  background-color: var(--main);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .icv__control-line {
    width: 4px !important;
    background: #FAFAFA !important;
  }
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.ic-accordion-custom {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s linear;
}
.ic-accordion-custom::after, .ic-accordion-custom::before {
  content: "";
  position: absolute;
  background-color: var(--primary);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.ic-accordion-custom::before {
  height: 100%;
  width: 2px;
}
.ic-accordion-custom::after {
  height: 2px;
  width: 100%;
}

.accordion-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 0;
  margin-bottom: 24px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion-action .icon::before {
  transform: rotate(90deg);
}
.accordion-action .icon::after {
  transform: rotate(180deg);
}
.accordion-action .ic-ar {
  display: block;
  transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion-action.collapsed {
  margin-bottom: 0px;
  padding-bottom: 32px;
}
.accordion-action.collapsed .ic-ar {
  transform: rotate(0deg);
}
.accordion-action.collapsed .icon::before {
  transform: rotate(0deg);
}
.accordion-action.collapsed .icon::after {
  transform: rotate(0deg);
}
@media (max-width: 991px) {
  .accordion-action {
    padding-top: 20px;
  }
  .accordion-action.collapsed {
    padding-bottom: 20px;
  }
}

.product-accordion-item {
  border-bottom: 1px solid var(--line);
}
.product-accordion-item .desc-list {
  display: grid;
  gap: 24px;
  max-width: 548px;
  width: 100%;
}
.product-accordion-item .desc-list .desc_title {
  color: var(--primary);
  margin-bottom: 8px;
}
.product-accordion-item:first-child {
  border-top: 1px solid var(--line);
}

.accordion-faq {
  border-bottom: 1px solid var(--line);
}
.accordion-faq .accordion-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 19px;
  color: var(--primary);
}
.accordion-faq .accordion-action:not(.collapsed) {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.accordion-faq .accordion-body {
  padding-bottom: 19px;
  display: grid;
  gap: 12px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-cart-sold {
  margin-bottom: 36px;
}
.tf-cart-sold .notification-sold {
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: var(--surface);
  border-radius: 4px;
}
.tf-cart-sold .time-count {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary);
}
@media (min-width: 1200px) {
  .tf-cart-sold {
    margin-bottom: 44px;
  }
}

.notification-progress .text {
  margin-bottom: 16px;
}
.notification-progress .progress-cart {
  width: 100%;
  background-color: var(--line);
  height: 8px;
  position: relative;
  border-radius: 100px;
}
.notification-progress .value {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  transition: width 2s ease;
  border-radius: 100px 0px 0px 100px;
}
.notification-progress .round {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
}
.notification-progress .round::after {
  content: "\e937";
  position: absolute;
  font-family: "icomoon";
  font-size: 20px;
  color: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tf-table-page-cart {
  overflow: auto;
  margin-bottom: 28px;
}
.tf-table-page-cart td {
  padding-top: 28px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--line);
}
.tf-table-page-cart th {
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--line);
}
.tf-table-page-cart .wg-quantity {
  min-width: 140px;
}
@media (min-width: 576px) {
  .tf-table-page-cart td:nth-child(1),
  .tf-table-page-cart th:nth-child(1) {
    min-width: 357.5px;
  }
  .tf-table-page-cart td:nth-child(2),
  .tf-table-page-cart th:nth-child(2) {
    min-width: 145px;
  }
  .tf-table-page-cart td:nth-child(3),
  .tf-table-page-cart th:nth-child(3) {
    min-width: 175px;
  }
  .tf-table-page-cart td:nth-child(4),
  .tf-table-page-cart th:nth-child(4) {
    min-width: 135px;
  }
  .tf-table-page-cart td:nth-child(5),
  .tf-table-page-cart th:nth-child(5) {
    min-width: 37.5p;
  }
}
@media (max-width: 767px) {
  .tf-table-page-cart thead {
    display: none;
  }
}

.tf-cart_item .img-prd {
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  flex-shrink: 0;
  max-width: 100px;
}
.tf-cart_item .cart_product {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tf-cart_item .cart_remove .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-cart_item .cart_remove .icon:hover {
  background-color: var(--secondary);
  color: var(--white);
}
.tf-cart_item .cart_total {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 767px) {
  .tf-cart_item {
    margin-bottom: 15px;
    padding-inline-start: 94px;
    min-height: 140px;
    display: block;
    font-weight: 500;
    position: relative;
  }
  .tf-cart_item .wg-quantity {
    min-width: 110px;
    padding: 6px 10px;
  }
  .tf-cart_item .img-prd {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    width: 80px;
    flex-shrink: 0;
    border: 1px solid var(--line);
  }
  .tf-cart_item .img-prd img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tf-cart_item td {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0;
    margin: 0;
  }
  .tf-cart_item td:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
  .tf-cart_item td[data-cart-title]:before {
    content: attr(data-cart-title);
    color: var(--primary);
    text-align: start;
    flex: 1 1 auto;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
  }
}

.fl-sidebar-cart {
  margin-top: 30px;
}
.fl-sidebar-cart .title {
  margin-bottom: 30px;
}

.box-order-summary {
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.box-order-summary .subtotal,
.box-order-summary .discount,
.box-order-summary .ship {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.box-order-summary .ship {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}
.box-order-summary .ship .box-check-payment {
  max-width: 200px;
  width: 100%;
}
.box-order-summary .ship-item:not(:last-child) {
  margin-bottom: 4px;
}
.box-order-summary .ship-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.box-order-summary .ship-item label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  color: var(--text);
  cursor: pointer;
}
.box-order-summary .ship-item input:checked ~ label {
  color: var(--primary);
}
.box-order-summary .box-progress-checkout {
  display: grid;
  gap: 12px;
}
.box-order-summary .check-agree {
  display: flex;
  gap: 8px;
  align-items: center;
}
.box-order-summary .check-agree label a {
  font-weight: 600;
  text-decoration: underline;
  text-transform: capitalize;
}
.box-order-summary .total-order {
  margin-bottom: 20px;
}
.box-order-summary .action-checkout {
  margin-bottom: 12px;
}
@media (min-width: 992px) {
  .box-order-summary {
    max-width: 380px;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .box-order-summary .subtotal,
  .box-order-summary .discount,
  .box-order-summary .ship {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.wrap-quick-login .title {
  padding: 11px 16px;
  border-radius: 4px;
  background-color: var(--surface);
  margin-bottom: 20px;
}

.payment_accordion {
  border: 1px solid var(--line);
  padding: 19px 19px;
  border-radius: 8px;
}
.payment_accordion .text-payment {
  padding-top: 8px;
}
.payment_accordion:not(:last-child) {
  margin-bottom: 20px;
}

.payment_check .pay-title {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--black);
  cursor: pointer;
}
.payment_check .tf-check-rounded:checked ~ .pay-title {
  color: var(--primary);
}
.payment_check .tf-check-rounded:checked ~ .icon {
  color: var(--primary);
}

.ip-card {
  position: relative;
}
.ip-card .card-logo {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
@media (min-width: 576px) {
  .ip-card input {
    padding-right: 196px !important;
  }
}

.box-ip-payment .checkbox-wrap {
  gap: 8px;
}

.list-order-product .order-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.list-order-product .order-item .infor-prd {
  flex: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.list-order-product .img-prd {
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: hidden;
  max-width: 100px;
}
.list-order-product .img-prd img {
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .list-order-product .order-item {
    gap: 12px;
  }
}

.quantity-price {
  display: flex;
  align-items: center;
  gap: 4px;
}

.box-your-order .list-order-product {
  margin-bottom: 32px;
}
.box-your-order .ip-discount-code {
  margin-bottom: 32px;
}
.box-your-order .last-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-total {
  margin-bottom: 20px;
  padding: 19px 0px;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.list-total .total-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-total .total-item:not(:last-child) {
  margin-bottom: 18px;
}

.tf-checkout-cart-main {
  display: grid;
  gap: 40px;
}
.tf-checkout-cart-main .tf-grid-layout {
  gap: 16px;
}
.tf-checkout-cart-main .title {
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .tf-checkout-cart-main {
    gap: 24px;
  }
}

.mini-product-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mini-product-cart .prd_image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-width: 100px;
  width: 100%;
}
.mini-product-cart .prd_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-product-cart .prd-wrap {
  gap: 24px;
  display: flex;
  align-items: center;
}
.mini-product-cart .prd-action {
  display: grid;
  place-items: end;
  gap: 4px;
}
@media (min-width: 576px) {
  .mini-product-cart .prd-action {
    max-width: 100px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .mini-product-cart {
    gap: 12px;
  }
  .mini-product-cart .prd-wrap {
    gap: 12px;
  }
}

.list-mini-product .mini-product-cart {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
}
.list-mini-product .mini-product-cart:not(:last-child) {
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-pin-btn {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.tf-pin-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: 8px solid var(--white);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-pin-btn span::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: solid 1px var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-pin-btn span::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: solid 1px var(--white);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tf-pin-btn span::before, .tf-pin-btn span::after {
  animation: ripple-line 2s linear infinite;
}

.banner-image-lookbook {
  position: relative;
  display: flex;
}
.banner-image-lookbook .lookbook-image {
  overflow: hidden;
  width: 100%;
}
.banner-image-lookbook .lookbook-image img {
  min-height: 350px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-image-lookbook .lookbook-item {
  position: absolute;
}
.banner-image-lookbook .lookbook-item.position1 {
  top: 26.5%;
  left: 27.3%;
}
.banner-image-lookbook .lookbook-item.position2 {
  top: 82%;
  left: 64%;
}
.banner-image-lookbook .lookbook-item.position3 {
  top: 50%;
  left: 50%;
}
.banner-image-lookbook .lookbook-item:hover .loobook-product-wrap {
  bottom: 42px;
  opacity: 1;
  visibility: visible;
}

.loobook-product-wrap {
  position: absolute;
  bottom: 50px;
  min-width: max-content;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.loobook-product-wrap .loobook-product {
  background-color: var(--white);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.loobook-product-wrap .loobook-product .img-style {
  width: 108px;
}
.loobook-product-wrap .loobook-product .img-style img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loobook-product-wrap .loobook-product .info {
  display: grid;
  gap: 4px;
}
@media (max-width: 575px) {
  .loobook-product-wrap {
    position: fixed;
    inset: 0 !important;
    transform: unset;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    align-items: end;
    background: rgba(0, 0, 0, 0.5);
  }
  .loobook-product-wrap .loobook-product {
    pointer-events: all;
    width: 100%;
  }
}

/*------------ Footer ---------------- */
/* ---------------------------------------------------------
    * Name: Orvana - Organic & Food Store HTML Template
    * Version: 1.0.0
    * Author: Themesflat
    * Author URI: http://themesflat.com 

	* Abstracts variable

    * Core CSS

    * Components

 ------------------------------------------------------------------------------ */
/*--------- Abstracts variable ---------- */
.tf-footer {
  background-color: var(--primary);
}
.tf-footer .footer-inner-wrap {
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .tf-footer .footer-inner-wrap {
    padding-top: 60px;
  }
}
@media (max-width: 575px) {
  .tf-footer .footer-inner-wrap {
    padding-bottom: 30px;
  }
}

.footer-inner {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-inner .form-subcribe {
  max-width: 410px;
}
.footer-inner .inner-center {
  display: flex;
  gap: 40px;
}
.footer-inner .logo-site {
  margin-bottom: 40px;
}
.footer-inner .title {
  margin-bottom: 8px;
}
.footer-inner .sub-title {
  margin-bottom: 16px;
}
@media (min-width: 1025px) {
  .footer-inner {
    justify-content: space-between;
  }
  .footer-inner .inner-left {
    max-width: 410px;
  }
  .footer-inner .inner-center {
    max-width: 335px;
  }
  .footer-inner .inner-right {
    max-width: 272px;
  }
}
@media (min-width: 1440px) {
  .footer-inner .inner-center,
  .footer-inner .inner-right,
  .footer-inner .inner-left {
    width: 100%;
  }
  .footer-inner .inner-center {
    gap: 80px;
  }
}
@media (min-width: 576px) and (max-width: 1024px) {
  .footer-inner {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "aa cc" "bb bb";
  }
  .footer-inner .inner-left {
    grid-area: aa;
  }
  .footer-inner .inner-center {
    grid-area: bb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-inner .inner-right {
    grid-area: cc;
  }
  .footer-inner .inner-left {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-inner {
    display: grid;
    gap: 0;
  }
  .footer-inner .inner-center {
    display: grid;
    gap: 0;
  }
  .footer-inner .inner-left {
    margin-bottom: 30px;
  }
}

.footer-menu-list {
  display: grid;
  gap: 12px;
}
.footer-menu-list a {
  color: var(--white);
}

.footer-heading {
  color: var(--secondary);
  margin-bottom: 16px;
}

.footer-info {
  display: grid;
}
.footer-info a {
  color: var(--white);
}
.footer-info .infor-address,
.footer-info .infor-email {
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
}
.footer-info .infor-address {
  margin-bottom: 8px;
}
.footer-info .infor-phone {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 12px;
}
.footer-info .infor-email {
  margin-bottom: 40px;
}
.footer-info .social-list {
  font-size: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-info .social-list li,
.footer-info .social-list a {
  display: flex;
}
.footer-info .social-list .icon {
  aspect-ratio: 1;
}

.footer-bottom .text-copy {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

@media (max-width: 575px) {
  .footer-heading-mobile {
    display: block;
    position: relative;
    padding-right: 20px;
    line-height: 24px;
  }
  .footer-heading-mobile::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background-color: var(--secondary);
    transition: 0.25s ease-in-out;
  }
  .footer-heading-mobile::before {
    position: absolute;
    content: "";
    right: 5px;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 14px;
    background-color: var(--secondary);
    transition: 0.25s ease-in-out;
  }
  .footer-heading-mobile.text-white::after, .footer-heading-mobile.text-white::before {
    background-color: var(--white);
  }
  .inner-right .footer-col-block .tf-collapse-content {
    margin-top: 20px;
  }
  .inner-right .footer-col-block .footer-heading {
    margin-bottom: 0px;
  }
  .inner-center .footer-col-block .tf-collapse-content {
    margin-bottom: 20px;
  }
  .footer-col-block.open .footer-heading-mobile::before {
    opacity: 0;
  }
  .footer-col-block.open .footer-heading-mobile::after {
    transform: translate(0%, -50%) rotate(180deg);
  }
  .footer-col-block .tf-collapse-content {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */
