@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Commissioner:wght@100..900&display=swap');
:root {
  --color-1: #c40d42;
  --color-1-light: #fff4f7;
  --color-2: #cacaca;
  --color-3: #3b3b3b;
  --color-4: #e2e2e2;
  --color-5: #f5f5f5;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-delete: firebrick;
  --color-green: #27af59;
  --font-body: 'Commissioner', Helvetica, Arial, sans-serif;
  --font-header: 'Manrope', Helvetica, Arial, sans-serif;
  --box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  --box-shadow-small: 0px 0px 10px rgba(0, 0, 0, 0.1);
  --border-radius-big: 32px; 
  --border-radius-main: 16px; 
  --border-radius-small: 8px; 
  --gradient: linear-gradient(to left, var(--color-1), var(--color-1));
  --gradient-transparent: linear-gradient(-45deg, white,var(--color-1-light), white);
}
/* ------------ Basic CSS ------------ */
::-webkit-scrollbar {
  width: 10px;
}
.custom-scroll::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--color-5);
}
::-webkit-scrollbar-thumb {
  background: var(--color-1);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-2);
}
html,
body{
  overflow-x: clip;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-header);
}
h1,
.h1 {
  font-size: 26px;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 28px;
  }
}
@media (min-width: 1600px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}
h2,
.h2 {
  font-size: 22px;
}
@media (min-width: 768px) {
  h2,
  .h2 {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 26px;
  }
}
@media (min-width: 1600px) {
  h2,
  .h2 {
    font-size: 28px;
  }
}
h3,
.h3 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  h3,
  .h3 {
    font-size: 26px;
  }
}
h4,
.h4 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h4,
  .h4 {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  h4,
  .h4  {
    font-size: 22px;
  }
}
h5,
.h5 {
  font-size: 14px;
}
@media (min-width: 768px) {
  h5,
  .h5 {
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  h5,
  .h5 {
    font-size: 18px;
  }
}
h6,
.h6 {
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  h6,
  .h6 {
    font-size: 15px;
  }
}
@media (min-width: 1600px) {
  h6,
  .h6 {
    font-size: 16px;
  }
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
ol,
ul,
dl {
  margin: 0;
  padding: 0;
  list-style: none;
}
b,
strong {
  font-weight: 600;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -.25em;
}
sup {
  top: -.5em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all .4s ease-out;
}
a:hover {
  color: var(--color-1);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
}
.bg-half-l-gray,
.bg-half-r-gray {
  position: relative;
}
.bg-half-l-color::before{
  content: '';
  background-color: var(--color-1);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bg-half-r-color::before{
  content: '';
  background-color: var(--color-1);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
section{
  position: relative;
}
.section-boxed {
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 32px auto;
  padding-top: 16px;
  padding-bottom: 16px;
  background: var(--gradient-transparent);
  border-radius: var(--border-radius-big);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.section-padding{
  padding-top: 32px;
  padding-bottom: 32px;
}
.container-fluid{
  width: 2000px;
  max-width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-section .container-fluid,
.about-section .container-fluid,
.section-padding .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1600px) {
  .container-fluid{
    padding-left: 32px;
    padding-right: 32px;
    max-width: calc(100% - 32px);
  }
  .section-boxed {
    margin: 60px auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section-padding{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content-section .container-fluid,
  .section-padding .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen  and (max-width:1199px){ 

}
@media screen  and (max-width:767px){
  .section-boxed:not(.form-container,.product-info) {
    border-radius: 0;
    box-shadow: none;
  }
  .section-boxed {
    margin: 32px 0;
    max-width: 100%;
  }
}
.textbox h2, 
.textbox h3, 
.textbox h4, 
.textbox h5, 
.textbox h6{
  margin-bottom: 10px;
}
.textbox p{
  margin-bottom: 20px;
}
.textbox p + p{
  margin-top: -10px;
}
.textbox p:last-child {
  margin-bottom: 0;
}
.textbox ul,
.textbox ol{
    margin-bottom: 20px;
    list-style: disc;
    padding-left: 20px;
}
.textbox ol{
    list-style: decimal;
}
.textbox li{
    list-style: inherit;
}
.checkbox-wrapper {
  margin: 16px auto 0;
}
.checkbox-wrapper input[type="checkbox"] {
  display: none;
  visibility: hidden;
}
.checkbox-wrapper .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
}
.newsletter-box .checkbox-wrapper .cbx {
  font-size: 14px;
}
.checkbox-wrapper .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .cbx span a {
  color: var(--color-1);
}
.checkbox-wrapper .cbx span a:hover {
  color: var(--color-3);
}
.checkbox-wrapper .cbx span:first-child {
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 3px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  transition: all 0.2s ease;
}
.checkbox-wrapper .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-1);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox-wrapper .cbx span:last-child {
  padding-left: 8px;
}
.checkbox-wrapper .cbx:hover span:first-child {
  border-color: var(--color-1);
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child {
  background: var(--color-1);
  border-color: var(--color-1);
  animation: wave 0.4s ease;
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.checkbox-wrapper .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}
@keyframes wave {
  50% {
    transform: scale(0.9);
  }
}
.textimg-section .row{
  align-items: center;
}
@media screen and (min-width: 992px) {
  .textimg-section .row{
    flex-direction: row-reverse;
  }
}
.textimg-section .row + .row{
  margin-top: 60px;
}
.imgbox img{
  width: 100%;
  border-radius: var(--border-radius-small);
}
.btn {
  background-color: var(--color-1);
  color: white;
  border-radius: var(--border-radius-main);
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
  transition: all .4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  font-size: 15px;
}
.btn>* {
  color: inherit;
  position: relative;
}
.btn::before {
  content: '';
  background-color: var(--color-3);
  width: 0%;
  height: 600%;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(10deg, 10deg);
  transition: all .6s ease-in-out;
}
.btn:hover,
.btn:focus{
  background-color: var(--color-1);
  color: white;
}
.btn:hover {
  scale: 1.03;
  box-shadow: var(--box-shadow);
}
.btn:hover::before {
  width: 200%;
  height: 600%;
  border-radius: 0;
}
.btn.btn-secondary {
  background-color: var(--color-4);
  color: black;
}
.btn.btn-secondary::before{
  background-color: var(--color-3);
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus{
  background-color: var(--color-4);
  color: white;
}
.btn.btn-dark {
  background-color: var(--color-3);
}
.btn.btn-dark::before{
  background-color: var(--color-1);
}
.btn.btn-black {
  background-color: var(--color-black);
}
.btn.btn-black::before{
  background-color: var(--color-3);
}
.btn.btn-white {
  background-color: var(--color-white);
}
.btn.btn-white::before{
  background-color: var(--color-3);
}
.btn.btn-border {
  color: black;
  border: 2px solid black;
  background-color: transparent;
}
.btn.btn-border::before{
  border: var(--color-1);
  background-color: transparent;
}
.page-title {
  width: fit-content;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin: 0 auto;
}
.page-title::before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  background-color: var(--color-4);
}
.page-title::after {
  content: '';
  width: 120px;
  max-width: 35%;
  height: 2px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-color: var(--color-1);
}
.shadow-box {
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-main);
  overflow: hidden;
}
@media screen and (min-width: 1800px) {
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
/* ------------ Scroll top CSS ------------ */
#scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
  background-color: var(--color-1);
  cursor: pointer;
  width: 48px;
  height: 48px;
  box-shadow: var(--box-shadow);
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#scroll-top.active{
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
#scroll-top lord-icon {
  width: 24px;
  height: 24px;
}
@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top.active {
    bottom: 100px;
  }
}
/* ------------ Scroll top CSS ------------ */
.loader-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-screen.loaded {
  display: none;
}
.loader {
  height: 80px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  mask: conic-gradient(#000 0 0) content-box exclude,conic-gradient(#000 0 0);
  filter: blur(12px);
}
.loader:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(#0000 0 5%, var(--color-1),#0000 20% 50%);
  animation: l2 1.5s linear infinite;
}
@keyframes l2 {
  to {rotate: 1turn}
}
/* ------------ Header CSS ------------ */
/* Header CSS - Topbar */
.topbar {
  color: var(--color-black);
  line-height: 1;
}
.topbar .container-fluid {
  background-color: var(--color-5);
  box-shadow: var(--box-shadow);
}
.topbar .row{
  gap: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-4);
  padding-top: 20px;
  padding-bottom: 20px;
}
.topbar-right{
  text-align: right;
}
.tobar-list {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.tobar-list:not(:last-child){
  margin-right: 10px;
}
.list-social{
  gap: 10px;
}
.tobar-list a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tobar-list a lord-icon {
  width: 24px;
  height: 24px;
}
.tobar-list a:hover{
  color: var(--color-1);
}
.overlay-contact .tobar-list.list-contact {
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
}
@media screen and (min-width:1400px) and (max-width:1549px) {
  .tobar-list.list-contact span {
    display: none;
  }
}
@media screen and (max-width:767px) {
  .topbar-mid {
    text-align: center;
  }
  .topbar .row {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/* Header CSS - Navigation bar */
.navibar .container-fluid {
  background-color: var(--color-5);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--box-shadow);
}
.navibar .row {
  gap: 0 16px;
}
.is-sticky {
  position: fixed;
  width: 100%;
  z-index: 99;
  left: 0;
  top: 10px;
  animation: fixedNavibar .8s ease-out;
}
.is-sticky.navibar .container-fluid {
  border-radius: 32px;
}
@keyframes fixedNavibar {
  0% {
    transform: translateY(-100%)
  }
  to {
      transform: translateY(0)
  }
}
.logo-header {
  width: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-header img {
  width: 200px;
}
.menu-btn {
  gap: 5px;
  width: auto;
  cursor: pointer;
  padding: 5px 15px;
}
.menu-btn svg {
  width: 26px;
}
.menu-btn span {
  font-size: 15px;
  font-weight: 500;
}
.header-action-item>* {
  display: block;
}
.logo-header .header-action-item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background-color: var(--color-1);
  padding: 8px;
}
.header-action-item .menu-btn {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  justify-content: space-evenly;
}
.header-action-item .menu-btn span {
  width: 100%;
  height: 2px;
  background-color: white;
  display: block;
  border-radius: 4px;
  transition: all .4s ease-in-out; 
}
.header-action-item .menu-btn span:nth-child(2) {
  width: 60%;
}
.header-action-item .menu-btn:hover span {
  width: 60%;
}
.header-action-item .menu-btn:hover span:nth-child(2) {
  width: 100%;
}
.desktop-menu {
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 0;
  margin: 0 20px;
}
.sec-menu-btn {
  width: auto;
  padding: 30px 0;
  position: relative;
}
.sec-menu-btn a {
  font-size: 15px;
  font-weight: 500;
}
.sec-menu-btn .dropdwown-menu a {
  font-size: 14px;
  font-weight: 400;
}
.dropdwown-menu {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: var(--gradient-transparent);
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: all .4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.sec-menu-btn:hover .dropdwown-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.dropdwown-menu.mega-menu {
  width: 1000px;
  left: 0;
  transform: unset;
}
.menu-items-list, 
.menu-items-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  width: 100%;
}
.dropdwown-menu:not(.mega-menu) .menu-items-list {
  width: max-content;
  flex-direction: column;
}
.menu-items-list a {
  width: fit-content;
}
.mega-menu .menu-items-list a {
  width: 25%;
}
.menu-items-extra {
  gap: 2%;
}
.menu-items-extra a {
  width: 49%;
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 15px;
  background-color: white;
  border-radius: var(--border-radius-main);
}
.menu-items-extra a img {
  width: 100px;
}
.search-btn .close-search,
.search-btn.active-desk-search .open-search  {
  display: none;
}
.search-btn.active-desk-search .close-search {
  display: inline-block;
}
.header-search {
  width: auto;
  flex: 1;
  position: relative;
}
.header-search form {
  position: relative;
  width: 0;
  margin-left: auto;
  overflow: hidden;
  transition: all .4s ease;
}
.header-search.active-desk-search form {
  width: 100%;;
}
.search-icon-close,
.active-desk-search .search-icon-open{
  display: none;
}
.active-desk-search .search-icon-close{
  display: block;
}
.search-dropdown {
  width: 100%;
  height: 50dvh;
  left: 0;
  transform: unset;
  overflow: hidden;
  padding: 0;
}
.active-desk-search .search-dropdown {
  top: calc(100% + 20px);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  gap: 0;
}
.search-filters .swiper{
  padding: 0;
  margin: 0 8px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}
.search-filters .swiper-slide {
  width: fit-content;
}
.search-filters .vitrina-nav {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
}
.search-filters .vitrina-nav .swiper-button-next, 
.search-filters .vitrina-nav .swiper-button-prev {
  width: 29px;
  height: 29px;
  background-color: white;
  border: transparent;
}
.search-filters .vitrina-nav .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.search-filters a {
  display: block;
  width: fit-content;
  padding: 4px 16px;
}
.search-dropdown .search-results {
  height: calc(100% - 100px);
}
.search-dropdown .search-results-title {
  padding: 20px;
  margin: 0;
}
.search-dropdown .search-results .row {
  height: calc(100% - 65px);
  padding: 0 20px 40px;
  gap: 20px 0;
  width: 100%;
  margin: 0;
}
.input-style.search-input {
  width: 100%;
  font-size: 15px;
  height: 100%;
  padding-left: 16px;
  padding-right: 50px;
}
.input-style.search-input::placeholder {
  font-size: 15px;
}
.search-submit {
  position: absolute;
  top: 6px;
  right: 10px;
  background-color: transparent;
  border: none;
}
.search-submit svg {
  width: 26px;
}
.header-actions {
  width: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-selector{
  position: relative;
  padding: 20px 0;
}
.lang-submenu {
  width: max-content;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 20px 0;
  position: absolute;
  top: -100%;
  right: -20px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
  background: var(--gradient-transparent);
  transition: all .4s ease;
}
.lang-selector:hover .lang-submenu {
  top: 100%;
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.lang-item {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;    
  font-size: 14px;
  font-weight: 400;
}
.lang-submenu svg{
  width: 25px;
  border-radius: 3px;
}
.lang-item:hover {
  color: var(--color-1);
}
.cart-btn {
  position: relative;
}
.items__count {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--color-1);
  border-radius: 100%;
  text-align: center;
  color: white;
  font-size: 10px;
} 
@media screen  and (max-width:1699px){
  .logo-header img {
    width: 180px;
  }
  .desktop-menu {
    margin: 0;
  }
  .dropdwown-menu.mega-menu {
    width: 800px;
  }
}
@media screen  and (max-width:1199px){
  .navibar .row {
    gap: 0 20px;
  }
  .search-filters .swiper {
    padding: 0;
    margin: 0;
    border-radius: 0;
  }
  .search-filters a {
    padding: 0;
  }
}
@media screen  and (max-width:767px){
  .navibar.is-sticky {
    padding-bottom: 5px;
  }
  .logo-header {
    gap: 16px;
  }
  .logo-header img {
    width: 48px;
  }
  .header-action-item {
    margin-top: 12px;
  }
  .logo-header .header-action-item {
    width: 32px;
    height: 32px;
    padding: 7px;
    margin: 0;
  }
  .header-actions {
    width: fit-content;
    gap: 12px;
    padding-left: 0;
  }
  .lang-selector {
    padding: 0;
  }
  .navibar .container-fluid {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
/* ------------ Footer style ------------ */
footer {
  overflow: hidden;
}
.footer-main .container-fluid {
  background-color: var(--color-5);
  border-radius: 32px 32px 0 0;
  box-shadow: var(--box-shadow);
}
.footer-main .row {
  gap: 40px 0;
  padding: 40px 0px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.logo-footer img {
  width: 280px;
}
.footer-desc {
  max-width: min(60ch,100%);
}
.footer-title {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 5px;
  position: relative;
  width: fit-content;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  line-height: 1.2;
}
.list-contact a,
.list-contact .multi-link{
  display: flex;
  align-items: center;
  gap: 5px;
}
.list-contact a.common-link::after {
  left: 30px;
  max-width: calc(100% - 30px);
}
.list-social {
  flex-flow: row wrap;
  margin: 0;
}
footer .list-social a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  padding: 0;
}
.footer-copyright .container-fluid {
  background-color: var(--color-5);
  box-shadow: var(--box-shadow);
  position: relative;
}
.footer-copyright .container-fluid::before {
  content: '';
  background-image: radial-gradient(circle farthest-side at center, var(--color-1-light), transparent);
  display: block;
  width: 800px;
  height: 800px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: 0;
  pointer-events: none;
}
.footer-copyright .row{
  position: relative;
  padding: 40px 0;
  border-top: 1px solid var(--color-5);
}
.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
}
.newsletter-box .footer-desc {
  max-width: 100%;
  margin-bottom: 10px;
}
.form-newsletter-input {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.form-newsletter-input .input-style {
  flex: auto;
}
@media screen  and (max-width:767px){
  .form-newsletter-input {
    flex-direction: column;
  }
  .form-newsletter-input button,
  .form-newsletter-input .input-style {
    width: 100%;
  }
  .newsletter-box {
    margin-left: 0;
    margin-top: 40px;
  }
  .footer-copyright {
    padding-bottom: 32px;
  }
}
/* ------------ Overlay CSS ------------ */
/* Overlay CSS - Generic */
.overlay-bg{
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  transition: all .4s ease-in-out;
}
.overlay-bg.show{
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.overlay-box{
  width: 400px;
  max-width: 100%;
  height: 100%;
  position: fixed;
  left: -100%;
  top: 0;
  background: var(--gradient-transparent);
  z-index: 99999999999;
  transition: all .4s ease-in-out;
}
.overlay-box.show{
  left: 0;
}
.overlay-box.overlay-right {
  left: auto;
  right: -100%;
}
.overlay-box.overlay-right.show{
  right: 0;
}
.overlay-box.overlay-top {
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
}
.overlay-box.overlay-top.show{
  top: 0;
}
@media screen and (min-width:768px){
  .overlay-box{
    width: 500px;
    max-width: 100%;
    height: fit-content;
    max-height: calc(100dvh - 32px);
    position: fixed;
    left: -100%;
    top: 16px;
    background: var(--gradient-transparent);
    transition: all .4s ease-in-out;
    border-radius: var(--border-radius-big);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  .overlay-box.show{
    left: 16px;
  }
  .overlay-box.overlay-right {
    left: auto;
    right: -100%;
  }
  .overlay-box.overlay-right.show{
    right: 16px;
  }
  .overlay-box.overlay-top {
    left: 16px;
    top: -100%;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }
  .overlay-box.overlay-center{
    top: 16px;
  }
}
.overlay-box.overlay-center {
  width: 800px;
  max-width: calc(100% - 32px);
  left: 50%;
  top: -100%;
  transform: translate(-50%,-50%);
}
.overlay-box.overlay-center.show {
  top: 50%;
}
.overlay-head {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  font-size: 20px;
  position: relative;
  margin-bottom: 5px;
}
.overlay-head::after{
  content: '';
  width: 100%;
  height: 5px;
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  background: linear-gradient(to right, var(--color-1), transparent);;
}
.overlay-close{
  transition: all .4s ease-in-out;
}
.overlay-close:hover{
  color: var(--color-delete);
  cursor: pointer;
}
.overlay-body {
  height: fit-content;
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
/* Overlay CSS - Cart overlay */
.overlay-body.cart-body {
  max-height: calc(100dvh - 350px);
}
.clear-cart-btn {
  margin: 10px 20px 10px auto;
  padding: 8px 16px;
  background-color: var(--color-4);
  width: fit-content;
  border-radius: var(--border-radius-main);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 19px;
  transition: all .4s ease-in-out;
}
.clear-cart-btn span{
  font-size: 20px;
  color: var(--color-delete);
  transition: all .4s ease-in-out;
}
.clear-cart-btn:hover {
  background-color: var(--color-2);
  cursor: pointer;
}
.single-cart-prod {
  display: flex;
  position: relative;
  gap: 10px;
  padding: 20px;
}
.single-cart-prod + .single-cart-prod {
  border-top: 1px solid var(--color-4);
}
.cart-prod-img {
  width: 100px;
}
.cart-prod-img img {
  width: 100%;
  border-radius: var(--border-radius-small);
}
.cart-prod-details {
  width: 100%;
  flex: 1 1 auto;
}
.cart-prod-delete {
  width: 20px;
}
.cart-prod-name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.cart-prod-price span {
  font-weight: 500;
  color: var(--color-1);
}
.cart-prod-delete svg{
  cursor: pointer;
  transition: all .4s ease;
}
.cart-prod-delete svg:hover{
  color: var(--color-delete);
}
.cart-footer {
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border-top: 1px solid var(--color-4);
}
.cart-sum {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cart-checkout-btn {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cart-checkout-btn .btn {
  width: 100%;
}
.cart-sum-title {
  font-weight: 500;
  font-size: 18px;
}
.cart-sum-value {
  font-weight: 600;
  font-size: 18px;
}
/* Shipping Time */
.shipping-time {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid var(--color-4);
  padding: 20px 0 10px;
}
.shipping-time .dz-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.shipping-time .dz-icon lord-icon {
  width: 100%;
  height: 100%;
}
.shipping-time img {
  margin-right: 20px;
}
.shipping-time .shipping-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  flex: 1 1 auto;
}
.shipping-time .title {
  font-weight: 500;
}
.shipping-time .progress {
  border-radius: 10px;
  height: 20px;
}
.shipping-time .progress .progress-bar {
  background-color: var(--color-1);
}
@media screen and (max-width:767px) {
  .cart-checkout-btn {
    flex-direction: column;
  }
  .shipping-time .dz-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .shipping-time .title {
    font-size: 13px;
  }
}
/* Overlay CSS - Account overlay */
.overlay-body.form-container {
  padding: 0;
}
.account-userlinks {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px;
}
.account-userlinks + .account-userlinks {
  border-top: 1px solid var(--color-4);
}
.account-userlinks:hover{
  color: var(--color-1);
}
.account-userlinks.account-logout {
  color: var(--color-delete);
}
.account-userlinks.account-logout:hover {
  color: var(--color-1);
}
/* Overlay CSS - Search overlay */
.overlay-body.overlay-search {
  padding: 20px;
  max-height: calc(100dvh - 70px);
  overflow: hidden;
}
.overlay-search form {
  position: relative;
}
.search-results-title {
  margin: 40px 0 20px;
  font-size: 18px;
  font-weight: 500;
}
.search-results .row {
  height: calc(100dvh - 380px);
  overflow-y: auto;
  padding: 0 0 20px;
  gap: 40px 0;
}
/* Overlay CSS - Menu overlay */
#overlayMenu .overlay-head {
  padding: 10px 20px;
}
.menu-logo img {
  max-height: 50px;
  width: 100%;
}
.overlay-menu {
  margin-top: 5px;
  height: calc(100dvh - 100px);
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.menu-item.level-0-menu>.menu-link {
  padding: 15px 20px;
  font-size: 14px;
}
.menu-item {
  width: 100%;
  transition: all .4s ease-in-out;
  cursor: pointer;
}
.menu-item + .menu-item  {
  border-top: 1px solid var(--color-4);
}
.menu-item.level-1-menu>.menu-link {
  padding: 15px 20px;
  font-size: 14px;
}
.menu-item.level-1-menu.active-menu>.menu-link,
.menu-item.level-1-menu.active-menu>.expand-menu {
  color: white;
}
.menu-item .menu-link {
  display: block;
  width: 100%;
  position: relative;
}
.expand-menu {
  position: absolute;
  z-index: 1;
  right: 10px;
  top: 13px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.menu-item.active-menu>.expand-menu {
  rotate: 180deg;
}
.level-1-menu .submenu {
  position: fixed;
  left: 0;
  top: 74px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  display: none;
  width: 400px;
  max-width: 100%;
}
.menu-item.active-menu>.submenu {
  visibility: visible;
  opacity: 1;
  left: 500px;
  pointer-events: all;
  display: flex;
  flex-direction: column;
}
.menu-item.level-2-menu>.submenu {
  display: none;
}
.menu-item.level-2-menu.active-menu>.submenu {
  left: 800px;
  top: 106px;
  pointer-events: all;
  display: flex;
}
.submenu-title {
  background-color: var(--color-3);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  display: none;
  width: 100%;
}
.submenu-allprods a {
  background-color: var(--color-1);
  width: 100%;
  display: block;
  padding: 15px 20px;
  color: white;
  border: none;
}
.submenu-allprods a:hover{
  color: white;
  background-color: var(--color-3);
}
.menu-item.level-2-menu .menu-link {
  padding: 15px 20px;
  color: black;
}
.menu-item.level-2-menu.active-menu>.menu-link,
.menu-item.level-2-menu.active-menu>.expand-menu {
  color: white;
}
.menu-item.level-3-menu>.menu-link {
  width: 100%;
}
.menu-item.level-3-menu.active-menu .menu-link,
.menu-item.level-3-menu>.menu-link:hover {
  color: white;
  background-color: var(--color-1);
}
.overlay-contact {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
}
@media screen  and (min-width:1200px){
  .menu-item.level-0-menu>.menu-link,
  .menu-item.level-0-menu>.expand-menu,
  .menu-item.level-0-menu>.submenu>.submenu-title{
    display: none;
  }
  .menu-item.level-0-menu>.submenu {
    visibility: visible;
    opacity: 1;
    left: 0;
    position: relative;
    top: 0;
  }
  .menu-item.level-0-menu>.submenu {
    pointer-events: all;
  }
}
.submenu-title {
  display: flex;
  padding: 15px;
}
.menu-item.active-menu>.submenu,
.menu-item.level-2-menu.active-menu>.submenu {
  visibility: visible;
  opacity: 1;
  left: 0;
  z-index: 99999;
  position: absolute;
  top: 0;
  height: 100%;
  max-width: 100%;
  background: var(--gradient-transparent);
  width: 500px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 0 5px;
  margin: 0;
}
@media screen  and (max-width:1199px){
  .menu-item.level-0-menu>.submenu {
    visibility: hidden;
    opacity: 0;
    left: -100%;
    position: absolute;
    pointer-events: none;
    top: 0;
  }
  .menu-item.level-0-menu.active-menu>.submenu {
    visibility: visible;
    opacity: 1;
    left: 0;
    pointer-events: all;
  }
}
@media screen  and (max-width:767px){
  .overlay-bg{
    display: none;
  } 
  .overlay-menu {
    height: calc(100dvh - 70px);
    max-height: calc(100dvh - 70px);
  }
}
/* ------------ Product card ------------ */
.product-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  border-radius: var(--border-radius-main);
  background-color: white;
  box-shadow: var(--box-shadow-small);
}
.prod-image {
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}
.product-card .prod-image img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 15;
}
.product-card .prod-image img {
  transition: all .4s ease;
}
.product-card:hover .prod-image img {
  scale: 1.05;
}
.prod-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.prod-sku {
  font-size: 14px;
  font-weight: 300;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 16px;
  line-height: 16px;
}
.prod-content .prod-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 40px;
  line-height: 20px;
}
.prod-footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}
.prod-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  font-size: 14px;
}
.del-price {
  text-decoration: line-through;
  opacity: .8;
  color: black;
}
.final-price {
  color: var(--color-1);
  font-weight: 500;
  font-size: 16px;
}
.prod-availability {
  font-size: 14px;
}
.prod-action-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 8px;
  right: -100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .4s ease-in-out;
}
.product-card:hover .prod-action-btn-container {
  right: 8px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.prod-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: white;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease-in-out;
}
.prod-action-btn.cart-btn {
  background-color: var(--color-1);
  color: white;
}
.prod-action-btn lord-icon {
  width: 20px;
  height: 20px;
}
.prod-tag-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: calc(100% - 60px);
  font-size: 14px;
}
.prod-tag-container .prod-tag {
  padding: 4px 8px;
  background-color: var(--color-5);
  border-radius: var(--border-radius-small);
}
.prod-tag-container .prod-tag.sale {
  background-color: var(--color-1);
  color: white;
}
.prod-tag-container .prod-tag.new {
  background-color: var(--color-3);
  color: white;
}
/* ------------ Blog Listing Style ------------ */
.read-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .4s ease-in-out;
}
.product-card:hover .read-more-btn {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
/* ------------ Vitrina Style ------------ */
.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-title lord-icon {
  width: 40px;
  height: 40px;
}
.vitrina-title {
  width: 100%;
  display: flex;
  justify-content: center;
  border-radius: 16px;
  color: black;
  height: 100%;
  flex-direction: column;
  gap: 32px;
}
.vitrina-title .section-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-direction: column;
  width: 100%;
}
.vitrina-title .section-title lord-icon {
  width: 46px;
  height: 46px;
}
.show-all-btn .slider-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  border: 2px solid;
  border-radius: 30px;
  padding: 6px 16px;
  width: fit-content;
}
.show-all-btn .slider-btn lord-icon {
  width: 24px;
  height: 24px;
}
.content-title + .show-all-btn,
.show-all-btn + .vitrina-nav {
  margin-top: auto;
}
.vitrina-nav {
  display: flex;
  align-items: center;
  width: fit-content;
  justify-content: space-between;
  z-index: 1;
  pointer-events: none;
  gap: 16px;
}
.swiper-button-next, 
.swiper-button-prev {
  position: static;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: transparent;
  color: black;
  border: 2px solid black;
  display: flex;
  align-items: center;
  margin: 0;
  pointer-events: all;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 900;
  padding-left: 2px;
}
.swiper-button-prev:after {
  padding-left: 0;
  padding-right: 2px;
}
.swiper-button-next:hover, 
.swiper-button-prev:hover {
  color: var(--color-1);
  border-color: var(--color-1);
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}
.vitrina-section .swiper {
  overflow: hidden;
  padding: 20px;
  margin: -20px;
  position: relative;
}
@media screen  and (max-width:1199px){
  .vitrina-title {
    height: auto;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    align-items: center;
    justify-content: space-between;
  }
  .vitrina-title .section-title {
    align-items: center;
    flex-direction: row;
    width: fit-content;
  }
  .vitrina-title .vitrina-desc {
    order: 1;
    width: 100%;
    text-align: left;
  }
  .vitrina-nav {
    display: none;
  }
}
@media screen  and (max-width:1199px){
  .vitrina-title .section-title lord-icon {
    width: 32px;
    height: 32px;
  }
  .vitrina-title .vitrina-desc {
    order: unset;
  }
  .vitrina-title .show-all-btn {
    width: 100%;
  }
  .show-all-btn .slider-btn {
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}
/* ------------ Breadcrumb Style ------------ */
.breadcrumb{
  padding: 20px 0 0;
  margin: 0;
}
.breadcrumb-list {
  display: flex;
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: -8px;
}
.breadcrumb-list::-webkit-scrollbar {
  height: 2px;
}
.breadcrumb-list li {
  width: fit-content;
  white-space: nowrap;
}
.breadcrumb-list li a{
  position: relative;
  white-space: nowrap;
}
.breadcrumb-list li a::after{
  content: '>';
  position: relative;
  right: -8px;
}
.current-page {
  font-size: inherit;
  margin: 0;
  line-height: inherit;
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}
/* ------------ Form Style ------------ */
.form-container {
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.common-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.common-form .row{
  gap: 20px 0;
  width: auto;
}
.pass-input{
  position: relative;
}
.pass-icon{
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.pass-icon:hover {
  color: var(--color-1);
}
.pass-icon-show,
.show-pass .pass-icon-hide{
  display: none;
}
.show-pass .pass-icon-show{
  display: block;
}
.forgot-pass {
  color: var(--color-3);
}
.account-form-footer {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.account-form-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.form-container .form-single {
  width: 100%;
  position: relative;
}
.input-style,
.custom-select{
  background-color: rgba(255, 255, 255, .6);
  outline: none;
  box-shadow: none;
  padding: 12px 16px;
  border-radius: var(--border-radius-main);
  border: 1px solid var(--color-4);
  width: 100%;
  height: 50px;
}
.form-container .form-single label {
  text-align: left;
  margin-bottom: 8px;
}
.form-container sup {
  color: var(--color-1);
}
.form-container .pass-input{
  width: 100%;
}
.user-type-selector {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 24px;
}
.form-single-radio{
    width: calc(50% - 12px);
}
.form-single-radio label{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .6);
  cursor: pointer;
  border: 1px solid var(--color-4);
  transition: all .4s ease;
}
.form-single-radio input:checked + label {
  background-color: var(--color-1);
  color: white;
}
.checkout-user-type .form-single-radio {
  border: 1px solid black;
  border-radius: 10px;
}
.checkout-user-type .form-single-radio label{
  margin: 0;
}
.form-single-radio svg {
  width: 60px;
  height: 60px;
}
.user-type-selector input {
  display: none;
}
.form-special-input {
  display: block;
  width: 100%;
  height: 50px;
}
.form-note-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  background-color: var(--color-3);
  color: white;
  border-radius: 100%;
  transition: all .4s ease;
  padding: 2px;
  font-size: 14px;
  line-height: 20px;
}
.form-note:hover .form-note-btn {
cursor: pointer;
background-color: var(--color-4);
color: black;
}
.form-note-input {
display: inline-block;;
overflow: hidden;
opacity: 0;
visibility: hidden;
pointer-events: none;
transform: translateY(100%);
position: absolute;
bottom: 110%;
left: 0;
background-color: var(--color-3);
color: white;
border-radius: 10px; 
padding: 8px;
z-index: 1;
transition: all .4s ease;
max-width: 100%;
width: 100%;
font-size: 14px;
line-height: 1.4;
}
.form-note.active .form-note-btn {
  background-color: var(--color-1);
  color: white;
  }
.form-note.active .form-note-input {
opacity: 1;
transform: translateY(0);
visibility: visible;
pointer-events: all;
}
.form-note .open-note,
.form-note.active .close-note {
  display: block;
}
.form-note.active .open-note,
.form-note .close-note {
  display: none;
}
.region-select {
  padding: 10px;
  appearance: none;
}
.custom-select {
  position: relative;
}
.custom-select select {
  display: none;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 22px;
  right: 16px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--color-3) transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--color-3) transparent;
  top: 14px;
}
.select-items div,
.select-selected {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}
.select-items {
  position: absolute;
  background-color: white;
  color: black;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--gradient-transparent);
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  color: var(--color-1);
}
.form-container .btn.btn-danger {
  height: 50px;
}
@media screen  and (max-width:1599px){
  .form-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media screen  and (max-width:767px){
  .account-page .container-fluid,
  .form-page .container-fluid {
    max-width: 100%;
}

}
/* ------------ Product Page Style ------------ */
.product-single-image {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px;
  border-radius: var(--border-radius-big);
  background: var(--gradient-transparent);
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 110px;
}
.product-single-image .product-single-slide,
.product-single-image .product-single-thumb .swiper {
  overflow: hidden;
}
.product-single-thumb {
  position: relative;
}
.product-single-nav {
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  z-index: 1;
  width: calc(100% + 32px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.product-single-nav .swiper-button-next, 
.product-single-nav .swiper-button-prev {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: white;
}
.product-single-nav .swiper-button-next:hover, 
.product-single-nav .swiper-button-prev:hover {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: white;
}
.product-single-nav .swiper-button-next.swiper-button-disabled, 
.product-single-nav .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
@media screen and (hover:hover){
  .product-single-nav {
    opacity: 0;
    top: 0%;
    transition: all .4s ease-in-out;
  }
  .product-single-image:hover .product-single-nav {
    opacity: 1;
    top: 50%;
  }
}
.product-section .row {
  gap: 60px 0;
}
.col-xl-prodthumb {
  width: 20%;
}
.col-xl-prodcontent {
  width: 80%;
}
.product-single-slide .single-slide {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 15;
  overflow: hidden;
  border-radius: var(--border-radius-big);
}
.product-single-thumb-item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--border-radius-main);
  cursor: pointer;
}
.product-single-slide .single-slide img,
.product-single-thumb-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.zoomImg {
  width: 150% !important;
  height: 150% !important;
}
.product-single-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0 32px;
}
.product-single-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.product-single-list li {
  display: flex;
  gap: 8px 16px;
  width: 100%;
}
.product-single-list li strong {
  width: 260px;
  min-width: min(100%,260px);
  max-width: 100%;
}
.availability-yes {
  color: var(--color-green);
}
.availability-no {
  color: var(--color-delete);
}
.product-single-price .final-price {
  font-size: 20px;
}
.product-single-price .del-price {
  font-size: 16px;
}
.product-single-qty {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qty-plus-minus {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.qty-plus-minus .qty-qtybtn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-4);
  border-radius: 100%;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 4px;
  cursor: pointer;
}
.qty-plus-minus .qty-input {
  width: 60px;
  height: 40px;
  text-align: center;
  background-color: var(--color-4);
  border: none;
  outline: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 18px;
}
.product-single-btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.product-info {
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 32px;
}
.nav-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
  border: none;
}
.nav-tabs .nav-link {
  border: none;
  outline: none;
  padding: 0px 24px 8px;
  border-bottom: 3px solid var(--color-4);
  width: 100%;
  font-weight: 500;
  color: black;
  font-family: var(--font-header);
  background-color: transparent;
  white-space: nowrap;
}
.nav-tabs .nav-link.active {
  border-color: var(--color-1);
  background-color: transparent;
}
.product-single-tab-wrapper .product-single-list li strong {
  width: 200px;
  min-width: 200px;
}
.single-author-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single-author-desc + .single-author-desc {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-4);
}
.single-author-desc .auhtor-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.single-author-desc .auhtor-info .author-name {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-header);
}
.single-author-desc .auhtor-info .author-image {
  width: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.product-single-title-section {
  max-width: min(70ch, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}
.product-single-title {
  max-width: 100%;
  line-height: 1.6;
}
.product-single-subtitle {
  max-width: 100%;
  color: var(--color-3);
}
.product-single-desc {
  color: var(--color-3);
  max-width: min(70ch, 100%);
}
.authors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  width: 100%;
}
.authors-list .single-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.authors-list .single-author .single-author-image {
  width: 70px;
  border-radius: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}
.authors-list .single-author .single-author-image img {
  transition: all .4s ease-in-out;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.authors-list .single-author:hover .single-author-image img {
  opacity: .6;
  scale: 1.1;
}
.authors-list .single-author .single-author-image svg {
  opacity: 0;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  transition: all .4s ease-in-out;
}
.authors-list .single-author:hover .single-author-image svg {
  opacity: 1;
}
.sicoprav-option input {
  display: none;
}
.sicoprav-option label {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 2px dashed var(--color-4);
  border-radius: 8px;
  padding: 6px 16px;
  font-weight: 500;
  transition: all .4s ease-in-out;
}
.sicoprav-option label:hover {
  border: 2px solid var(--color-3);
  cursor: pointer;
}
.sicoprav-option input:checked + label {
  border: 2px solid var(--color-1);
  cursor: default;
}
.product-swatch__group input {
  display: none;
}
.product-swatch__group label {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px 8px 12px;
  border: 2px solid var(--color-4);
  border-radius: var(--border-radius-main);
  transition: all .4s ease-in-out;
}
.product-swatch__group label:hover {
  cursor: pointer;
  border-color: black;
}
.product-swatch__group input:checked + label {
  border-color: var(--color-1);
}
.product-swatch__container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.index-button-container {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}
.index-button-container span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.index-button-container span lord-icon {
  width: 24px;
  height: 24px;
}
.popup-inner-text {
  padding: 16px;
}
@media screen  and (max-width:1199px){
  .product-info {
    padding: 24px;
  }
}
@media screen  and (max-width:767px){
  .product-single-list li {
    flex-direction: column;
  }
  .product-single-list li strong {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .product-single-image {
    gap: 24px;
    padding: 24px;
  }
  .product-single-content {
    padding: 0;
  }
  .product-single-qty {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
  }
  .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .nav-tabs::-webkit-scrollbar-track {
    display: none;
    background: transparent;
  }
  .product-info {
    padding: 16px;
    border-radius: var(--border-radius-big) !important;
    box-shadow: var(--box-shadow) !important;
  }
  .nav-tabs .nav-link {
    padding: 0px 16px 8px;
    background-color: transparent;
  }
}
/* ------------ Shop Page Style ------------ */
.shop-product-listing {
  gap: 32px 0;
  margin: 32px 0;
}
.pagination-container {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.single-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-5);
  border-radius: 100%;
  transition: all .4s ease-in-out;
}
.single-pagenation:hover {
  color: black;
  background-color: var(--color-4);
}
.single-pagenation.active-page {
  color: white;
  background-color: var(--color-1);
  pointer-events: none;
}
.shop-topbar {
  gap: 16px;
}
.filter-btn-toggle .btn {
  height: 50px;
}
.sort-container {
  width: 200px;
  height: 50px;
}
.overlay-filters-container .overlay-body {
  padding: 20px;
  gap: 32px;
}
.filter-widget{
  background-color: rgba(255, 255, 255, .6);
  border-radius: var(--border-radius-main);
  border: 1px solid var(--color-4);
  width: 100%;
  padding: 20px;
}
.filter-widget-title {
  padding-bottom: 8px;
  margin-bottom: 12px;
  position: relative;
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-header);
}
.filter-widget-title::after {
  content: '';
  width: 100%;
  height: 3px;
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  background: linear-gradient(to right, var(--color-1), transparent);
}
.filter-widget-listing {
  display: flex;
  flex-direction: column;
  gap: 8px;    
  max-height: 200px;
  overflow: auto;
  padding-right: 10px;
}
.filter-widget-listing .checkbox-wrapper {
  width: 100%;
  margin: 8px 0 0;
}
.filter-widget-listing .checkbox-wrapper .cbx {
  margin: 0;
}
.price-slide {
  margin-top: 30px;
  padding: 0 10px;
}
.range-slider .noUi-horizontal {
  height: 4px;
}
.range-slider .noUi-horizontal .noUi-handle {
  width: 15px;
  height: 15px;
  border: 3px solid var(--color-1);
  background-color: var(--color-1);
  box-shadow: none;
  top: -6px;
  right: 0;
  cursor: pointer;
  border-radius: 100%;
}
.range-slider .noUi-horizontal .noUi-handle:before,
.range-slider .noUi-horizontal .noUi-handle:after {
  content: none;
}
.range-slider .noUi-horizontal .noUi-handle .noUi-tooltip {
  display: none;
  border: 0px;
  background: var(--color-1);
  color: black;
  border-radius: 4px;
  font-size: 13px;
  bottom: -35px;
  font-weight: 600;
  padding: 2px 5px;
}
.range-slider .noUi-horizontal .noUi-handle .noUi-tooltip:after {
  content: "";
  position: absolute;
  background-color: inherit;
  width: 10px;
  height: 10px;
  top: 4px;
  margin-left: -4px;
  left: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
}
.range-slider {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.range-slider .noUi-target {
  background: var(--color-2);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  width: calc(100% - 15px);
  margin: 0 auto;
}
.range-slider .noUi-target .noUi-connect {
  background: var(--color-1);
}
.range-slider .example-val {
  font-size: 16px;
  color: black;
  margin-right: 15px;
}
@media screen  and (min-width:1800px){
  .col-xxl-custom {
    width: 20%;
  }
}
@media screen  and (min-width:992px){
  .overlay-filters-container {
    position: static;
    width: 100%;
    max-height: unset;
    height: fit-content;
  }
  .overlay-filters-container .overlay-body {
    max-height: unset;
  }
}
@media screen and (max-width:767px){
  .filter-btn-toggle {
    flex: 1;
  }
}
/* ------------ Hero Slider Style ------------ */
.hero-swiper {
  position: relative;
  overflow: hidden;
}
.hero-single {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  flex-direction: row;
  align-items: center;
  padding: 32px 16px;
  margin: 0;
}
.hero-single .hero-image {
  border-radius: var(--border-radius-big);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.hero-single .hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-single .hero-single-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 1;
  width: fit-content;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  gap: 16px;
  pointer-events: none;
  transition: all .4s ease-in-out;
}
.hero-nav .swiper-button-next, 
.hero-nav .swiper-button-prev {
  width: 48px;
  height: 48px;
}
.hero-nav .swiper-button-disabled {
  display: none;
}
.hero-title {
  font-weight: 900;
  background: -webkit-linear-gradient(-45deg, #680421, var(--color-1));
  background: linear-gradient(-45deg, #680421, var(--color-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.hero-title span {
  color: var(--color-1);
}
.hero-single-content .btn {
  font-size: 18px;
}
.show-all-btn.hero-btn .slider-btn {
  color: black;
  border: none;
  padding: 0;
  font-size: 18px;
  gap: 8px;
}
.show-all-btn.hero-btn .slider-btn lord-icon{
  width: 32px;
  height: 32px;
}
.swiper-slide-active .hero-single-content>*,
.swiper-slide-active .hero-image {
  -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.swiper-slide-active .hero-single-content>*:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.swiper-slide-active .hero-single-content>*:nth-child(3) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.swiper-slide-active .hero-image {  
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.show-all-btn.hero-btn {
  width: fit-content;
}
@media screen  and (max-width:1199px){
  .hero-single {
    flex-direction: column-reverse;
    align-items: center;
    padding: 16px 16px;
    margin: 0;
    gap: 32px 0;
  }
  .hero-nav {
    bottom: 16px;
    left: auto;
    right: 32px;
  }
  .hero-nav .swiper-button-next, 
  .hero-nav .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
} 
/* ------------ Author Slider Style ------------ */
.vitrina-section .swiper.author-vitrina {
  padding: 48px;
  overflow: visible;
}
.author-vitrina-card {
  position: relative;
  border-radius: var(--border-radius-main);
  overflow: hidden;
}
.author-vitrina-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.author-vitrina-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}
.author-vitrina-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-vitrina-box {
  padding: 0px 100px 0 300px;
}
.author-vitrina-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.author-vitrina-title .show-all-btn {
  margin-left: 16px;
}
.author-vitrina-signle-swiper .author-vitrina-content {
  padding: 32px;
  background-color: rgba(255, 255, 255, .4);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-main);
}
.author-vitrina-single-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--color-5);
  padding-top: 16px;
  width: 100%;
}
.author-vitrina-single-footer-img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
}
.author-vitrina-single-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.arrow-btn {
  display: flex;
  width: 48px;
  height: 48px;
  background-color: var(--color-1);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-top: auto;
}
.author-vitrina-description {
  color: black;
}
@media screen and (max-width:1199px) {
  .section-title {
    width: 100%;
  }
  .author-vitrina-title .show-all-btn {
    margin-left: auto;
  }
}
@media screen and (max-width:767px) {
  .author-vitrina-signle-swiper .author-vitrina-content {
    padding: 16px;
  }
  .author-vitrina-title .section-title {
    width: 100%;
    flex-wrap: wrap;
  }
  .author-vitrina-title .section-title .h4 {
    flex: 1;
  }
  .show-all-btn {
    width: 100%;
  }
  .author-vitrina-single-footer .arrow-btn {
    display: none;
  }
  .author-vitrina-single-footer-img {
    width: 60px;
    height: 60px;
  }
}
/* ------------ Content Area Style ------------ */
.about-section .row {
  gap: 32px 0;
}
.content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  gap: 24px;
  padding: 32px;
  height: 100%;
  background: var(--gradient-transparent);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-big);
}
.content-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  width: calc(100% - 120px);
}
.content-title span {
  color: var(--color-1);
}
.content-text {
  width: calc(100% - 160px);
  margin-top: auto;
}
.about-section .content-text {
  width: 100%;
}
.content-img {
  position: absolute;
  top: 0;
  right: 16px;
  width: 100px;
  transition: all .4s ease-in-out;
  -webkit-filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3));
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3));
}
.content-cta .content-img {
  top: 16px;
}
.content-box:hover .content-img {
  top: -42px;
  -webkit-filter: drop-shadow(0 60px 16px rgba(0,0,0,.5));
  filter: drop-shadow(0 60px 16px rgba(0,0,0,.5));
}
.double-row {
  height: 100%;
  gap: 16px 0;
}
.common-title-desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.common-title-desc img {
  margin-top: 16px;
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
}
@media screen and (max-width: 1199px) {
  .content-img {
    width: 80px;
  }
  .content-section .row {
    gap: 32px 0;
  }
  .content-box {
    padding: 24px;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .content-img {
    width: 60px;
  }
  .content-text {
    width: 100%;
  }
}
/* ------------ Blog Page Style ------------ */
.single-blog-detail {
  font-size: 16px;
}
.tag-filters {
  max-height: unset;
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}
.tag-filters .single-filter input {
  display: none;
}
.tag-filters .single-filter label,
.single-tag {
  padding: 6px 12px;
  border-radius: var(--border-radius-main);
  display: block;
  background-color: var(--color-5);
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.product-single-list .single-tag {
  background-color: white;
}
.tag-filters .single-filter input:checked + label,
.single-tag:hover,
.product-single-list .single-tag:hover {
  background-color: var(--color-1);
  color: white;
}
.blog-meta-container {
  padding: 40px;
}
.blog-meta-container .blog-title {
  line-height: 1.4;
}
.blog-meta-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-meta-content .blog-meta-single {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.blog-image,
.photo-gallery-container img {
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
.blog-image-with-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.photo-gallery-container {
  padding: 16px;
  margin: 32px -16px -16px;
  overflow: clip;
  position: relative;
}
.photo-gallery .swiper-wrapper {
  align-items: center;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 100%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.gallery-nav .swiper-button-next, 
.gallery-nav .swiper-button-prev {
  background-color: var(--color-5);
  border-color: transparent;
  transition: all .4s ease-in-out;
}
.gallery-nav .swiper-button-next:hover, 
.gallery-nav .swiper-button-prev:hover {
  background-color: var(--color-1);
  border-color: transparent;
  color: white;
}
.blog-invitation {
  margin-top: 32px;
}
.single-blog-tags {
  display: flex;
  align-items: baseline;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--color-4);
  gap: 16px;
  transition: all .4s ease;
}
.single-blog-tags .single-blog-tags-title {
  height: fit-content;
  font-weight: 600;
}
@media screen and (max-width:1599px) {
  .blog-meta-container {
    padding: 32px;
  }
}
@media screen and (max-width:1199px) {
  .blog-meta-container {
    padding: 24px;
}
}
@media screen and (max-width:991px) {
  .blog-meta-container {
    padding: 32px;
    margin: 0 auto 32px;
  }
}
@media screen and (max-width:767px) {
  
}
/* ------------Text - Image Area Style ------------ */
.text-img-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-img-image {
  border-radius: var(--border-radius-main);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}
/* ------------ Contact Page Style ------------ */
.form-container.contact-form-box {
  margin: 0;
  position: sticky;
  top: 110px;
}
.contact-info-area {
  gap: 32px 0;
}
.contact-info-area .content-title {
  width: 100%;
  margin: 0;
}
.contact-multiple-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.contact-info-area .footer-list {
  margin-top: 0;
}
.map-section iframe {
  width: calc(100% + 12px);
  height: 600px;
  margin: -6px;
}
/* ------------ Series Filters Style ------------ */
.series-filter {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: -20px;
  margin-bottom: 20px;
  font-size: 16px; 
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}
.series-filter a,
.series-filter button {
  position: relative;
  padding: 0 20px;
}
.series-filter button {
  color: black;
  border: none;
  outline: none;
  background-color: transparent;
}
.series-filter button.is--active {
  color: var(--color-1);
}
.series-filter a:first-child,
.series-filter button:first-child  {
  padding-left: 0;
}
.series-filter a:not(:first-child)::after,
.series-filter button:not(:first-child)::after {
  content: '';
  width: 2px;
  height: 50%;
  position: absolute;
  left: 0;
  top: 25%;
  display: block;
  background-color: black;
  opacity: .2;
}
.series-source-linklist {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.filter-item {
  width: calc(20% - 16px);  
  position: relative;
  padding: 16px;
  background: var(--gradient-transparent);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius-main);
}
.filter-item-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.filter-item-inner .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.series-filter button.is-disable,
.filter-item.is-disable {
  display: none !important;
}
@media (max-width: 1499px) {
  .filter-item {
    width: calc(25% - 16px);
  }
  .series-filter a, 
  .series-filter button {
    padding: 0 16px;
  }
}
@media (max-width: 1199px) {

  .filter-item {
    width: calc(33.33% - 16px);
  }
  .series-filter {
    font-size: 14px;
  }
  .series-filter a, 
  .series-filter button {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .filter-item {
    width: calc(350% - 16px);
  }
}
@media (max-width: 767px) {
  .filter-item {
    width: 100%;
  }
}
/* ------------ Author Talks Style ------------ */
.author-talks-area {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.author-talks-area .content-box{
  padding: 32px;
}
.author-talks-area .content-img,
.author-talks-area .content-box:hover .content-img  {
  position: static;
  width: 100%;
  padding-left: 32px;
  -webkit-filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3));
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3));
}
.author-talks-area .author-info .content-img,
.author-talks-area .author-info.content-box:hover .content-img  {
  padding-left: 0;
  padding-right: 32px;
}
.author-talks-area .content-img img {
  border-radius: 32px;
  width: 100%;
}
.author-talks-area .content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.author-talks-area .content-title {
  width: 100%;
}
.author-talks-area .content-text {
  width: 100%;
  margin-top: 0;
  margin-bottom: 16px;
}
.author-talks-area .show-all-btn {
  margin-top: auto;
}
.video-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background-color: var(--color-1);
  width: fit-content;
  border-radius: var(--border-radius-main);
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: all .4s ease-in-out;
}
.video-btn:hover {
  color: white;
  background-color: var(--color-3);
}
.video-btn lord-icon {
  width: 40px;
  height: 40px;
}
.content-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.content-social lord-icon {
  width: 40px;
  height: 40px;
}
.author-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: space-between;
  gap: 16px 0;
}
.author-talks-area .author-head .content-title {
  width: fit-content;
  margin: 0;
}
.author-talks-area .author-head .content-text {
  margin: 0;
}
.author-list-page .content-img {
  border-radius: var(--border-radius-main);
  overflow: hidden;
  position: static;    
  width: 100%;
  -webkit-filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3)) !important;
  filter: drop-shadow(0 16px 16px rgba(0, 0, 0, .3)) !important;
}
.author-list-page .content-box .row {
  align-items: center;
  gap: 24px 0;
}
.author-page .author-talks-area .content-text {
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.show-more-toggle {
  margin-top: 16px;
}
.show-more-toggle div {
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.show-more-toggle div:hover {
  color: var(--color-1);
}
.show-more-toggle .show-less,
.show-more-toggle.active .show-more {
  display: none;
}
.show-more-toggle .show-more,
.show-more-toggle.active .show-less {
  display: flex;
}
.author-page .author-talks-area .content-text.active {
  -webkit-line-clamp: unset;
}
@media screen and (max-width:991px) {
  .author-talks-area .content-img, 
  .author-talks-area .content-box:hover .content-img {
    padding-right: 0;
    margin-top: 0;
  }
}
@media screen and (max-width:767px) {
  .author-list-page .content-title {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .author-list-page .content-box .row {
    flex-direction: column-reverse;
  }
  .author-head {
    margin-top: 32px;
  }
  .author-talks-area .author-head .content-title {
    width: 100%;
    text-align: center;
  }
  .author-talks-area .author-info .content-img, 
  .author-talks-area .author-info.content-box:hover .content-img {
    padding-right: 0;
    margin-top: 0;
  }
  .content-social lord-icon {
    width: 32px;
    height: 32px;
  }
  .author-talks-area .content-img, 
  .author-talks-area .content-box:hover .content-img {
    padding-left: 0;
    margin-top: 32px;
  }
  .author-head {
    margin-top: 0;
  }
}